summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/pic16c62x/16c62xdsm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/pic16c62x/16c62xdsm.cpp')
-rw-r--r--src/devices/cpu/pic16c62x/16c62xdsm.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/pic16c62x/16c62xdsm.cpp b/src/devices/cpu/pic16c62x/16c62xdsm.cpp
index bd1772f764b..580e7ea88c8 100644
--- a/src/devices/cpu/pic16c62x/16c62xdsm.cpp
+++ b/src/devices/cpu/pic16c62x/16c62xdsm.cpp
@@ -29,8 +29,8 @@
#include "emu.h"
#include <ctype.h>
-static const UINT8 *rombase;
-static const UINT8 *rambase;
+static const uint8_t *rombase;
+static const uint8_t *rambase;
static offs_t pcbase;
#define READOP16(A) (rombase[(A) - pcbase] | (rombase[(A) + 1 - pcbase] << 8))
#define READARG16(A) (rambase[(A) - pcbase] | (rambase[(A) + 1 - pcbase] << 8))
@@ -146,7 +146,7 @@ static void InitDasm16C5x(void)
fatalerror("not enough bits in encoding '%s %s' %d\n",
ops[0],ops[1],bit);
}
- while (isspace((UINT8)*p)) p++;
+ while (isspace((uint8_t)*p)) p++;
if (*p) Op[i].extcode = *p;
Op[i].bits = bits;
Op[i].mask = mask;
@@ -170,7 +170,7 @@ CPU_DISASSEMBLE( pic16c62x )
int bit;
//char *buffertmp;
const char *cp; /* character pointer in OpFormats */
- UINT32 flags = 0;
+ uint32_t flags = 0;
rombase = oprom;
rambase = opram;