summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/timemasterho.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/timemasterho.h')
-rw-r--r--src/devices/bus/a2bus/timemasterho.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/a2bus/timemasterho.h b/src/devices/bus/a2bus/timemasterho.h
index 87fa840bc8f..f366ee838bc 100644
--- a/src/devices/bus/a2bus/timemasterho.h
+++ b/src/devices/bus/a2bus/timemasterho.h
@@ -26,8 +26,8 @@ class a2bus_timemasterho_device:
{
public:
// construction/destruction
- a2bus_timemasterho_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_timemasterho_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ a2bus_timemasterho_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_timemasterho_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;
@@ -44,10 +44,10 @@ 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<pia6821_device> m_pia;
required_device<msm5832_device> m_msm5832;
@@ -56,7 +56,7 @@ protected:
private:
void update_irqs();
- UINT8 *m_rom;
+ uint8_t *m_rom;
bool m_irqa, m_irqb;
bool m_started;
};