summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6805/6805ops.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-11-24 04:10:18 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-11-24 04:10:18 +0000
commit1d05ea60893bc1a1e10a18e20b50dff7974a3b5d (patch)
tree78c3c6e8e6de60afa2685149c67ec33b84d39b76 /src/emu/cpu/m6805/6805ops.c
parentc1374de9c32c7d22eac53b1109792193a695ca4b (diff)
Cleanups and version bump for 0.128u4.mame0128u4
Diffstat (limited to 'src/emu/cpu/m6805/6805ops.c')
-rw-r--r--src/emu/cpu/m6805/6805ops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/m6805/6805ops.c b/src/emu/cpu/m6805/6805ops.c
index 9743edc8aed..f88fee3bd19 100644
--- a/src/emu/cpu/m6805/6805ops.c
+++ b/src/emu/cpu/m6805/6805ops.c
@@ -13,9 +13,9 @@ HNZC
*/
-#define OP_HANDLER(_name) INLINE void _name (void /*m68_state_t *m68_state*/)
+#define OP_HANDLER(_name) INLINE void _name (void /*m68_state_t *m68_state*/)
-#define OP_HANDLER_BIT(_name) INLINE void _name (/*m68_state_t *m68_state,*/ UINT8 bit)
+#define OP_HANDLER_BIT(_name) INLINE void _name (/*m68_state_t *m68_state,*/ UINT8 bit)
OP_HANDLER( illegal )
{
@@ -221,9 +221,9 @@ OP_HANDLER( neg_di )
OP_HANDLER( com_di )
{
UINT8 t;
- DIRBYTE(t);
+ DIRBYTE(t);
t = ~t;
- CLR_NZ;
+ CLR_NZ;
SET_NZ8(t);
SEC;
WM(EAD,t);