summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pc1512kb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pc1512kb.cpp')
-rw-r--r--src/mame/machine/pc1512kb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/pc1512kb.cpp b/src/mame/machine/pc1512kb.cpp
index 6d4ef54e134..262d253d31b 100644
--- a/src/mame/machine/pc1512kb.cpp
+++ b/src/mame/machine/pc1512kb.cpp
@@ -473,10 +473,10 @@ WRITE8_MEMBER( pc1512_keyboard_device::kb_p2_w )
m_write_clock(BIT(data, 1));
// CAPS LOCK
- output_set_led_value(LED_CAPS, BIT(data, 2));
+ machine().output().set_led_value(LED_CAPS, BIT(data, 2));
// NUM LOCK
- output_set_led_value(LED_NUM, BIT(data, 3));
+ machine().output().set_led_value(LED_NUM, BIT(data, 3));
// keyboard row
m_kb_y = (((data >> 4) & 0x07) << 8) | (m_kb_y & 0xff);