summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/hardbox.cpp
diff options
context:
space:
mode:
author wilbertpol <wilbertpol@users.noreply.github.com>2018-05-26 21:45:32 +0200
committer Vas Crabb <cuavas@users.noreply.github.com>2018-05-27 05:45:32 +1000
commit5291d140218339dff4fa471b1f8f1cfab3eb3fa1 (patch)
tree76f2dd83bacede1d04ecfcd12135d7ad7245479f /src/devices/bus/ieee488/hardbox.cpp
parentc6e63ee748b64eb971e7091ea19848cc55f4d8b5 (diff)
use plural names for output finders when there are multiple outputs (#3595)
* use plural names for output finders when there are multiple outputs (nw) * use plural names for output finders when there are multiple outputs (nw) * use plural names for output finders when there are multiple outputs (nw)
Diffstat (limited to 'src/devices/bus/ieee488/hardbox.cpp')
-rw-r--r--src/devices/bus/ieee488/hardbox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/ieee488/hardbox.cpp b/src/devices/bus/ieee488/hardbox.cpp
index f8fabf6a967..f1f6af7bbc4 100644
--- a/src/devices/bus/ieee488/hardbox.cpp
+++ b/src/devices/bus/ieee488/hardbox.cpp
@@ -257,9 +257,9 @@ WRITE8_MEMBER( hardbox_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);
}
@@ -344,7 +344,7 @@ hardbox_device::hardbox_device(const machine_config &mconfig, const char *tag, d
, device_ieee488_interface(mconfig, *this)
, m_maincpu(*this, Z80_TAG)
, m_hdc(*this, CORVUS_HDC_TAG)
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
, m_ifc(0)
{
}
@@ -356,7 +356,7 @@ hardbox_device::hardbox_device(const machine_config &mconfig, const char *tag, d
void hardbox_device::device_start()
{
- m_led.resolve();
+ m_leds.resolve();
}