diff options
Diffstat (limited to 'src/devices/cpu/mb88xx/mb88dasm.cpp')
-rw-r--r-- | src/devices/cpu/mb88xx/mb88dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/mb88xx/mb88dasm.cpp b/src/devices/cpu/mb88xx/mb88dasm.cpp index 49bf547ccd4..eab49fd4bc8 100644 --- a/src/devices/cpu/mb88xx/mb88dasm.cpp +++ b/src/devices/cpu/mb88xx/mb88dasm.cpp @@ -16,8 +16,8 @@ CPU_DISASSEMBLE( mb88 ) { unsigned startpc = pc; - UINT8 op = oprom[pc++ - startpc]; - UINT8 arg = oprom[pc - startpc]; + uint8_t op = oprom[pc++ - startpc]; + uint8_t arg = oprom[pc - startpc]; switch( op ) { |