summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2hsscsi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2hsscsi.h')
-rw-r--r--src/devices/bus/a2bus/a2hsscsi.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/devices/bus/a2bus/a2hsscsi.h b/src/devices/bus/a2bus/a2hsscsi.h
index 11f2ae7a48a..4689c997c86 100644
--- a/src/devices/bus/a2bus/a2hsscsi.h
+++ b/src/devices/bus/a2bus/a2hsscsi.h
@@ -25,8 +25,8 @@ class a2bus_hsscsi_device:
{
public:
// construction/destruction
- a2bus_hsscsi_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_hsscsi_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ a2bus_hsscsi_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);
+ a2bus_hsscsi_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
@@ -42,21 +42,21 @@ 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 void write_cnxx(address_space &space, UINT8 offset, UINT8 data) override;
- virtual UINT8 read_c800(address_space &space, UINT16 offset) override;
- virtual void write_c800(address_space &space, UINT16 offset, UINT8 data) 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 void write_cnxx(address_space &space, uint8_t offset, uint8_t data) override;
+ virtual uint8_t read_c800(address_space &space, uint16_t offset) override;
+ virtual void write_c800(address_space &space, uint16_t offset, uint8_t data) override;
private:
- UINT8 *m_rom;
- UINT8 m_ram[8192]; // 8 banks of 1024 bytes
+ uint8_t *m_rom;
+ uint8_t m_ram[8192]; // 8 banks of 1024 bytes
int m_rambank, m_rombank;
- UINT8 m_drq;
- UINT8 m_bank;
+ uint8_t m_drq;
+ uint8_t m_bank;
bool m_816block;
- UINT8 m_c0ne, m_c0nf;
+ uint8_t m_c0ne, m_c0nf;
};
// device type definition