summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <robbbert@users.noreply.github.com>2012-12-16 12:14:21 +0000
committer Robbbert <robbbert@users.noreply.github.com>2012-12-16 12:14:21 +0000
commit49e714879d03fb92626276771493130f673d2ff9 (patch)
tree80b6579c1e34c04a7666b2a404253e50cb2ce1bd
parentb59fe2209935254153e9b721ee8b95a10f690c86 (diff)
vortex : Fixed Player 2 controls [Robbbert]
-rw-r--r--src/mame/drivers/8080bw.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/mame/drivers/8080bw.c b/src/mame/drivers/8080bw.c
index f8fc0ff3a81..6f95ede72b6 100644
--- a/src/mame/drivers/8080bw.c
+++ b/src/mame/drivers/8080bw.c
@@ -2361,6 +2361,8 @@ MACHINE_CONFIG_END
* see below for decryption function (A0, A3, A9 invert)
* It uses its own I/O function since A9 is inverted (and A9 mirrors A1 for I/O)
*
+ * Hold down fire button to activate thrust.
+ *
*************************************/
static ADDRESS_MAP_START( vortex_io_map, AS_IO, 8, _8080bw_state )
@@ -2398,15 +2400,6 @@ static INPUT_PORTS_START( vortex )
PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW1:4")
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
- PORT_DIPNAME( 0x10, 0x10, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW1:5")
- PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x00, DEF_STR( On ) )
- PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW1:6")
- PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x00, DEF_STR( On ) )
- PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW1:7")
- PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x80, 0x80, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:8")
PORT_DIPSETTING( 0x00, DEF_STR( 2C_1C ) )
PORT_DIPSETTING( 0x80, DEF_STR( 1C_1C ) )