Skip to content

Commit 31f3bfe

Browse files
authored
toaplan/toaplan2.cpp: fix video filename ref (#12542)
1 parent 65d7c09 commit 31f3bfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mame/toaplan/toaplan2.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ Sound Chips:
333333
334334
Graphics Custom 208pin QFP:
335335
GP9001 L7A0498 TOA PLAN
336-
(emulated in video/gp9001.c)
336+
(emulated in toaplan/gp9001.cpp)
337337
338338
*********************************************************************
339339
@@ -1081,10 +1081,10 @@ void toaplan2_state::batsugunbl_68k_mem(address_map &map)
10811081
map(0x200010, 0x200011).portr("IN1");
10821082
map(0x200014, 0x200015).portr("IN2");
10831083
map(0x200018, 0x200019).portr("SYS");
1084+
map(0x20001c, 0x20001d).nopw(); // leftover code from the original?
10841085
map(0x21f004, 0x21f005).portr("DSWA");
10851086
map(0x21f006, 0x21f007).portr("DSWB");
10861087
map(0x21f008, 0x21f009).portr("JMPR");
1087-
map(0x20001c, 0x20001d).nopw(); // leftover code from the original?
10881088
map(0x300000, 0x30000d).rw(m_vdp[0], FUNC(gp9001vdp_device::read), FUNC(gp9001vdp_device::write));
10891089
map(0x400000, 0x400fff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette");
10901090
map(0x500000, 0x50000d).rw(m_vdp[1], FUNC(gp9001vdp_device::read), FUNC(gp9001vdp_device::write));

0 commit comments

Comments
 (0)