Skip to content

Commit

Permalink
toaplan/toaplan2.cpp: fix video filename ref (#12542)
Browse files Browse the repository at this point in the history
  • Loading branch information
cam900 authored Jul 3, 2024
1 parent 65d7c09 commit 31f3bfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mame/toaplan/toaplan2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ Sound Chips:
Graphics Custom 208pin QFP:
GP9001 L7A0498 TOA PLAN
(emulated in video/gp9001.c)
(emulated in toaplan/gp9001.cpp)
*********************************************************************
Expand Down Expand Up @@ -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));
Expand Down

0 comments on commit 31f3bfe

Please sign in to comment.