Skip to content

pinball/gts3a.cpp: Add a Vifico licensed version of Cue Ball Wizard #13693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/mame/mame.lst
Original file line number Diff line number Diff line change
Expand Up @@ -37411,6 +37411,7 @@ cueball
cueballa
cueballb
cueballc
cueballv
freddy
freddy3
gladiatp
Expand Down
22 changes: 22 additions & 0 deletions src/mame/pinball/gts3a.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,27 @@ ROM_START(cueballc)
ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c22f5cc5) SHA1(a5bfbc1824bc483eecc961851bd411cb0dbcdc4a))
ROM_END

ROM_START(cueballv)
ROM_REGION(0x10000, "maincpu", ROMREGION_ERASEFF)
ROM_LOAD("cue_ball_wizard_734_bx_gprom.u2", 0x0000, 0x10000, CRC(e14b378d) SHA1(d815d302a8d82d22d986214e55b24914a69a49d6))

ROM_REGION(0x80000, "dmdcpu", ROMREGION_ERASEFF)
ROM_LOAD("wizard_espanol_dsprom.u3", 0x00000, 0x40000, CRC(21e60313) SHA1(fb343dfe65ce5f23f616756959d998053b8c77f6))
ROM_RELOAD(0x40000, 0x40000)

ROM_REGION(0x10000, "p7sound:audiocpu", ROMREGION_ERASEFF)
ROM_LOAD("drom1.bin", 0x8000, 0x8000, CRC(9fd04109) SHA1(27864fe4e9c248dce6221c9e56861967d089b216))

ROM_REGION(0x100000, "p7sound:oki", ROMREGION_ERASEFF)
ROM_LOAD("arom1.bin", 0x00000, 0x40000, CRC(476bb11c) SHA1(ce546df59933cc230a6671dec493bbbe71146dee))
ROM_RELOAD(0x40000, 0x40000)
ROM_LOAD("arom2.bin", 0x80000, 0x40000, CRC(23708ad9) SHA1(156fcb19403f9845404af1a4ac4edfd3fcde601d))
ROM_RELOAD(0xc0000, 0x40000)

ROM_REGION(0x10000, "p7sound:speechcpu", ROMREGION_ERASEFF)
ROM_LOAD("yrom1.bin", 0x8000, 0x8000, CRC(c22f5cc5) SHA1(a5bfbc1824bc483eecc961851bd411cb0dbcdc4a))
ROM_END

/*-------------------------------------------------------------------
/ Frank Thomas' Big Hurt (#745)
/-------------------------------------------------------------------*/
Expand Down Expand Up @@ -1369,6 +1390,7 @@ GAME(1992, cueball, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Got
GAME(1992, cueballa, cueball, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (rev. 2)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
GAME(1992, cueballb, cueball, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (rev. 3)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
GAME(1992, cueballc, cueball, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Cue Ball Wizard (older display rev.)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
GAME(1992, cueballv, cueball, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb (Vifico license)", "Cue Ball Wizard (Spanish)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
GAME(1993, sfightii, 0, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (pinball, set 1)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
GAME(1993, sfightiia, sfightii, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (pinball, set 2)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
GAME(1993, sfightiib, sfightii, p7, gts3a, gts3a_state, init_gts3a, ROT0, "Gottlieb", "Street Fighter II (pinball, set 3)", MACHINE_NO_SOUND | MACHINE_NOT_WORKING | MACHINE_MECHANICAL | MACHINE_REQUIRES_ARTWORK | MACHINE_SUPPORTS_SAVE )
Expand Down
Loading