summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/wangpckb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/wangpckb.h')
-rw-r--r--src/mame/machine/wangpckb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/wangpckb.h b/src/mame/machine/wangpckb.h
index d2bfbeb8c71..1b357341a61 100644
--- a/src/mame/machine/wangpckb.h
+++ b/src/mame/machine/wangpckb.h
@@ -48,7 +48,7 @@ class wangpc_keyboard_t : public device_t,
{
public:
// construction/destruction
- wangpc_keyboard_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ wangpc_keyboard_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &set_txd_handler(device_t &device, _Object object) { return downcast<wangpc_keyboard_t &>(device).m_txd_handler.set_callback(object); }
@@ -85,7 +85,7 @@ private:
required_ioport_array<16> m_y;
devcb_write_line m_txd_handler;
- UINT8 m_keylatch;
+ uint8_t m_keylatch;
int m_rxd;
};