summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/jpmimpct.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/jpmimpct.h')
-rw-r--r--src/mame/includes/jpmimpct.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/jpmimpct.h b/src/mame/includes/jpmimpct.h
index 3fc55f7dc44..6bde694bd20 100644
--- a/src/mame/includes/jpmimpct.h
+++ b/src/mame/includes/jpmimpct.h
@@ -76,7 +76,8 @@ public:
, m_reel5(*this, "reel5")
, m_meters(*this, "meters")
, m_digits(*this, "digit%u", 0U)
- { }
+ , m_lamp_output(*this, "lamp%u", 0U)
+ { }
DECLARE_WRITE_LINE_MEMBER(reel0_optic_cb) { if (state) m_optic_pattern |= 0x01; else m_optic_pattern &= ~0x01; }
DECLARE_WRITE_LINE_MEMBER(reel1_optic_cb) { if (state) m_optic_pattern |= 0x02; else m_optic_pattern &= ~0x02; }
@@ -156,4 +157,5 @@ private:
optional_device<stepper_device> m_reel5;
required_device<meters_device> m_meters;
output_finder<300> m_digits;
+ output_finder<256> m_lamp_output;
};