summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/hcd62121/hcd62121d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/hcd62121/hcd62121d.cpp')
-rw-r--r--src/devices/cpu/hcd62121/hcd62121d.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/hcd62121/hcd62121d.cpp b/src/devices/cpu/hcd62121/hcd62121d.cpp
index 0c6bc082b11..8bc4d44d3d3 100644
--- a/src/devices/cpu/hcd62121/hcd62121d.cpp
+++ b/src/devices/cpu/hcd62121/hcd62121d.cpp
@@ -40,8 +40,8 @@ enum
struct hcd62121_dasm
{
const char *str;
- UINT8 arg1;
- UINT8 arg2;
+ uint8_t arg1;
+ uint8_t arg2;
};
@@ -131,9 +131,9 @@ static const hcd62121_dasm hcd62121_ops[256] =
CPU_DISASSEMBLE( hcd62121 )
{
- UINT8 op;
- UINT8 op1;
- UINT8 op2;
+ uint8_t op;
+ uint8_t op1;
+ uint8_t op2;
int pos = 0;
const hcd62121_dasm *inst;