diff options
Diffstat (limited to 'src/mame/includes/polyplay.h')
-rw-r--r-- | src/mame/includes/polyplay.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mame/includes/polyplay.h b/src/mame/includes/polyplay.h index 93852b1c409..4f66519b51d 100644 --- a/src/mame/includes/polyplay.h +++ b/src/mame/includes/polyplay.h @@ -7,7 +7,7 @@ #include "machine/z80sio.h" #include "sound/speaker.h" -#define POLYPLAY_MAIN_CLOCK XTAL_9_8304MHz +#define POLYPLAY_MAIN_CLOCK XTAL_9_8304MHz #define Z80CPU_TAG "maincpu" #define Z80CTC_TAG "z80ctc" @@ -42,6 +42,8 @@ public: required_device<gfxdecode_device> m_gfxdecode; required_device<palette_device> m_palette; + INTERRUPT_GEN_MEMBER(nmi_handler); + /* devices */ DECLARE_WRITE_LINE_MEMBER(ctc_zc0_w); DECLARE_WRITE_LINE_MEMBER(ctc_zc1_w); @@ -59,10 +61,10 @@ public: uint8_t m_flipflop2; required_device<speaker_sound_device> m_speaker1; required_device<speaker_sound_device> m_speaker2; - + /* video */ virtual void video_start() override; - DECLARE_WRITE8_MEMBER(polyplay_characterram_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); }; |