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.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/ieee488/softbox.cpp b/src/devices/bus/ieee488/softbox.cpp
index b6b3d67dd01..b38cf3ff874 100644
--- a/src/devices/bus/ieee488/softbox.cpp
+++ b/src/devices/bus/ieee488/softbox.cpp
@@ -215,9 +215,9 @@ WRITE8_MEMBER( softbox_device::ppi1_pc_w )
*/
- m_led[LED_A] = BIT(~data, 0);
- m_led[LED_B] = BIT(~data, 1);
- m_led[LED_READY] = BIT(~data, 2);
+ m_leds[LED_A] = BIT(~data, 0);
+ m_leds[LED_B] = BIT(~data, 1);
+ m_leds[LED_READY] = BIT(~data, 2);
}
static DEVICE_INPUT_DEFAULTS_START( terminal )
@@ -324,7 +324,7 @@ softbox_device::softbox_device(const machine_config &mconfig, const char *tag, d
, m_maincpu(*this, Z80_TAG)
, m_dbrg(*this, COM8116_TAG)
, m_hdc(*this, CORVUS_HDC_TAG)
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
, m_ifc(0)
{
}
@@ -336,7 +336,7 @@ softbox_device::softbox_device(const machine_config &mconfig, const char *tag, d
void softbox_device::device_start()
{
- m_led.resolve();
+ m_leds.resolve();
}