summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/speedbal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/speedbal.h')
-rw-r--r--src/mame/includes/speedbal.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/mame/includes/speedbal.h b/src/mame/includes/speedbal.h
index a330a640189..40d47c88d44 100644
--- a/src/mame/includes/speedbal.h
+++ b/src/mame/includes/speedbal.h
@@ -4,13 +4,14 @@ class speedbal_state : public driver_device
{
public:
speedbal_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette"),
- m_spriteram(*this, "spriteram"),
- m_background_videoram(*this, "bg_videoram"),
- m_foreground_videoram(*this, "fg_videoram")
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ , m_gfxdecode(*this, "gfxdecode")
+ , m_palette(*this, "palette")
+ , m_spriteram(*this, "spriteram")
+ , m_background_videoram(*this, "bg_videoram")
+ , m_foreground_videoram(*this, "fg_videoram")
+ , m_digits(*this, "digit%u", 0U)
{ }
required_device<cpu_device> m_maincpu;
@@ -20,6 +21,7 @@ public:
required_shared_ptr<uint8_t> m_spriteram;
required_shared_ptr<uint8_t> m_background_videoram;
required_shared_ptr<uint8_t> m_foreground_videoram;
+ output_finder<73> m_digits;
bool m_leds_start;
uint32_t m_leds_shiftreg;