summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/megadrive/svp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/megadrive/svp.h')
-rw-r--r--src/devices/bus/megadrive/svp.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/bus/megadrive/svp.h b/src/devices/bus/megadrive/svp.h
index 73c230c92a0..57aa7713b67 100644
--- a/src/devices/bus/megadrive/svp.h
+++ b/src/devices/bus/megadrive/svp.h
@@ -17,15 +17,15 @@ class md_rom_svp_device : public device_t,
{
public:
// construction/destruction
- md_rom_svp_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);
- md_rom_svp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ md_rom_svp_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);
+ md_rom_svp_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
//protected:
// device-level overrides
virtual void device_start() override;
virtual machine_config_constructor device_mconfig_additions() const override;
virtual ioport_constructor device_input_ports() const override;
- virtual void set_bank_to_rom(const char *banktag, UINT32 offset) override;
+ virtual void set_bank_to_rom(const char *banktag, uint32_t offset) override;
required_device<device_t> m_svp;
required_ioport m_test_ipt;
@@ -56,16 +56,16 @@ public:
virtual DECLARE_WRITE16_MEMBER(write_pmc);
virtual DECLARE_WRITE16_MEMBER(write_al);
- UINT32 pm_io(int reg, int write, UINT32 d);
+ uint32_t pm_io(int reg, int write, uint32_t d);
- UINT32 m_pmac_read[6]; // read modes/addrs for PM0-PM5
- UINT32 m_pmac_write[6]; // write ...
+ uint32_t m_pmac_read[6]; // read modes/addrs for PM0-PM5
+ uint32_t m_pmac_write[6]; // write ...
PAIR m_pmc;
- UINT32 m_emu_status;
- UINT16 m_xst; // external status, mapped at a15000 and a15002 on 68k side.
- UINT16 m_xst2; // status of XST (bit1 set when 68k writes to XST)
- UINT8 m_iram[0x800]; // IRAM (0-0x7ff)
- UINT8 m_dram[0x20000]; // [0x20000];
+ uint32_t m_emu_status;
+ uint16_t m_xst; // external status, mapped at a15000 and a15002 on 68k side.
+ uint16_t m_xst2; // status of XST (bit1 set when 68k writes to XST)
+ uint8_t m_iram[0x800]; // IRAM (0-0x7ff)
+ uint8_t m_dram[0x20000]; // [0x20000];
};