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

« back to all changes in this revision

Viewing changes to src/mame/drivers/psikyo.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:
80
80
VIDEO_START( psikyo );
81
81
VIDEO_EOF( psikyo );
82
82
VIDEO_UPDATE( psikyo );
 
83
VIDEO_START( sngkace );
83
84
 
84
85
extern void psikyo_switch_banks( int tmap, int bank );
85
86
 
1205
1206
        MDRV_GFXDECODE(psikyo)
1206
1207
        MDRV_PALETTE_LENGTH(0x1000)
1207
1208
 
1208
 
        MDRV_VIDEO_START(psikyo)
 
1209
        MDRV_VIDEO_START(sngkace)
1209
1210
        MDRV_VIDEO_EOF(psikyo)
1210
1211
        MDRV_VIDEO_UPDATE(psikyo)
1211
1212
 
1309
1310
 
1310
1311
        /* video hardware */
1311
1312
        MDRV_SCREEN_ADD("screen", RASTER)
1312
 
        MDRV_SCREEN_REFRESH_RATE(59.3)
 
1313
        MDRV_SCREEN_REFRESH_RATE(59.90)    /* verified on pcb */
1313
1314
        MDRV_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)   // we're using IPT_VBLANK
1314
1315
        MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
1315
1316
        MDRV_SCREEN_SIZE(320, 256)
1369
1370
        ROM_LOAD( "3-u58.bin", 0x00000, 0x20000, CRC(310f5c76) SHA1(dbfd1c5a7a514bccd89fc4f7191744cf76bb745d) )
1370
1371
        ROM_RELOAD(            0x10000, 0x20000             )
1371
1372
 
