summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/itech32.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/itech32.h')
-rw-r--r--src/mame/includes/itech32.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/itech32.h b/src/mame/includes/itech32.h
index 7256954e37f..0e86083fc20 100644
--- a/src/mame/includes/itech32.h
+++ b/src/mame/includes/itech32.h
@@ -8,6 +8,7 @@
**************************************************************************/
#include "machine/nvram.h"
+#include "machine/ticket.h"
#include "screen.h"
#define VIDEO_CLOCK XTAL_8MHz /* video (pixel) clock */
@@ -28,6 +29,7 @@ public:
m_dsp2(*this, "dsp2"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
+ m_ticket(*this, "ticket"),
m_main_ram(*this, "main_ram", 0),
m_nvram(*this, "nvram", 0),
m_video(*this, "video", 0),
@@ -44,6 +46,7 @@ public:
optional_device<cpu_device> m_dsp2;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
+ required_device<ticket_dispenser_device> m_ticket;
optional_shared_ptr<uint16_t> m_main_ram;
optional_shared_ptr<uint16_t> m_nvram;