summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/softbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ieee488/softbox.cpp')
-rw-r--r--src/devices/bus/ieee488/softbox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/ieee488/softbox.cpp b/src/devices/bus/ieee488/softbox.cpp
index 02d75d19a34..0536b4aba07 100644
--- a/src/devices/bus/ieee488/softbox.cpp
+++ b/src/devices/bus/ieee488/softbox.cpp
@@ -212,9 +212,9 @@ WRITE8_MEMBER( softbox_device::ppi1_pc_w )
*/
- output_set_led_value(LED_A, !BIT(data, 0));
- output_set_led_value(LED_B, !BIT(data, 1));
- output_set_led_value(LED_READY, !BIT(data, 2));
+ machine().output().set_led_value(LED_A, !BIT(data, 0));
+ machine().output().set_led_value(LED_B, !BIT(data, 1));
+ machine().output().set_led_value(LED_READY, !BIT(data, 2));
}
static DEVICE_INPUT_DEFAULTS_START( terminal )