summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/psi_kbd/hle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/psi_kbd/hle.cpp')
-rw-r--r--src/devices/bus/psi_kbd/hle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/psi_kbd/hle.cpp b/src/devices/bus/psi_kbd/hle.cpp
index 84adfc5ff82..7fd1b02677f 100644
--- a/src/devices/bus/psi_kbd/hle.cpp
+++ b/src/devices/bus/psi_kbd/hle.cpp
@@ -308,7 +308,7 @@ uint8_t psi_hle_keyboard_device::translate(uint8_t row, uint8_t column)
void psi_hle_keyboard_device::send_key(uint8_t code)
{
- m_host->key_data_w(machine().dummy_space(), 0, code);
+ m_host->key_data_w(code);
m_host->key_strobe_w(1);
m_host->key_strobe_w(0);
}