summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sg1000_exp/sg1000exp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/sg1000_exp/sg1000exp.h')
-rw-r--r--src/devices/bus/sg1000_exp/sg1000exp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/sg1000_exp/sg1000exp.h b/src/devices/bus/sg1000_exp/sg1000exp.h
index 183ee9ea948..12cecb1bc89 100644
--- a/src/devices/bus/sg1000_exp/sg1000exp.h
+++ b/src/devices/bus/sg1000_exp/sg1000exp.h
@@ -43,13 +43,13 @@ class sg1000_expansion_slot_device : public device_t,
{
public:
// construction/destruction
- sg1000_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ sg1000_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~sg1000_expansion_slot_device();
DECLARE_READ8_MEMBER(read);
DECLARE_WRITE8_MEMBER(write);
- bool is_readable(UINT8 offset);
- bool is_writeable(UINT8 offset);
+ bool is_readable(uint8_t offset);
+ bool is_writeable(uint8_t offset);
protected:
// device-level overrides
@@ -73,8 +73,8 @@ public:
virtual DECLARE_READ8_MEMBER(peripheral_r) { return 0xff; };
virtual DECLARE_WRITE8_MEMBER(peripheral_w) { };
- virtual bool is_readable(UINT8 offset) { return true; };
- virtual bool is_writeable(UINT8 offset) { return true; };
+ virtual bool is_readable(uint8_t offset) { return true; };
+ virtual bool is_writeable(uint8_t offset) { return true; };
protected:
sg1000_expansion_slot_device *m_port;