toaplan/toaplan2.cpp: fix video filename ref (#12542)

This commit is contained in:
cam900 2024-07-03 21:33:55 +09:00 committed by GitHub
parent 65d7c09761
commit 31f3bfeade
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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));