summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ql/qubide.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ql/qubide.h')
-rw-r--r--src/devices/bus/ql/qubide.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/ql/qubide.h b/src/devices/bus/ql/qubide.h
index 4ccb043847c..9ebbdaa95e5 100644
--- a/src/devices/bus/ql/qubide.h
+++ b/src/devices/bus/ql/qubide.h
@@ -27,7 +27,7 @@ class qubide_t : public device_t,
{
public:
// construction/destruction
- qubide_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ qubide_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual const tiny_rom_entry *device_rom_region() const override;
@@ -40,8 +40,8 @@ protected:
virtual void device_reset() override;
// device_ql_expansion_card_interface overrides
- virtual UINT8 read(address_space &space, offs_t offset, UINT8 data) override;
- virtual void write(address_space &space, offs_t offset, UINT8 data) override;
+ virtual uint8_t read(address_space &space, offs_t offset, uint8_t data) override;
+ virtual void write(address_space &space, offs_t offset, uint8_t data) override;
private:
required_device<ata_interface_device> m_ata;
@@ -49,7 +49,7 @@ private:
required_ioport m_j1_j5;
offs_t m_base;
- UINT16 m_ata_data;
+ uint16_t m_ata_data;
};