summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2018-10-11 07:47:46 -0400
committer GitHub <noreply@github.com>2018-10-11 07:47:46 -0400
commit58fafee46171d0bcb364ab214cba295ac6832817 (patch)
treec0d3c5ee28fd1ff0a471fa12fda08c37f8759d3b
parenta9f59de54db28d67a71c61dbf4201b26e6892c38 (diff)
parentb43bd93f68270b0c0ecc61f7393d375495ef5931 (diff)
Merge pull request #4113 from hp9k/human_interface_fixme
hp_dio/human_interface: fix fixme (nw)
-rw-r--r--src/devices/bus/hp_dio/human_interface.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/human_interface.cpp b/src/devices/bus/hp_dio/human_interface.cpp
index 7804377e46a..05a45d875fc 100644
--- a/src/devices/bus/hp_dio/human_interface.cpp
+++ b/src/devices/bus/hp_dio/human_interface.cpp
@@ -295,8 +295,7 @@ void human_interface_device::dmack_w_in(int channel, uint8_t data)
{
if (channel)
return;
-// FIXME
-// m_tms9914->reg8_w(memory_space(), 7, data);
+ m_tms9914->reg8_w(*program_space(), 7, data);
}
uint8_t human_interface_device::dmack_r_in(int channel)