summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/cony.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/cony.h')
-rw-r--r--src/devices/bus/nes/cony.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/nes/cony.h b/src/devices/bus/nes/cony.h
index 625470da1e1..406952b69cb 100644
--- a/src/devices/bus/nes/cony.h
+++ b/src/devices/bus/nes/cony.h
@@ -12,8 +12,8 @@ class nes_cony_device : public nes_nrom_device
{
public:
// construction/destruction
- nes_cony_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);
- nes_cony_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nes_cony_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);
+ nes_cony_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
@@ -28,16 +28,16 @@ protected:
virtual void set_prg();
virtual void set_chr();
- UINT16 m_irq_count;
+ uint16_t m_irq_count;
int m_irq_enable;
static const device_timer_id TIMER_IRQ = 0;
emu_timer *irq_timer;
- UINT8 m_latch1, m_latch2;
- UINT8 m_low_reg[4];
- UINT8 m_reg[10];
- UINT8 m_extra1;
+ uint8_t m_latch1, m_latch2;
+ uint8_t m_low_reg[4];
+ uint8_t m_reg[10];
+ uint8_t m_extra1;
};
@@ -47,7 +47,7 @@ class nes_yoko_device : public nes_cony_device
{
public:
// construction/destruction
- nes_yoko_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nes_yoko_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
@@ -61,7 +61,7 @@ private:
virtual void set_prg() override;
virtual void set_chr() override;
- UINT8 m_extra2;
+ uint8_t m_extra2;
};