summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/eolith.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/eolith.h')
-rw-r--r--src/mame/includes/eolith.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/eolith.h b/src/mame/includes/eolith.h
index 616a5da4f4d..74161a7f567 100644
--- a/src/mame/includes/eolith.h
+++ b/src/mame/includes/eolith.h
@@ -20,6 +20,7 @@ public:
, m_in0(*this, "IN0")
, m_penxport(*this, "PEN_X_P%u", 1)
, m_penyport(*this, "PEN_Y_P%u", 1)
+ , m_led(*this, "led0")
, m_sndbank(*this, "sound_bank")
{
}
@@ -60,6 +61,7 @@ public:
void sound_io_map(address_map &map);
void sound_prg_map(address_map &map);
protected:
+ virtual void machine_start() override;
// shared with eolith16.cpp, vegaeo.cpp
optional_ioport m_eepromoutport;
@@ -77,6 +79,7 @@ private:
optional_ioport m_in0; // klondkp doesn't have it
optional_ioport_array<2> m_penxport;
optional_ioport_array<2> m_penyport;
+ output_finder<> m_led;
optional_memory_bank m_sndbank;