summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/trs80m2kb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/trs80m2kb.h')
-rw-r--r--src/mame/machine/trs80m2kb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/trs80m2kb.h b/src/mame/machine/trs80m2kb.h
index f0bbf4b9df1..f41a3f0a666 100644
--- a/src/mame/machine/trs80m2kb.h
+++ b/src/mame/machine/trs80m2kb.h
@@ -44,7 +44,7 @@ class trs80m2_keyboard_device : public device_t
{
public:
// construction/destruction
- trs80m2_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ trs80m2_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template<class _Object> static devcb_base &set_clock_wr_callback(device_t &device, _Object object) { return downcast<trs80m2_keyboard_device &>(device).m_write_clock.set_callback(object); }
@@ -83,7 +83,7 @@ private:
int m_data;
int m_clk;
- UINT8 m_keylatch;
+ uint8_t m_keylatch;
};