summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gts1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gts1.cpp')
-rw-r--r--src/mame/drivers/gts1.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/gts1.cpp b/src/mame/drivers/gts1.cpp
index 7a0ebd6bbab..a551ce5efaf 100644
--- a/src/mame/drivers/gts1.cpp
+++ b/src/mame/drivers/gts1.cpp
@@ -461,8 +461,8 @@ WRITE8_MEMBER(gts1_state::gts1_display_w)
UINT8 b = ttl7448_mod[(data >> 4) & 15];
// LOG(("%s: offset:%d data:%02x a:%02x b:%02x\n", __FUNCTION__, offset, data, a, b));
if ((offset % 8) < 7) {
- output_set_indexed_value("digit8_", offset, a);
- output_set_indexed_value("digit8_", offset + 16, b);
+ machine().output().set_indexed_value("digit8_", offset, a);
+ machine().output().set_indexed_value("digit8_", offset + 16, b);
} else {
/*
* For the 4 7-seg displays the segment h is turned back into
@@ -472,9 +472,9 @@ WRITE8_MEMBER(gts1_state::gts1_display_w)
a = _b | _c;
if (b & _h)
b = _b | _c;
- output_set_indexed_value("digit7_", offset, a);
+ machine().output().set_indexed_value("digit7_", offset, a);
// FIXME: there is nothing on outputs 22, 23, 30 and 31?
- output_set_indexed_value("digit7_", offset + 16, b);
+ machine().output().set_indexed_value("digit7_", offset + 16, b);
}
#undef _a
#undef _b