summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/64k.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pet/64k.h')
-rw-r--r--src/devices/bus/pet/64k.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/pet/64k.h b/src/devices/bus/pet/64k.h
index ed698f539d1..fbaca888a58 100644
--- a/src/devices/bus/pet/64k.h
+++ b/src/devices/bus/pet/64k.h
@@ -27,7 +27,7 @@ class pet_64k_expansion_device : public device_t,
{
public:
// construction/destruction
- pet_64k_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ pet_64k_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
@@ -36,16 +36,16 @@ 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;
private:
- inline UINT8 read_ram(offs_t offset);
- inline void write_ram(offs_t offset, UINT8 data);
+ inline uint8_t read_ram(offs_t offset);
+ inline void write_ram(offs_t offset, uint8_t data);
- optional_shared_ptr<UINT8> m_ram;
+ optional_shared_ptr<uint8_t> m_ram;
- UINT8 m_ctrl;
+ uint8_t m_ctrl;
};