trunk/src/mame/includes/bfm_sc45.h
| r19701 | r19702 | |
| 3626 | 3626 | |
| 3627 | 3627 | #define sc_fbcrz_others \ |
| 3628 | 3628 | ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \ |
| 3629 | | \ |
| 3630 | | ROM_REGION( 0x400000, "others", ROMREGION_ERASE00 ) \ |
| 3631 | | /* DMD? */ \ |
| 3632 | | ROM_LOAD( "95751937.hex", 0x0000, 0x025f91, CRC(8f412e97) SHA1(a5ff924fbc327114e59d75de644ed0d5cd7fa6b3) ) \ |
| 3633 | | ROM_LOAD( "95751937.bin", 0x0000, 0x010000, CRC(4a99ee11) SHA1(335398ebc64bbfe86e2652ac080a5943dd413928) ) /* contains PC-like references and 'Rasterspeed' stuff - the only other reference I find to this is on unmamed regarding 'Zool' */ \ |
| 3634 | 3629 | |
| 3635 | 3630 | #define sc_sdr_others \ |
| 3636 | 3631 | ROM_REGION( 0x400000, "ymz", ROMREGION_ERASE00 ) \ |
trunk/src/mame/drivers/rastersp.c
| r19701 | r19702 | |
| 947 | 947 | ROM_END |
| 948 | 948 | |
| 949 | 949 | |
| 950 | /* |
| 951 | Football Crazy runs on the (c)1997 "RASTERSPEED 2.1 31-599-001 ISS 4" PCB, which seems to be a more modern production version. |
| 952 | a PCB photo with the rom sticker showing the text below has also been seen |
| 953 | |
| 954 | Football Crazy Cashflow |
| 955 | 95 750 956 |
| 956 | STANDARD UK 64K |
| 957 | VER. FOOT 3.2 BFM |
| 950 | 958 | |
| 959 | |
| 960 | |
| 961 | */ |
| 962 | |
| 963 | // the rom also exists in some odd hex format like this |
| 964 | // ROM_LOAD( "95751937.hex", 0x0000, 0x025f91, CRC(8f412e97) SHA1(a5ff924fbc327114e59d75de644ed0d5cd7fa6b3) ) |
| 965 | ROM_START( fbcrazy ) |
| 966 | ROM_REGION(0x100000, "bios", 0) |
| 967 | ROM_LOAD( "95751937.bin", 0x0000, 0x010000, CRC(4a99ee11) SHA1(335398ebc64bbfe86e2652ac080a5943dd413928) ) |
| 968 | |
| 969 | ROM_REGION(0x1000000, "dspboot", 0) |
| 970 | ROM_LOAD32_BYTE( "95751937.bin", 0x0000, 0x010000, CRC(4a99ee11) SHA1(335398ebc64bbfe86e2652ac080a5943dd413928) ) |
| 971 | |
| 972 | ROM_REGION(0x8000, "proms", ROMREGION_ERASEFF ) |
| 973 | /* not on this PCB type? */ |
| 974 | |
| 975 | ROM_REGION(0x8000, "nvram", ROMREGION_ERASEFF ) |
| 976 | |
| 977 | DISK_REGION( "scsibus:0:harddisk" ) |
| 978 | DISK_IMAGE( "fbcrazy_hdd", 0, NO_DUMP ) |
| 979 | ROM_END |
| 980 | |
| 951 | 981 | /************************************* |
| 952 | 982 | * |
| 953 | 983 | * Game drivers |
| r19701 | r19702 | |
| 955 | 985 | *************************************/ |
| 956 | 986 | |
| 957 | 987 | GAME( 1994, rotr, 0, rastersp, rotr, driver_device, 0, ROT0, "BFM/Mirage", "Rise of the Robots (prototype)", 0 ) |
| 988 | GAME( 1997, fbcrazy, 0, rastersp, rotr, driver_device, 0, ROT0, "BFM", "Football Crazy (Video Quiz)", GAME_NOT_WORKING ) |