summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/wangpc/mcc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/wangpc/mcc.h')
-rw-r--r--src/devices/bus/wangpc/mcc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/wangpc/mcc.h b/src/devices/bus/wangpc/mcc.h
index 54b0b868e45..6e00086cc1d 100644
--- a/src/devices/bus/wangpc/mcc.h
+++ b/src/devices/bus/wangpc/mcc.h
@@ -28,7 +28,7 @@ class wangpc_mcc_device : public device_t,
{
public:
// construction/destruction
- wangpc_mcc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ wangpc_mcc_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;
@@ -39,8 +39,8 @@ protected:
virtual void device_reset() override;
// device_wangpcbus_card_interface overrides
- virtual UINT16 wangpcbus_iorc_r(address_space &space, offs_t offset, UINT16 mem_mask) override;
- virtual void wangpcbus_aiowc_w(address_space &space, offs_t offset, UINT16 mem_mask, UINT16 data) override;
+ virtual uint16_t wangpcbus_iorc_r(address_space &space, offs_t offset, uint16_t mem_mask) override;
+ virtual void wangpcbus_aiowc_w(address_space &space, offs_t offset, uint16_t mem_mask, uint16_t data) override;
private:
inline void set_irq(int state);
@@ -48,7 +48,7 @@ private:
required_device<z80dart_device> m_sio;
required_device<z80dart_device> m_dart;
- UINT8 m_option;
+ uint8_t m_option;
int m_irq;
};