summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/model1.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2018-04-03 20:32:32 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2018-04-03 20:32:32 +1000
commit63026947dd4e1f581475a908469aa915f0b94746 (patch)
tree65561e4a4f65b2a076f570922b87c528f52e1c92 /src/mame/drivers/model1.cpp
parentcb498414243a3cd977d9d3c69350ed88d696c5e8 (diff)
(nw) output finder for by6803,model1,st_mp200,videopkr
Diffstat (limited to 'src/mame/drivers/model1.cpp')
-rw-r--r--src/mame/drivers/model1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/model1.cpp b/src/mame/drivers/model1.cpp
index e2a101227bf..39bc2d1b2f6 100644
--- a/src/mame/drivers/model1.cpp
+++ b/src/mame/drivers/model1.cpp
@@ -673,11 +673,11 @@ WRITE16_MEMBER(model1_state::io_w)
output().set_led_value(4, data & 0x40); // VIEW4
output().set_led_value(5, data & 0x80); // RACE LEADER
m_lamp_state = data;
- output().set_digit_value(1, data);
+ m_digits[1] = data;
return;
} else if (offset == 0x11) {
// drive board commands
- output().set_digit_value(0, data);
+ m_digits[0] = data;
return;
}
logerror("IOW: %02x %02x\n", offset, data);