diff options
Diffstat (limited to 'src/devices/machine/ie15_kbd.h')
-rw-r--r-- | src/devices/machine/ie15_kbd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ie15_kbd.h b/src/devices/machine/ie15_kbd.h index 3302bbda8a2..89baf4eccc6 100644 --- a/src/devices/machine/ie15_kbd.h +++ b/src/devices/machine/ie15_kbd.h @@ -31,7 +31,7 @@ public: IE_KB_NR_BIT = 7, }; - ie15_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + ie15_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); auto keyboard_cb() { return m_keyboard_cb.bind(); } auto sdv_cb() { return m_sdv_cb.bind(); } @@ -41,7 +41,7 @@ public: DECLARE_INPUT_CHANGED_MEMBER(dip_changed); protected: - ie15_keyboard_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + ie15_keyboard_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); virtual void device_start() override; virtual void device_reset() override; |