Merge pull request #7571 from clawgrip/patch-10

missbamby.cpp: Cirsa 810601-A PCB has 4 dipswitches, not 8
This commit is contained in:
ajrhacker 2020-12-29 12:22:23 -05:00 committed by GitHub
commit 94e8f8215b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ Miss Bamby - Automatics Pasqual
|__| _______ ___________________ |D | | 3.6V | |
|__| |LM380N| | AY-3-8910 | |I | |_________| |
|__| |__________________| |P | ______ |
|__| |S__| LM311N |
|__| 8 dips->|S__| LM311N |
|____________________________________________________________|
Golden Winner - Reben
@ -67,7 +67,7 @@ Golden Winner - Reben
|__| _______ ___________________ |D | |
|__| |LM380N| | AY-3-8910 | |I | |
|__| |__________________| |P | ______ |
|__| |S__| CA311E |
|__| 8 dips->|S__| CA311E |
|____________________________________________________________|
*/
@ -138,6 +138,18 @@ static INPUT_PORTS_START( missbamby )
PORT_DIPUNKNOWN_DIPLOC(0x80, 0x80, "SW1:8")
INPUT_PORTS_END
// 4 dipswitches on Cirsa 810601 A PCB
static INPUT_PORTS_START( c_810601a )
PORT_START("IN0")
PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("DSW1")
PORT_DIPUNKNOWN_DIPLOC(0x01, 0x01, "SW1:1")
PORT_DIPUNKNOWN_DIPLOC(0x02, 0x02, "SW1:2")
PORT_DIPUNKNOWN_DIPLOC(0x04, 0x04, "SW1:3")
PORT_DIPUNKNOWN_DIPLOC(0x08, 0x08, "SW1:4")
INPUT_PORTS_END
void missbamby_state::machine_start()
{
@ -233,7 +245,7 @@ ROM_END
} // Anonymous namespace
GAME( 1981, minisupf, 0, missbamby, missbamby, missbamby_state, empty_init, ROT0, "Cirsa", "Mini Super Fruits", MACHINE_IS_SKELETON_MECHANICAL )
GAME( 1981, minisupf, 0, missbamby, c_810601a, missbamby_state, empty_init, ROT0, "Cirsa", "Mini Super Fruits", MACHINE_IS_SKELETON_MECHANICAL )
GAME( 1981, luckyplr, 0, missbamby, missbamby, missbamby_state, empty_init, ROT0, "Cirsa", "Lucky Player", MACHINE_IS_SKELETON_MECHANICAL )
GAME( 198?, msbamby, 0, missbamby, missbamby, missbamby_state, empty_init, ROT0, "Automatics Pasqual", "Miss Bamby", MACHINE_IS_SKELETON_MECHANICAL )
GAME( 198?, unkslot, 0, missbamby, missbamby, missbamby_state, empty_init, ROT0, "<unknown>", "unknown MGA or Costa Net slot machine", MACHINE_IS_SKELETON_MECHANICAL )