summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/meyc8088.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/meyc8088.cpp')
-rw-r--r--src/mame/drivers/meyc8088.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/meyc8088.cpp b/src/mame/drivers/meyc8088.cpp
index ddc5621cb69..4fdc6593789 100644
--- a/src/mame/drivers/meyc8088.cpp
+++ b/src/mame/drivers/meyc8088.cpp
@@ -255,14 +255,14 @@ WRITE8_MEMBER(meyc8088_state::meyc8088_lights1_w)
{
// lite 1-8
for (int i = 0; i < 8; i++)
- output_set_lamp_value(i, ~data >> i & 1);
+ machine().output().set_lamp_value(i, ~data >> i & 1);
}
WRITE8_MEMBER(meyc8088_state::meyc8088_lights2_w)
{
// lite 9-16
for (int i = 0; i < 8; i++)
- output_set_lamp_value(i + 8, ~data >> i & 1);
+ machine().output().set_lamp_value(i + 8, ~data >> i & 1);
}
WRITE8_MEMBER(meyc8088_state::meyc8088_common_w)