summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/esrip/esripdsm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/esrip/esripdsm.cpp')
-rw-r--r--src/devices/cpu/esrip/esripdsm.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/cpu/esrip/esripdsm.cpp b/src/devices/cpu/esrip/esripdsm.cpp
index 41f3434d2cd..64df6ca7dc5 100644
--- a/src/devices/cpu/esrip/esripdsm.cpp
+++ b/src/devices/cpu/esrip/esripdsm.cpp
@@ -45,20 +45,20 @@ CPU_DISASSEMBLE( esrip )
};
#endif
- UINT64 inst = big_endianize_int64(*(UINT64 *)oprom);
+ uint64_t inst = big_endianize_int64(*(uint64_t *)oprom);
- UINT32 inst_hi = inst >> 32;
- UINT32 inst_lo = inst & 0xffffffff;
+ uint32_t inst_hi = inst >> 32;
+ uint32_t inst_lo = inst & 0xffffffff;
- UINT16 ins = (inst_hi >> 16) & 0xffff;
- UINT8 ctrl = (inst_hi >> 8) & 0xff;
- UINT8 jmp_dest = (inst_lo >> 8) & 0xff;
+ uint16_t ins = (inst_hi >> 16) & 0xffff;
+ uint8_t ctrl = (inst_hi >> 8) & 0xff;
+ uint8_t jmp_dest = (inst_lo >> 8) & 0xff;
- UINT8 jmp_ctrl = (ctrl >> 3) & 0x1f;
+ uint8_t jmp_ctrl = (ctrl >> 3) & 0x1f;
- UINT8 ctrl1 = (inst_lo >> 16) & 0xff;
- UINT8 ctrl2 = (inst_lo >> 24) & 0xff;
- UINT8 ctrl3 = (inst_hi) & 0xff;
+ uint8_t ctrl1 = (inst_lo >> 16) & 0xff;
+ uint8_t ctrl2 = (inst_lo >> 24) & 0xff;
+ uint8_t ctrl3 = (inst_hi) & 0xff;
sprintf(buffer, "%.4x %c%c%c%c %.2x %s%s%s%s%s%s%s%s %c%s%s%s %c%c%c%c%c%c%c%c",
ins,