summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/z180/z180tbl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/z180/z180tbl.h')
-rw-r--r--src/emu/cpu/z180/z180tbl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/z180/z180tbl.h b/src/emu/cpu/z180/z180tbl.h
index 259e2ee1fc7..01864a68d36 100644
--- a/src/emu/cpu/z180/z180tbl.h
+++ b/src/emu/cpu/z180/z180tbl.h
@@ -289,10 +289,10 @@ static void (*const Z180ops[Z180_PREFIX_COUNT][0x100])(z180_state *cpustate) =
***************************************************************/
#define EXEC_PROTOTYPE(prefix) \
-INLINE int exec##_##prefix(z180_state *cpustate, const UINT8 opcode) \
+INLINE int exec##_##prefix(z180_state *cpustate, const UINT8 opcode) \
{ \
(*Z180ops[Z180_PREFIX_##prefix][opcode])(cpustate); \
- return cpustate->cc[Z180_TABLE_##prefix][opcode]; \
+ return cpustate->cc[Z180_TABLE_##prefix][opcode]; \
}
EXEC_PROTOTYPE(op)