summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/m24_kbd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/m24_kbd.h')
-rw-r--r--src/mame/machine/m24_kbd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/m24_kbd.h b/src/mame/machine/m24_kbd.h
index d9e18434af3..70a3a8946b8 100644
--- a/src/mame/machine/m24_kbd.h
+++ b/src/mame/machine/m24_kbd.h
@@ -12,7 +12,7 @@
class m24_keyboard_device : public device_t
{
public:
- m24_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ m24_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &set_out_data_handler(device_t &device, _Object object) { return downcast<m24_keyboard_device &>(device).m_out_data.set_callback(object); }
@@ -35,7 +35,7 @@ public:
private:
required_ioport_array<16> m_rows;
required_ioport m_mousebtn;
- UINT8 m_p1;
+ uint8_t m_p1;
bool m_keypress, m_kbcdata;
devcb_write_line m_out_data;
required_device<cpu_device> m_mcu;