diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/machine/ie15_kbd.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
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; |