diff options
Diffstat (limited to 'src/devices/cpu/i8085/8085dasm.cpp')
-rw-r--r-- | src/devices/cpu/i8085/8085dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/i8085/8085dasm.cpp b/src/devices/cpu/i8085/8085dasm.cpp index e68bdfac337..515899a79e2 100644 --- a/src/devices/cpu/i8085/8085dasm.cpp +++ b/src/devices/cpu/i8085/8085dasm.cpp @@ -20,8 +20,8 @@ CPU_DISASSEMBLE( i8085 ) { - UINT32 flags = 0; - UINT8 op; + uint32_t flags = 0; + uint8_t op; unsigned PC = pc; switch (op = OP(pc++)) { |