1372
 
        ROM_REGION( 0x200000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1373
        ROM_REGION( 0x200000, "gfx1", 0 )       /* Sprites */
1373
1374
        ROM_LOAD( "u14.bin",  0x000000, 0x200000, CRC(00a546cb) SHA1(30a8679b49928d5fcbe58b5eecc2ebd08173adf8) )
1374
1375
 
1375
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layers 0 + 1 */
 
1376
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layers 0 + 1 */
1376
1377
        ROM_LOAD( "u34.bin",  0x000000, 0x100000, CRC(e6a75bd8) SHA1(1aa84ea54584b6c8b2846194b48bf6d2afa67fee) )
1377
1378
        ROM_LOAD( "u35.bin",  0x100000, 0x100000, CRC(c4ca0164) SHA1(c75422de2e0127cdc23d8c223b674a5bd85b00fb) )
1378
1379
 
1394
1395
        ROM_LOAD( "3-u58.bin", 0x00000, 0x20000, CRC(310f5c76) SHA1(dbfd1c5a7a514bccd89fc4f7191744cf76bb745d) )
1395
1396
        ROM_RELOAD(            0x10000, 0x20000             )
1396
1397
 
1397
 
        ROM_REGION( 0x200000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1398
        ROM_REGION( 0x200000, "gfx1", 0 )       /* Sprites */
1398
1399
        ROM_LOAD( "u14.bin",  0x000000, 0x200000, CRC(00a546cb) SHA1(30a8679b49928d5fcbe58b5eecc2ebd08173adf8) )
1399
1400
 
1400
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layers 0 + 1 */
 
1401
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layers 0 + 1 */
1401
1402
        ROM_LOAD( "u34.bin",  0x000000, 0x100000, CRC(e6a75bd8) SHA1(1aa84ea54584b6c8b2846194b48bf6d2afa67fee) )
1402
1403
        ROM_LOAD( "u35.bin",  0x100000, 0x100000, CRC(c4ca0164) SHA1(c75422de2e0127cdc23d8c223b674a5bd85b00fb) )
1403
1404
 
1431
1432
        memory_install_write32_handler(cputag_get_address_space(machine, "maincpu", ADDRESS_SPACE_PROGRAM), 0xc00010, 0xc00013, 0, 0, psikyo_soundlatch_w);
1432
1433
 
1433
1434
        psikyo_ka302c_banking = 0; // SH201B doesn't have any gfx banking
1434
 
        psikyo_switch_banks(0, 0); // sngkace / samuraia don't use banking
1435
 
        psikyo_switch_banks(1, 1); // They share "gfx2" to save memory on other boards
1436
1435
 
1437
1436
        /* Enable other regions */
1438
1437
#if 0
1477
1476
        ROM_LOAD( "3-u71.bin", 0x00000, 0x20000, CRC(2168e4ba) SHA1(ca7ad6acb5f806ce2528e7b52c19e8cceecb8543) )
1478
1477
        ROM_RELOAD(            0x10000, 0x20000             )
1479
1478
 
1480
 
        ROM_REGION( 0x700000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1479
        ROM_REGION( 0x700000, "gfx1", 0 )       /* Sprites */
1481
1480
        ROM_LOAD( "u14.bin",  0x000000, 0x200000, CRC(7d7e8a00) SHA1(9f35f5b54ae928e9bf2aa6ad4604f669857955ec) )
1482
1481
        ROM_LOAD( "u24.bin",  0x200000, 0x200000, CRC(5e3ffc9d) SHA1(c284eb9ef56c8e6261fe11f91a10c5c5a56c9803) )
1483
1482
        ROM_LOAD( "u15.bin",  0x400000, 0x200000, CRC(a827bfb5) SHA1(6e02436e12085016cf1982c9ae07b6c6dec82f1b) )
1484
1483
        ROM_LOAD( "u25.bin",  0x600000, 0x100000, CRC(ef652e0c) SHA1(6dd994a15ced31d1bbd1a3b0e9d8d86eca33e217) )
1485
1484
 
1486
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layers 0 + 1 */
 
1485
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layers 0 + 1 */
1487
1486
        ROM_LOAD( "u33.bin",  0x000000, 0x200000, CRC(54494e6b) SHA1(f5d090d2d34d908b56b53a246def194929eba990) )
1488
1487
 
1489
1488
        ROM_REGION( 0x100000, "ym", 0 ) /* ADPCM Samples */
1507
1506
        ROM_LOAD( "k3-u71.bin", 0x00000, 0x20000, CRC(11994055) SHA1(619776c178361f23de37ff14e87284ec0f1f4f10) )
1508
1507
        ROM_RELOAD(            0x10000, 0x20000             )
1509
1508
 
1510
 
        ROM_REGION( 0x700000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1509
        ROM_REGION( 0x700000, "gfx1", 0 )       /* Sprites */
1511
1510
        ROM_LOAD( "u14.bin",  0x000000, 0x200000, CRC(7d7e8a00) SHA1(9f35f5b54ae928e9bf2aa6ad4604f669857955ec) )
1512
1511
        ROM_LOAD( "u24.bin",  0x200000, 0x200000, CRC(5e3ffc9d) SHA1(c284eb9ef56c8e6261fe11f91a10c5c5a56c9803) )
1513
1512
        ROM_LOAD( "u15.bin",  0x400000, 0x200000, CRC(a827bfb5) SHA1(6e02436e12085016cf1982c9ae07b6c6dec82f1b) )
1514
1513
        ROM_LOAD( "u25.bin",  0x600000, 0x100000, CRC(ef652e0c) SHA1(6dd994a15ced31d1bbd1a3b0e9d8d86eca33e217) )
1515
1514
 
1516
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layers 0 + 1 */
 
1515
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layers 0 + 1 */
1517
1516
        ROM_LOAD( "u33.bin",  0x000000, 0x200000, CRC(54494e6b) SHA1(f5d090d2d34d908b56b53a246def194929eba990) )
1518
1517
 
1519
1518
        ROM_REGION( 0x100000, "ym", 0 ) /* ADPCM Samples */
1537
1536
        ROM_LOAD( "3-u71.bin", 0x00000, 0x20000, CRC(2168e4ba) SHA1(ca7ad6acb5f806ce2528e7b52c19e8cceecb8543) )
1538
1537
        ROM_RELOAD(            0x10000, 0x20000             )
1539
1538
 
1540
 
        ROM_REGION( 0x700000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1539
        ROM_REGION( 0x700000, "gfx1", 0 )       /* Sprites */
1541
1540
        ROM_LOAD( "u14.bin",  0x000000, 0x200000, CRC(7d7e8a00) SHA1(9f35f5b54ae928e9bf2aa6ad4604f669857955ec) )
1542
1541
        ROM_LOAD( "u24.bin",  0x200000, 0x200000, CRC(5e3ffc9d) SHA1(c284eb9ef56c8e6261fe11f91a10c5c5a56c9803) )
1543
1542
        ROM_LOAD( "u15.bin",  0x400000, 0x200000, CRC(a827bfb5) SHA1(6e02436e12085016cf1982c9ae07b6c6dec82f1b) )
1544
1543
        ROM_LOAD( "u25.bin",  0x600000, 0x100000, CRC(ef652e0c) SHA1(6dd994a15ced31d1bbd1a3b0e9d8d86eca33e217) )
1545
1544
 
1546
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layers 0 + 1 */
 
1545
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layers 0 + 1 */
1547
1546
        ROM_LOAD( "u33.bin",  0x000000, 0x200000, CRC(54494e6b) SHA1(f5d090d2d34d908b56b53a246def194929eba990) )
1548
1547
 
1549
1548
        ROM_REGION( 0x100000, "ym", 0 ) /* ADPCM Samples */
1568
1567
        ROM_LOAD( "3-u71.bin", 0x00000, 0x20000, CRC(22411fab) SHA1(1094cb51712e40ae65d0082b408572bdec06ae8b) )
1569
1568
        ROM_RELOAD(            0x10000, 0x20000             )
1570
1569
 
1571
 
        ROM_REGION( 0x700000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1570
        ROM_REGION( 0x700000, "gfx1", 0 )       /* Sprites */
1572
1571
        ROM_LOAD( "u14.bin",  0x000000, 0x200000, CRC(282d89c3) SHA1(3b4b17f4a37efa2f7e232488aaba7c77d10c84d2) )
1573
1572
        ROM_LOAD( "u24.bin",  0x200000, 0x200000, CRC(bbe9d3d1) SHA1(9da0b0b993e8271a8119e9c2f602e52325983f79) )
1574
1573
        ROM_LOAD( "u15.bin",  0x400000, 0x200000, CRC(d4d1b07c) SHA1(232109db8f6e137fbc8826f38a96057067cb19dc) )
1575
1574
//  ROM_LOAD( "u25.bin",  0x600000, 0x100000  NOT PRESENT
1576
1575
 
1577
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layers 0 + 1 */
 
1576
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layers 0 + 1 */
1578
1577
        ROM_LOAD( "u33.bin",  0x000000, 0x200000, CRC(4c8577f1) SHA1(d27043514632954a06667ac63f4a4e4a31870511) )
1579
1578
 
1580
1579
        ROM_REGION( 0x100000, "ym", 0 ) /* ADPCM Samples */
1632
1631
        ROM_LOAD( "3-u71.bin", 0x00000, 0x20000, CRC(e3e366bd) SHA1(1f5b5909745802e263a896265ea365df76d3eaa5) )
1633
1632
        ROM_RELOAD(            0x10000, 0x20000             )
1634
1633
 
1635
 
        ROM_REGION( 0x800000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1634
        ROM_REGION( 0x800000, "gfx1", 0 )       /* Sprites */
1636
1635
        ROM_LOAD( "u20.bin",  0x000000, 0x200000, CRC(28a27fee) SHA1(913f3bc4d0c6fb6b776a020c8099bf96f16fd06f) )
1637
1636
        ROM_LOAD( "u22.bin",  0x200000, 0x200000, CRC(ca152a32) SHA1(63efee83cb5982c77ca473288b3d1a96b89e6388) )
1638
1637
        ROM_LOAD( "u21.bin",  0x400000, 0x200000, CRC(c5d60ea9) SHA1(e5ce90788211c856172e5323b01b2c7ab3d3fe50) )
1639
1638
        ROM_LOAD( "u23.bin",  0x600000, 0x200000, CRC(48710332) SHA1(db38b732a09b31ce55a96ec62987baae9b7a00c1) )
1640
1639
 
1641
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1640
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layer 0 + 1 */
1642
1641
        ROM_LOAD( "u34.bin",  0x000000, 0x200000, CRC(aaf83e23) SHA1(1c75d09ff42c0c215f8c66c699ca75688c95a05e) )
1643
1642
 
1644
1643
        ROM_REGION( 0x100000, "ym", 0 ) /* ADPCM Samples */
1752
1751
        ROM_REGION( 0x000100, "cpu2", 0 )               /* MCU? */
1753
1752
        ROM_LOAD( "4-u59.bin", 0x00000, 0x00100, NO_DUMP )
1754
1753
 
1755
 
        ROM_REGION( 0x800000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1754
        ROM_REGION( 0x800000, "gfx1", 0 )       /* Sprites */
1756
1755
        ROM_LOAD( "u20.bin",  0x000000, 0x200000, CRC(28a27fee) SHA1(913f3bc4d0c6fb6b776a020c8099bf96f16fd06f) )
1757
1756
        ROM_LOAD( "u22.bin",  0x200000, 0x200000, CRC(ca152a32) SHA1(63efee83cb5982c77ca473288b3d1a96b89e6388) )
1758
1757
        ROM_LOAD( "u21.bin",  0x400000, 0x200000, CRC(c5d60ea9) SHA1(e5ce90788211c856172e5323b01b2c7ab3d3fe50) )
1759
1758
        ROM_LOAD( "u23.bin",  0x600000, 0x200000, CRC(48710332) SHA1(db38b732a09b31ce55a96ec62987baae9b7a00c1) )
1760
1759
 
1761
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1760
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layer 0 + 1 */
1762
1761
        ROM_LOAD( "u34.bin",  0x000000, 0x200000, CRC(aaf83e23) SHA1(1c75d09ff42c0c215f8c66c699ca75688c95a05e) )
1763
1762
 
1764
1763
        ROM_REGION( 0x200000, "ymf", 0 )        /* Samples */
1782
1781
        ROM_REGION( 0x000100, "cpu2", 0 )               /* MCU? */
1783
1782
        ROM_LOAD( "4-u59.bin", 0x00000, 0x00100, NO_DUMP )
1784
1783
 
1785
 
        ROM_REGION( 0x800000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1784
        ROM_REGION( 0x800000, "gfx1", 0 )       /* Sprites */
1786
1785
        ROM_LOAD( "u20.bin",  0x000000, 0x200000, CRC(28a27fee) SHA1(913f3bc4d0c6fb6b776a020c8099bf96f16fd06f) )
1787
1786
        ROM_LOAD( "u22.bin",  0x200000, 0x200000, CRC(ca152a32) SHA1(63efee83cb5982c77ca473288b3d1a96b89e6388) )
1788
1787
        ROM_LOAD( "u21.bin",  0x400000, 0x200000, CRC(c5d60ea9) SHA1(e5ce90788211c856172e5323b01b2c7ab3d3fe50) )
1789
1788
        ROM_LOAD( "u23.bin",  0x600000, 0x200000, CRC(48710332) SHA1(db38b732a09b31ce55a96ec62987baae9b7a00c1) )
1790
1789
 
1791
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1790
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layer 0 + 1 */
1792
1791
        ROM_LOAD( "u34.bin",  0x000000, 0x200000, CRC(aaf83e23) SHA1(1c75d09ff42c0c215f8c66c699ca75688c95a05e) )
1793
1792
 
1794
1793
        ROM_REGION( 0x200000, "ymf", 0 )        /* Samples */
1812
1811
        ROM_REGION( 0x000100, "cpu2", 0 )               /* MCU */
1813
1812
        ROM_LOAD( "4-u59.bin", 0x00000, 0x00100, NO_DUMP )
1814
1813
 
1815
 
        ROM_REGION( 0x800000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1814
        ROM_REGION( 0x800000, "gfx1", 0 )       /* Sprites */
1816
1815
        ROM_LOAD( "u20.bin",  0x000000, 0x200000, CRC(28a27fee) SHA1(913f3bc4d0c6fb6b776a020c8099bf96f16fd06f) )
1817
1816
        ROM_LOAD( "u22.bin",  0x200000, 0x200000, CRC(ca152a32) SHA1(63efee83cb5982c77ca473288b3d1a96b89e6388) )
1818
1817
        ROM_LOAD( "u21.bin",  0x400000, 0x200000, CRC(c5d60ea9) SHA1(e5ce90788211c856172e5323b01b2c7ab3d3fe50) )
1819
1818
        ROM_LOAD( "u23.bin",  0x600000, 0x200000, CRC(48710332) SHA1(db38b732a09b31ce55a96ec62987baae9b7a00c1) )
1820
1819
 
1821
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1820
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layer 0 + 1 */
1822
1821
        ROM_LOAD( "u34.bin",  0x000000, 0x200000, CRC(aaf83e23) SHA1(1c75d09ff42c0c215f8c66c699ca75688c95a05e) )
1823
1822
 
1824
1823
        ROM_REGION( 0x200000, "ymf", 0 )        /* Samples */
1842
1841
        ROM_REGION( 0x000100, "cpu2", 0 )               /* MCU */
1843
1842
        ROM_LOAD( "4-u59.bin", 0x00000, 0x00100, NO_DUMP )
1844
1843
 
1845
 
        ROM_REGION( 0x800000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1844
        ROM_REGION( 0x800000, "gfx1", 0 )       /* Sprites */
1846
1845
        ROM_LOAD( "u20.bin",  0x000000, 0x200000, CRC(28a27fee) SHA1(913f3bc4d0c6fb6b776a020c8099bf96f16fd06f) )
1847
1846
        ROM_LOAD( "u22.bin",  0x200000, 0x200000, CRC(ca152a32) SHA1(63efee83cb5982c77ca473288b3d1a96b89e6388) )
1848
1847
        ROM_LOAD( "u21.bin",  0x400000, 0x200000, CRC(c5d60ea9) SHA1(e5ce90788211c856172e5323b01b2c7ab3d3fe50) )
1849
1848
        ROM_LOAD( "u23.bin",  0x600000, 0x200000, CRC(48710332) SHA1(db38b732a09b31ce55a96ec62987baae9b7a00c1) )
1850
1849
 
1851
 
        ROM_REGION( 0x200000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1850
        ROM_REGION( 0x200000, "gfx2", 0 )       /* Layer 0 + 1 */
1852
1851
        ROM_LOAD( "u34.bin",  0x000000, 0x200000, CRC(aaf83e23) SHA1(1c75d09ff42c0c215f8c66c699ca75688c95a05e) )
1853
1852
 
1854
1853
        ROM_REGION( 0x200000, "ymf", 0 )        /* Samples */
1939
1938
        ROM_REGION( 0x000100, "cpu2", 0 )               /* MCU */
1940
1939
        ROM_LOAD( "4-u59.bin", 0x00000, 0x00100, NO_DUMP )
1941
1940
 
1942
 
        ROM_REGION( 0x600000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1941
        ROM_REGION( 0x600000, "gfx1", 0 )       /* Sprites */
1943
1942
        ROM_LOAD16_WORD_SWAP( "u20.bin",  0x000000, 0x200000, CRC(ed42ef73) SHA1(74693fcc83a2654ddb18fd513d528033863d6116) )
1944
1943
        ROM_LOAD16_WORD_SWAP( "u22.bin",  0x200000, 0x200000, CRC(8d21caee) SHA1(2a68af8b2be2158dcb152c434e91a75871478d41) )
1945
1944
        ROM_LOAD16_WORD_SWAP( "u21.bin",  0x400000, 0x200000, CRC(efe34eed) SHA1(7891495b443a5acc7b2f17fe694584f6cb0afacc) )
1946
1945
 
1947
 
        ROM_REGION( 0x400000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1946
        ROM_REGION( 0x400000, "gfx2", 0 )       /* Layer 0 + 1 */
1948
1947
        ROM_LOAD16_WORD_SWAP( "u34.bin",  0x000000, 0x400000, CRC(2a2e2eeb) SHA1(f1d99353c0affc5c908985e6f2a5724e5223cccc) ) /* four banks of 0x100000 */
1949
1948
 
1950
1949
        ROM_REGION( 0x400000, "ymf", 0 )        /* Samples */
1969
1968
        ROM_REGION( 0x000100, "cpu2", 0 )               /* MCU */
1970
1969
        ROM_LOAD( "4-u59.bin", 0x00000, 0x00100, NO_DUMP )
1971
1970
 
1972
 
        ROM_REGION( 0x600000, "gfx1", ROMREGION_DISPOSE )       /* Sprites */
 
1971
        ROM_REGION( 0x600000, "gfx1", 0 )       /* Sprites */
1973
1972
        ROM_LOAD16_WORD_SWAP( "u20.bin",  0x000000, 0x200000, CRC(ed42ef73) SHA1(74693fcc83a2654ddb18fd513d528033863d6116) )
1974
1973
        ROM_LOAD16_WORD_SWAP( "u22.bin",  0x200000, 0x200000, CRC(8d21caee) SHA1(2a68af8b2be2158dcb152c434e91a75871478d41) )
1975
1974
        ROM_LOAD16_WORD_SWAP( "u21.bin",  0x400000, 0x200000, CRC(efe34eed) SHA1(7891495b443a5acc7b2f17fe694584f6cb0afacc) )
1976
1975
 
1977
 
        ROM_REGION( 0x400000, "gfx2", ROMREGION_DISPOSE )       /* Layer 0 + 1 */
 
1976
        ROM_REGION( 0x400000, "gfx2", 0 )       /* Layer 0 + 1 */
1978
1977
        ROM_LOAD16_WORD_SWAP( "u34.bin",  0x000000, 0x400000, CRC(2a2e2eeb) SHA1(f1d99353c0affc5c908985e6f2a5724e5223cccc) ) /* four banks of 0x100000 */
1979
1978
 
1980
1979
        ROM_REGION( 0x400000, "ymf", 0 )        /* Samples */