X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fnotes.txt;h=0f2499cb97dd4b7ba0d72143101c5af6ff496ea5;hb=757714edd1100cfbe4dd5c46e4eff480ee25dd3d;hp=04b808aea773b3ec4e8cf0aefca073a5c2babfb3;hpb=a82cb4de3c1820fe8a9a8185e55eef94a9f4b079;p=thunder diff --git a/doc/notes.txt b/doc/notes.txt old mode 100755 new mode 100644 index 04b808a..0f2499c --- a/doc/notes.txt +++ b/doc/notes.txt @@ -124,3 +124,55 @@ Pin 35: Same as other processor (1.538 MHz) pin 34: Same as other processor (1.538 MHz) Hope this helps! ;) + + +ROM_START( rthunder ) + ROM_REGION( 0x18000, REGION_CPU1, 0 ) + ROM_LOAD( "rt3-1b.9c", 0x8000, 0x8000) /* 9d empty */ + + ROM_REGION( 0x40000, REGION_USER1, 0 ) /* bank switched data for CPU1 */ + ROM_LOAD( "rt1-17.f1", 0x00000, 0x10000) + ROM_LOAD( "rt1-18.h1", 0x10000, 0x10000) + ROM_LOAD( "rt1-19.k1", 0x20000, 0x10000) + ROM_LOAD( "rt1-20.m1", 0x30000, 0x10000) + + ROM_REGION( 0x18000, REGION_CPU2, 0 ) + ROM_LOAD( "rt3-2b.12c", 0x08000, 0x8000) + ROM_LOAD( "rt3-3.12d", 0x10000, 0x8000) + + ROM_REGION( 0x18000, REGION_GFX1, ROMREGION_DISPOSE ) + ROM_LOAD( "rt1-7.7r", 0x00000, 0x10000) /* plane 1,2 */ + ROM_LOAD( "rt1-8.7s", 0x10000, 0x08000) /* plane 3 */ + + ROM_REGION( 0x0c000, REGION_GFX2, ROMREGION_DISPOSE ) + ROM_LOAD( "rt1-5.4r", 0x00000, 0x08000) /* plane 1,2 */ + ROM_LOAD( "rt1-6.4s", 0x08000, 0x04000) /* plane 3 */ + + ROM_REGION( 0x80000, REGION_GFX3, ROMREGION_DISPOSE ) + ROM_LOAD( "rt1-9.12h", 0x00000, 0x10000) + ROM_LOAD( "rt1-10.12k", 0x10000, 0x10000) + ROM_LOAD( "rt1-11.12l", 0x20000, 0x10000) + ROM_LOAD( "rt1-12.12m", 0x30000, 0x10000) + ROM_LOAD( "rt1-13.12p", 0x40000, 0x10000) + ROM_LOAD( "rt1-14.12r", 0x50000, 0x10000) + ROM_LOAD( "rt1-15.12t", 0x60000, 0x10000) + ROM_LOAD( "rt1-16.12u", 0x70000, 0x10000) + + ROM_REGION( 0x1420, REGION_PROMS, 0 ) + ROM_LOAD( "mb7124e.3r", 0x0000, 0x0200) /* red & green components */ + ROM_LOAD( "mb7116e.3s", 0x0200, 0x0200) /* blue component */ + ROM_LOAD( "mb7138h.4v", 0x0400, 0x0800) /* tiles colortable */ + ROM_LOAD( "mb7138h.6v", 0x0c00, 0x0800) /* sprites colortable */ + ROM_LOAD( "mb7112e.6u", 0x1400, 0x0020) /* tile address decoder (used at runtime) */ + + ROM_REGION( 0x10000, REGION_CPU3, 0 ) + ROM_LOAD( "rt1-4.6b", 0x04000, 0x8000) + ROM_LOAD( "rt1-mcu.bin", 0x0f000, 0x1000) + + ROM_REGION( 0x40000, REGION_SOUND1, 0 ) /* PCM samples for Hitachi CPU */ + ROM_LOAD( "rt1-21.f3", 0x00000, 0x10000) + ROM_LOAD( "rt1-22.h3", 0x10000, 0x10000) + /* k3 empty */ + /* m3 empty */ +ROM_END +