summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pacland.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pacland.h')
-rw-r--r--src/mame/includes/pacland.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/pacland.h b/src/mame/includes/pacland.h
index 05ce1b8da59..764936a5bbf 100644
--- a/src/mame/includes/pacland.h
+++ b/src/mame/includes/pacland.h
@@ -17,7 +17,9 @@ public:
m_palette(*this, "palette"),
m_videoram(*this, "videoram"),
m_videoram2(*this, "videoram2"),
- m_spriteram(*this, "spriteram") { }
+ m_spriteram(*this, "spriteram"),
+ m_leds(*this, "led%u", 0U)
+ { }
required_device<cpu_device> m_maincpu;
required_device<hd63701_cpu_device> m_mcu;
@@ -30,6 +32,8 @@ public:
required_shared_ptr<uint8_t> m_videoram2;
required_shared_ptr<uint8_t> m_spriteram;
+ output_finder<2> m_leds;
+
uint8_t m_palette_bank;
const uint8_t *m_color_prom;
tilemap_t *m_bg_tilemap;