summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m65ce02.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/m65ce02.h')
-rw-r--r--src/devices/cpu/m6502/m65ce02.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/m6502/m65ce02.h b/src/devices/cpu/m6502/m65ce02.h
index d0d457d313c..2046975d103 100644
--- a/src/devices/cpu/m6502/m65ce02.h
+++ b/src/devices/cpu/m6502/m65ce02.h
@@ -15,19 +15,19 @@
class m65ce02_device : public m65c02_device {
public:
- m65ce02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- m65ce02_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ m65ce02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ m65ce02_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
static const disasm_entry disasm_entries[0x100];
- virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) override;
+ virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) override;
virtual void do_exec_full() override;
virtual void do_exec_partial() override;
protected:
- UINT16 TMP3; /* temporary internal values */
- UINT8 Z; /* Z index register */
- UINT16 B; /* Zero page base address (always xx00) */
+ uint16_t TMP3; /* temporary internal values */
+ uint8_t Z; /* Z index register */
+ uint16_t B; /* Zero page base address (always xx00) */
virtual void init() override;
virtual void device_start() override;