summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2010-07-05 13:34:20 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2010-07-05 13:34:20 +0000
commitc2e8493cc1fbfe9d1c407575e0082facc2f23204 (patch)
tree54016b86b9df8d044a83545f3c58ff986d33273c
parent4f3100924b90fc7e42219c4cfb306d728859273b (diff)
minor naming cleanup
-rw-r--r--src/mame/drivers/fastfred.c18
-rw-r--r--src/mame/mamedriv.c2
2 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/drivers/fastfred.c b/src/mame/drivers/fastfred.c
index 3e1ab969e36..a8ab61dd837 100644
--- a/src/mame/drivers/fastfred.c
+++ b/src/mame/drivers/fastfred.c
@@ -110,7 +110,7 @@ static READ8_HANDLER( jumpcoas_custom_io_r )
return 0x00;
}
-static READ8_HANDLER( boggy83_custom_io_r )
+static READ8_HANDLER( boggy84_custom_io_r )
{
if (offset == 0x100) return 0x6a;
@@ -849,7 +849,7 @@ ROM_START( boggy84 )
ROM_LOAD( "b.e12", 0x0200, 0x0100, CRC(52b7f445) SHA1(6395ac705a35e602a355cbf700025ff917e89b37) )
ROM_END
-ROM_START( boggy84bl )
+ROM_START( boggy84b )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "cpurom1.bin", 0x0000, 0x2000, CRC(665266c0) SHA1(7785a7d710948718236f9be4b3e2a3fdc00662a5) )
ROM_LOAD( "cpurom2.bin", 0x2000, 0x2000, CRC(6c096798) SHA1(74ea860ef10cb566bcb07d67e6c79f542a66de91) )
@@ -1002,16 +1002,16 @@ static DRIVER_INIT( jumpcoas )
fastfred_hardware_type = 0;
}
-static DRIVER_INIT( boggy84 )
+static DRIVER_INIT( boggy84b )
{
memory_install_read8_handler(cputag_get_address_space(machine, "maincpu", ADDRESS_SPACE_PROGRAM), 0xc800, 0xcfff, 0, 0, jumpcoas_custom_io_r);
memory_nop_write(cputag_get_address_space(machine, "maincpu", ADDRESS_SPACE_PROGRAM), 0xc800, 0xcfff, 0, 0);
fastfred_hardware_type = 2;
}
-static DRIVER_INIT( boggy83 )
+static DRIVER_INIT( boggy84 )
{
- memory_install_read8_handler(cputag_get_address_space(machine, "maincpu", ADDRESS_SPACE_PROGRAM), 0xc800, 0xcfff, 0, 0, boggy83_custom_io_r);
+ memory_install_read8_handler(cputag_get_address_space(machine, "maincpu", ADDRESS_SPACE_PROGRAM), 0xc800, 0xcfff, 0, 0, boggy84_custom_io_r);
memory_nop_write(cputag_get_address_space(machine, "maincpu", ADDRESS_SPACE_PROGRAM), 0xc800, 0xcfff, 0, 0);
fastfred_hardware_type = 2;
}
@@ -1027,8 +1027,8 @@ GAME( 1982, flyboyb, flyboy, fastfred, flyboy, flyboyb, ROT90, "bootleg",
GAME( 1982, fastfred, flyboy, fastfred, fastfred, fastfred, ROT90, "Kaneko (Atari license)", "Fast Freddie", 0 )
GAME( 1983, jumpcoas, 0, jumpcoas, jumpcoas, jumpcoas, ROT90, "Kaneko", "Jump Coaster", 0 )
GAME( 1983, jumpcoast,jumpcoas, jumpcoas, jumpcoas, jumpcoas, ROT90, "Kaneko (Taito license)", "Jump Coaster (Taito)", 0 )
-GAME( 1983, boggy84, 0, jumpcoas, boggy84, boggy83, ROT90, "Kaneko", "Boggy '84 (Kaneko)", 0 )
-GAME( 1983, boggy84bl,boggy84, jumpcoas, boggy84, boggy84, ROT90, "bootleg", "Boggy '84 (bootleg)", 0 ) // bootleg of Kaneko/Taito Boggy '83
+GAME( 1983, boggy84, 0, jumpcoas, boggy84, boggy84, ROT90, "Kaneko", "Boggy '84", 0 )
+GAME( 1983, boggy84b, boggy84, jumpcoas, boggy84, boggy84b, ROT90, "bootleg (Eddie's Games)", "Boggy '84 (bootleg)", 0 )
GAME( 1986, redrobin, 0, fastfred, redrobin, flyboyb, ROT90, "Elettronolo", "Red Robin", 0 )
-GAME( 1984, imago, 0, imago, imago, imago, ROT90, "Acom", "Imago (cocktail set)", 0 )
-GAME( 1983, imagoa, imago, imago, imagoa, imago, ROT90, "Acom", "Imago (no cocktail set)", 0 )
+GAME( 1984, imago, 0, imago, imago, imago, ROT90, "Acom", "Imago (cocktail set)", 0 )
+GAME( 1983, imagoa, imago, imago, imagoa, imago, ROT90, "Acom", "Imago (no cocktail set)", 0 )
diff --git a/src/mame/mamedriv.c b/src/mame/mamedriv.c
index 7c82490d209..3de6dd1855a 100644
--- a/src/mame/mamedriv.c
+++ b/src/mame/mamedriv.c
@@ -341,7 +341,7 @@ const game_driver * const drivers[] =
DRIVER( jumpcoas ) /* (c) 1983 Kaneko */
DRIVER( jumpcoast ) /* (c) 1983 Taito */
DRIVER( boggy84 ) /* (c) 1984 Kaneko */
- DRIVER( boggy84bl ) /* bootleg */
+ DRIVER( boggy84b ) /* bootleg */
DRIVER( redrobin ) /* (c) 1986 Elettronolo */
DRIVER( imago ) /* (c) 1984 Acom */
DRIVER( imagoa ) /* (c) 1983 Acom */