summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/goldstar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/goldstar.h')
-rw-r--r--src/mame/includes/goldstar.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/goldstar.h b/src/mame/includes/goldstar.h
index 36c2ccf1240..b2aa268f5e2 100644
--- a/src/mame/includes/goldstar.h
+++ b/src/mame/includes/goldstar.h
@@ -2,6 +2,7 @@
// copyright-holders:David Haywood, Roberto Fresca, Vas Crabb
#include "machine/ds2401.h"
+#include "machine/i8255.h"
#include "machine/ticket.h"
#include "emupal.h"
@@ -22,6 +23,7 @@ public:
m_reel2_scroll(*this, "reel2_scroll"),
m_reel3_scroll(*this, "reel3_scroll"),
m_maincpu(*this, "maincpu"),
+ m_ppi(*this, "ppi8255_%u", 0U),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
m_lamps(*this, "lamp%u", 0U)
@@ -120,6 +122,7 @@ protected:
uint8_t m_cm_girl_scroll;
required_device<cpu_device> m_maincpu;
+ optional_device_array<i8255_device, 3> m_ppi;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
output_finder<16> m_lamps;