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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/tandy2kb.cpp b/src/mame/machine/tandy2kb.cpp
index 9c11fbeb046..de753eefef5 100644
--- a/src/mame/machine/tandy2kb.cpp
+++ b/src/mame/machine/tandy2kb.cpp
@@ -210,7 +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_leds(*this, "led%u", 0U),
m_write_clock(*this),
m_write_data(*this),
m_keylatch(0xffff),
@@ -226,7 +226,7 @@ tandy2k_keyboard_device::tandy2k_keyboard_device(const machine_config &mconfig,
void tandy2k_keyboard_device::device_start()
{
- m_led.resolve();
+ m_leds.resolve();
// resolve callbacks
m_write_clock.resolve_safe();
m_write_data.resolve_safe();
@@ -371,8 +371,8 @@ WRITE8_MEMBER( tandy2k_keyboard_device::kb_p2_w )
m_keylatch = ((data & 0x0f) << 8) | (m_keylatch & 0xff);
// led output
- m_led[LED_2] = BIT(~data, 4);
- m_led[LED_1] = BIT(~data, 5);
+ m_leds[LED_2] = BIT(~data, 4);
+ m_leds[LED_1] = BIT(~data, 5);
// keyboard clock
int clock = BIT(data, 6);