trunk/src/mame/drivers/silvmil.c
| r243391 | r243392 | |
| 287 | 287 | PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_COIN2 ) |
| 288 | 288 | PORT_BIT( 0xfc00, IP_ACTIVE_LOW, IPT_UNKNOWN ) |
| 289 | 289 | |
| 290 | | PORT_START("DSW") |
| 291 | | PORT_DIPNAME( 0x0001, 0x0001, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:1") |
| 292 | | PORT_DIPSETTING( 0x0001, DEF_STR( Off ) ) |
| 293 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 294 | | PORT_DIPNAME( 0x0002, 0x0002, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:2") |
| 295 | | PORT_DIPSETTING( 0x0002, DEF_STR( Off ) ) |
| 296 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 297 | | PORT_DIPNAME( 0x0004, 0x0004, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:3") |
| 298 | | PORT_DIPSETTING( 0x0004, DEF_STR( Off ) ) |
| 299 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 300 | | PORT_DIPNAME( 0x0008, 0x0008, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:4") |
| 301 | | PORT_DIPSETTING( 0x0008, DEF_STR( Off ) ) |
| 302 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 303 | | PORT_DIPNAME( 0x0010, 0x0010, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:5") |
| 304 | | PORT_DIPSETTING( 0x0010, DEF_STR( Off ) ) |
| 305 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 306 | | PORT_DIPNAME( 0x0020, 0x0020, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:6") |
| 307 | | PORT_DIPSETTING( 0x0020, DEF_STR( Off ) ) |
| 308 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 309 | | PORT_DIPNAME( 0x0040, 0x0040, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:7") |
| 310 | | PORT_DIPSETTING( 0x0040, DEF_STR( Off ) ) |
| 311 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 312 | | PORT_DIPNAME( 0x0080, 0x0080, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:8") |
| 313 | | PORT_DIPSETTING( 0x0080, DEF_STR( Off ) ) |
| 314 | | PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) |
| 315 | | PORT_DIPNAME( 0x0300, 0x0300, "Game Level" ) PORT_DIPLOCATION("SW1:1,2") /* Difficulty?? - Not sure how this works for Easy --> Very Hard */ |
| 316 | | PORT_DIPSETTING( 0x0300, "1" ) /* Initial start time 40 secs */ |
| 317 | | PORT_DIPSETTING( 0x0200, "2" ) /* Initial start time 30 secs - Other in game effects?? */ |
| 318 | | PORT_DIPSETTING( 0x0100, "3" ) /* Initial start time 30 secs - Other in game effects?? */ |
| 319 | | PORT_DIPSETTING( 0x0000, "4" ) /* Initial start time 30 secs - Other in game effects?? */ |
| 320 | | PORT_DIPNAME( 0x1c00, 0x1c00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:3,4,5") |
| 290 | PORT_START("DSW") /* NOTE: In the service mode, the game reports the dipswitch banks in reverse. IE: SW1 is actually SW2 & SW2 is actually SW1 */ |
| 291 | PORT_DIPUNUSED_DIPLOC( 0x0001, 0x0001, "SW1:1" ) /* Listed as "Unused" */ |
| 292 | PORT_DIPUNUSED_DIPLOC( 0x0002, 0x0002, "SW1:2" ) /* Listed as "Unused" */ |
| 293 | PORT_DIPUNUSED_DIPLOC( 0x0004, 0x0004, "SW1:3" ) /* Listed as "Unused" */ |
| 294 | PORT_DIPUNUSED_DIPLOC( 0x0008, 0x0008, "SW1:4" ) /* Listed as "Unused" */ |
| 295 | PORT_DIPUNUSED_DIPLOC( 0x0010, 0x0010, "SW1:5" ) /* Listed as "Unused" */ |
| 296 | PORT_DIPUNUSED_DIPLOC( 0x0020, 0x0020, "SW1:6" ) /* Listed as "Unused" */ |
| 297 | PORT_DIPUNUSED_DIPLOC( 0x0040, 0x0040, "SW1:7" ) /* Listed as "Unused" */ |
| 298 | PORT_DIPUNUSED_DIPLOC( 0x0080, 0x0080, "SW1:8" ) /* Listed as "Unused" */ |
| 299 | PORT_DIPNAME( 0x0300, 0x0100, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2") |
| 300 | PORT_DIPSETTING( 0x0300, DEF_STR( Very_Easy ) ) /* Initial start time 40 secs */ |
| 301 | PORT_DIPSETTING( 0x0200, DEF_STR( Easy ) ) /* Initial start time 30 secs - Other in game effects?? */ |
| 302 | PORT_DIPSETTING( 0x0100, DEF_STR( Hard ) ) /* Initial start time 30 secs - Other in game effects?? */ |
| 303 | PORT_DIPSETTING( 0x0000, DEF_STR( Very_Hard ) ) /* Initial start time 30 secs - Other in game effects?? */ |
| 304 | PORT_DIPNAME( 0x1c00, 0x1c00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW2:3,4,5") |
| 321 | 305 | PORT_DIPSETTING( 0x1000, DEF_STR( 4C_1C ) ) |
| 322 | 306 | PORT_DIPSETTING( 0x1400, DEF_STR( 3C_1C ) ) |
| 323 | 307 | PORT_DIPSETTING( 0x0000, DEF_STR( 4C_2C ) ) /* Works the same as 2C/1C */ |
| r243391 | r243392 | |
| 326 | 310 | PORT_DIPSETTING( 0x0800, DEF_STR( 2C_2C ) ) /* Works the same as 1C/1C */ |
| 327 | 311 | PORT_DIPSETTING( 0x1c00, DEF_STR( 1C_1C ) ) |
| 328 | 312 | PORT_DIPSETTING( 0x0c00, DEF_STR( 1C_2C ) ) |
| 329 | | PORT_DIPNAME( 0x2000, 0x2000, "Coin Box" ) PORT_DIPLOCATION("SW1:6") /* Always displays total credits - No separate Credit display per player */ |
| 313 | PORT_DIPNAME( 0x2000, 0x2000, "Coin Box" ) PORT_DIPLOCATION("SW2:6") /* Always displays total credits - No separate Credit display per player */ |
| 330 | 314 | PORT_DIPSETTING( 0x2000, "1" ) /* Both players use coins from either Coin 1 or Coin 2 */ |
| 331 | 315 | PORT_DIPSETTING( 0x0000, "2" ) /* Players use coins from own coin chute. IE: Player 1 -> Coin 1, Player 2 -> Coin 2 but shows only total credits */ |
| 332 | | PORT_DIPNAME( 0x4000, 0x4000, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW1:7") |
| 316 | PORT_DIPNAME( 0x4000, 0x4000, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:7") |
| 333 | 317 | PORT_DIPSETTING( 0x0000, "2" ) |
| 334 | 318 | PORT_DIPSETTING( 0x4000, "3" ) |
| 335 | | PORT_SERVICE_DIPLOC( 0x8000, IP_ACTIVE_LOW, "SW1:8" ) /* Verified */ |
| 319 | PORT_SERVICE_DIPLOC( 0x8000, IP_ACTIVE_LOW, "SW2:8" ) /* Verified */ |
| 336 | 320 | INPUT_PORTS_END |
| 337 | 321 | |
| 338 | 322 | |