summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2020-02-18 07:23:57 +0900
committer GitHub <noreply@github.com>2020-02-17 17:23:57 -0500
commit09e068aaad8d0d6cd9a79fb534a9b403091a59cb (patch)
tree067671581a5c26e8295f52c369a97ec4d0988bc9 /src/mame/includes
parent8b3a65302bcc896047d503b756160233c00fa36e (diff)
boogwing.cpp : Further blending implementation, Typo (#6316)
* boogwing.cpp : Further blending implementation, Typo * deco_ace.cpp : Add notes * deco32.cpp : ACE ram is not masked * deco_ace : Minor fix addressing * boogwing.cpp : Add reference * boogwing.cpp : Partially blended tilemap handling
Diffstat (limited to 'src/mame/includes')
-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;