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

« back to all changes in this revision

Viewing changes to src/mame/drivers/bladestl.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:
39
39
PALETTE_INIT( bladestl );
40
40
VIDEO_START( bladestl );
41
41
VIDEO_UPDATE( bladestl );
42
 
WRITE8_HANDLER( bladestl_vreg_w );
43
42
 
44
43
static INTERRUPT_GEN( bladestl_interrupt )
45
44
{
324
323
        ROM_REGION( 0x10000, "audiocpu", 0 ) /* 64k for the sound CPU */
325
324
        ROM_LOAD( "797c02", 0x08000, 0x08000, CRC(65a331ea) SHA1(f206f6c5f0474542a5b7686b2f4d2cc7077dd5b9) )
326
325
 
327
 
        ROM_REGION( 0x080000, "gfx1", ROMREGION_DISPOSE )
 
326
        ROM_REGION( 0x080000, "gfx1", 0 )
328
327
        ROM_LOAD( "797a05",     0x000000, 0x40000, CRC(5491ba28) SHA1(c807774827c55c211ab68f548e1e835289cc5744) )       /* tiles */
329
328
        ROM_LOAD( "797a06",     0x040000, 0x40000, CRC(d055f5cc) SHA1(3723b39b2a3e6dd8e7fc66bbfe1eef9f80818774) )       /* sprites */
330
329
 
336
335
        ROM_LOAD( "797a04",     0x80000, 0x40000, CRC(9ac8ea4e) SHA1(9f81eff970c9e8aea6f67d8a7d89805fae044ae1) )
337
336
ROM_END
338
337
 
339
 
ROM_START( bladstle )
 
338
ROM_START( bladestle )
340
339
        ROM_REGION( 0x18000, "maincpu", 0 ) /* code + banked roms */
341
340
        ROM_LOAD( "797e01", 0x10000, 0x08000, CRC(f8472e95) SHA1(8b6caa905fb1642300dd9da508871b00429872c3) )    /* fixed ROM */
342
341
        ROM_CONTINUE(           0x08000, 0x08000 )                              /* banked ROM */
344
343
        ROM_REGION( 0x10000, "audiocpu", 0 ) /* 64k for the sound CPU */
345
344
        ROM_LOAD( "797c02", 0x08000, 0x08000, CRC(65a331ea) SHA1(f206f6c5f0474542a5b7686b2f4d2cc7077dd5b9) )
346
345
 
347
 
        ROM_REGION( 0x080000, "gfx1", ROMREGION_DISPOSE )
 
346
        ROM_REGION( 0x080000, "gfx1", 0 )
348
347
        ROM_LOAD( "797a05",     0x000000, 0x40000, CRC(5491ba28) SHA1(c807774827c55c211ab68f548e1e835289cc5744) )       /* tiles */
349
348
        ROM_LOAD( "797a06",     0x040000, 0x40000, CRC(d055f5cc) SHA1(3723b39b2a3e6dd8e7fc66bbfe1eef9f80818774) )       /* sprites */
350
349
 
358
357
 
359
358
 
360
359
GAME( 1987, bladestl, 0,        bladestl, bladestl, 0, ROT90, "Konami", "Blades of Steel (version T)", 0 )
361
 
GAME( 1987, bladstle, bladestl, bladestl, bladstle, 0, ROT90, "Konami", "Blades of Steel (version E)", 0 )
 
360
GAME( 1987, bladestle,bladestl, bladestl, bladstle, 0, ROT90, "Konami", "Blades of Steel (version E)", 0 )