trunk/src/mame/drivers/3x3puzzl.c
| r24587 | r24588 | |
| 21 | 21 | the game back to normal version as current set on the PCB |
| 22 | 22 | has adult graphics (sets provided are 'Normal' and 'Enterprise') |
| 23 | 23 | |
| 24 | Notes: |
| 25 | Casanova: Using 1C/2C and inserting 5 coins causes graphics corruption as |
| 26 | as the game places the "11" character on screen, but there really |
| 27 | isn't. Sould only be "0" through "9" |
| 24 | 28 | |
| 25 | 29 | ***************************************************************************/ |
| 26 | 30 | |
| r24587 | r24588 | |
| 281 | 285 | PORT_MODIFY("SYS") |
| 282 | 286 | PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_START1 ) |
| 283 | 287 | |
| 284 | | PORT_MODIFY("DSW01") |
| 288 | PORT_MODIFY("DSW01") /* Do NOT trust "DIP INFO" for correct settings! At least Coinage is WRONG! */ |
| 285 | 289 | PORT_DIPNAME( 0x0003, 0x0003, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:1,2") |
| 290 | PORT_DIPSETTING( 0x0002, DEF_STR( 1C_2C ) ) /* Dip info shows 2 Coins / Credit */ |
| 286 | 291 | PORT_DIPSETTING( 0x0003, DEF_STR( 1C_1C ) ) |
| 287 | | PORT_DIPSETTING( 0x0002, DEF_STR( 2C_1C ) ) |
| 288 | | PORT_DIPSETTING( 0x0001, DEF_STR( 3C_1C ) ) |
| 289 | | PORT_DIPSETTING( 0x0000, DEF_STR( 5C_1C ) ) |
| 292 | PORT_DIPSETTING( 0x0001, DEF_STR( 2C_1C ) ) /* Dip info shows 3 Coins / Credit */ |
| 293 | PORT_DIPSETTING( 0x0000, DEF_STR( 3C_1C ) ) /* Dip info shows 5 Coins / Credit */ |
| 290 | 294 | PORT_DIPNAME( 0x000c, 0x000c, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW1:3,4") |
| 291 | 295 | PORT_DIPSETTING( 0x0008, DEF_STR( Easy ) ) |
| 292 | 296 | PORT_DIPSETTING( 0x000c, DEF_STR( Normal ) ) |