summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/a2softcard.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/a2softcard.h')
-rw-r--r--src/devices/bus/a2bus/a2softcard.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/a2bus/a2softcard.h b/src/devices/bus/a2bus/a2softcard.h
index 906d8e14c12..7df711601a4 100644
--- a/src/devices/bus/a2bus/a2softcard.h
+++ b/src/devices/bus/a2bus/a2softcard.h
@@ -24,8 +24,8 @@ class a2bus_softcard_device:
{
public:
// construction/destruction
- a2bus_softcard_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_softcard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ a2bus_softcard_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_softcard_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;
@@ -38,7 +38,7 @@ protected:
virtual void device_reset() override;
// overrides of standard a2bus slot functions
- virtual void write_cnxx(address_space &space, UINT8 offset, UINT8 data) override;
+ virtual void write_cnxx(address_space &space, uint8_t offset, uint8_t data) override;
virtual bool take_c800() override;
required_device<cpu_device> m_z80;