summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/aeroboto.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/aeroboto.h')
-rw-r--r--src/mame/includes/aeroboto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/aeroboto.h b/src/mame/includes/aeroboto.h
index c70131dcf77..edbe2087dd4 100644
--- a/src/mame/includes/aeroboto.h
+++ b/src/mame/includes/aeroboto.h
@@ -21,6 +21,7 @@ public:
m_stary(*this, "stary"),
m_bgcolor(*this, "bgcolor"),
m_maincpu(*this, "maincpu"),
+ m_audiocpu(*this, "audiocpu"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
@@ -64,9 +65,10 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_aeroboto(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- INTERRUPT_GEN_MEMBER(aeroboto_interrupt);
+ DECLARE_WRITE_LINE_MEMBER(vblank_irq);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
+ required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
void formatz(machine_config &config);