diff options
Diffstat (limited to 'src/mame/includes/polyplay.h')
-rw-r--r-- | src/mame/includes/polyplay.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/polyplay.h b/src/mame/includes/polyplay.h index 3fbf90bcc59..bf9867934f6 100644 --- a/src/mame/includes/polyplay.h +++ b/src/mame/includes/polyplay.h @@ -42,6 +42,10 @@ public: DECLARE_INPUT_CHANGED_MEMBER(input_changed); +protected: + virtual void machine_start() override { m_lamps.resolve(); } + virtual void video_start() override; + private: INTERRUPT_GEN_MEMBER(nmi_handler); @@ -55,7 +59,6 @@ private: DECLARE_READ8_MEMBER(pio_portb_r); DECLARE_WRITE8_MEMBER(pio_portb_w); - DECLARE_WRITE8_MEMBER(polyplay_characterram_w); DECLARE_PALETTE_INIT(polyplay); uint32_t screen_update_polyplay(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); @@ -64,9 +67,6 @@ private: void polyplay_mem_zre(address_map &map); void polyplay_mem_zrepp(address_map &map); - virtual void machine_start() override { m_lamps.resolve(); } - virtual void video_start() override; - required_shared_ptr<uint8_t> m_videoram; required_shared_ptr<uint8_t> m_characterram; |