From 1ef36d6916d2adc460b514c5b8e87955d9afbd03 Mon Sep 17 00:00:00 2001 From: David Haywood Date: Thu, 3 Aug 2017 02:58:44 +0100 Subject: [PATCH] misc housekeeping / one-liners - removed am already dumped game from the undumped list in balsente.cpp - change copy+pasted comment in hangzo to better reflect that the tiles are not encrypted - fixed typo in ghox memory map --- src/mame/drivers/balsente.cpp | 1 - src/mame/drivers/rohga.cpp | 2 +- src/mame/drivers/toaplan2.cpp | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/balsente.cpp b/src/mame/drivers/balsente.cpp index 408d02dbf84..73264d3bfa1 100644 --- a/src/mame/drivers/balsente.cpp +++ b/src/mame/drivers/balsente.cpp @@ -35,7 +35,6 @@ Looking for ROMs for these: * Euro Stocker - * Team Hat Trick Known bugs: * CEM3394 emulation is not perfect diff --git a/src/mame/drivers/rohga.cpp b/src/mame/drivers/rohga.cpp index d631342e101..94c79876f0b 100644 --- a/src/mame/drivers/rohga.cpp +++ b/src/mame/drivers/rohga.cpp @@ -1852,7 +1852,7 @@ ROM_START( hangzo ) /* Found on a Data East DE-0353-3 PCB */ /* filled in later */ ROM_REGION( 0x100000, "gfx2", 0 ) - ROM_LOAD( "BK1L 12.10.9A.574200", 0x000000, 0x080000, CRC(5199729b) SHA1(1cb8e7b91e5d0b3a699e47b6bbb3e6e9c53c8590) ) /* Encrypted tiles */ + ROM_LOAD( "BK1L 12.10.9A.574200", 0x000000, 0x080000, CRC(5199729b) SHA1(1cb8e7b91e5d0b3a699e47b6bbb3e6e9c53c8590) ) /* tiles */ ROM_LOAD( "BK1H 12.10.11A.574200", 0x080000, 0x080000, CRC(85887bd8) SHA1(6cb6f9c9e6e5824c6b8006ab195f27014031907e) ) ROM_REGION( 0x200000, "gfx3", 0 ) diff --git a/src/mame/drivers/toaplan2.cpp b/src/mame/drivers/toaplan2.cpp index 42415e6a61d..a391e8f0181 100644 --- a/src/mame/drivers/toaplan2.cpp +++ b/src/mame/drivers/toaplan2.cpp @@ -1495,7 +1495,7 @@ static ADDRESS_MAP_START( ghox_hd647180_mem_map, AS_PROGRAM, 8, toaplan2_state ) AM_RANGE(0x0fe00, 0x0ffff) AM_RAM // Internal 512 byte RAM AM_RANGE(0x3fe00, 0x3ffff) AM_RAM // Relocated internal RAM (RMCR = 30) - AM_RANGE(0x40000, 0x4f7ff) AM_RAM AM_SHARE("shared_ram") + AM_RANGE(0x40000, 0x407ff) AM_RAM AM_SHARE("shared_ram") AM_RANGE(0x80002, 0x80002) AM_READ_PORT("DSWA") AM_RANGE(0x80004, 0x80004) AM_READ_PORT("DSWB")