summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/stv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/stv.h')
-rw-r--r--src/mame/includes/stv.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/stv.h b/src/mame/includes/stv.h
index 39d420939d4..1cdb78bef00 100644
--- a/src/mame/includes/stv.h
+++ b/src/mame/includes/stv.h
@@ -9,6 +9,7 @@
#include "audio/rax.h"
#include "machine/eepromser.h"
#include "machine/ticket.h"
+#include "machine/segabill.h"
class stv_state : public saturn_state
{
@@ -24,7 +25,8 @@ public:
m_eeprom(*this, "eeprom"),
m_cryptdevice(*this, "315_5881"),
m_5838crypt(*this, "315_5838"),
- m_hopper(*this, "hopper")
+ m_hopper(*this, "hopper"),
+ m_billboard(*this, "billboard")
{
}
@@ -153,6 +155,7 @@ private:
optional_device<sega_315_5881_crypt_device> m_cryptdevice;
optional_device<sega_315_5838_comp_device> m_5838crypt;
optional_device<ticket_dispenser_device> m_hopper;
+ required_device<sega_billboard_device> m_billboard;
uint16_t crypt_read_callback(uint32_t addr);
DECLARE_READ8_MEMBER(pdr1_input_r);