New systems marked not working

------------------------------
Beetlemania (Atronic) [Brian Troha, Heihachi_73]
Chickendales (Atronic) [Brian Troha, Heihachi_73]
Happy Happy Hippy (Atronic) [Brian Troha, Heihachi_73]
Typhoon Lagoon [Brian Troha, Heihachi_73]

New clones marked not working
-----------------------------
Atronic SetUp/Clear Chips [Brian Troha, Heihachi_73]
Babooshka (Atronic) [Brian Troha, Heihachi_73]
Dream Maker (Atronic) [Brian Troha, Heihachi_73]
I C Money (Atronic) (set 2) [Brian Troha, Heihachi_73]
Sphinx II (Atronic) [Brian Troha, Heihachi_73]

- atari/*flyball*, misc/triviaquiz.cpp: renounced copyright
This commit is contained in:
Ivan Vangelista 2024-12-24 09:19:39 +01:00
parent ceccd8d9dc
commit ae99363432
7 changed files with 920 additions and 659 deletions

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause // license:BSD-3-Clause
// copyright-holders:Stefan Jokisch, Ivan Vangelista, Ryan Holtz // copyright-holders:Stefan Jokisch, Ryan Holtz
/*************************************************************************** /***************************************************************************
Atari Flyball Driver Atari Flyball Driver

View File

@ -1,5 +1,5 @@
// license:CC0-1.0 // license:CC0-1.0
// copyright-holders:Ryan Holtz, Ivan Vangelista // copyright-holders:Ryan Holtz
// //
// Netlist for Atari's Flyball // Netlist for Atari's Flyball
// //

View File

@ -1,5 +1,5 @@
// license:CC0-1.0 // license:CC0-1.0
// copyright-holders:Ivan Vangelista, Ryan Holtz // copyright-holders:Ryan Holtz
#ifndef MAME_ATARI_NL_FLYBALL_H #ifndef MAME_ATARI_NL_FLYBALL_H
#define MAME_ATARI_NL_FLYBALL_H #define MAME_ATARI_NL_FLYBALL_H

View File

@ -14576,13 +14576,13 @@ ROM_START( lucky8n )
ROM_LOAD( "g13", 0x00, 0x20, BAD_DUMP CRC(6df3f972) SHA1(0096a7f7452b70cac6c0752cb62e24b643015b5c) ) ROM_LOAD( "g13", 0x00, 0x20, BAD_DUMP CRC(6df3f972) SHA1(0096a7f7452b70cac6c0752cb62e24b643015b5c) )
ROM_END ROM_END
// only the subboard available (Z80, ROM, 2 stickered chips, 2 banks of 8 DIP switches (marked SW5 and SW6) and a rotary switch (SW7)) // only the subboard available (Z80, ROM, 2 stickered chips (sanded), 2 banks of 8 DIP switches (marked SW5 and SW6) and a rotary switch (SW7))
// very professional-looking subboard marked Excel Planning // very professional-looking subboard marked Excel Planning
// needs correct GFX ROMs / color PROMs (using the ones from wcat3, for now) // needs correct GFX ROMs / color PROMs (using the ones from wcat3, for now)
ROM_START( wcat ) ROM_START( wcat )
ROM_REGION( 0x20000, "maincpu", 0 ) ROM_REGION( 0x20000, "maincpu", 0 )
ROM_LOAD( "y8.u1.sub", 0x00000, 0x20000, CRC(49e11ff4) SHA1(ce421f85b298c2e9c335fdbf0547a355ae29f1a6) ) ROM_LOAD( "y8.u1.sub", 0x00000, 0x20000, CRC(49e11ff4) SHA1(ce421f85b298c2e9c335fdbf0547a355ae29f1a6) )
ROM_FILL( 0x1c000, 0x1000, 0xc9 ) // jumps in this area multiple times, but nothing there. Something to do with the 2 stickered chips? ROM_FILL( 0x1c000, 0x1000, 0xc9 ) // jumps in this area multiple times, but nothing here. Something to do with the 2 stickered chips?
ROM_REGION( 0x18000, "gfx1", 0 ) ROM_REGION( 0x18000, "gfx1", 0 )
ROM_LOAD( "wcat3.h7", 0x10000, 0x8000, BAD_DUMP CRC(065cb575) SHA1(4dd49773c4caeaa489342e61f26c8eaaae876edc) ) ROM_LOAD( "wcat3.h7", 0x10000, 0x8000, BAD_DUMP CRC(065cb575) SHA1(4dd49773c4caeaa489342e61f26c8eaaae876edc) )

View File

@ -29184,9 +29184,16 @@ abigchs // Big Cheese
aclown // Clown aclown // Clown
atlantca // Atlantica atlantca // Atlantica
atlantcaa // atlantcaa //
atrbonpk // Bonus Poker
atrbtlma // Beetlemania
atricmon // I C Money
atricmona //
atronic // atronic //
atronica // atronica //
baboshka // Baboshka atronicb //
atrwild // Wild Thing
baboshka // Babooshka
baboshkar //
beachpt // Beach Patrol beachpt // Beach Patrol
bearnec // Bear Necessities bearnec // Bear Necessities
beetleup // Beetles Unplugged beetleup // Beetles Unplugged
@ -29196,21 +29203,23 @@ castawaya //
cfblue // Crazy Fruits Blue cfblue // Crazy Fruits Blue
cfbluea // cfbluea //
cfgreen // Crazy Fruits Green cfgreen // Crazy Fruits Green
chicdale // Chickendales
chicken // Chicken chicken // Chicken
dncsprt // Dancing Spirit dncsprt // Dancing Spirit
drmmake // Dream Maker drmmake // Dream Maker
drmmaker //
goldcity // Gold City goldcity // Gold City
goldglen // Golden Glenn goldglen // Golden Glenn
haphippy // Happy Happy Hippy
iccash // I C Cash iccash // I C Cash
jumpjkpt // Jumping Jackpots jumpjkpt // Jumping Jackpots
mushmagi // Mushroom Magic mushmagi // Mushroom Magic
santam // Santa Maria santam // Santa Maria
shpinxii // Sphinx II sphinxii // Sphinx II
sphinxiir //
splmastr // Spell Master splmastr // Spell Master
tajmah // Tajmahal tajmah // Tajmahal
atrwild tylagoon // Typhoon Lagoon
atricmon
atrbonpk
@source:misc/attckufo.cpp @source:misc/attckufo.cpp
attckufo // (c) 1980 Ryoto Electric Co. attckufo // (c) 1980 Ryoto Electric Co.

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
// license:BSD-3-Clause // license:BSD-3-Clause
// copyright-holders:Dirk Best, Ivan Vangelista // copyright-holders:Dirk Best
/* /*
Trivia Quiz by Intermatic Manufacturing Ltd. Trivia Quiz by Intermatic Manufacturing Ltd.
1985 1985