diff options
author | 2022-06-13 00:31:25 +0200 | |
---|---|---|
committer | 2022-06-12 18:31:25 -0400 | |
commit | c93d24fb23e977e5ff345d2c71722bd395ddf8ca (patch) | |
tree | 474412542df0dc7525d4fd2eb9974332cfc3df51 | |
parent | 2f0ced261a1269f48f8323151b2431a421de8308 (diff) |
Dumped and added a new set of 'Super Star' (#9927)
supstarf.cpp: Dumped and added a new set of 'Super Star', make it the parent since it's a complete dump.
New NOT_WORKING machine
-----------------------
Super Star (Recreativos Franco, set 1) [jordigahan]
-rw-r--r-- | src/mame/drivers/supstarf.cpp | 18 | ||||
-rw-r--r-- | src/mame/mame.lst | 3 |
2 files changed, 14 insertions, 7 deletions
diff --git a/src/mame/drivers/supstarf.cpp b/src/mame/drivers/supstarf.cpp index 541046117d5..1f55ed60fb0 100644 --- a/src/mame/drivers/supstarf.cpp +++ b/src/mame/drivers/supstarf.cpp @@ -7,10 +7,6 @@ Super Star (Recreativos Franco) Skeleton driver for 8085-based pinball hardware. TODO: -- The ROM for the sound cpu is a bad dump. The 8035 should set itself up, - then signal a rst(call 0024) to the 8085 which in turn sets up key - indicators in RAM and enabling the machine to begin. With the bad dump, - none of that can happen. - Display circuits: i8259, 74164, 74159 and other bits. - Default layout - Outputs (solenoids, lamps) @@ -263,11 +259,21 @@ INPUT_PORTS_END ROM_START(supstarf) ROM_REGION(0x4000, "maincpu", 0) + ROM_LOAD("m31-a-01187.ic19", 0x0000, 0x4000, CRC(ab8b1148) SHA1(496d3c9664386ae64e94462db2fdd36811a68a87)) + // IC14 for second program ROM is unpopulated + + ROM_REGION(0x1000, "soundcpu", 0) + ROM_LOAD("2532.ic4", 0x0000, 0x1000, CRC(d6d7eee2) SHA1(60e497c8845320eea01662d894d0b16349ebb7e4)) +ROM_END + +ROM_START(supstarfa) + ROM_REGION(0x4000, "maincpu", 0) ROM_LOAD("27c128.ic19", 0x0000, 0x4000, CRC(9a440461) SHA1(e2f8dcf95084f755d3a34d77ba2649602687a610)) // IC14 for second program ROM is unpopulated ROM_REGION(0x1000, "soundcpu", 0) - ROM_LOAD("2532.ic4", 0x0000, 0x1000, CRC(b6ef3c7a) SHA1(aabb6f8569685fc3a917a7bb5ebfcc4b20086b15) BAD_DUMP) // D6 stuck high and probably totally garbage + ROM_LOAD("2532.ic4", 0x0000, 0x1000, BAD_DUMP CRC(b6ef3c7a) SHA1(aabb6f8569685fc3a917a7bb5ebfcc4b20086b15)) // D6 stuck high and probably totally garbage ROM_END -GAME( 1986, supstarf, 0, supstarf, supstarf, supstarf_state, empty_init, ROT0, "Recreativos Franco", "Super Star (Recreativos Franco)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME( 1986, supstarf, 0, supstarf, supstarf, supstarf_state, empty_init, ROT0, "Recreativos Franco", "Super Star (Recreativos Franco, set 1)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME( 1986, supstarfa, supstarf, supstarf, supstarf, supstarf_state, empty_init, ROT0, "Recreativos Franco", "Super Star (Recreativos Franco, set 2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index a50915afcad..1f919e10e3f 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -40488,7 +40488,8 @@ suprridr // (c) 1983 Venture Line + Taito license suprslam // (c) 1995 Banpresto @source:supstarf.cpp -supstarf // +supstarf // (c) 1986 Recreativos Franco +supstarfa // (c) 1986 Recreativos Franco @source:surpratk.cpp suratk // GX911 (c) 1990 (World) |