summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2012-09-07 02:40:37 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2012-09-07 02:40:37 +0000
commitc94dcff90943527fc89650513c27a580c2dd712b (patch)
tree144e6ecadd89abf6bfb32975cfe9dfa1392a845d /src/mess
parent102b5cca8c9e171d74fa9cb42ac7cc5a3a46daf7 (diff)
New games marked as GAME_NOT_WORKING
------------------------------------ Magicball Fighting (Korea) [Guru] [MESS] Fixed regression in Pico and clones which came about when cart sizes for MegaDrive games was adjusted, leaving Pico unchanged (and incorrect). From Haze. (nw)
Diffstat (limited to 'src/mess')
-rw-r--r--src/mess/drivers/megadriv.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mess/drivers/megadriv.c b/src/mess/drivers/megadriv.c
index 414a50550df..fdd53f9e7b6 100644
--- a/src/mess/drivers/megadriv.c
+++ b/src/mess/drivers/megadriv.c
@@ -372,33 +372,33 @@ MACHINE_CONFIG_END
/* we don't use the bios rom (it's not needed and only provides security on early models) */
ROM_START(genesis)
- ROM_REGION(0x1500000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START(megadriv)
- ROM_REGION(0x1500000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START(megadrij)
- ROM_REGION(0x1500000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START(gensvp)
- ROM_REGION(0x1500000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START(mdsvp)
- ROM_REGION(0x1500000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START(mdsvpj)
- ROM_REGION(0x1500000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
@@ -837,17 +837,17 @@ MACHINE_CONFIG_END
ROM_START( pico )
- ROM_REGION(0x1415000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START( picou )
- ROM_REGION(0x1415000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END
ROM_START( picoj )
- ROM_REGION(0x1415000, "maincpu", ROMREGION_ERASEFF)
+ ROM_REGION(MD_CPU_REGION_SIZE, "maincpu", ROMREGION_ERASEFF)
ROM_REGION( 0x10000, "soundcpu", ROMREGION_ERASEFF)
ROM_END