From 09e068aaad8d0d6cd9a79fb534a9b403091a59cb Mon Sep 17 00:00:00 2001 From: cam900 Date: Tue, 18 Feb 2020 07:23:57 +0900 Subject: 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 --- src/mame/includes/boogwing.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/mame/includes/boogwing.h') 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 m_audiocpu; required_device m_deco104; required_device m_deco_ace; + required_device m_screen; required_device_array m_deco_tilegen; required_device_array m_oki; required_device_array m_sprgen; @@ -45,9 +48,11 @@ public: required_shared_ptr 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; -- cgit v1.2.3