summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/z80dev.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/z80dev.cpp')
-rw-r--r--src/mame/drivers/z80dev.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/z80dev.cpp b/src/mame/drivers/z80dev.cpp
index aa9377a2ca1..90a81249b3f 100644
--- a/src/mame/drivers/z80dev.cpp
+++ b/src/mame/drivers/z80dev.cpp
@@ -44,7 +44,7 @@ WRITE8_MEMBER( z80dev_state::display_w )
// xxxx ---- ???
static const UINT8 hex_7seg[] = {0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, 0x77, 0x7c, 0x39, 0x5e, 0x79, 0x71};
- output_set_digit_value(offset, hex_7seg[data&0x0f]);
+ machine().output().set_digit_value(offset, hex_7seg[data&0x0f]);
}
READ8_MEMBER( z80dev_state::test_r )