summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/goldstar.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2015-03-22 03:24:00 +1100
committer Vas Crabb <vas@vastheman.com>2015-03-22 03:24:45 +1100
commit5b7e18898038e0d22918cafe7349cfe071775e2b (patch)
tree007b22d1f833fa541a8dea5ef9a0926b0796e545 /src/mame/includes/goldstar.h
parent8b6fea68c21ff2c31f60974c0028a97c7f1fe47b (diff)
Hook up ticket dispenser in unkch sets, add notes, figure out a couple more DIPs
Diffstat (limited to 'src/mame/includes/goldstar.h')
-rw-r--r--src/mame/includes/goldstar.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mame/includes/goldstar.h b/src/mame/includes/goldstar.h
index 929b41aaef0..db8edbbb34e 100644
--- a/src/mame/includes/goldstar.h
+++ b/src/mame/includes/goldstar.h
@@ -1,3 +1,8 @@
+#include "emu.h"
+
+#include "machine/ticket.h"
+
+
class goldstar_state : public driver_device
{
public:
@@ -250,7 +255,8 @@ public:
goldstar_state(mconfig, type, tag),
m_reel1_attrram(*this, "reel1_attrram"),
m_reel2_attrram(*this, "reel2_attrram"),
- m_reel3_attrram(*this, "reel3_attrram")
+ m_reel3_attrram(*this, "reel3_attrram"),
+ m_ticket_dispenser(*this, "tickets")
{
}
@@ -283,4 +289,6 @@ private:
UINT8 m_vblank_irq_enable;
UINT8 m_vidreg;
+
+ optional_device<ticket_dispenser_device> m_ticket_dispenser;
};