summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/hardbox.h
diff options
context:
space:
mode:
author wilbertpol <wilbertpol@users.noreply.github.com>2018-05-20 19:27:20 +0200
committer R. Belmont <rb6502@users.noreply.github.com>2018-05-20 13:27:20 -0400
commit2beba4ce73fad917c7159a39939bace54f76494b (patch)
treee9d33c059bc5045f13d0c1748f0a044650370b8d /src/devices/bus/ieee488/hardbox.h
parentacf93837ac21b2b0bb003d1649b893200c269812 (diff)
Replace set_led_value and set_lamp_value with output_finders. [Wilbe… (#3592)
* Replace set_led_value and set_lamp_value with output_finders. [Wilbert Pol] * segaufo: keep the 2 bit lamp outputs
Diffstat (limited to 'src/devices/bus/ieee488/hardbox.h')
-rw-r--r--src/devices/bus/ieee488/hardbox.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/ieee488/hardbox.h b/src/devices/bus/ieee488/hardbox.h
index 80b1fc0df07..79d3acacb7b 100644
--- a/src/devices/bus/ieee488/hardbox.h
+++ b/src/devices/bus/ieee488/hardbox.h
@@ -61,13 +61,14 @@ private:
enum
{
- LED_A,
+ LED_A = 0,
LED_B,
LED_READY
};
required_device<cpu_device> m_maincpu;
required_device<corvus_hdc_device> m_hdc;
+ output_finder<3> m_led;
int m_ifc; // Tracks previous state of IEEE-488 IFC line
};