summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/jazz.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/jazz.h')
-rw-r--r--src/mame/includes/jazz.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/includes/jazz.h b/src/mame/includes/jazz.h
index 793b7410ee1..449035a4293 100644
--- a/src/mame/includes/jazz.h
+++ b/src/mame/includes/jazz.h
@@ -66,6 +66,7 @@ public:
, m_lpt(*this, "lpt")
, m_isp(*this, "isp")
, m_buzzer(*this, "buzzer")
+ , m_led(*this, "led0")
{
}
@@ -80,6 +81,8 @@ protected:
// machine config
void jazz(machine_config &config);
+ void led_w(u8 data);
+
public:
void mmr4000be(machine_config &config);
void mmr4000le(machine_config &config);
@@ -109,9 +112,7 @@ protected:
required_device<i82357_device> m_isp;
required_device<speaker_sound_device> m_buzzer;
-private:
- // machine state
- u8 m_led;
+ output_finder<> m_led;
};
#endif // MAME_INCLUDES_JAZZ_H