diff options
Diffstat (limited to 'src/devices/cpu/tms32010/32010dsm.cpp')
-rw-r--r-- | src/devices/cpu/tms32010/32010dsm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms32010/32010dsm.cpp b/src/devices/cpu/tms32010/32010dsm.cpp index 67f598d2b85..bea830175d6 100644 --- a/src/devices/cpu/tms32010/32010dsm.cpp +++ b/src/devices/cpu/tms32010/32010dsm.cpp @@ -208,7 +208,7 @@ static void InitDasm32010(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; @@ -224,7 +224,7 @@ static void InitDasm32010(void) CPU_DISASSEMBLE( tms32010 ) { - UINT32 flags = 0; + uint32_t flags = 0; int a, b, d, k, m, n, p, r, s, w; /* these can all be filled in by parsing an instruction */ int i; int op; |