summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/boogwing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/boogwing.h')
-rw-r--r--src/mame/includes/boogwing.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/includes/boogwing.h b/src/mame/includes/boogwing.h
index e0c8f0a09a1..befca5714c8 100644
--- a/src/mame/includes/boogwing.h
+++ b/src/mame/includes/boogwing.h
@@ -13,6 +13,7 @@
#include "video/bufsprite.h"
#include "video/decospr.h"
#include "machine/deco104.h"
+#include "screen.h"
class boogwing_state : public driver_device
{
@@ -23,6 +24,7 @@ public:
, m_audiocpu(*this, "audiocpu")
, m_deco104(*this, "ioprot")
, m_deco_ace(*this, "deco_ace")
+ , m_screen(*this, "screen")
, m_deco_tilegen(*this, "tilegen%u", 1)
, m_oki(*this, "oki%u", 1)
, m_sprgen(*this, "spritegen%u", 1)
@@ -36,6 +38,7 @@ public:
required_device<h6280_device> m_audiocpu;
required_device<deco104_device> m_deco104;
required_device<deco_ace_device> m_deco_ace;
+ required_device<screen_device> m_screen;
required_device_array<deco16ic_device, 2> m_deco_tilegen;
required_device_array<okim6295_device, 2> m_oki;
required_device_array<decospr_device, 2> m_sprgen;
@@ -45,9 +48,11 @@ public:
required_shared_ptr<uint16_t> m_decrypted_opcodes;
uint16_t m_priority;
+ bitmap_ind16 m_alpha_tmap_bitmap;
DECLARE_WRITE8_MEMBER(sound_bankswitch_w);
DECLARE_WRITE16_MEMBER(priority_w);
+ DECLARE_WRITE16_MEMBER(boogwing_ace_w);
void init_boogwing();
virtual void machine_reset() override;
virtual void video_start() override;