summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2zipdrive.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2zipdrive.h')
-rw-r--r--src/devices/bus/a2bus/a2zipdrive.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/a2bus/a2zipdrive.h b/src/devices/bus/a2bus/a2zipdrive.h
index cdc4a15bca6..39f5f8bae19 100644
--- a/src/devices/bus/a2bus/a2zipdrive.h
+++ b/src/devices/bus/a2bus/a2zipdrive.h
@@ -27,7 +27,7 @@ class a2bus_zipdrivebase_device:
{
public:
// construction/destruction
- a2bus_zipdrivebase_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);
+ a2bus_zipdrivebase_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);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
@@ -38,23 +38,23 @@ protected:
virtual void device_reset() override;
// overrides of standard a2bus slot functions
- virtual UINT8 read_c0nx(address_space &space, UINT8 offset) override;
- virtual void write_c0nx(address_space &space, UINT8 offset, UINT8 data) override;
- virtual UINT8 read_cnxx(address_space &space, UINT8 offset) override;
- virtual UINT8 read_c800(address_space &space, UINT16 offset) override;
+ virtual uint8_t read_c0nx(address_space &space, uint8_t offset) override;
+ virtual void write_c0nx(address_space &space, uint8_t offset, uint8_t data) override;
+ virtual uint8_t read_cnxx(address_space &space, uint8_t offset) override;
+ virtual uint8_t read_c800(address_space &space, uint16_t offset) override;
required_device<ata_interface_device> m_ata;
- UINT8 *m_rom;
+ uint8_t *m_rom;
private:
- UINT16 m_lastdata;
+ uint16_t m_lastdata;
};
class a2bus_zipdrive_device : public a2bus_zipdrivebase_device
{
public:
- a2bus_zipdrive_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ a2bus_zipdrive_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
// device type definition