Previous 199869 Revisions Next

r24852 Monday 12th August, 2013 at 02:48:11 UTC by Brian Troha
sandscrp.c: Added dipswitch locations and corrected default settings for the Sand Scorpion sets. [Brian Troha]
[src/mame/drivers]sandscrp.c

trunk/src/mame/drivers/sandscrp.c
r24851r24852
374374   PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNKNOWN )
375375
376376   PORT_START("DSW1")  /* read by the Z80 through the sound chip */
377   PORT_DIPNAME( 0x03, 0x03, DEF_STR( Lives ) )
377   PORT_DIPNAME( 0x03, 0x03, DEF_STR( Lives ) )      PORT_DIPLOCATION("SW1:1,2")
378378   PORT_DIPSETTING(    0x02, "1" )
379379   PORT_DIPSETTING(    0x01, "2" )
380380   PORT_DIPSETTING(    0x03, "3" )
381381   PORT_DIPSETTING(    0x00, "5" )
382   PORT_DIPNAME( 0x0c, 0x0c, "Bombs" )
382   PORT_DIPNAME( 0x0c, 0x0c, "Bombs" )         PORT_DIPLOCATION("SW1:3,4")
383383   PORT_DIPSETTING(    0x08, "1" )
384384   PORT_DIPSETTING(    0x04, "2" )
385385   PORT_DIPSETTING(    0x0c, "3" )
386386   PORT_DIPSETTING(    0x00, "5" )
387   PORT_DIPNAME( 0x30, 0x30, DEF_STR( Difficulty ) )
387   PORT_DIPNAME( 0x30, 0x20, DEF_STR( Difficulty ) )   PORT_DIPLOCATION("SW1:5,6")
388388   PORT_DIPSETTING(    0x30, DEF_STR( Easy )    )
389389   PORT_DIPSETTING(    0x20, DEF_STR( Normal )  )
390390   PORT_DIPSETTING(    0x10, DEF_STR( Hard )    )
391391   PORT_DIPSETTING(    0x00, DEF_STR( Hardest ) )
392   PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Bonus_Life ) )
392   PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Bonus_Life ) )   PORT_DIPLOCATION("SW1:7,8")
393393   PORT_DIPSETTING(    0x80, "100K, 300K" )
394394   PORT_DIPSETTING(    0xc0, "200K, 500K" )
395395   PORT_DIPSETTING(    0x40, "500K, 1000K" )
396396   PORT_DIPSETTING(    0x00, "1000K, 3000K" )
397397
398398   PORT_START("DSW2")  /* read by the Z80 through the sound chip */
399   PORT_DIPNAME( 0x0f, 0x0f, DEF_STR( Coinage ) )
399   PORT_DIPNAME( 0x0f, 0x0f, DEF_STR( Coinage ) )      PORT_DIPLOCATION("SW2:1,2,3,4")
400400   PORT_DIPSETTING(    0x0a, DEF_STR( 6C_1C ) )
401401   PORT_DIPSETTING(    0x0b, DEF_STR( 5C_1C ) )
402402   PORT_DIPSETTING(    0x0c, DEF_STR( 4C_1C ) )
r24851r24852
413413   PORT_DIPSETTING(    0x06, DEF_STR( 1C_5C ) )
414414   PORT_DIPSETTING(    0x05, DEF_STR( 1C_6C ) )
415415   PORT_DIPSETTING(    0x00, DEF_STR( Free_Play ) )
416   PORT_DIPNAME( 0x10, 0x10, DEF_STR( Flip_Screen ) )
416   PORT_DIPNAME( 0x10, 0x10, DEF_STR( Flip_Screen ) )   PORT_DIPLOCATION("SW2:5")
417417   PORT_DIPSETTING(    0x10, DEF_STR( Off ) )
418418   PORT_DIPSETTING(    0x00, DEF_STR( On ) )
419   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Allow_Continue ) )
419   PORT_DIPNAME( 0x20, 0x20, DEF_STR( Allow_Continue ) )   PORT_DIPLOCATION("SW2:6")
420420   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
421421   PORT_DIPSETTING(    0x20, DEF_STR( On ) )
422   PORT_DIPNAME( 0x40, 0x40, DEF_STR( Demo_Sounds ) )
422   PORT_DIPNAME( 0x40, 0x40, DEF_STR( Demo_Sounds ) )   PORT_DIPLOCATION("SW2:7")
423423   PORT_DIPSETTING(    0x00, DEF_STR( Off ) )
424424   PORT_DIPSETTING(    0x40, DEF_STR( On ) )
425   PORT_SERVICE( 0x80, IP_ACTIVE_LOW )
425   PORT_SERVICE_DIPLOC( 0x80, IP_ACTIVE_LOW, "SW2:8" )
426426INPUT_PORTS_END
427427
428428

Previous 199869 Revisions Next


© 1997-2024 The MAME Team