summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/s2650/2650dasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/s2650/2650dasm.cpp')
-rw-r--r--src/devices/cpu/s2650/2650dasm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/s2650/2650dasm.cpp b/src/devices/cpu/s2650/2650dasm.cpp
index a7bd56d406d..9540224e39f 100644
--- a/src/devices/cpu/s2650/2650dasm.cpp
+++ b/src/devices/cpu/s2650/2650dasm.cpp
@@ -11,7 +11,7 @@
#include "emu.h"
-static const UINT8 *rambase;
+static const uint8_t *rambase;
static offs_t pcbase;
#define readarg(A) (rambase[(A) - pcbase])
@@ -223,7 +223,7 @@ static char *ADR(int pc)
/* disassemble one instruction at PC into buff. return byte size of instr */
CPU_DISASSEMBLE( s2650 )
{
- UINT32 flags = 0;
+ uint32_t flags = 0;
int PC = pc;
int op = oprom[0];
int rv = op & 3;