From 77ce4fb342c1baf9dc38d4968555a8dd6680ba04 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 6 Dec 2019 23:03:21 -0500 Subject: [PATCH] Don't forget include file changes, either (nw) --- src/mame/includes/shangha3.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mame/includes/shangha3.h b/src/mame/includes/shangha3.h index 10df501f759..b18852a5cf0 100644 --- a/src/mame/includes/shangha3.h +++ b/src/mame/includes/shangha3.h @@ -23,6 +23,7 @@ public: m_palette(*this, "palette"), m_soundlatch(*this, "soundlatch"), m_ram(*this, "ram"), + m_cgrom(*this, "gfx1"), m_okibank(*this, "okibank") { } @@ -47,6 +48,7 @@ private: optional_device m_soundlatch; required_shared_ptr m_ram; + required_region_ptr m_cgrom; optional_memory_bank m_okibank; @@ -63,6 +65,7 @@ private: DECLARE_WRITE16_MEMBER(gfxlist_addr_w); DECLARE_WRITE16_MEMBER(blitter_go_w); DECLARE_WRITE16_MEMBER(irq_ack_w); + uint8_t cgrom_r(offs_t offset); // shangha3 specific DECLARE_READ16_MEMBER(shangha3_prot_r);