summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/nec/v25instr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/nec/v25instr.hxx')
-rw-r--r--src/devices/cpu/nec/v25instr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/nec/v25instr.hxx b/src/devices/cpu/nec/v25instr.hxx
index bd11b0626a8..881f2044aae 100644
--- a/src/devices/cpu/nec/v25instr.hxx
+++ b/src/devices/cpu/nec/v25instr.hxx
@@ -42,7 +42,7 @@
} \
}
-OP( 0x0f, i_pre_v25 ) { UINT32 ModRM, tmp, tmp2;
+OP( 0x0f, i_pre_v25 ) { uint32_t ModRM, tmp, tmp2;
switch (FETCH()) {
case 0x10 : BITOP_BYTE; CLKS(3,3,4); tmp2 = Breg(CL) & 0x7; m_ZeroVal = (tmp & (1<<tmp2)) ? 1 : 0; m_CarryVal=m_OverVal=0; break; /* Test */
case 0x11 : BITOP_WORD; CLKS(3,3,4); tmp2 = Breg(CL) & 0xf; m_ZeroVal = (tmp & (1<<tmp2)) ? 1 : 0; m_CarryVal=m_OverVal=0; break; /* Test */