summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/videopin.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/mame/includes/videopin.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/mame/includes/videopin.h')
-rw-r--r--src/mame/includes/videopin.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/videopin.h b/src/mame/includes/videopin.h
index 31049b7fa07..adf911badd6 100644
--- a/src/mame/includes/videopin.h
+++ b/src/mame/includes/videopin.h
@@ -37,7 +37,8 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
- m_video_ram(*this, "video_ram")
+ m_video_ram(*this, "video_ram"),
+ m_led(*this, "led0")
{ }
void videopin(machine_config &config);
@@ -74,6 +75,7 @@ private:
required_device<palette_device> m_palette;
required_shared_ptr<uint8_t> m_video_ram;
+ output_finder<> m_led;
attotime m_time_pushed;
attotime m_time_released;