summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/tandy2kb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/tandy2kb.cpp')
-rw-r--r--src/mame/machine/tandy2kb.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/machine/tandy2kb.cpp b/src/mame/machine/tandy2kb.cpp
index 2872e5dd87d..9c11fbeb046 100644
--- a/src/mame/machine/tandy2kb.cpp
+++ b/src/mame/machine/tandy2kb.cpp
@@ -210,6 +210,7 @@ tandy2k_keyboard_device::tandy2k_keyboard_device(const machine_config &mconfig,
device_t(mconfig, TANDY2K_KEYBOARD, tag, owner, clock),
m_maincpu(*this, I8048_TAG),
m_y(*this, "Y%u", 0),
+ m_led(*this, "led%u", 0U),
m_write_clock(*this),
m_write_data(*this),
m_keylatch(0xffff),
@@ -225,6 +226,7 @@ tandy2k_keyboard_device::tandy2k_keyboard_device(const machine_config &mconfig,
void tandy2k_keyboard_device::device_start()
{
+ m_led.resolve();
// resolve callbacks
m_write_clock.resolve_safe();
m_write_data.resolve_safe();
@@ -369,8 +371,8 @@ WRITE8_MEMBER( tandy2k_keyboard_device::kb_p2_w )
m_keylatch = ((data & 0x0f) << 8) | (m_keylatch & 0xff);
// led output
- machine().output().set_led_value(LED_2, !BIT(data, 4));
- machine().output().set_led_value(LED_1, !BIT(data, 5));
+ m_led[LED_2] = BIT(~data, 4);
+ m_led[LED_1] = BIT(~data, 5);
// keyboard clock
int clock = BIT(data, 6);