~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/mame/drivers/flkatck.c

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
 
133
133
static INPUT_PORTS_START( flkatck )
134
134
        PORT_START("DSW1")
135
 
        KONAMI_COINAGE(DEF_STR( Free_Play ), "Invalid")
 
135
        KONAMI_COINAGE_LOC(DEF_STR( Free_Play ), "Invalid", SW1)
136
136
        /* "Invalid" = both coin slots disabled */
137
137
 
138
138
        PORT_START("DSW2")
139
 
        PORT_DIPNAME( 0x03, 0x01, DEF_STR( Lives ) )
140
 
        PORT_DIPSETTING(        0x03, "1" )
141
 
        PORT_DIPSETTING(        0x02, "2" )
142
 
        PORT_DIPSETTING(        0x01, "3" )
143
 
        PORT_DIPSETTING(        0x00, "5" )
144
 
        PORT_DIPNAME( 0x04, 0x00, DEF_STR( Cabinet ) )
145
 
        PORT_DIPSETTING(        0x00, DEF_STR( Upright ) )
146
 
        PORT_DIPSETTING(        0x04, DEF_STR( Cocktail ) )
147
 
        PORT_DIPNAME( 0x18, 0x10, DEF_STR( Bonus_Life ) )
148
 
        PORT_DIPSETTING(        0x18, "30000 70000" )
149
 
        PORT_DIPSETTING(        0x10, "40000 80000" )
150
 
        PORT_DIPSETTING(        0x08, "30000" )
151
 
        PORT_DIPSETTING(        0x00, "40000" )
152
 
        PORT_DIPNAME( 0x60, 0x40, DEF_STR( Difficulty ) )
153
 
        PORT_DIPSETTING(        0x60, DEF_STR( Easy ) )
154
 
        PORT_DIPSETTING(        0x40, DEF_STR( Normal ) )
155
 
        PORT_DIPSETTING(        0x20, DEF_STR( Difficult ) )
156
 
        PORT_DIPSETTING(        0x00, DEF_STR( Very_Difficult ) )
157
 
        PORT_DIPNAME( 0x80, 0x00, DEF_STR( Demo_Sounds ) )
158
 
        PORT_DIPSETTING(        0x80, DEF_STR( Off ) )
159
 
        PORT_DIPSETTING(        0x00, DEF_STR( On ) )
 
139
        PORT_DIPNAME( 0x03, 0x01, DEF_STR( Lives ) )            PORT_DIPLOCATION("SW2:1,2")
 
140
        PORT_DIPSETTING(    0x03, "1" )
 
141
        PORT_DIPSETTING(    0x02, "2" )
 
142
        PORT_DIPSETTING(    0x01, "3" )
 
143
        PORT_DIPSETTING(    0x00, "5" )
 
144
        PORT_DIPNAME( 0x04, 0x00, DEF_STR( Cabinet ) )          PORT_DIPLOCATION("SW2:3")
 
145
        PORT_DIPSETTING(    0x00, DEF_STR( Upright ) )
 
146
        PORT_DIPSETTING(    0x04, DEF_STR( Cocktail ) )
 
147
        PORT_DIPNAME( 0x18, 0x10, DEF_STR( Bonus_Life ) )       PORT_DIPLOCATION("SW2:4,5")
 
148
        PORT_DIPSETTING(    0x18, "30K, Every 70K" )
 
149
        PORT_DIPSETTING(    0x10, "40K, Every 80K" )
 
150
        PORT_DIPSETTING(    0x08, "30K Only" )
 
151
        PORT_DIPSETTING(    0x00, "40K Only" )
 
152
        PORT_DIPNAME( 0x60, 0x40, DEF_STR( Difficulty ) )       PORT_DIPLOCATION("SW2:6,7")
 
153
        PORT_DIPSETTING(    0x60, DEF_STR( Easy ) )
 
154
        PORT_DIPSETTING(    0x40, DEF_STR( Normal ) )
 
155
        PORT_DIPSETTING(    0x20, DEF_STR( Difficult ) )
 
