summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2scsi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2scsi.h')
-rw-r--r--src/devices/bus/a2bus/a2scsi.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/devices/bus/a2bus/a2scsi.h b/src/devices/bus/a2bus/a2scsi.h
index 09b4ad18fe2..c506dfd94fa 100644
--- a/src/devices/bus/a2bus/a2scsi.h
+++ b/src/devices/bus/a2bus/a2scsi.h
@@ -25,8 +25,8 @@ class a2bus_scsi_device:
{
public:
// construction/destruction
- a2bus_scsi_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_scsi_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ a2bus_scsi_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_scsi_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,19 +42,19 @@ 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;
};