summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vip/vp570.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vip/vp570.h')
-rw-r--r--src/devices/bus/vip/vp570.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vip/vp570.h b/src/devices/bus/vip/vp570.h
index 745b96cff95..befde726eec 100644
--- a/src/devices/bus/vip/vp570.h
+++ b/src/devices/bus/vip/vp570.h
@@ -27,7 +27,7 @@ class vp570_device : public device_t,
{
public:
// construction/destruction
- vp570_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ vp570_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual ioport_constructor device_input_ports() const override;
@@ -37,11 +37,11 @@ protected:
virtual void device_start() override;
// device_vip_expansion_card_interface overrides
- virtual UINT8 vip_program_r(address_space &space, offs_t offset, int cs, int cdef, int *minh) override;
- virtual void vip_program_w(address_space &space, offs_t offset, UINT8 data, int cdef, int *minh) override;
+ virtual uint8_t vip_program_r(address_space &space, offs_t offset, int cs, int cdef, int *minh) override;
+ virtual void vip_program_w(address_space &space, offs_t offset, uint8_t data, int cdef, int *minh) override;
private:
- optional_shared_ptr<UINT8> m_ram;
+ optional_shared_ptr<uint8_t> m_ram;
required_ioport m_base;
required_ioport m_sw1;
};