156
        PORT_DIPSETTING(    0x00, DEF_STR( Very_Difficult ) )
 
157
        PORT_DIPNAME( 0x80, 0x00, DEF_STR( Demo_Sounds ) )      PORT_DIPLOCATION("SW2:8")
 
158
        PORT_DIPSETTING(    0x80, DEF_STR( Off ) )
 
159
        PORT_DIPSETTING(    0x00, DEF_STR( On ) )
160
160
 
161
161
        PORT_START("DSW3")
162
 
        PORT_DIPNAME( 0x01, 0x01, DEF_STR( Flip_Screen ) )
163
 
        PORT_DIPSETTING(        0x01, DEF_STR( Off ) )
164
 
        PORT_DIPSETTING(        0x00, DEF_STR( On ) )
165
 
        PORT_DIPNAME( 0x02, 0x02, "Upright Controls" )
166
 
        PORT_DIPSETTING(        0x02, DEF_STR( Single ) )
167
 
        PORT_DIPSETTING(        0x00, DEF_STR( Dual ) )
168
 
        PORT_SERVICE( 0x04, IP_ACTIVE_LOW )
169
 
        PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) )
170
 
        PORT_DIPSETTING(        0x08, DEF_STR( Off ) )
171
 
        PORT_DIPSETTING(        0x00, DEF_STR( On ) )
 
162
        PORT_DIPNAME( 0x01, 0x01, DEF_STR( Flip_Screen ) )      PORT_DIPLOCATION("SW3:1")
 
163
        PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
 
164
        PORT_DIPSETTING(    0x00, DEF_STR( On ) )
 
165
        PORT_DIPNAME( 0x02, 0x02, "Upright Controls" )          PORT_DIPLOCATION("SW3:2")
 
166
        PORT_DIPSETTING(    0x02, DEF_STR( Single ) )
 
167
        PORT_DIPSETTING(    0x00, DEF_STR( Dual ) )
 
168
        PORT_SERVICE_DIPLOC(   0x04, IP_ACTIVE_LOW, "SW3:3" )
 
169
        PORT_DIPUNUSED_DIPLOC( 0x08, 0x08, "SW3:4" )            /* Listed as "Unused" */
172
170
        PORT_BIT( 0xf0, IP_ACTIVE_LOW, IPT_UNUSED )
173
171
 
174
172
        PORT_START("COIN")
261
259
        ROM_REGION( 0x10000, "audiocpu", 0 )            /* 64k for the SOUND CPU */
262
260
        ROM_LOAD( "m02.bin",        0x000000, 0x008000, CRC(7e11e6b9) SHA1(7a7d65a458b15842a6345388007c8f682aec20a7) )
263
261
 
264
 
        ROM_REGION( 0x080000, "gfx1", ROMREGION_DISPOSE )
 
262
        ROM_REGION( 0x080000, "gfx1", 0 )
265
263
        ROM_LOAD( "mask4m.bin",     0x000000, 0x080000, CRC(ff1d718b) SHA1(d44fe3ed5a3ba1b3036264e37f9cd3500b706635) )/* tiles + sprites */
266
264
 
267
265
        ROM_REGION( 0x040000, "konami", 0 )     /* 007232 data (chip 1) */
276
274
        ROM_REGION( 0x10000, "audiocpu", 0 )            /* 64k for the SOUND CPU */
277
275
        ROM_LOAD( "m02.bin",        0x000000, 0x008000, CRC(7e11e6b9) SHA1(7a7d65a458b15842a6345388007c8f682aec20a7) )
278
276
 
279
 
        ROM_REGION( 0x080000, "gfx1", ROMREGION_DISPOSE )
 
277
        ROM_REGION( 0x080000, "gfx1", 0 )
280
278
        ROM_LOAD( "mask4m.bin",     0x000000, 0x080000, CRC(ff1d718b) SHA1(d44fe3ed5a3ba1b3036264e37f9cd3500b706635) )/* tiles + sprites */
281
279
 
282
280
        ROM_REGION( 0x040000, "konami", 0 )     /* 007232 data (chip 1) */