summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/nec/necmacro.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/nec/necmacro.h')
-rw-r--r--src/devices/cpu/nec/necmacro.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/nec/necmacro.h b/src/devices/cpu/nec/necmacro.h
index c97f487cc2c..582c233979f 100644
--- a/src/devices/cpu/nec/necmacro.h
+++ b/src/devices/cpu/nec/necmacro.h
@@ -55,8 +55,8 @@
#define JMP(flag) \
int tmp; \
- EMPTY_PREFETCH(); \
- tmp = (int)((int8_t)FETCH()); \
+ EMPTY_PREfetch(); \
+ tmp = (int)((int8_t)fetch()); \
if (flag) \
{ \
static const uint8_t table[3]={3,10,10}; \
@@ -98,7 +98,7 @@
Breg(AL) &= 0x0F
#define BITOP_BYTE \
- ModRM = FETCH(); \
+ ModRM = fetch(); \
if (ModRM >= 0xc0) { \
tmp=Breg(Mod_RM.RM.b[ModRM]); \
} \
@@ -108,7 +108,7 @@
}
#define BITOP_WORD \
- ModRM = FETCH(); \
+ ModRM = fetch(); \
if (ModRM >= 0xc0) { \
tmp=Wreg(Mod_RM.RM.w[ModRM]); \
} \