summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mappy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mappy.h')
-rw-r--r--src/mame/includes/mappy.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/mappy.h b/src/mame/includes/mappy.h
index e68f760c709..77a21d5dc15 100644
--- a/src/mame/includes/mappy.h
+++ b/src/mame/includes/mappy.h
@@ -25,7 +25,9 @@ public:
m_dac(*this, "dac"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
- m_palette(*this, "palette") { }
+ m_palette(*this, "palette"),
+ m_leds(*this, "led%u", 0U)
+ { }
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_spriteram;
@@ -39,6 +41,7 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
+ output_finder<2> m_leds;
tilemap_t *m_bg_tilemap;
bitmap_ind16 m_sprite_bitmap;