From 17ea013817b15da3f0e305c99fa68fc0e989419a Mon Sep 17 00:00:00 2001 From: cam900 Date: Wed, 3 Jul 2024 21:21:48 +0900 Subject: [PATCH] toaplan/toaplan2.cpp: Fix filename --- src/mame/toaplan/toaplan2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/toaplan/toaplan2.cpp b/src/mame/toaplan/toaplan2.cpp index 37481ca647d4e..a1402106625b3 100644 --- a/src/mame/toaplan/toaplan2.cpp +++ b/src/mame/toaplan/toaplan2.cpp @@ -333,7 +333,7 @@ Sound Chips: Graphics Custom 208pin QFP: GP9001 L7A0498 TOA PLAN - (emulated in video/gp9001.c) + (emulated in toaplan/gp9001.cpp) ********************************************************************* @@ -1081,10 +1081,10 @@ void toaplan2_state::batsugunbl_68k_mem(address_map &map) map(0x200010, 0x200011).portr("IN1"); map(0x200014, 0x200015).portr("IN2"); map(0x200018, 0x200019).portr("SYS"); + map(0x20001c, 0x20001d).nopw(); // leftover code from the original? map(0x21f004, 0x21f005).portr("DSWA"); map(0x21f006, 0x21f007).portr("DSWB"); map(0x21f008, 0x21f009).portr("JMPR"); - map(0x20001c, 0x20001d).nopw(); // leftover code from the original? map(0x300000, 0x30000d).rw(m_vdp[0], FUNC(gp9001vdp_device::read), FUNC(gp9001vdp_device::write)); map(0x400000, 0x400fff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette"); map(0x500000, 0x50000d).rw(m_vdp[1], FUNC(gp9001vdp_device::read), FUNC(gp9001vdp_device::write));