trunk/src/mame/drivers/ggconnie.c
| r20283 | r20284 | |
| 107 | 107 | PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN1 ) /* 100 Yen */ |
| 108 | 108 | PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN2 ) /* 10 Yen */ |
| 109 | 109 | PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START1 ) /* run */ |
| 110 | | PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME( DEF_STR(Test) ) |
| 111 | | PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE ) |
| 110 | PORT_SERVICE_NO_TOGGLE(0x10, IP_ACTIVE_LOW) PORT_DIPLOCATION("SWC:8") |
| 111 | PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE1 ) |
| 112 | 112 | PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("Hopper") |
| 113 | 113 | PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN ) |
| 114 | 114 | |
| r20283 | r20284 | |
| 125 | 125 | PORT_START("SWA") |
| 126 | 126 | PORT_DIPNAME(0x03, 0x03, "Coin Set") PORT_DIPLOCATION("SWA:1,2") |
| 127 | 127 | PORT_DIPSETTING(0x03, DEF_STR(1C_1C) ) |
| 128 | PORT_DIPSETTING(0x02, "2") |
| 129 | PORT_DIPSETTING(0x01, "1") |
| 130 | PORT_DIPSETTING(0x00, "0") |
| 128 | 131 | PORT_DIPNAME(0x1c, 0x1c, "100 Yen -> Coin" ) PORT_DIPLOCATION("SWA:3,4,5") |
| 129 | | PORT_DIPSETTING(0x00, "11 Coin") |
| 130 | | PORT_DIPSETTING(0x04, "12 Coin") |
| 131 | 132 | PORT_DIPSETTING(0x08, "0 Coin") |
| 132 | 133 | PORT_DIPSETTING(0x0c, "5 Coin") |
| 133 | 134 | PORT_DIPSETTING(0x10, "6 Coin") |
| 134 | 135 | PORT_DIPSETTING(0x14, "7 Coin") |
| 135 | 136 | PORT_DIPSETTING(0x18, "8 Coin") |
| 136 | 137 | PORT_DIPSETTING(0x1c, "10 Coin") |
| 138 | PORT_DIPSETTING(0x00, "11 Coin") |
| 139 | PORT_DIPSETTING(0x04, "12 Coin") |
| 137 | 140 | PORT_DIPUNUSED_DIPLOC( 0x20, 0x00, "SWA:6" ) |
| 138 | 141 | PORT_DIPUNUSED_DIPLOC( 0x40, 0x00, "SWA:7" ) |
| 139 | 142 | PORT_DIPUNUSED_DIPLOC( 0x80, 0x00, "SWA:8" ) |
| r20283 | r20284 | |
| 178 | 181 | PORT_DIPNAME(0x40, 0x00, "RAM Clear" ) PORT_DIPLOCATION("SWC:7") |
| 179 | 182 | PORT_DIPSETTING(0x40, DEF_STR(Off) ) |
| 180 | 183 | PORT_DIPSETTING(0x00, DEF_STR(On) ) |
| 181 | | PORT_SERVICE_NO_TOGGLE(0x80, IP_ACTIVE_LOW) PORT_DIPLOCATION("SWC:8") |
| 184 | PORT_DIPNAME(0x80, 0x80, DEF_STR(Service_Mode) ) PORT_DIPLOCATION("SWC:8") |
| 185 | PORT_DIPSETTING(0x80, DEF_STR(Off) ) |
| 186 | PORT_DIPSETTING(0x00, DEF_STR(On) ) |
| 182 | 187 | INPUT_PORTS_END |
| 183 | 188 | |
| 184 | 189 | static const c6280_interface c6280_config = |