summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/lockon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/lockon.h')
-rw-r--r--src/mame/includes/lockon.h43
1 files changed, 23 insertions, 20 deletions
diff --git a/src/mame/includes/lockon.h b/src/mame/includes/lockon.h
index a016410984e..f99585fa116 100644
--- a/src/mame/includes/lockon.h
+++ b/src/mame/includes/lockon.h
@@ -25,26 +25,28 @@ class lockon_state : public driver_device
{
public:
lockon_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_char_ram(*this, "char_ram"),
- m_hud_ram(*this, "hud_ram"),
- m_scene_ram(*this, "scene_ram"),
- m_ground_ram(*this, "ground_ram"),
- m_object_ram(*this, "object_ram"),
- m_maincpu(*this, "maincpu"),
- m_audiocpu(*this, "audiocpu"),
- m_ground(*this, "ground"),
- m_object(*this, "object"),
- m_watchdog(*this, "watchdog"),
- m_f2203_1l(*this, "f2203.1l"),
- m_f2203_2l(*this, "f2203.2l"),
- m_f2203_3l(*this, "f2203.3l"),
- m_f2203_1r(*this, "f2203.1r"),
- m_f2203_2r(*this, "f2203.2r"),
- m_f2203_3r(*this, "f2203.3r"),
- m_gfxdecode(*this, "gfxdecode"),
- m_screen(*this, "screen"),
- m_palette(*this, "palette") { }
+ : driver_device(mconfig, type, tag)
+ , m_char_ram(*this, "char_ram")
+ , m_hud_ram(*this, "hud_ram")
+ , m_scene_ram(*this, "scene_ram")
+ , m_ground_ram(*this, "ground_ram")
+ , m_object_ram(*this, "object_ram")
+ , m_maincpu(*this, "maincpu")
+ , m_audiocpu(*this, "audiocpu")
+ , m_ground(*this, "ground")
+ , m_object(*this, "object")
+ , m_watchdog(*this, "watchdog")
+ , m_f2203_1l(*this, "f2203.1l")
+ , m_f2203_2l(*this, "f2203.2l")
+ , m_f2203_3l(*this, "f2203.3l")
+ , m_f2203_1r(*this, "f2203.1r")
+ , m_f2203_2r(*this, "f2203.2r")
+ , m_f2203_3r(*this, "f2203.3r")
+ , m_gfxdecode(*this, "gfxdecode")
+ , m_screen(*this, "screen")
+ , m_palette(*this, "palette")
+ , m_lamp(*this, "lamp%u", 0U)
+ { }
void lockon(machine_config &config);
@@ -106,6 +108,7 @@ private:
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
+ output_finder<2> m_lamp;
DECLARE_READ16_MEMBER(lockon_crtc_r);
DECLARE_WRITE16_MEMBER(lockon_crtc_w);