From efc4d857cdcba54669383e90474768690945474f Mon Sep 17 00:00:00 2001 From: angelosa Date: Wed, 28 Jun 2023 03:30:43 +0200 Subject: machine/pc87306.cpp: should use KBDC8042_DOUBLE for set_interrupt_type --- src/devices/machine/pc87306.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/pc87306.cpp b/src/devices/machine/pc87306.cpp index 4b8c94f2422..f8f4a515f0c 100644 --- a/src/devices/machine/pc87306.cpp +++ b/src/devices/machine/pc87306.cpp @@ -79,7 +79,7 @@ void pc87306_device::device_add_mconfig(machine_config &config) KBDC8042(config, m_kbdc); m_kbdc->set_keyboard_type(kbdc8042_device::KBDC8042_PS2); - m_kbdc->set_interrupt_type(kbdc8042_device::KBDC8042_SINGLE); + m_kbdc->set_interrupt_type(kbdc8042_device::KBDC8042_DOUBLE); m_kbdc->input_buffer_full_callback().set(FUNC(pc87306_device::irq_keyboard_w)); m_kbdc->input_buffer_full_mouse_callback().set(FUNC(pc87306_device::irq_mouse_w)); m_kbdc->system_reset_callback().set(FUNC(pc87306_device::kbdp20_gp20_reset_w)); -- cgit v1.2.3