summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/superpet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pet/superpet.h')
-rw-r--r--src/devices/bus/pet/superpet.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/pet/superpet.h b/src/devices/bus/pet/superpet.h
index 4ec50f0d906..74caac39d73 100644
--- a/src/devices/bus/pet/superpet.h
+++ b/src/devices/bus/pet/superpet.h
@@ -28,7 +28,7 @@ class superpet_device : public device_t,
{
public:
// construction/destruction
- superpet_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ superpet_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual const tiny_rom_entry *device_rom_region() const override;
@@ -46,8 +46,8 @@ protected:
// device_pet_expansion_card_interface overrides
virtual int pet_norom_r(address_space &space, offs_t offset, int sel) override;
- virtual UINT8 pet_bd_r(address_space &space, offs_t offset, UINT8 data, int &sel) override;
- virtual void pet_bd_w(address_space &space, offs_t offset, UINT8 data, int &sel) override;
+ virtual uint8_t pet_bd_r(address_space &space, offs_t offset, uint8_t data, int &sel) override;
+ virtual void pet_bd_w(address_space &space, offs_t offset, uint8_t data, int &sel) override;
virtual int pet_diag_r() override;
virtual void pet_irq_w(int state) override;
@@ -56,17 +56,17 @@ private:
required_device<mos6551_device> m_acia;
required_device<mos6702_device> m_dongle;
required_memory_region m_rom;
- optional_shared_ptr<UINT8> m_ram;
+ optional_shared_ptr<uint8_t> m_ram;
required_ioport m_io_sw1;
required_ioport m_io_sw2;
inline void update_cpu();
inline bool is_ram_writable();
- UINT8 m_system;
- UINT8 m_bank;
- UINT8 m_sw1;
- UINT8 m_sw2;
+ uint8_t m_system;
+ uint8_t m_bank;
+ uint8_t m_sw1;
+ uint8_t m_sw2;
int m_sel9_rom;
int m_pet_irq;
int m_acia_irq;