summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/tvc/hbf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/tvc/hbf.h')
-rw-r--r--src/devices/bus/tvc/hbf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/tvc/hbf.h b/src/devices/bus/tvc/hbf.h
index 83d98d8a0cb..2beb189391d 100644
--- a/src/devices/bus/tvc/hbf.h
+++ b/src/devices/bus/tvc/hbf.h
@@ -23,7 +23,7 @@ class tvc_hbf_device :
{
public:
// construction/destruction
- tvc_hbf_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ tvc_hbf_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;
@@ -37,7 +37,7 @@ protected:
virtual void device_reset() override;
// tvcexp_interface overrides
- virtual UINT8 id_r() override { return 0x02; } // ID_A to GND, ID_B to VCC
+ virtual uint8_t id_r() override { return 0x02; } // ID_A to GND, ID_B to VCC
virtual DECLARE_READ8_MEMBER(read) override;
virtual DECLARE_WRITE8_MEMBER(write) override;
virtual DECLARE_READ8_MEMBER(io_read) override;
@@ -47,9 +47,9 @@ private:
// internal state
required_device<fd1793_t> m_fdc;
- UINT8 * m_rom;
- UINT8 * m_ram;
- UINT8 m_rom_bank; // A12 and A13
+ uint8_t * m_rom;
+ uint8_t * m_ram;
+ uint8_t m_rom_bank; // A12 and A13
};