summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/arc/arcdasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/arc/arcdasm.cpp')
-rw-r--r--src/devices/cpu/arc/arcdasm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/arc/arcdasm.cpp b/src/devices/cpu/arc/arcdasm.cpp
index 1b7897069de..872f821d560 100644
--- a/src/devices/cpu/arc/arcdasm.cpp
+++ b/src/devices/cpu/arc/arcdasm.cpp
@@ -193,12 +193,12 @@ static const char *regnames[0x40] =
CPU_DISASSEMBLE(arc)
{
- UINT32 op = oprom[0] | (oprom[1] << 8) | (oprom[2] << 16) | (oprom[3] << 24);
+ uint32_t op = oprom[0] | (oprom[1] << 8) | (oprom[2] << 16) | (oprom[3] << 24);
op = big_endianize_int32(op);
output = buffer;
- UINT8 opcode = ARC_OPERATION;
+ uint8_t opcode = ARC_OPERATION;
switch (opcode)
{