summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo_ctrl/mahjong.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo_ctrl/mahjong.h')
-rw-r--r--src/devices/bus/neogeo_ctrl/mahjong.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/neogeo_ctrl/mahjong.h b/src/devices/bus/neogeo_ctrl/mahjong.h
index 52812a9917e..d92b974b213 100644
--- a/src/devices/bus/neogeo_ctrl/mahjong.h
+++ b/src/devices/bus/neogeo_ctrl/mahjong.h
@@ -26,8 +26,8 @@ class neogeo_mjctrl_ac_device : public device_t,
{
public:
// construction/destruction
- neogeo_mjctrl_ac_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);
- neogeo_mjctrl_ac_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ neogeo_mjctrl_ac_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);
+ neogeo_mjctrl_ac_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual ioport_constructor device_input_ports() const override;
@@ -38,12 +38,12 @@ protected:
virtual void device_reset() override;
// device_neogeo_control_port_interface overrides
- virtual UINT8 read_ctrl() override;
- virtual void write_ctrlsel(UINT8 data) override;
+ virtual uint8_t read_ctrl() override;
+ virtual void write_ctrlsel(uint8_t data) override;
private:
required_ioport_array<4> m_mjpanel;
- UINT8 m_ctrl_sel;
+ uint8_t m_ctrl_sel;
};
// ======================> neogeo_mjctrl_device
@@ -52,7 +52,7 @@ class neogeo_mjctrl_device : public neogeo_mjctrl_ac_device
{
public:
// construction/destruction
- neogeo_mjctrl_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ neogeo_mjctrl_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// optional information overrides
virtual ioport_constructor device_input_ports() const override;
@@ -60,7 +60,7 @@ public:
protected:
// device_neogeo_control_port_interface overrides
- virtual UINT8 read_start_sel() override;
+ virtual uint8_t read_start_sel() override;
private:
required_ioport m_ss;