summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/superga2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/superga2.cpp')
-rw-r--r--src/mame/drivers/superga2.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/mame/drivers/superga2.cpp b/src/mame/drivers/superga2.cpp
index f0dedfa29ea..a60a1af2390 100644
--- a/src/mame/drivers/superga2.cpp
+++ b/src/mame/drivers/superga2.cpp
@@ -13,7 +13,6 @@
To do
- verify palette, pixel and cpu clocks
- - two player mode
************************************************************************/
@@ -200,16 +199,14 @@ void superga2_state::kuzmich_map(address_map &map)
static INPUT_PORTS_START( kuzmich )
PORT_START("P1")
- // verified
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(1)
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(1)
- PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_START1 )
+ PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(2)
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(2)
+ PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNUSED )
+ PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED )
+ PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_8WAY PORT_PLAYER(2)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_8WAY PORT_PLAYER(1)
- // unverified
- PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(2)
- PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(2)
- PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_8WAY PORT_PLAYER(2)
- PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_START2 )
INPUT_PORTS_END
void superga2_state::kuzmich(machine_config &config)