summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/nitedrvr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/nitedrvr.h')
-rw-r--r--src/mame/includes/nitedrvr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/nitedrvr.h b/src/mame/includes/nitedrvr.h
index e4151e6dc94..6b6a7112fc7 100644
--- a/src/mame/includes/nitedrvr.h
+++ b/src/mame/includes/nitedrvr.h
@@ -32,7 +32,8 @@ public:
m_maincpu(*this, "maincpu"),
m_discrete(*this, "discrete"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette")
+ m_palette(*this, "palette"),
+ m_led(*this, "led")
{ }
void nitedrvr(machine_config &config);
@@ -80,6 +81,7 @@ private:
required_device<discrete_device> m_discrete;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
+ output_finder<> m_led;
};
/*----------- defined in audio/nitedrvr.c -----------*/