summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/c8280.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/c8280.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/c8280.cpp')
-rw-r--r--src/devices/bus/ieee488/c8280.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/ieee488/c8280.cpp b/src/devices/bus/ieee488/c8280.cpp
index 734d506738e..57203fde779 100644
--- a/src/devices/bus/ieee488/c8280.cpp
+++ b/src/devices/bus/ieee488/c8280.cpp
@@ -269,13 +269,13 @@ WRITE8_MEMBER( c8280_device::riot1_pb_w )
*/
// activity led 1
- m_led[LED_ACT1] = BIT(data, 3);
+ m_leds[LED_ACT1] = BIT(data, 3);
// activity led 0
- m_led[LED_ACT0] = BIT(data, 4);
+ m_leds[LED_ACT0] = BIT(data, 4);
// error led
- m_led[LED_ERR] = BIT(data, 5);
+ m_leds[LED_ERR] = BIT(data, 5);
}
static void c8280_floppies(device_slot_interface &device)
@@ -387,7 +387,7 @@ c8280_device::c8280_device(const machine_config &mconfig, const char *tag, devic
m_floppy1(*this, WD1797_TAG ":1"),
m_address(*this, "ADDRESS"),
m_floppy(nullptr),
- m_led(*this, "led%u", 0U),
+ m_leds(*this, "led%u", 0U),
m_rfdo(1),
m_daco(1),
m_atna(1), m_ifc(0), m_fk5(0)
@@ -401,7 +401,7 @@ c8280_device::c8280_device(const machine_config &mconfig, const char *tag, devic
void c8280_device::device_start()
{
- m_led.resolve();
+ m_leds.resolve();
// state saving
save_item(NAME(m_rfdo));