summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astinvad.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-02-28 05:46:00 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-02-28 05:46:00 +0000
commit061ea91358fb5594aa316664fe242f6e7ce7d6db (patch)
tree6abfd72fe533d490080a9416ec568d678b9efaea /src/mame/drivers/astinvad.c
parenta06cdea7db71eb2ece61e642e2e8e284f955a6d5 (diff)
From: RansAckeR
Subject: astinvad.c & astrocde.c dips Added dip location: astinvad. Added dip locations and improved dip switches: seawolf2, wow, gorf, robby, profpac. -- From: RansAckeR Subject: asuka.c dips Added dip locations for: bonzeadv, cadash, asuka, mofflott, galmedes. -- From: RansAckeR Subject: atarifb.c dips Added dip locations to: atarifb, atarifb4, abaseb, soccer.
Diffstat (limited to 'src/mame/drivers/astinvad.c')
-rw-r--r--src/mame/drivers/astinvad.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/drivers/astinvad.c b/src/mame/drivers/astinvad.c
index dc1aafced09..840b7a2a0fe 100644
--- a/src/mame/drivers/astinvad.c
+++ b/src/mame/drivers/astinvad.c
@@ -11,6 +11,9 @@ Misc early Z80 games with simple color bitmap graphics
Space Intruder emulation by Lee Taylor (lee@defender.demon.co.uk),
December 1998.
+DIP locations verified for:
+ - astinvad (manual)
+
***************************************************************************/
#include "driver.h"
@@ -393,14 +396,14 @@ static INPUT_PORTS_START( astinvad )
PORT_INCLUDE(kamikaze)
PORT_MODIFY("IN1")
- PORT_DIPNAME( 0x01, 0x00, DEF_STR( Lives ) )
+ PORT_DIPNAME( 0x01, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW:2")
PORT_DIPSETTING( 0x00, "3" )
PORT_DIPSETTING( 0x01, "4" )
- PORT_DIPNAME( 0x02, 0x02, DEF_STR( Bonus_Life ) )
+ PORT_DIPNAME( 0x02, 0x02, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW:1")
PORT_DIPSETTING( 0x02, "10000" )
PORT_DIPSETTING( 0x00, "20000" )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_UNKNOWN )
- PORT_DIPNAME( 0x88, 0x00, DEF_STR( Coinage ) )
+ PORT_DIPNAME( 0x88, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW:3,4")
PORT_DIPSETTING( 0x88, DEF_STR( 3C_1C ) )
PORT_DIPSETTING( 0x80, DEF_STR( 2C_1C ) )
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )