summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2020-12-29 12:22:23 -0500
committer GitHub <noreply@github.com>2020-12-29 12:22:23 -0500
commit94e8f8215b3129a074b703b6ac9452babf55a56c (patch)
tree12490496880c804233f1783807e097930c3c4934
parentd3e9f96922e83ee56909d6a625e43420060875fc (diff)
parente785458390e5a9a1072638219caa8df3720f4050 (diff)
Merge pull request #7571 from clawgrip/patch-10
missbamby.cpp: Cirsa 810601-A PCB has 4 dipswitches, not 8
-rw-r--r--src/mame/drivers/missbamby.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/mame/drivers/missbamby.cpp b/src/mame/drivers/missbamby.cpp
index 4034624f1b2..ba169efc3f0 100644
--- a/src/mame/drivers/missbamby.cpp
+++ b/src/mame/drivers/missbamby.cpp
@@ -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 )