1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611
|
<?xml version="1.0"?>
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
<!--
license:CC0-1.0
-->
<softwarelist name="st_flop" description="Atari ST disk images">
<software name="10frame" supported="no">
<!-- SPS (CAPS) release 3266 -->
<description>10th Frame - Pro Bowling Simulator (Europe)</description>
<year>1987</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="10th frame (europe).ipf" size="468252" crc="d866745b" sha1="011c930e119495a760beabf9edba16b3291a201e" offset="0" />
</dataarea>
</part>
</software>
<software name="1943" supported="no">
<description>1943 (Europe)</description>
<year>1987</year>
<publisher>Kixx</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="3133369">
<rom name="1943.mfm" size="3133369" crc="ff64e5f9" sha1="65a442c6812245e3842fdad5e60c9ccb17b0f80d" />
</dataarea>
</part>
</software>
<software name="500gp" supported="no">
<!-- SPS (CAPS) release 3271 -->
<description>500cc Grand Prix (Europe)</description>
<year>1987</year>
<publisher>Microids</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="471664">
<rom name="500cc grand prix (europe).ipf" size="471664" crc="bf9eac7a" sha1="365b28bd7fff6d4599c23af7a1c3d2f29a919c2e" offset="0" />
</dataarea>
</part>
</software>
<software name="5thgear" supported="no">
<!-- SPS (CAPS) release 3267 -->
<description>5th Gear (Europe)</description>
<year>1989</year>
<publisher>Hewson</publisher>
<notes><![CDATA[
11 [bombs] Line 1111 Emulator
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="5th gear (europe).ipf" size="520242" crc="61e3ea6d" sha1="998216d5d304bbb67ddb23b3981403c9b97a3b8f" offset="0" />
</dataarea>
</part>
</software>
<software name="academy" supported="no">
<!-- SPS (CAPS) release 3269 -->
<description>Academy (Europe)</description>
<year>1987</year>
<publisher>CRL</publisher>
<info name="alt_title" value="Academy (Tau Ceti II)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="academy - tau ceti ii (europe).ipf" size="468252" crc="381d824d" sha1="4583ee64dba9d72d3969044982d1cf23765ccb0a" offset="0" />
</dataarea>
</part>
</software>
<software name="actionfg" supported="no">
<!-- SPS (CAPS) release 3270 -->
<description>Action Fighter (Europe)</description>
<year>1989</year>
<publisher>Firebird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="action fighter (europe).ipf" size="468252" crc="4de0b420" sha1="5322b37521fbddea1977a83921af4ccd44dc390d" offset="0" />
</dataarea>
</part>
</software>
<software name="actnserv" supported="no">
<!-- SPS (CAPS) release 3312 -->
<description>Action Service (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="521027">
<rom name="action service (europe).ipf" size="521027" crc="c066dd76" sha1="b49e9eec355ef12069a66e0ecf0ec541554a450b" offset="0" />
</dataarea>
</part>
</software>
<software name="addiball" supported="no">
<!-- SPS (CAPS) release 3116 -->
<description>Addictaball (Europe)</description>
<year>1987</year>
<publisher>Alligata</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="addictaball (europe).ipf" size="468252" crc="d12b34d0" sha1="256c9206e99c7a8e8083fe0ec0c0bd22fd9755d9" offset="0" />
</dataarea>
</part>
</software>
<software name="tiebreak" supported="no">
<!-- SPS (CAPS) release 3174 -->
<description>Adidas Championship Tie Break (Europe)</description>
<year>1990</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Title screen shows a bit of GFX garbage
Doesn't show credits before main menu, hangs there (input devices don't work)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="512061">
<rom name="adidas championship tie break (europe).ipf" size="512061" crc="d479f726" sha1="e7c1f393c0e63703ffae10b60be00a070a3f4fa8" offset="0" />
</dataarea>
</part>
</software>
<software name="advfruit" supported="no">
<!-- SPS (CAPS) release 3314 -->
<description>Advanced Fruit Machine Simulator (Europe)</description>
<year>1991</year>
<publisher>Codemasters</publisher>
<notes><![CDATA[
White screen, [68k] stalls on bootstrap
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="advanced fruit machine simulator (europe).ipf" size="520242" crc="5194583f" sha1="15c62d409a7159a0ef382e05eca2932f71c19e98" offset="0" />
</dataarea>
</part>
</software>
<software name="advrugby" supported="no">
<!-- SPS (CAPS) release 3117 -->
<description>Advanced Rugby Simulator (Europe)</description>
<year>1988</year>
<publisher>Codemasters</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="advanced rugby simulator (europe).ipf" size="517627" crc="8bb377e4" sha1="991fa6d717a4780ed2a0071eaa598e7ff5e02d87" offset="0" />
</dataarea>
</part>
</software>
<software name="advrobin" supported="no">
<!-- SPS (CAPS) release 3213 -->
<description>The Adventures of Robin Hood (Europe)</description>
<year>1991</year>
<publisher>Millennium</publisher>
<info name="usage" value="Sports manual copy protection"/>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="adventures of robin hood, the (europe) (en,fr,de,it).ipf" size="918252" crc="266ae29a" sha1="b00d85c37decb71d4511b5e3e1b86b1b65d3010f" offset="0" />
</dataarea>
</part>
</software>
<software name="aburner" supported="no">
<!-- SPS (CAPS) release 3118 -->
<description>Afterburner (Europe)</description>
<year>1988</year>
<publisher>Activision</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="939974">
<rom name="afterburner (europe) (disk a).ipf" size="939974" crc="0d5c8b14" sha1="001f3a2863ca580dd86b93ee941e487ad38dc3ff" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="520252">
<rom name="afterburner (europe) (disk b).ipf" size="520252" crc="2eff90b6" sha1="15fbd34d94ae34ac8c99a304d8f8a2a3aa008db7" offset="0" />
</dataarea>
</part>
</software>
<software name="alienwrl" supported="no">
<!-- SPS (CAPS) release 3272 -->
<description>Alien World (Europe)</description>
<year>1992</year>
<publisher>HiTec Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="930177">
<rom name="alien world (europe).ipf" size="930177" crc="5df7f24f" sha1="ea4c8384d730d3c30b5b4366f2c8e81c38647f8b" offset="0" />
</dataarea>
</part>
</software>
<software name="altreal" supported="no">
<!-- SPS (CAPS) release 3313 -->
<description>Alternate Reality (Europe, v3.0)</description>
<year>1986</year>
<publisher>U.S. Gold</publisher>
<info name="alt_title" value="Alternate Reality - The City" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="alternate reality - the city (europe) (v3.0).ipf" size="468252" crc="946b71d3" sha1="aa7272a47814f95d8d146d4bee0572c7062697df" offset="0" />
</dataarea>
</part>
</software>
<software name="anarchy" supported="no">
<!-- SPS (CAPS) release 3231 -->
<description>Anarchy (Europe)</description>
<year>1990</year>
<publisher>Psyclapse</publisher>
<notes><![CDATA[
White screen, [68k] stalls on bootstrap
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="830127">
<rom name="anarchy (europe).ipf" size="830127" crc="2383838c" sha1="9752df7e558bc63a11ce1ee636baec50dc385dc5" offset="0" />
</dataarea>
</part>
</software>
<software name="anotherw" supported="no">
<!-- SPS (CAPS) release 3119 -->
<description>Another World (Europe)</description>
<year>1991</year>
<publisher>U.S. Gold</publisher>
<info name="usage" value="Sports code wheel copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="918252">
<rom name="another world (europe) (disk a).ipf" size="918252" crc="c488e5d2" sha1="2a7ea841314d2543954ed272b408738539d35b2f" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="918252">
<rom name="another world (europe) (disk b).ipf" size="918252" crc="a5675a82" sha1="dd8e1f16b4c0e8654961481ffcb45888abf5ba47" offset="0" />
</dataarea>
</part>
</software>
<software name="apprent" supported="no">
<!-- SPS (CAPS) release 3273 -->
<description>Apprentice (Europe)</description>
<year>1990</year>
<publisher>Rainbow Arts</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018252">
<rom name="apprentice (europe).ipf" size="1018252" crc="a89c8fe2" sha1="6db663c1c7bbcb4eaed2aa855daf3d68de68e5c4" offset="0" />
</dataarea>
</part>
</software>
<software name="archipel" supported="no">
<!-- SPS (CAPS) release 3227 -->
<description>Archipelagos (Europe)</description>
<year>1989</year>
<publisher>Logotron</publisher>
<notes><![CDATA[
4 [bombs] Illegal instruction
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="archipelagos (europe).ipf" size="517627" crc="d2f671de" sha1="9cf425deba18ef912cf277227f2fa4a9480a4dc3" offset="0" />
</dataarea>
</part>
</software>
<software name="arctfox" supported="no">
<!-- SPS (CAPS) release 3253 -->
<description>Arcticfox (Europe)</description>
<year>1986</year>
<publisher>Electronic Arts</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="469246">
<rom name="arcticfox (europe).ipf" size="469246" crc="4c15f718" sha1="97c8ff01349161d15bc79616132f2d49eaccf843" offset="0" />
</dataarea>
</part>
</software>
<software name="artdream" supported="no">
<!-- SPS (CAPS) release 3234 -->
<description>Artificial Dreams (Europe)</description>
<year>1988</year>
<publisher>Addictive</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="artificial dreams (europe).ipf" size="518254" crc="919fd6ee" sha1="b34210360a336dad82094a26f361dfccda4c4d3f" offset="0" />
</dataarea>
</part>
</software>
<software name="atax" supported="no">
<!-- SPS (CAPS) release 3230 -->
<description>Atax (Europe)</description>
<year>1988</year>
<publisher>Ramware</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="atax (europe).ipf" size="518252" crc="45c9c841" sha1="3be4f157c07891e20909e9a5c3e3a2d4ee1712c3" offset="0" />
</dataarea>
</part>
</software>
<software name="atomix" supported="no">
<!-- SPS (CAPS) release 3229 -->
<description>Atomix (Europe)</description>
<year>1989</year>
<publisher>Thalion</publisher>
<notes><![CDATA[
Black screen after Thalion logo, attempts to r/w [FPU] $fffa40
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="522812">
<rom name="atomix (europe).ipf" size="522812" crc="c9e3437c" sha1="5ed73e1a75d508c5a92d63ad657ad8bd6313781f" offset="0" />
</dataarea>
</part>
</software>
<software name="backgamm" supported="no">
<!-- SPS (CAPS) release 3254 -->
<description>Backgammon Royale (Europe, v2.50 19910104)</description>
<year>1991</year>
<publisher>CP Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="backgammon royale (europe) (en,fr,de) (v2.50 4 jan 91).ipf" size="468252" crc="3f1c40a2" sha1="aecc70389395a35dae32dace15196c0f39c9d171" offset="0" />
</dataarea>
</part>
</software>
<software name="balpow90" supported="no">
<!-- SPS (CAPS) release 3252 -->
<description>Balance of Power - The 1990 Edition (Europe)</description>
<year>1989</year>
<publisher>Mindscape</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="927372">
<rom name="balance of power - the 1990 edition (europe).ipf" size="927372" crc="144e8ce2" sha1="b757bd1956c2dad4aeebabd363aac15754f43fb7" offset="0" />
</dataarea>
</part>
</software>
<software name="ballistx" supported="no">
<!-- SPS (CAPS) release 3232 -->
<description>Ballistix (Europe)</description>
<year>1989</year>
<publisher>Psyclapse</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="ballistix (europe).ipf" size="517627" crc="a3be4e27" sha1="1ba4df50a837cfd9563332115c31e306aceb8c53" offset="0" />
</dataarea>
</part>
</software>
<software name="barbpal" supported="no">
<!-- SPS (CAPS) release 3255 -->
<description>Barbarian (Europe, Palace)</description>
<year>1987</year>
<publisher>Palace</publisher>
<info name="alt_title" value="Barbarian - The Ultimate Warrior" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468877">
<rom name="barbarian - the ultimate warrior (europe).ipf" size="468877" crc="95f647ed" sha1="eb04c214363dd13dd3e96ac8968f961de1ec000e" offset="0" />
</dataarea>
</part>
</software>
<software name="btlchess" supported="no">
<!-- SPS (CAPS) release 3108 -->
<description>Battle Chess (Europe)</description>
<year>1989</year>
<publisher>Interplay</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Startup Disk" />
<dataarea name="flop" size="518252">
<rom name="battle chess (europe) (startup disk).ipf" size="518252" crc="92996e4d" sha1="338ff1b456fba8598d73d97b51dc966c85e53d65" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Animation Disk" />
<dataarea name="flop" size="518252">
<rom name="battle chess (europe) (animation disk).ipf" size="518252" crc="e061cbf4" sha1="5f067484e9d29ee8e727bd98b409e798605c8211" offset="0" />
</dataarea>
</part>
</software>
<software name="btlprobe" supported="no">
<!-- SPS (CAPS) release 3233 -->
<description>Battle Probe (Europe)</description>
<year>1988</year>
<publisher>Crysys</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="battle probe (europe).ipf" size="518252" crc="0298b567" sha1="83ba2d8f81454eae99144a1bc7cb7227b9b8cf12" offset="0" />
</dataarea>
</part>
</software>
<software name="bhawk42" supported="no">
<!-- SPS (CAPS) release 3120 -->
<description>Battlehawks 1942 (Europe, v1.0 19890301)</description>
<year>1989</year>
<publisher>Lucasfilm</publisher>
<notes><![CDATA[
Fussy on [disk swap], will return to TOS when trying to begin a flight
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="468252">
<rom name="battlehawks 1942 (europe) (v1.0 3.1.89) (disk 1).ipf" size="468252" crc="8da94a8a" sha1="b2898f6a86dc105ca474d77f0f6a8af0681544bd" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="battlehawks 1942 (europe) (v1.0 3.1.89) (disk 2).ipf" size="468252" crc="946c16ff" sha1="bf8e15305ce2bad6aa3db0df50b7d3d45248b9c1" offset="0" />
</dataarea>
</part>
</software>
<software name="bchvolly" supported="no">
<!-- SPS (CAPS) release 3353 -->
<description>Beach Volley (Europe)</description>
<year>1991</year>
<publisher>Ocean</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="520242">
<rom name="beach volley (europe) (disk 1).ipf" size="520242" crc="7ac39a4f" sha1="cf96c8340e0f58d1877e164c02a6a71d36f01522" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="520242">
<rom name="beach volley (europe) (disk 2).ipf" size="520242" crc="3a4b4821" sha1="1db7e182abf69879f48523f8368b215e252e5ee5" offset="0" />
</dataarea>
</part>
</software>
<software name="beastlrd" supported="no">
<!-- SPS (CAPS) release 3352 -->
<description>Beastlord (Europe)</description>
<year>1993</year>
<publisher>Grandslam</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1016196">
<rom name="beastlord (europe) (disk 1).ipf" size="1016196" crc="f9f84b83" sha1="b915c95d986a00e91033712dd4b61ee7716356cf" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1016196">
<rom name="beastlord (europe) (disk 2).ipf" size="1016196" crc="a371fafd" sha1="96c85354157713eff0fc55e47ff94a99691984a4" offset="0" />
</dataarea>
</part>
</software>
<software name="icepalac" supported="no">
<!-- SPS (CAPS) release 3121 -->
<description>Beyond the Ice Palace (Europe)</description>
<year>1988</year>
<publisher>Elite</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="beyond the ice palace (europe).ipf" size="518254" crc="d6f3964f" sha1="efb6688ecd655c0070ad5a869aba6aa1bad0e336" offset="0" />
</dataarea>
</part>
</software>
<software name="blktiger" supported="no">
<!-- SPS (CAPS) release 3192 -->
<description>Black Tiger (Europe, Les Chevaliers)</description>
<year>1990</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1010945">
<rom name="black tiger (europe) (compilation - les chevaliers).ipf" size="1010945" crc="ac0c4cdf" sha1="f6752873b7decd89eb31e0b8658e7c259cdbd429" offset="0" />
</dataarea>
</part>
</software>
<software name="blstroid" supported="no">
<!-- SPS (CAPS) release 3106 -->
<description>Blasteroids (Europe)</description>
<year>1988</year>
<publisher>Image Works</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="556258">
<rom name="blasteroids (europe) (disk 1).ipf" size="556258" crc="c3ed000e" sha1="798e20c0417a74ea7f7ca0c2ed7bef3b53773c6d" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="blasteroids (europe) (disk 2).ipf" size="518252" crc="414cff4c" sha1="ef9fdd20685a731927fa6db70dc7ec70b3ffaafd" offset="0" />
</dataarea>
</part>
</software>
<software name="blzthndr" supported="no">
<!-- SPS (CAPS) release 3122 -->
<description>Blazing Thunder (Europe)</description>
<year>1991</year>
<publisher>HiTec Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="848162">
<rom name="blazing thunder (europe).ipf" size="848162" crc="d2e24d3b" sha1="9f1c81fa8ee6eb2c069f7ce5f5489b9354a2eae8" offset="0" />
</dataarea>
</part>
</software>
<software name="blockout" supported="no">
<!-- SPS (CAPS) release 3256 -->
<description>Blockout (Europe)</description>
<year>1990</year>
<publisher>Rainbow Arts</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="blockout (europe).ipf" size="468252" crc="1f437363" sha1="46d0b2dbfa45d730f90f419f611ce43ff3807e9e" offset="0" />
</dataarea>
</part>
</software>
<software name="bloodmon" supported="no">
<!-- SPS (CAPS) release 3258 -->
<description>Blood Money (Europe, Budget)</description>
<year>1989</year>
<publisher>Sizzlers</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="blood money (europe) (budget - sizzlers) (disk 1).ipf" size="517627" crc="bd492808" sha1="afb31d83e5266ec2e9a263e1f851a3a14843b27f" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="487002">
<rom name="blood money (europe) (budget - sizzlers) (disk 2).ipf" size="487002" crc="02d3cf47" sha1="675b4cb67ef93eb8776eb57e92dc9b02b7bcd21e" offset="0" />
</dataarea>
</part>
</software>
<software name="bluesb" supported="no">
<!-- SPS (CAPS) release 3341 -->
<description>The Blues Brothers (Europe)</description>
<year>1991</year>
<publisher>Titus</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="521914">
<rom name="blues brothers, the (europe).ipf" size="521914" crc="edc0f2bb" sha1="80e32887bf33a21c7a2b1b3a732f8fd072f2e922" offset="0" />
</dataarea>
</part>
</software>
<software name="bmx" supported="no">
<!-- SPS (CAPS) release 3201 -->
<description>BMX Simulator (Europe)</description>
<year>1988</year>
<publisher>Codemasters</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517195">
<rom name="bmx simulator (europe).ipf" size="517195" crc="1c1ef32a" sha1="a98536453124c1fcd59d2af479b58d4a94a5c312" offset="0" />
</dataarea>
</part>
</software>
<software name="bobwinnr" supported="no">
<!-- SPS (CAPS) release 3257 -->
<description>Bob Winner (Europe)</description>
<year>1987</year>
<publisher>Loriciel</publisher>
<notes><![CDATA[
[keyboard] 'P' doesn't pause the game, 'space bar' doesn't change fighting stance (verify)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="486734">
<rom name="bob winner (europe).ipf" size="486734" crc="5bede1bc" sha1="04b26fdfbbab28de0afb65528391af7cd2f7b3ee" offset="0" />
</dataarea>
</part>
</software>
<software name="bombjack" supported="no">
<!-- SPS (CAPS) release 3262 -->
<description>Bomb Jack (Europe, Budget)</description>
<year>1988</year>
<publisher>Encore</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="bomb jack (europe) (budget - encore).ipf" size="518254" crc="817937b1" sha1="ff51804b7d84036f94a1d18dd46befffd50bbc3b" offset="0" />
</dataarea>
</part>
</software>
<software name="bridgema" supported="no">
<!-- SPS (CAPS) release 3202 -->
<description>Bridge Master (Europe)</description>
<year>1989</year>
<publisher>Atari</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="467820">
<rom name="bridge master (europe).ipf" size="467820" crc="ea0174bb" sha1="691caf4b464aa05e4954857da96089a00af8f0e9" offset="0" />
</dataarea>
</part>
</software>
<software name="bridgepl" supported="no">
<!-- SPS (CAPS) release 3316 -->
<description>Bridge Player 2000 with Tutor (Europe)</description>
<year>1987</year>
<publisher>CP Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="bridge player 2000 with tutor (europe).ipf" size="468252" crc="77b7b1b7" sha1="d51fcb431af891772d122ad4ea7311317dd25611" offset="0" />
</dataarea>
</part>
</software>
<software name="bumpy" supported="no">
<!-- SPS (CAPS) release 3260 -->
<description>Bumpy (Europe)</description>
<year>1989</year>
<publisher>Loriciel</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="521109">
<rom name="bumpy (europe).ipf" size="521109" crc="124b77b8" sha1="910d0099f08db3c4dc1877a8e5ff925d7666b1b9" offset="0" />
</dataarea>
</part>
</software>
<software name="burgermn" supported="no">
<!-- SPS (CAPS) release 3259 -->
<description>Burger Man (Europe)</description>
<year>1991</year>
<publisher>Byte Back</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="627858">
<rom name="burger man (europe).ipf" size="627858" crc="6f665589" sha1="b9f8c1f44fbed8d9132bc8ea06fef358be1a2a07" offset="0" />
</dataarea>
</part>
</software>
<software name="capblood" supported="no">
<!-- SPS (CAPS) release 3186 -->
<description>Captain Blood (Europe)</description>
<year>1988</year>
<publisher>Exxos</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="471232">
<rom name="captain blood (europe) (disk 1).ipf" size="471232" crc="21b83ee2" sha1="8500b6072b87aed8d1274ed09c0131b90ba40acf" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="471232">
<rom name="captain blood (europe) (disk 2).ipf" size="471232" crc="d7a70b6d" sha1="4315e2222e06fa3c4d09cefc53bd4e0321fede81" offset="0" />
</dataarea>
</part>
</software>
<software name="capfizz" supported="no">
<!-- SPS (CAPS) release 3123 -->
<description>Captain Fizz (Europe)</description>
<year>1988</year>
<publisher>Psyclapse</publisher>
<info name="alt_title" value="Captain Fizz Meets the Blaster-Trons (Box)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="captain fizz meets the blaster-trons (europe) (en,fr,de).ipf" size="517627" crc="11d1421c" sha1="d182416684e0082a031ece194bbb42e90296bfeb" offset="0" />
</dataarea>
</part>
</software>
<software name="carrierc" supported="no">
<!-- SPS (CAPS) release 3150 -->
<description>Carrier Command (Europe)</description>
<year>1988</year>
<publisher>Rainbird</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018252">
<rom name="carrier command (europe) (en,fr,de).ipf" size="1018252" crc="a4c09db8" sha1="200e85a3362a08e589acc034888dd9a285b94656" offset="0" />
</dataarea>
</part>
</software>
<software name="cartncap" supported="no">
<!-- SPS (CAPS) release 3305 -->
<description>Cartoon Capers (Europe)</description>
<year>1990</year>
<publisher>Mandarin</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1030752">
<rom name="cartoon capers (europe) (disk 1).ipf" size="1030752" crc="df42b229" sha1="782efbe096c42aa6b86e3a1e1fe8516fd595ed5a" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="cartoon capers (europe) (disk 2).ipf" size="518252" crc="692f5a1f" sha1="89467c3ee1d87788fd9cee7f967e185370da08ef" offset="0" />
</dataarea>
</part>
</software>
<software name="catch23" supported="no">
<!-- SPS (CAPS) release 3235 -->
<description>Catch 23 (Europe)</description>
<year>1987</year>
<publisher>Electronic Arts</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="512002">
<rom name="catch 23 (europe).ipf" size="512002" crc="75c10f22" sha1="9d57b61f82bf75114f789c287083ea3563399cc9" offset="0" />
</dataarea>
</part>
</software>
<software name="champbb" supported="no">
<!-- SPS (CAPS) release 3203 -->
<description>Championship Baseball (Europe)</description>
<year>1987</year>
<publisher>Gamestar</publisher>
<notes><![CDATA[
4 [bombs] Illegal instruction when trying to execute auto/baseball.prg
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468808">
<rom name="championship baseball (europe).ipf" size="468808" crc="20153397" sha1="a503f17056d7d4778c5917b06af711ee33f6f395" offset="0" />
</dataarea>
</part>
</software>
<software name="champcrk" supported="no">
<!-- SPS (CAPS) release 3311 -->
<description>Championship Cricket (Europe)</description>
<year>1988</year>
<publisher>Crysys</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="championship cricket (europe).ipf" size="468252" crc="b861d4d1" sha1="8ca3de589e689142cb3f66f4b5742a5bc4855355" offset="0" />
</dataarea>
</part>
</software>
<software name="champwrs" supported="no">
<!-- SPS (CAPS) release 3364 -->
<description>Championship Wrestling (Europe)</description>
<year>1986</year>
<publisher>U.S. Gold</publisher>
<notes><![CDATA[
Crashes when attempting to start a practice match
]]></notes>
<info name="usage" value="Requires joystick in port 0"/>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518615">
<rom name="championship wrestling (europe).ipf" size="518615" crc="f3ff3775" sha1="f664eac6d793aa156f5a2952d9c62ab1cb486a29" offset="0" />
</dataarea>
</part>
</software>
<software name="chase" supported="no">
<!-- SPS (CAPS) release 3286 -->
<description>Chase (Europe)</description>
<year>1988</year>
<publisher>Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="chase (europe).ipf" size="468252" crc="ae3ab247" sha1="931a84d2eb20fc9d410032497d97844a514fbde3" offset="0" />
</dataarea>
</part>
</software>
<software name="chasehq" supported="no">
<!-- SPS (CAPS) release 3187 -->
<description>Chase H.Q. (Europe)</description>
<year>1989</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Keeps returning to TOS on loading
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="chase h.q. (europe).ipf" size="520242" crc="f95ee17a" sha1="ce4d71db6789b07b35297d4e22284ff8a7350424" offset="0" />
</dataarea>
</part>
</software>
<software name="chsp2150" supported="no">
<!-- SPS (CAPS) release 3287 -->
<description>Chess Player 2150 (Europe)</description>
<year>1989</year>
<publisher>Oxford Softworks</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="chess player 2150 (europe).ipf" size="468252" crc="7f2a5755" sha1="e391d32fa692a6c1209639897702fe4559e82314" offset="0" />
</dataarea>
</part>
</software>
<software name="chsp2150a" cloneof="chsp2150" supported="no">
<!-- SPS (CAPS) release 3124 -->
<description>Chess Player 2150 (Europe, TenStar Pack)</description>
<year>1989</year>
<publisher>Oxford Softworks</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="chess player 2150 (europe) (compilation - tenstar pack).ipf" size="468252" crc="a3da4220" sha1="1d4bb34a8deda9577a1ad1df56d576783efc8a8c" offset="0" />
</dataarea>
</part>
</software>
<software name="chesssim" supported="no">
<!-- SPS (CAPS) release 3288 -->
<description>Chess Simulator (Europe)</description>
<year>1990</year>
<publisher>Infogrames</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="chess simulator (europe) (en,fr).ipf" size="918252" crc="91f09736" sha1="9fdfe5d714586eb70d8b5936f671227de502620f" offset="0" />
</dataarea>
</part>
</software>
<software name="cm2000" supported="no">
<!-- SPS (CAPS) release 3342 -->
<description>The Chessmaster 2000 (Europe)</description>
<year>1987</year>
<publisher>The Software Toolworks</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468877">
<rom name="chessmaster 2000, the (europe).ipf" size="468877" crc="0e515780" sha1="f37c5e84e4343eaea78067082105e86db71ca1ce" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<!-- Labeled as "Disk B" in-game -->
<feature name="part_id" value="Games Disk" />
<dataarea name="flop" size="468252">
<rom name="chessmaster 2000, the (europe) (games disk).ipf" size="468252" crc="eccf742f" sha1="9148ee62183e73e3e2fbd079fb2fd38110c03c72" offset="0" />
</dataarea>
</part>
</software>
<software name="chicag30" supported="no">
<!-- SPS (CAPS) release 3236 -->
<description>Chicago 30's (Europe)</description>
<year>1989</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="chicago 30's (europe).ipf" size="468252" crc="48f61002" sha1="f21d800bda5ba013ff2793f09da0f423baedf5db" offset="0" />
</dataarea>
</part>
</software>
<software name="chipchal" supported="no">
<!-- SPS (CAPS) release 3114 -->
<description>Chip's Challenge (Europe)</description>
<year>1990</year>
<publisher>U.S. Gold</publisher>
<info name="usage" value="Sports manual copy protection (combination lock security)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517195">
<rom name="chip's challenge (europe).ipf" size="517195" crc="76561c0c" sha1="a75d1bd89997eff25cb1f04645c05f1b5f63505f" offset="0" />
</dataarea>
</part>
</software>
<software name="cquest2" supported="no">
<!-- SPS (CAPS) release 3151 -->
<description>Chrono Quest II (Europe)</description>
<year>1990</year>
<publisher>Psygnosis</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="918252">
<rom name="chrono quest ii (europe) (dual sided) (disk 1).ipf" size="918252" crc="5bfe7489" sha1="402e2b66616a48a51018c3c2b8d89a4c1bc6642c" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="918252">
<rom name="chrono quest ii (europe) (dual sided) (disk 2).ipf" size="918252" crc="415e69d3" sha1="636734ced65b6d3f4708eb53b8e26a63266d998d" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="1018252">
<rom name="chrono quest ii (europe) (dual sided) (disk 3).ipf" size="1018252" crc="fb239020" sha1="1ed6d5c7b7fae7866a7d6f931fdb5c37b7440001" offset="0" />
</dataarea>
</part>
</software>
<software name="chuckie" supported="no">
<!-- SPS (CAPS) release 3289 -->
<description>Chuckie Egg (Europe)</description>
<year>1988</year>
<publisher>Pick & Choose</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="chuckie egg (europe).ipf" size="468252" crc="ac75f2fa" sha1="cd8637b24fff0da0c72f2b5d89609e2410cab9d8" offset="0" />
</dataarea>
</part>
</software>
<software name="chuckie2" supported="no">
<!-- SPS (CAPS) release 3290 -->
<description>Chuckie Egg II (Europe)</description>
<year>1989</year>
<publisher>Pick & Choose</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="chuckie egg ii (europe).ipf" size="468252" crc="ce0f05aa" sha1="080b1a79a14c5d87b1b4a306d89d6035fbd22941" offset="0" />
</dataarea>
</part>
</software>
<software name="cloudkng" supported="no">
<!-- SPS (CAPS) release 3237 -->
<description>Cloud Kingdoms (Europe)</description>
<year>1990</year>
<publisher>Millennium</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="cloud kingdoms (europe).ipf" size="520242" crc="243b0ec8" sha1="4dfedc0fc04895a3298bc84bdaf1101aa26625e8" offset="0" />
</dataarea>
</part>
</software>
<software name="camelot" supported="no">
<!-- SPS (CAPS) release 3152 -->
<description>Conquests of Camelot (Europe, v1.019)</description>
<year>1990</year>
<publisher>Sierra</publisher>
<notes><![CDATA[
Starting a game will fail on [disk swap], doesn't recognize disk 2
Has [MIDI] options
]]></notes>
<info name="alt_title" value="Conquests of Camelot - The Search for the Grail" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="918252">
<rom name="conquests of camelot - the search for the grail (europe) (v1.019) (disk 1).ipf" size="918252" crc="0769e262" sha1="3c55788f87ef3d50318f783860e5fa1c8b6c3df0" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="918252">
<rom name="conquests of camelot - the search for the grail (europe) (v1.019) (disk 2).ipf" size="918252" crc="b4dc0f47" sha1="110c1940a8390ddf74c11fe1187662ce4f2c9bf2" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="918252">
<rom name="conquests of camelot - the search for the grail (europe) (v1.019) (disk 3).ipf" size="918252" crc="5d50534f" sha1="3669a8886282e2f0728e7488291c3e3f268d7844" offset="0" />
</dataarea>
</part>
<part name="flop4" interface="floppy_3_5">
<feature name="part_id" value="Disk 4" />
<dataarea name="flop" size="918252">
<rom name="conquests of camelot - the search for the grail (europe) (v1.019) (disk 4).ipf" size="918252" crc="ce890c56" sha1="8f9401912d330dd8651d4b91c11324d4de8ba1a6" offset="0" />
</dataarea>
</part>
</software>
<software name="contcirc" supported="no">
<!-- SPS (CAPS) release 3105 -->
<description>Continental Circus (Europe)</description>
<year>1989</year>
<publisher>Virgin Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="continental circus (europe) (disk 1).ipf" size="517627" crc="e0220682" sha1="9d2f045fd1e0b4abe837050be22f1e6ba265c354" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517627">
<rom name="continental circus (europe) (disk 2).ipf" size="517627" crc="3a16a48f" sha1="75db0a292eca775e6a143fe738be3b7c68af1ea5" offset="0" />
</dataarea>
</part>
</software>
<software name="corruptn" supported="no">
<!-- SPS (CAPS) release 3291 -->
<description>Corruption (Europe, v1.9)</description>
<year>1988</year>
<publisher>Rainbird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="472992">
<rom name="corruption (europe) (v1.9).ipf" size="472992" crc="479f85aa" sha1="6e13d65cc896c4087ca7b47466f12066d342af02" offset="0" />
</dataarea>
</part>
</software>
<software name="crkdown" supported="no">
<!-- SPS (CAPS) release 3292 -->
<description>Crack Down (Europe, Budget)</description>
<year>1990</year>
<publisher>KIXX</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1107413">
<rom name="crack down (europe) (budget - kixx).ipf" size="1107413" crc="9d27dda5" sha1="91752b32d4c93391ad707a030e1305bd110850b2" offset="0" />
</dataarea>
</part>
</software>
<software name="cricketc" supported="no">
<!-- SPS (CAPS) release 3125 -->
<description>Cricket Captain (Europe, v1.5 1991)</description>
<year>1991?</year>
<publisher>D & H Games</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="cricket captain (europe) (v1.5 1991).ipf" size="518252" crc="afb091dd" sha1="fad79781d9a9e6848c059eb35a2c068c5df14a3f" offset="0" />
</dataarea>
</part>
</software>
<software name="ccastles" supported="no">
<!-- SPS (CAPS) release 3238 -->
<description>Crystal Castles (Europe)</description>
<year>1986</year>
<publisher>Atari</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="crystal castles (europe).ipf" size="468252" crc="b3fdc6b5" sha1="001562942440750c6be41ad2644301703ff5666e" offset="0" />
</dataarea>
</part>
</software>
<software name="cyberbal" supported="no">
<!-- SPS (CAPS) release 3293 -->
<description>Cyberball (Europe)</description>
<year>1990</year>
<publisher>Domark</publisher>
<notes><![CDATA[
Black screen, expects an irq reading work RAM $ac02
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="520242">
<rom name="cyberball (europe) (disk 1).ipf" size="520242" crc="6c9674d8" sha1="cc7d8f5b20df483f98f690f9ff534afec81743ba" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="cyberball (europe) (disk 2).ipf" size="518252" crc="3789ff91" sha1="b4580b64ca61c07f1159e04a102ea638e613eaf9" offset="0" />
</dataarea>
</part>
</software>
<software name="cybercn3" supported="no">
<!-- SPS (CAPS) release 3126 -->
<description>Cybercon III (Europe, 19910406)</description>
<year>1991</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="cybercon iii (europe) (4.6.91).ipf" size="518252" crc="6e5122a9" sha1="05e0cdc691f5358581d90816e3a2aead283b66b8" offset="0" />
</dataarea>
</part>
</software>
<software name="damesim" supported="no">
<!-- SPS (CAPS) release 3365 -->
<description>Dames Simulator (France)</description>
<year>1990</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="471664">
<rom name="dames simulator (france).ipf" size="471664" crc="f9cb88e4" sha1="c586cae6010a4bfbdf32845606cc8ebab0ee9617" offset="0" />
</dataarea>
</part>
</software>
<software name="dariusp" supported="no">
<!-- SPS (CAPS) release 3304 -->
<description>Darius+ (Europe)</description>
<year>1989</year>
<publisher>The Edge</publisher>
<notes><![CDATA[
No backgrounds during gameplay
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="520242">
<rom name="darius+ (europe) (disk 1).ipf" size="520242" crc="ea61b191" sha1="82fc90af1c1735eb290e05bbd98a94d8327ab2ab" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="darius+ (europe) (disk 2).ipf" size="518252" crc="6d7c5ff3" sha1="46ddfb0a89e64cf55d84f385058a6ade1cf29478" offset="0" />
</dataarea>
</part>
</software>
<software name="dayviper" supported="no">
<!-- SPS (CAPS) release 3317 -->
<description>Day of the Viper (Europe)</description>
<year>1989</year>
<publisher>Accolade</publisher>
<notes><![CDATA[
Hangs on starfield intro
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="day of the viper (europe) (disk 1).ipf" size="518252" crc="b8c71f9f" sha1="d2093d19e4c5610d8a9f563aec70682aa6d51b1e" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="day of the viper (europe) (disk 2).ipf" size="518252" crc="22073bc6" sha1="5e24999628c8d24ab59817523d4f9d78c8d2a39b" offset="0" />
</dataarea>
</part>
</software>
<software name="deep" supported="no">
<!-- SPS (CAPS) release 3298 -->
<description>The Deep (Europe)</description>
<year>1988</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="944012">
<rom name="the deep (europe) (disk 1).ipf" size="944012" crc="94b0deb7" sha1="cf6177b716e66ae092e57f6dda3219134be695d2" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<dataarea name="flop" size="481132">
<rom name="the deep (europe) (disk 2).ipf" size="481132" crc="bd61496f" sha1="a806be4c264d970a2ea77b6643c19e17df77e1bc" offset="0" />
</dataarea>
</part>
</software>
<software name="dejavu" supported="no">
<!-- SPS (CAPS) release 3127 -->
<description>Deja Vu - A Nightmare Comes True (Europe)</description>
<year>1987</year>
<publisher>Mirrorsoft</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="468337">
<rom name="deja vu - a nightmare comes true (europe) (disk 1).ipf" size="468337" crc="5ff6e90a" sha1="2c759e4d137490eec8670b01f4b117e7546594d5" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="deja vu - a nightmare comes true (europe) (disk 2).ipf" size="468252" crc="9bc3f029" sha1="6db0c129ced88b76dcba6dee7184e03ee04a7b82" offset="0" />
</dataarea>
</part>
</software>
<software name="deliver" supported="no">
<!-- SPS (CAPS) release 3310 -->
<description>Deliverance (Europe)</description>
<year>1992</year>
<publisher>21st Century</publisher>
<notes><![CDATA[
Black screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1018252">
<rom name="deliverance (europe) (disk 1).ipf" size="1018252" crc="b909ad7a" sha1="76884f2ccf1a4ddedbe23374802c784d63d4e1fd" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1018252">
<rom name="deliverance (europe) (disk 2).ipf" size="1018252" crc="90e37c76" sha1="7c4c04aefd011bc998db30a332002626e4c83033" offset="0" />
</dataarea>
</part>
</software>
<software name="demonblu" supported="no">
<!-- SPS (CAPS) release 3239 -->
<description>Demon Blue (Europe)</description>
<year>19??</year>
<publisher>Micro-Value</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="demon blue (europe).ipf" size="468252" crc="f1d37025" sha1="a390cc5ad5c5a26972705756ba2e52b371762093" offset="0" />
</dataarea>
</part>
</software>
<software name="demoniak" supported="no">
<!-- SPS (CAPS) release 3318 -->
<description>Demoniak (Europe, v1.0)</description>
<year>1991</year>
<publisher>Palace</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="demoniak (europe) (v1.0).ipf" size="918252" crc="b66460b1" sha1="f9c71b55650d08e8d09a4ccf383d35c218a0aa21" offset="0" />
</dataarea>
</part>
</software>
<software name="dicktr" supported="no">
<!-- SPS (CAPS) release 3340 -->
<description>Dick Tracy (Europe)</description>
<year>1990</year>
<publisher>Titus</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="521914">
<rom name="dick tracy (europe) (en,fr,de,es,it) (disk a).ipf" size="521914" crc="b02524fd" sha1="c620c7e995ad9f4e1d3b636f43a1161b031c941a" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="518252">
<rom name="dick tracy (europe) (en,fr,de,es,it) (disk b).ipf" size="518252" crc="48fbca9e" sha1="42c7a132610366bfafb41964e2c9f97a0068232f" offset="0" />
</dataarea>
</part>
</software>
<software name="disc" supported="no">
<!-- SPS (CAPS) release 3153 -->
<description>Disc (Europe, Budget)</description>
<year>1991</year>
<publisher>Action Sixteen</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1014859">
<rom name="disc (europe) (budget - action sixteen).ipf" size="1014859" crc="ab7ffc6b" sha1="d29a4835ba85d55778fded6b59cee7d5c3552afc" offset="0" />
</dataarea>
</part>
</software>
<software name="dizzydic" supported="no">
<!-- SPS (CAPS) release 3319 -->
<description>Dizzy Dice (Europe, Budget)</description>
<year>1990</year>
<publisher>Smash 16</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="dizzy dice (europe) (budget - smash 16).ipf" size="518252" crc="34a1d807" sha1="8a9dcec0065a8a4ed8ec03ce6f974acb4d9d25b1" offset="0" />
</dataarea>
</part>
</software>
<software name="ddragon" supported="no">
<!-- SPS (CAPS) release 3204 -->
<description>Double Dragon (Europe, Magnum 4)</description>
<year>1989</year>
<publisher>Melbourne House</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517195">
<rom name="double dragon (europe) (compilation - magnum 4) (disk 1).ipf" size="517195" crc="6527a8d3" sha1="c8e374850ad918a6859a7464f16100377972e58b" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517195">
<rom name="double dragon (europe) (compilation - magnum 4) (disk 2).ipf" size="517195" crc="c1ebe2ca" sha1="06c4d138d62d0a74bc77c4b4495d735c6fd2cd53" offset="0" />
</dataarea>
</part>
</software>
<software name="ddragon2" supported="no">
<!-- SPS (CAPS) release 3154 -->
<description>Double Dragon II - The Revenge (Europe, v1.2, Budget)</description>
<year>1989</year>
<publisher>16 Blitz</publisher>
<notes><![CDATA[
Hangs during loading with a 000000A0 printed on screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1017627">
<rom name="double dragon ii - the revenge (europe) (v1.2) (budget - 16 blitz) (disk 1).ipf" size="1017627" crc="3d3168a6" sha1="76a4365aa9e0f86a3f65489b7e7edf28bf2aa3fb" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517627">
<rom name="double dragon ii - the revenge (europe) (v1.2) (budget - 16 blitz) (disk 2).ipf" size="517627" crc="37cc6451" sha1="696bb3f9c945ab6f103c76603e7dccbcc1cc424f" offset="0" />
</dataarea>
</part>
</software>
<software name="dspirit" supported="no">
<!-- SPS (CAPS) release 3320 -->
<description>Dragon Spirit (Europe)</description>
<year>1990</year>
<publisher>Domark</publisher>
<notes><![CDATA[
White screen, fails to bootstrap
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="520242">
<rom name="dragon spirit (europe) (disk 1).ipf" size="520242" crc="456940a5" sha1="0a68160f44d4565f5380a503deab9a77213b5ac5" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="dragon spirit (europe) (disk 2).ipf" size="518252" crc="150f235e" sha1="5b1dcd00495f933cccbd0de180cd123f43b53749" offset="0" />
</dataarea>
</part>
</software>
<software name="drakkhen" supported="no">
<!-- SPS (CAPS) release 3321 -->
<description>Drakkhen (Europe, v1.1)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="916039">
<rom name="drakkhen (europe) (v1.1) (disk 1).ipf" size="916039" crc="2bfc80d2" sha1="c003db10f5eac58ac1eed1fa7c3dfebd94221637" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="918252">
<rom name="drakkhen (europe) (v1.1) (disk 2).ipf" size="918252" crc="c7c2fdd2" sha1="5c0c24859f6b644f4c07f16ab91a1c96fd3b7bd5" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="468252">
<rom name="drakkhen (europe) (v1.1) (disk 3).ipf" size="468252" crc="be27d4c4" sha1="29721b32cdc407dc37df6cf8ea3e88b3e61f22dc" offset="0" />
</dataarea>
</part>
</software>
<software name="driller" supported="no">
<!-- SPS (CAPS) release 3128 -->
<description>Driller (Europe)</description>
<year>1988</year>
<publisher>Incentive</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="driller (europe) (en,fr,de,it).ipf" size="918252" crc="acbe8cc3" sha1="51a2e73f07d981b6a3ac75df9a16cb2b4d39f322" offset="0" />
</dataarea>
</part>
</software>
<software name="dynawars" supported="no">
<!-- SPS (CAPS) release 3194 -->
<description>Dynasty Wars (Europe, Les Chevaliers)</description>
<year>1990</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1010945">
<rom name="dynasty wars (europe) (compilation - les chevaliers).ipf" size="1010945" crc="d263dcd9" sha1="91910e0ad7eb7e589be557a579b7d326a31f8788" offset="0" />
</dataarea>
</part>
</software>
<software name="eastwest" supported="no">
<!-- SPS (CAPS) release 3322 -->
<description>East vs. West Berlin 1948 (Europe)</description>
<year>1990</year>
<publisher>Rainbow Arts</publisher>
<notes><![CDATA[
White screen, attempts to r/w [FPU] $fffa40 on boot
Doesn't recognize mouse
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="east vs. west berlin 1948 (europe) (disk 1).ipf" size="518252" crc="1cfe15a0" sha1="ac090eb750035531fab06ead25dad1d4d0fa576a" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="east vs. west berlin 1948 (europe) (disk 2).ipf" size="518252" crc="9da3c5f1" sha1="a7e97cd7a6860e1e65d92ad36024f826b4a3442d" offset="0" />
</dataarea>
</part>
</software>
<software name="elementl" supported="no">
<!-- SPS (CAPS) release 3240 -->
<description>Elemental (Europe)</description>
<year>1988</year>
<publisher>Lankhor</publisher>
<notes><![CDATA[
Main menu is unresponsive, likely [GPIO4] irq
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="521039">
<rom name="elemental (europe) (en,fr,de).ipf" size="521039" crc="bbda28a7" sha1="f37c23bd0f7cf07d47a866381e5437abb61527c2" offset="0" />
</dataarea>
</part>
</software>
<software name="elfmv" supported="no">
<!-- SPS (CAPS) release 3129 -->
<description>Elf (Europe, MicroValue)</description>
<year>1988</year>
<publisher>MicroValue</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="elf (europe) (microvalue).ipf" size="517627" crc="93197887" sha1="e1885ab604fefffdd4b8e3c59f7b203847ebe415" offset="0" />
</dataarea>
</part>
</software>
<software name="elite" supported="no">
<!-- SPS (CAPS) release 3367 -->
<description>Elite (Europe)</description>
<year>1988</year>
<publisher>Firebird</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="elite (europe).ipf" size="468252" crc="acd85762" sha1="ca756d5ab4df383e7ac1fd108ead3bea28c03578" offset="0" />
</dataarea>
</part>
</software>
<software name="enterpr" supported="no">
<!-- SPS (CAPS) release 3241 -->
<description>Enterprise (Europe)</description>
<year>1989</year>
<publisher>Atari</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="enterprise (europe).ipf" size="468252" crc="e4eacdf7" sha1="fc75d0177800f9c9b13d886dab5e661cc2a03ee6" offset="0" />
</dataarea>
</part>
</software>
<software name="erik" supported="no">
<!-- SPS (CAPS) release 3242 -->
<description>Erik (Europe)</description>
<year>1992</year>
<publisher>Atlantis Software</publisher>
<notes><![CDATA[
No sound during gameplay
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="562652">
<rom name="erik (europe).ipf" size="562652" crc="004f5576" sha1="df50e0bbc03e9dfc071f767fdbd4a184e349b840" offset="0" />
</dataarea>
</part>
</software>
<software name="exolon" supported="no">
<!-- SPS (CAPS) release 3309 -->
<description>Exolon (Europe)</description>
<year>1988</year>
<publisher>Hewson</publisher>
<notes><![CDATA[
11 [bombs] Line 1111 Emulator for a split second
Manually trying to execute auto/exolon.prg will crash TOS
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="exolon (europe).ipf" size="520242" crc="f5e1e276" sha1="a28b71d9792bfb35f756e9253f46c1554670c010" offset="0" />
</dataarea>
</part>
</software>
<software name="eyehorus" supported="no">
<!-- SPS (CAPS) release 3243 -->
<description>Eye of Horus (Europe)</description>
<year>1989</year>
<publisher>Logotron</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="eye of horus (europe).ipf" size="517627" crc="e166e8a4" sha1="9656690bf558939cd62941f3906d30ab93f01630" offset="0" />
</dataarea>
</part>
</software>
<software name="f19sf" supported="no">
<!-- SPS (CAPS) release 3191 -->
<description>F-19 Stealth Fighter (Europe, v1.02)</description>
<year>1990</year>
<publisher>Microprose</publisher>
<info name="usage" value="Sports manual copy protection (Aircraft Identification Exam)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="1018252">
<rom name="f-19 stealth fighter (europe) (v1.02) (disk a).ipf" size="1018252" crc="cdaf4ce4" sha1="95af9be68b3e86ce62ce08505921c61f5b7161ec" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="518252">
<rom name="f-19 stealth fighter (europe) (v1.02) (disk b).ipf" size="518252" crc="563e0b5d" sha1="c08bdfc7ade7c2137ae8f2bd500fc127f68a2ce3" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk C" />
<dataarea name="flop" size="518252">
<rom name="f-19 stealth fighter (europe) (v1.02) (disk c).ipf" size="518252" crc="cb78569c" sha1="f30b6f6d7de8a78b9ef77df93312af29756e45fb" offset="0" />
</dataarea>
</part>
</software>
<software name="faceoff" supported="no">
<!-- SPS (CAPS) release 3325 -->
<description>Face-Off (Europe)</description>
<year>1991</year>
<publisher>Krisalis</publisher>
<info name="alt_title" value="Face-Off Ice Hockey (Box)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1017627">
<rom name="face-off ice hockey (europe) (en,fr,de,es,it).ipf" size="1017627" crc="23c5a571" sha1="8a35355973c6014b872c01e733adc1c24ab5edf6" offset="0" />
</dataarea>
</part>
</software>
<software name="faceoffa" supported="no">
<!-- SPS (CAPS) release 3324 -->
<description>Face Off (Europe)</description>
<year>1989</year>
<publisher>Anco</publisher>
<info name="alt_title" value="Ice Hockey (Box)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="ice hockey aka face off (europe).ipf" size="517627" crc="d459dfca" sha1="5552cd3c140657511689725bba31ed9ac3b8c534" offset="0" />
</dataarea>
</part>
</software>
<software name="fwdizzy" supported="no">
<description>Fantasy World Dizzy (Europe)</description>
<year>1991</year>
<publisher>Codemasters</publisher>
<notes><![CDATA[
White screen, [68k] stalls on bootstrap
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="2111192">
<rom name="fantasy world dizzy.mfm" size="2111192" crc="0e3bc56e" sha1="dd941a52b47a3c078b02c2c9ee8b566a94622a1f" />
</dataarea>
</part>
</software>
<software name="ferrari" supported="no">
<description>Ferrari Formula One (Europe)</description>
<year>1989</year>
<publisher>Electronic Arts</publisher>
<notes><![CDATA[
Red screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Boot Disk" />
<dataarea name="flop" size="2377383">
<rom name="e02431xl(1).mfm" size="2377383" crc="97032905" sha1="e7448484dd03f68ccb01e8188e29404953ab28cb"/>
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Data Disk" />
<dataarea name="flop" size="2377453">
<rom name="e02431xl(2).mfm" size="2377453" crc="1eeea420" sha1="7234349114f2bb077d4d2ba8da5e6368c6caa475"/>
</dataarea>
</part>
</software>
<software name="firefor2" supported="no">
<!-- SPS (CAPS) release 3130 -->
<description>Fire and Forget II - The Death Convoy (Europe)</description>
<year>1990</year>
<publisher>Titus</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="521914">
<rom name="fire and forget ii - the death convoy (europe).ipf" size="521914" crc="6cb31e61" sha1="a6ebdeb913d3f6ec67699c2893e8621da1af14c7" offset="0" />
</dataarea>
</part>
</software>
<software name="flimboqs" supported="no">
<!-- SPS (CAPS) release 3104 -->
<description>Flimbo's Quest (Europe)</description>
<year>1990</year>
<publisher>System 3</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1026092">
<rom name="flimbo's quest (europe).ipf" size="1026092" crc="7117917a" sha1="91f44c8a7bfc0d46724771f7ad44678688e739b2" offset="0" />
</dataarea>
</part>
</software>
<software name="fbmang2" supported="no">
<!-- SPS (CAPS) release 3131 -->
<description>Football Manager 2 (Europe)</description>
<year>1988</year>
<publisher>Addictive</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="football manager 2 (europe).ipf" size="518254" crc="08363b8c" sha1="54c09068d7d6f0a355d54adf0644c61efc3cb602" offset="0" />
</dataarea>
</part>
</software>
<software name="foundwst">
<description>Foundation's Waste (Europe, Budget)</description>
<year>1988</year>
<publisher>Klassix</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="562172">
<rom name="foundation's waste (europe) (budget - klassix).ipf" size="562172" crc="1c4935e3" sha1="0da037c8e8a1784d0afa7f4b8a0cd191ec1bae7a" offset="0" />
</dataarea>
</part>
</software>
<!-- This is a dual disk Amiga + ST -->
<software name="foundwstc" cloneof="foundwst" supported="no">
<!-- SPS (CAPS) release 3155? -->
<description>Foundation's Waste (Europe, The One issue 22 coverdisk)</description>
<year>1990</year>
<publisher><coverdisk></publisher>
<info name="magazine" value="The One 22" />
<info name="release" value="199007xx" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1034145">
<rom name="foundation's waste (europe) (coverdisk - the one - issue 22) (amiga + st).ipf" size="1034145" crc="8cc8484f" sha1="c51cc0cf5005fa6f422383e7f84a00f6bac5915c" offset="0" />
</dataarea>
</part>
</software>
<software name="fullmp" supported="no">
<!-- SPS (CAPS) release 3205 -->
<description>Full Metal Planete (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="915607">
<rom name="full metal planete (europe).ipf" size="915607" crc="cda1bf50" sha1="f4eca005f4459e2016e48b6cd15523843d330d2a" offset="0" />
</dataarea>
</part>
</software>
<software name="futbaskt" supported="no">
<!-- SPS (CAPS) release 3354 -->
<description>Future Basketball (Europe)</description>
<year>1990</year>
<publisher>Hewson</publisher>
<notes><![CDATA[
White screen, never completes bootstrap
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1022242">
<rom name="future basketball (europe).ipf" size="1022242" crc="52b04291" sha1="b5096b59ca5bc1cda170932a80321f81f42b139d" offset="0" />
</dataarea>
</part>
</software>
<software name="futwars" supported="no">
<!-- SPS (CAPS) release 3156 -->
<description>Future Wars - Time Travellers (Europe)</description>
<year>1989</year>
<publisher>Palace</publisher>
<info name="usage" value="Sports code wheel copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="978252">
<rom name="future wars - time travellers (europe) (disk 1).ipf" size="978252" crc="6f61c2fb" sha1="e93900c57c6798bd86e6c0cdd41c0e97b5206412" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="973212">
<rom name="future wars - time travellers (europe) (disk 2).ipf" size="973212" crc="fb037ef8" sha1="ab9c5483fa5d38e282423c9274e539ba290f4ef1" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="978252">
<rom name="future wars - time travellers (europe) (disk 3).ipf" size="978252" crc="05e3600f" sha1="5e18adb57870a4edd11a132a012e7c8c72c93df3" offset="0" />
</dataarea>
</part>
</software>
<software name="gforce2" supported="no">
<!-- SPS (CAPS) release 3328 -->
<description>Galaxy Force II (Europe)</description>
<year>1990</year>
<publisher>Activision</publisher>
<notes><![CDATA[
Red screen with broken GFXs, tight loops at PC=10bbc
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="520242">
<rom name="galaxy force ii (europe) (disk a).ipf" size="520242" crc="ba065e10" sha1="c8d5a812b693c82be989a1677bae1545cb585731" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="520242">
<rom name="galaxy force ii (europe) (disk b).ipf" size="520242" crc="86b551a9" sha1="295c60fad88020b6cbc4871f2ab98a56539710b7" offset="0" />
</dataarea>
</part>
</software>
<software name="gameovr2" supported="no">
<!-- SPS (CAPS) release 3333 -->
<description>Game Over II (Europe)</description>
<year>1988</year>
<publisher>Dinamic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="game over ii (europe).ipf" size="468252" crc="a56489c4" sha1="9fd4eb2dfa35ac27dc08f6c44a14791e95f0c4d1" offset="0" />
</dataarea>
</part>
</software>
<software name="gazza" supported="no">
<!-- SPS (CAPS) release 3326 -->
<description>Gazza's Super Soccer (Europe)</description>
<year>1989</year>
<publisher>Empire Interactive</publisher>
<notes><![CDATA[
4 [bombs] Illegal instruction
Trying to manually launch auto/gazzaeng.prg will just punt to TOS
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="gazza's super soccer (europe) (en,fr,it).ipf" size="520242" crc="1395f810" sha1="d9d2706e09dc547b4f3f8a10d6b441eeb835f837" offset="0" />
</dataarea>
</part>
</software>
<software name="gemiwing" supported="no">
<!-- SPS (CAPS) release 3327 -->
<description>Gemini Wing (Europe)</description>
<year>1989</year>
<publisher>Virgin Mastertronic</publisher>
<notes><![CDATA[
Tries to read [ACIA] byte $fffc02 at PC=74e, expects a value of $39 actual $00
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="gemini wing (europe) (disk 1).ipf" size="517627" crc="11e27e40" sha1="4a7ebb61e0f86f6b2e832a4e83e2e40a0fbb76fb" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="gemini wing (europe) (disk 2).ipf" size="468252" crc="2ab50f0c" sha1="4e23619d81a22f37923a827c1499edbf449cd520" offset="0" />
</dataarea>
</part>
</software>
<software name="getdextr" supported="no">
<!-- SPS (CAPS) release 3355 -->
<description>Get Dexter (Europe)</description>
<year>1987</year>
<publisher>Ere Informatique</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="get dexter (europe) (en,fr,de,es).ipf" size="468252" crc="be17f03a" sha1="1425bea8d03f2253fccb689ea34848a26e17083b" offset="0" />
</dataarea>
</part>
</software>
<software name="gflchafb" supported="no">
<!-- SPS (CAPS) release 3206 -->
<description>GFL Championship Football (Europe)</description>
<year>1987</year>
<publisher>Gamestar</publisher>
<notes><![CDATA[
White screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468808">
<rom name="gfl championship football (europe).ipf" size="468808" crc="da4f2ce4" sha1="6fe6569173eac9c4fec578c1a4d87961cafcfba3" offset="0" />
</dataarea>
</part>
</software>
<software name="gng" supported="no">
<!-- SPS (CAPS) release 3389 -->
<description>Ghosts 'n' Goblins (Europe, Finale)</description>
<year>1990</year>
<publisher>Elite</publisher>
<notes><![CDATA[
[68k] stalls, hangs on illegal instruction at PC=14b0c
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1022242">
<rom name="ghosts 'n' goblins (europe) (compilation - finale).ipf" size="1022242" crc="c569ce88" sha1="0008dffe8d909a6ef1d6bc11bb5cd51e1b9cbf6a" offset="0" />
</dataarea>
</part>
</software>
<software name="ghouls" supported="no">
<!-- SPS (CAPS) release 3195 -->
<description>Ghouls 'n' Ghosts (Europe, Les Chevaliers)</description>
<year>1989</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="467820">
<rom name="ghouls 'n' ghosts (europe) (compilation - les chevaliers) (disk 1).ipf" size="467820" crc="1411f18e" sha1="db958f37ad39fee617234c17b402a44859939138" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="467820">
<rom name="ghouls 'n' ghosts (europe) (compilation - les chevaliers) (disk 2).ipf" size="467820" crc="610b63db" sha1="eee2cca489d6eee05a868c128a93277530abed7a" offset="0" />
</dataarea>
</part>
</software>
<software name="gomoku" supported="no">
<!-- SPS (CAPS) release 3132 -->
<description>Gomoku and Renju (Europe)</description>
<year>1988</year>
<publisher>Atari</publisher>
<notes><![CDATA[
Unresponsive [mouse] on TOS (random)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="go-moku + renju (europe).ipf" size="468252" crc="15130dbc" sha1="564bf033b47c583586fe8bc7a80ae31ef7e5f28a" offset="0" />
</dataarea>
</part>
</software>
<software name="goofyexp" supported="no">
<!-- SPS (CAPS) release 3329 -->
<description>Goofy's Railway Express (Europe)</description>
<year>1989</year>
<publisher>Disney Software</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="goofy's railway express (europe) (en,fr,de,es,it).ipf" size="518252" crc="b232592f" sha1="5b8da2b90b283468b39902e3a981321f66737581" offset="0" />
</dataarea>
</part>
</software>
<software name="gravity" supported="no">
<!-- SPS (CAPS) release 3330 -->
<description>Gravity (Europe)</description>
<year>1990</year>
<publisher>Image Works</publisher>
<notes><![CDATA[
Fails on [disk swap] after title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1022252">
<rom name="gravity (europe) (disk 1).ipf" size="1022252" crc="0781e784" sha1="05db6ea6eaa05de372e29e11cecae814dee9b373" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="473292">
<rom name="gravity (europe) (disk 2).ipf" size="473292" crc="1561c03b" sha1="5062ed885dbd8c6707d5a4d8eeed3514c25b23ea" offset="0" />
</dataarea>
</part>
</software>
<software name="growth" supported="no">
<!-- SPS (CAPS) release 3244 -->
<description>Growth (Europe)</description>
<year>1988</year>
<publisher>Axxiom</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="growth (europe).ipf" size="518252" crc="eeb70ac4" sha1="184146571f4d141311838b670620e5bb58895d6e" offset="0" />
</dataarea>
</part>
</software>
<software name="guardang" supported="no">
<!-- SPS (CAPS) release 3307 -->
<description>The Guardian Angel (Europe)</description>
<year>1989</year>
<publisher>Codemasters</publisher>
<notes><![CDATA[
White screen, [68k] stalls with illegal A0 and A1 stacks
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="guardian angel (europe).ipf" size="520242" crc="10d281ce" sha1="06e6c754d29967e940885bdb9692392f62c1501e" offset="0" />
</dataarea>
</part>
</software>
<software name="guildthv" supported="no">
<!-- SPS (CAPS) release 3207 -->
<description>The Guild of Thieves (Europe, v1.0)</description>
<year>1987</year>
<publisher>Firebird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="472560">
<rom name="guild of thieves, the (europe) (v1.0).ipf" size="472560" crc="e23d02d4" sha1="22aa02b8f4ec650113d1084e94f314158e8ab85f" offset="0" />
</dataarea>
</part>
</software>
<software name="hacker2" supported="no">
<!-- SPS (CAPS) release 3380 -->
<description>Hacker II - The Doomsday Papers (Europe)</description>
<year>1986</year>
<publisher>Activision</publisher>
<notes><![CDATA[
Requires a working [printer] according to manual
Mouse doesn't respond after setting up MFSM system
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468954">
<rom name="hacker ii - the doomsday papers (europe).ipf" size="468954" crc="b7c73077" sha1="5695b9a86850f3e5b310c78685b87083390009a3" offset="0" />
</dataarea>
</part>
</software>
<software name="hammrfst" supported="no">
<!-- SPS (CAPS) release 3282 -->
<description>Hammerfist (Europe)</description>
<year>1990</year>
<publisher>Activision</publisher>
<info name="usage" value="Requires joystick in port 0"/>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="hammerfist (europe).ipf" size="520242" crc="5697bf95" sha1="96cdb163a785ed752ab36a2010d49c6bac9a5373" offset="0" />
</dataarea>
</part>
</software>
<software name="hardnova" supported="no">
<!-- SPS (CAPS) release 3334 -->
<description>Hard Nova (Europe)</description>
<year>1991</year>
<publisher>Electronic Arts</publisher>
<!-- TODO: prompts for an "uranus" disk, which is not provided? -->
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Earth Disk" />
<dataarea name="flop" size="1018252">
<rom name="hard nova (europe) (earth disk).ipf" size="1018252" crc="8fda212c" sha1="2734753da4cd73c332cf0d003c71464feaf8aeb4" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Install Disk" />
<dataarea name="flop" size="1018252">
<rom name="hard nova (europe) (install disk).ipf" size="1018252" crc="b71e7a4c" sha1="1035b16f952990f6240a0a01aab75e2e5169736a" offset="0" />
</dataarea>
</part>
</software>
<software name="hardball" supported="no">
<!-- SPS (CAPS) release 3360 -->
<description>HardBall! (Europe, Accolade All Time Favourites)</description>
<year>1987</year>
<publisher>Accolade</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="469240">
<rom name="hardball (europe) (compilation - accolade all time favourites).ipf" size="469240" crc="9d654a14" sha1="d3b6c7dc9f90b0c47851d752e78168fdb8cb60a1" offset="0" />
</dataarea>
</part>
</software>
<software name="harley" supported="no">
<!-- SPS (CAPS) release 3331 -->
<description>Harley-Davidson - The Road to Sturgis (Europe)</description>
<year>1990</year>
<publisher>Mindscape</publisher>
<notes><![CDATA[
Keeps attempting to bootstrap with no success (cycles between white and black screens)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="harley-davidson - the road to sturgis (europe) (disk 1).ipf" size="518252" crc="c230cfa7" sha1="4a98c84c745601cf24a720de4f8872080913efde" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="harley-davidson - the road to sturgis (europe) (disk 2).ipf" size="518252" crc="d440e665" sha1="21dbb886ec29cfc675667b7c8f479352d01b6a52" offset="0" />
</dataarea>
</part>
</software>
<software name="hellraid" supported="no">
<!-- SPS (CAPS) release 3335 -->
<description>Hellraider (Europe)</description>
<year>1989</year>
<publisher>ARC</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018252">
<rom name="hellraider (europe).ipf" size="1018252" crc="1d05bbb1" sha1="33ba1b904f3f9d8b58f0657fcab1f2f3e5ede675" offset="0" />
</dataarea>
</part>
</software>
<software name="herolanc" supported="no">
<!-- SPS (CAPS) release 3133 -->
<description>Advanced Dungeons & Dragons - Heroes of the Lance (Europe)</description>
<year>1988</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="advanced dungeons & dragons - heroes of the lance - a dragonlance action game (europe) (disk 1).ipf" size="518252" crc="39fcd937" sha1="4a51636512db9cf873d97a2e034984e77f4b9d41" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="advanced dungeons & dragons - heroes of the lance - a dragonlance action game (europe) (disk 2).ipf" size="518252" crc="a24dbf0d" sha1="5b8bf3fcc1ba64c81165074a9cf7004fa541604f" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="518252">
<rom name="advanced dungeons & dragons - heroes of the lance - a dragonlance action game (europe) (disk 3).ipf" size="518252" crc="97a5a85f" sha1="b612c27696a21175937d87492080fe58b988da4b" offset="0" />
</dataarea>
</part>
</software>
<software name="hillstrt" supported="no">
<!-- SPS (CAPS) release 3134 -->
<description>Hill Street Blues (Europe, v1.11 19910326, Budget)</description>
<year>1991</year>
<publisher>Buzz</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="hill street blues (europe) (en,fr,de,es,it) (v1.11 26.3.1991) (budget - buzz).ipf" size="517627" crc="bae8eb8f" sha1="aab8e7f8ebf1b47e3c28ac5286b6df5b1f7f4fa4" offset="0" />
</dataarea>
</part>
</software>
<software name="hannabar" supported="no">
<!-- SPS (CAPS) release 3332 -->
<description>The HiTEC Hanna-Barbera Cartoon Character Collection (Europe)</description>
<year>1991</year>
<publisher>HiTec Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="711762">
<rom name="hi-tec hanna-barbera cartoon character collection, the (europe).ipf" size="711762" crc="a290a478" sha1="3416160e0d78e9d57c19ced5ce53981da5656b93" offset="0" />
</dataarea>
</part>
</software>
<software name="hostages" supported="no">
<!-- SPS (CAPS) release 3190 -->
<description>Hostages (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518243">
<rom name="hostages (europe) (disk 1).ipf" size="518243" crc="c791c3d5" sha1="a0bff29b3b111ff031a2183cec4b8c6f809fe212" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518243">
<rom name="hostages (europe) (disk 2).ipf" size="518243" crc="63d40194" sha1="1478edcb715b00f8253975fad0220d89974e8877" offset="0" />
</dataarea>
</part>
</software>
<software name="hotshot" supported="no">
<!-- SPS (CAPS) release 3216 -->
<description>Hotshot (Europe)</description>
<year>1988</year>
<publisher>Addictive</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="467822">
<rom name="hotshot (europe).ipf" size="467822" crc="8f1e98bb" sha1="eaebfe4f66473025e0ca1637547fcf0a5747d61f" offset="0" />
</dataarea>
</part>
</software>
<software name="houndshd" supported="no">
<!-- SPS (CAPS) release 3384 -->
<description>The Hound of Shadow (Europe)</description>
<year>1989</year>
<publisher>Electronic Arts</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A (Character Generation Disk)" />
<dataarea name="flop" size="518252">
<rom name="hound of shadow, the (europe) (disk a - character generation disk).ipf" size="518252" crc="96a61552" sha1="cf5530f7464a0faa5bf0a4b502046c23af408d1a" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B (Scenario Disk)" />
<dataarea name="flop" size="468252">
<rom name="hound of shadow, the (europe) (disk b - scenario disk).ipf" size="468252" crc="2a4a4ab7" sha1="c828759288af87ce20b9ea45df1333d7608b9948" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk C (Data Disk)" />
<dataarea name="flop" size="518252">
<rom name="hound of shadow, the (europe) (disk c - data disk).ipf" size="518252" crc="a076b61f" sha1="706cbb0b3598b9c0bf7ccc4e456253ef5efbfd41" offset="0" />
</dataarea>
</part>
</software>
<software name="huntrklr" supported="no">
<!-- SPS (CAPS) release 3135 -->
<description>Hunter Killer (Europe, v1.01, Budget)</description>
<year>1990</year>
<publisher>16 Blitz</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="hunter killer (europe) (v1.01) (budget - 16 blitz).ipf" size="918252" crc="ab7def25" sha1="309a2c3233cd3a3e2c277a9d673e4d20e2c23d17" offset="0" />
</dataarea>
</part>
</software>
<software name="hyperbwl" supported="no">
<!-- SPS (CAPS) release 3337 -->
<description>Hyperbowl (Europe)</description>
<year>1987</year>
<publisher>Virgin Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="hyperbowl (europe).ipf" size="517627" crc="374a9589" sha1="7ff1ea21cf1953079abaac21eecb3eea51efe5c0" offset="0" />
</dataarea>
</part>
</software>
<software name="iball" supported="no">
<!-- SPS (CAPS) release 3100 -->
<description>I, Ball (Europe)</description>
<year>1987</year>
<publisher>British Telecom</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="i, ball (europe).ipf" size="518254" crc="0a1fc72f" sha1="9ab201a633323ca5ee79905ddd6db577db85b496" offset="0" />
</dataarea>
</part>
</software>
<software name="immortal" supported="no">
<!-- SPS (CAPS) release 3343 -->
<description>The Immortal (Europe)</description>
<year>1990</year>
<publisher>Electronic Arts</publisher>
<notes><![CDATA[
4 [bombs] Illegal instruction when trying to start a game "Error loading file: MAZE0.CNM"
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Boot Disk" />
<dataarea name="flop" size="918252">
<rom name="the immortal (europe) (boot disk).ipf" size="918252" crc="d30a006a" sha1="6e6aabf329a8f653c266881055fb3f662880b925" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Play Disk" />
<dataarea name="flop" size="918252">
<rom name="the immortal (europe) (play disk).ipf" size="918252" crc="ef08f2b4" sha1="79270ec026ad3f139d0469d9a7410f623f6536ee" offset="0" />
</dataarea>
</part>
</software>
<software name="indy" supported="no">
<!-- SPS (CAPS) release 3336 -->
<description>Indiana Jones and the Temple of Doom (USA)</description>
<year>1989</year>
<publisher>Mindscape</publisher>
<notes><![CDATA[
Fails autobooting, wants a disk B that is missing from the set.
]]></notes>
<sharedfeat name="compatibility" value="NTSC"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518615">
<rom name="indiana jones and the temple of doom (usa).ipf" size="518615" crc="f1ef6832" sha1="9a55a3f7a87d6a9aa947787a9bac75a8e93447e2" offset="0" />
</dataarea>
</part>
</software>
<software name="ininjarb" supported="no">
<!-- SPS (CAPS) release 3217 -->
<description>International Ninja Rabbits (Europe)</description>
<year>1991</year>
<publisher>Micro-Value</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517195">
<rom name="international ninja rabbits (europe).ipf" size="517195" crc="ea4f6222" sha1="bb83f01888f7b3aaca2d970f5ed8ce7c2d61875d" offset="0" />
</dataarea>
</part>
</software>
<software name="inttruck" supported="no">
<!-- SPS (CAPS) release 3338 -->
<description>International Truck Racing (Europe)</description>
<year>1992</year>
<publisher>Zeppelin Games</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018252">
<rom name="international truck racing (europe).ipf" size="1018252" crc="fc377e1e" sha1="7207409265332dbdb31805878cfe46c90e13e968" offset="0" />
</dataarea>
</part>
</software>
<software name="intphase" supported="no">
<!-- SPS (CAPS) release 3339 -->
<description>Interphase (Europe)</description>
<year>1989</year>
<publisher>Image Works</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="interphase (europe).ipf" size="520242" crc="dfff1304" sha1="a90a650723abfbfdeed13aac22101fa2f6a56915" offset="0" />
</dataarea>
</part>
</software>
<software name="italy90" supported="no">
<!-- SPS (CAPS) release 3136 -->
<description>Italy 1990 (Europe, The Lineker Collection)</description>
<year>1990</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1011377">
<rom name="italy 1990 (europe) (compilation - the lineker collection).ipf" size="1011377" crc="61f64a85" sha1="b38bb59164358eb8364e8a28d4d8229d7c32725e" offset="0" />
</dataarea>
</part>
</software>
<software name="ivanhoe" supported="no">
<!-- SPS (CAPS) release 3157 -->
<description>Ivanhoe (Europe)</description>
<year>1990</year>
<publisher>Ocean</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1022242">
<rom name="ivanhoe (europe) (disk 1).ipf" size="1022242" crc="85395e61" sha1="3bc3fcf447e8fd5a0afab1bed18c6696322c7a94" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="520242">
<rom name="ivanhoe (europe) (disk 2).ipf" size="520242" crc="0f24f086" sha1="e5e17d124f76d2741e35c11fff299c6233253b06" offset="0" />
</dataarea>
</part>
</software>
<software name="jpond" supported="no">
<!-- SPS (CAPS) release 3137 -->
<description>James Pond - Underwater Agent (Europe)</description>
<year>1990</year>
<publisher>Millennium</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1017627">
<rom name="james pond - underwater agent (europe).ipf" size="1017627" crc="1dc744f0" sha1="b41fb5563f6f1d24f2a20ef07d29e405bc3a8860" offset="0" />
</dataarea>
</part>
</software>
<software name="robocod" supported="no">
<!-- SPS (CAPS) release 3138 -->
<description>James Pond II - Codename RoboCod (Europe)</description>
<year>1991</year>
<publisher>Millennium</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1011377">
<rom name="james pond ii - codename robocod (europe).ipf" size="1011377" crc="81a35719" sha1="9c07c5ac2b6136a4fcb257546795e5c81939a4b8" offset="0" />
</dataarea>
</part>
</software>
<software name="jeweldrk" supported="no">
<!-- SPS (CAPS) release 3112 -->
<description>Jewels of Darkness (Europe)</description>
<year>1986</year>
<publisher>Rainbird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="467820">
<rom name="jewels of darkness (europe).ipf" size="467820" crc="7e9839db" sha1="3068cce142264a581cf040b5d878a3aa19d29f89" offset="0" />
</dataarea>
</part>
</software>
<software name="kickoff2" supported="no">
<!-- SPS (CAPS) release 3158 -->
<description>Kick Off 2 (Europe, v1.4e)</description>
<year>1990</year>
<publisher>Anco</publisher>
<notes><![CDATA[
"Master file not present or damaged ERROR"
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="569370">
<rom name="kick off 2 (europe) (v1.4e).ipf" size="569370" crc="4cc10f6d" sha1="7182022240cd7a6b56f02fe37b8cdd26fa1836c6" offset="0" />
</dataarea>
</part>
</software>
<software name="kickoff2re" cloneof="kickoff2" supported="no">
<!-- SPS (CAPS) release 3215 -->
<description>Kick Off 2 - Return to Europe (Europe, v2.1e)</description>
<year>1991</year>
<publisher>Anco</publisher>
<notes><![CDATA[
"Master file not present or damaged ERROR"
]]></notes>
<info name="usage" value="Requires "Kick Off 2" to work" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018722">
<rom name="kick off 2 - return to europe (europe) (v2.1e).ipf" size="1018722" crc="b14d2140" sha1="64c21cb535770caaa86fdf3a57a4753a35e9833d" offset="0" />
</dataarea>
</part>
</software>
<software name="kickoff2fw" cloneof="kickoff2" supported="no">
<!-- SPS (CAPS) release 3159 -->
<description>Kick Off 2 - The Final Whistle (Europe, v2.1e)</description>
<year>1991</year>
<publisher>Anco</publisher>
<notes><![CDATA[
"Master file not present or damaged ERROR"
]]></notes>
<info name="usage" value="Requires "Kick Off 2" to work" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018722">
<rom name="kick off 2 - the final whistle (europe) (v2.1e).ipf" size="1018722" crc="ef51c120" sha1="be2989b691e945569e41c409cfb148a4c8812ae1" offset="0" />
</dataarea>
</part>
</software>
<software name="kickoff2wt" cloneof="kickoff2" supported="no">
<!-- SPS (CAPS) release 3183 -->
<description>Kick Off 2 - Winning Tactics (Europe)</description>
<year>1991</year>
<publisher>Anco</publisher>
<info name="usage" value="Requires "KO2" or "KO2 Final Whistle" or "Player Manager" to work" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018722">
<rom name="kick off 2 - winning tactics (europe).ipf" size="1018722" crc="7330c891" sha1="da909c688c711bbb0e8f6f990b54a6fe752b9380" offset="0" />
</dataarea>
</part>
</software>
<software name="kilcloud" supported="no">
<!-- SPS (CAPS) release 3344 -->
<description>The Killing Cloud (Europe)</description>
<year>1991</year>
<publisher>Image Works</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="918252">
<rom name="killing cloud, the (europe) (en,fr,de) (disk a).ipf" size="918252" crc="a65d58dd" sha1="bc8f742c8643ba84000cfcdefe7b6303eb89ed69" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="918252">
<rom name="killing cloud, the (europe) (en,fr,de) (disk b).ipf" size="918252" crc="c0e702a8" sha1="50c4066626bc7a30e429675928a346c2045be62f" offset="0" />
</dataarea>
</part>
</software>
<software name="kingqst3" supported="no">
<!-- SPS (CAPS) release 3208 -->
<description>King's Quest III - To Heir is Human (Europe, v1.02 19861118)</description>
<year>1989</year>
<publisher>Sierra</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="462195">
<rom name="king's quest iii - to heir is human (europe) (v1.02 11.18.86) (disk 1).ipf" size="462195" crc="a51082bc" sha1="319da503466dfdf178320e595d1efbd15027a7d3" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="462195">
<rom name="king's quest iii - to heir is human (europe) (v1.02 11.18.86) (disk 2).ipf" size="462195" crc="687fe7da" sha1="a22201508b8781c12f0b9d479247e12c6ecea57c" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="462195">
<rom name="king's quest iii - to heir is human (europe) (v1.02 11.18.86) (disk 3).ipf" size="462195" crc="c28052a6" sha1="8265e0353bfc57a468684dcff83ddbf6147fde99" offset="0" />
</dataarea>
</part>
</software>
<software name="klax" supported="no">
<!-- SPS (CAPS) release 3160 -->
<description>Klax (Europe)</description>
<year>1990</year>
<publisher>Domark</publisher>
<notes><![CDATA[
Tight loops at PC=71b26, cmp.l #$a2b2c837 (D0 is 0), boots if bypassed
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1022242">
<rom name="klax (europe).ipf" size="1022242" crc="fd4fb012" sha1="021aa27199cc30f7737b02fc471fbf14bf1a3541" offset="0" />
</dataarea>
</part>
</software>
<software name="lasersqd" supported="no">
<!-- SPS (CAPS) release 3228 -->
<description>Laser Squad (Europe)</description>
<year>1989</year>
<publisher>Blade</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="laser squad (europe).ipf" size="517627" crc="7f458cd8" sha1="3c1feff969345c21bda71681d64263f4af82bdea" offset="0" />
</dataarea>
</part>
</software>
<software name="lastnin3" supported="no">
<!-- SPS (CAPS) release 3219 -->
<description>Last Ninja 3 (Europe, Budget)</description>
<year>1991</year>
<publisher>KIXX</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1025660">
<rom name="last ninja 3 (europe) (budget - kixx) (disk 1).ipf" size="1025660" crc="65a6e699" sha1="45323a4e1cf55a2b7e8ec9228cc2fb32992dca9e" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1025660">
<rom name="last ninja 3 (europe) (budget - kixx) (disk 2).ipf" size="1025660" crc="cfa3d6d2" sha1="7864b3bfd3c09865c7b7f7bfa83b4bd9990219d4" offset="0" />
</dataarea>
</part>
</software>
<software name="leadbg" supported="no">
<!-- SPS (CAPS) release 3139 -->
<description>Leader Board Pro Golf Simulator (Europe)</description>
<year>1986</year>
<publisher>U.S. Gold</publisher>
<!-- TODO: "Insert security key" (?) -->
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="leader board (europe).ipf" size="468252" crc="e30dcfb2" sha1="9485340898b0196e4bf77f78ce425c577817e2be" offset="0" />
</dataarea>
</part>
</software>
<software name="leadbgt1" cloneof="leadbg" supported="no">
<!-- SPS (CAPS) release 3161 -->
<description>Leader Board Pro Golf Simulator - Tournament Disk #1 (Europe, Leader Board Birdie)</description>
<year>1986</year>
<publisher>U.S. Gold</publisher>
<info name="usage" value="Requires "Leader Board Golf Simulation" to work" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="leader board tournament (europe) (compilation - leader board birdie) (disk 2).ipf" size="468252" crc="0caa8be5" sha1="99d6bc3b456a4e1f7488f31a98286ab96e4f674d" offset="0" />
</dataarea>
</part>
</software>
<software name="lslarry" supported="no">
<!-- SPS (CAPS) release 3214 -->
<description>Leisure Suit Larry in The Land of the Lounge Lizards (Europe, v1.04 19870618)</description>
<year>1987</year>
<publisher>Sierra</publisher>
<info name="usage" value="Sports manual copy protection (parental control quiz)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="462195">
<rom name="leisure suit larry in - the land of the lounge lizards (europe) (v1.04 6.18.87) (disk 1).ipf" size="462195" crc="ba699e27" sha1="feeb4dbb6da4ddb39d8949f0d413b58a02bc1510" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="467820">
<rom name="leisure suit larry in - the land of the lounge lizards (europe) (v1.04 6.18.87) (disk 2).ipf" size="467820" crc="788f6758" sha1="cf108c4fb0d32f1a31518fd12078d126f6d17a3c" offset="0" />
</dataarea>
</part>
</software>
<!-- This is a dual disk Amiga + ST -->
<software name="lxcess" supported="no">
<!-- SPS (CAPS) release 3058 -->
<description>Lethal Xcess (Europe)</description>
<year>1991</year>
<publisher>Eclipse</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="1004597">
<rom name="lethal xcess - wings of death ii (europe) (amiga + st) (disk a).ipf" size="1004597" crc="33cc029d" sha1="54a268710716f3510918cd8767d9d248798c4ed0" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="1008380">
<rom name="lethal xcess - wings of death ii (europe) (amiga + st) (disk b).ipf" size="1008380" crc="7c53b994" sha1="8b8cefdb0dbd7e4a515c95235526ed909fe499c7" offset="0" />
</dataarea>
</part>
</software>
<software name="leviathan" supported="no">
<description>Leviathan (Europe)</description>
<year>1987</year>
<publisher>English Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="3133311">
<rom name="leviathan.mfm" size="3133311" crc="8ba6fcfb" sha1="340b866b34bdb99a96d4fe3784d32672c65d1165" />
</dataarea>
</part>
</software>
<software name="lightcor" supported="no">
<!-- SPS (CAPS) release 3297 -->
<description>The Light Corridor (Europe)</description>
<year>1990</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="471664">
<rom name="light corridor, the (europe).ipf" size="471664" crc="f4c91add" sha1="785cf66c33f5fa0202954d24b95d604a12b821a1" offset="0" />
</dataarea>
</part>
</software>
<software name="locomotn" supported="no">
<!-- SPS (CAPS) release 3276 -->
<description>Locomotion (Europe)</description>
<year>1991</year>
<publisher>Byte Back</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="locomotion (europe) (byte back).ipf" size="518252" crc="e85b531e" sha1="19be92dc4c84293d88ced646a6b4befeb1e7045f" offset="0" />
</dataarea>
</part>
</software>
<software name="logical" supported="no">
<!-- SPS (CAPS) release 3277 -->
<description>Logical (Europe)</description>
<year>1991</year>
<publisher>Rainbow Arts</publisher>
<notes><![CDATA[
Unresponsive [mouse] on TOS (random)
]]></notes>
<info name="usage" value="Sports code wheel copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="logical (europe).ipf" size="518252" crc="ef80321e" sha1="66776e6f33fc7cceffee706fe4fccfce60fb47c0" offset="0" />
</dataarea>
</part>
</software>
<software name="luretemp" supported="no">
<!-- SPS (CAPS) release 3196 -->
<description>Lure of the Temptress (France, 19920617)</description>
<year>1992</year>
<publisher>Virgin</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Boot Disk" />
<dataarea name="flop" size="917820">
<rom name="lure of the temptress (france) (17.6.1992) (boot disk).ipf" size="917820" crc="4ff7c491" sha1="f78d53fba9e93c5344b455c2384496cc16b74e96" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="917820">
<rom name="lure of the temptress (france) (17.6.1992) (disk a).ipf" size="917820" crc="4803ebf7" sha1="fd11e96297fa2112f387ba829f73b49ac7f8da68" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="917820">
<rom name="lure of the temptress (france) (17.6.1992) (disk b).ipf" size="917820" crc="ab3a5029" sha1="d6f37329d148d27ee74c64d4e39bc98f2af591ca" offset="0" />
</dataarea>
</part>
<part name="flop4" interface="floppy_3_5">
<feature name="part_id" value="Disk C" />
<dataarea name="flop" size="917820">
<rom name="lure of the temptress (france) (17.6.1992) (disk c).ipf" size="917820" crc="0dde23f5" sha1="006cb14b59fde4a35180fade8c7ff6e4efc9cfc8" offset="0" />
</dataarea>
</part>
</software>
<software name="lurkinh" supported="no">
<!-- SPS (CAPS) release 3109 -->
<description>The Lurking Horror (Europe, r203)</description>
<year>1987</year>
<publisher>Infocom</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="lurking horror, the (europe) (r203).ipf" size="468252" crc="810fd34b" sha1="5b64bb062db9bc31feefb2770e283d59e7b4e7ef" offset="0" />
</dataarea>
</part>
</software>
<software name="mach3" supported="no">
<!-- SPS (CAPS) release 3381 -->
<description>Mach 3 (Europe)</description>
<year>1987</year>
<publisher>Loriciel</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="468252">
<rom name="mach 3 (europe) (disk a).ipf" size="468252" crc="6f7f65b1" sha1="eb6abe32b462c7dda970137333b82f4c1578aed4" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="471664">
<rom name="mach 3 (europe) (disk b).ipf" size="471664" crc="f00af809" sha1="2f6857a65826b9f35f1ea715fa5dd96a77699020" offset="0" />
</dataarea>
</part>
</software>
<software name="mafdet" supported="no">
<!-- SPS (CAPS) release 3278 -->
<description>Mafdet and the Book of the Dead (Europe)</description>
<year>1988</year>
<publisher>Software Horizons</publisher>
<notes><![CDATA[
Hangs on title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="mafdet and the book of the dead (europe).ipf" size="518252" crc="2760d237" sha1="ddf1280e0c97dc698e19dfb67ffa823edd4018c2" offset="0" />
</dataarea>
</part>
</software>
<software name="manutd" supported="no">
<!-- SPS (CAPS) release 3147 -->
<description>Manchester United - The Official Computer Game (Europe)</description>
<year>1990</year>
<publisher>Krisalis</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1017627">
<rom name="manchester united - the official computer game (europe) (en,fr,de,es,it,sv) (disk 1).ipf" size="1017627" crc="dbcf1ad6" sha1="8272efb5036e0e7f6f0c8d6f9742512e2607e633" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="manchester united - the official computer game (europe) (en,fr,de,es,it,sv) (disk 2).ipf" size="518252" crc="7af2b6f1" sha1="c0020a1a77382cc9d35a4145e654bb30e1fe9587" offset="0" />
</dataarea>
</part>
</software>
<software name="manhdeal" supported="no">
<!-- SPS (CAPS) release 3382 -->
<description>Manhattan Dealers (Europe)</description>
<year>1988</year>
<publisher>Silmarils</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="518255">
<rom name="manhattan dealers (europe) (disk a).ipf" size="518255" crc="960ccce2" sha1="4a77c5532fe8f7f23554eb68842caf3dbbd44145" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="518252">
<rom name="manhattan dealers (europe) (disk b).ipf" size="518252" crc="3c4cfaee" sha1="d31ffbb1d18228561a1db2a54e7e12c919e13deb" offset="0" />
</dataarea>
</part>
</software>
<software name="mortviel" supported="no">
<!-- SPS (CAPS) release 3197 -->
<description>Le Manoir de Mortevielle (France)</description>
<year>1988</year>
<publisher>Lankhor</publisher>
<!-- TODO: language barrier, hangs on title screen? -->
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="467820">
<rom name="manoir de mortevielle, le (france) (disk 1).ipf" size="467820" crc="6cc703af" sha1="e9dab1580f71b9916f027f125910d6120fa4342e" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="471232">
<rom name="manoir de mortevielle, le (france) (disk 2).ipf" size="471232" crc="559d3c83" sha1="fa26914c2588b9da0d3daac34e1aa25247ee973c" offset="0" />
</dataarea>
</part>
</software>
<software name="matrixmr" supported="no">
<!-- SPS (CAPS) release 3275 -->
<description>Matrix Marauders (Europe)</description>
<year>1990</year>
<publisher>Psyclapse</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="522604">
<rom name="matrix marauders (europe).ipf" size="522604" crc="b1034c7d" sha1="361299b42c1414b0643f328284314b2be38523de" offset="0" />
</dataarea>
</part>
</software>
<software name="mean18" supported="no">
<!-- SPS (CAPS) release 3362 -->
<description>Mean 18 + Famous Courses Disk Volume I & Volume II (Europe, Accolade All Time Favourites)</description>
<year>1986</year>
<publisher>Accolade</publisher>
<notes><![CDATA[
Fails [disk swap], requests disk A again, never leaves TOS
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Program Disk" />
<dataarea name="flop" size="469240">
<rom name="mean 18 (europe) (compilation - accolade all time favourites) (program disk).ipf" size="469240" crc="33565a50" sha1="a365d46f75c032e13128b726155e2a7e8fd3453f" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Famous Courses Disk - Volume I" />
<dataarea name="flop" size="468252">
<rom name="mean 18 (europe) (compilation - accolade all time favourites) (famous courses disk - volume i).ipf" size="468252" crc="509f1ea3" sha1="5b5346fa658d909cad7a377c5846e000eba271e6" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Famous Courses Disk - Volume II" />
<dataarea name="flop" size="468252">
<rom name="mean 18 (europe) (compilation - accolade all time favourites) (famous courses disk - volume ii).ipf" size="468252" crc="515e3b9f" sha1="4aae2d4d2c1073da8ffa9f47ef6ee9507f4f0a6b" offset="0" />
</dataarea>
</part>
</software>
<software name="megatwin" supported="no">
<!-- SPS (CAPS) release 3220 -->
<description>Mega Twins (Europe)</description>
<year>1991</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1010945">
<rom name="mega twins (europe) (disk 1).ipf" size="1010945" crc="761faeed" sha1="2c8140aceec92a3b70cb7eb2aa377421be67f687" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1017820">
<rom name="mega twins (europe) (disk 2).ipf" size="1017820" crc="bd95d263" sha1="21aca72ac1317ab7348f9274a6f800f5db0fdf0f" offset="0" />
</dataarea>
</part>
</software>
<software name="mercenry" supported="no">
<!-- SPS (CAPS) release 3383 -->
<description>Mercenary - Escape from Targ & The Second City (Europe, Premier Collection II)</description>
<year>1988</year>
<publisher>Novagen</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="mercenary - escape from targ & the second city (europe) (compilation - premier collection ii).ipf" size="468252" crc="7a448e10" sha1="4538fb322a8faf2a7a95c7dae5da565083a8a8e8" offset="0" />
</dataarea>
</part>
</software>
<software name="metrox" supported="no">
<!-- SPS (CAPS) release 3274 -->
<description>Metro-Cross (Europe)</description>
<year>1987</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="527932">
<rom name="metro-cross (europe).ipf" size="527932" crc="cd252332" sha1="7a296cb6301a0e087da4c1ee8b01e3976606dac9" offset="0" />
</dataarea>
</part>
</software>
<software name="midwintr" supported="no">
<description>Midwinter (Europe)</description>
<year>1992</year>
<publisher>Kixx XL</publisher>
<notes><![CDATA[
White screen, executes illegal code
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="2150273">
<rom name="midwinter.mfm" size="2150273" crc="8486d6b0" sha1="c6500e99a3b2af9dae1cc7681ffc0c1c7f3b8061" />
</dataarea>
</part>
</software>
<software name="mindwhel" supported="no">
<!-- SPS (CAPS) release 3264 -->
<description>Mindwheel (Europe)</description>
<year>1985</year>
<publisher>Brøderbund</publisher>
<notes><![CDATA[
Unresponsive [mouse] on TOS
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="mindwheel (europe).ipf" size="468252" crc="7c99fce7" sha1="6e5f7a529b67839061d4ed3399cb9d66f6a234cf" offset="0" />
</dataarea>
</part>
</software>
<software name="missing" supported="no">
<!-- SPS (CAPS) release 3265 -->
<description>Missing: One Droid (Europe)</description>
<year>1986</year>
<publisher>Bug-Byte</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="243252">
<rom name="missing - one droid (europe).ipf" size="243252" crc="a4cf2e54" sha1="be458a296eb4d3474172fcd008f44af3e7807e3e" offset="0" />
</dataarea>
</part>
</software>
<software name="missgeno" supported="no">
<!-- SPS (CAPS) release 3366 -->
<description>Mission Genocide (Europe)</description>
<year>1987</year>
<publisher>Firebird</publisher>
<notes><![CDATA[
Pauses itself when pressing fire on joystick during gameplay (?)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517822">
<rom name="mission genocide (europe).ipf" size="517822" crc="060d37dc" sha1="e105683beeaa7bbdd06520fcb3923b11def5a4dd" offset="0" />
</dataarea>
</part>
</software>
<!-- This is a dual disk Amiga + ST -->
<software name="monstbus" supported="no">
<!-- SPS (CAPS) release 3032 -->
<description>Monster Business (Europe)</description>
<year>1991</year>
<publisher>Eclipse</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1009109">
<rom name="monster business (europe) (amiga + st).ipf" size="1009109" crc="be6095a0" sha1="c6d0706c363f3fd7f5e40864b49568ac9e157c8b" offset="0" />
</dataarea>
</part>
</software>
<software name="nevermnd" supported="no">
<!-- SPS (CAPS) release 3145 -->
<description>Never Mind (Europe)</description>
<year>1989</year>
<publisher>Psyclapse</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="never mind (europe) (disk 1).ipf" size="517627" crc="177eeb16" sha1="00ff4d36ef12eff72dea285e58eea3cd4a4e72fa" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517627">
<rom name="never mind (europe) (disk 2).ipf" size="517627" crc="5808b98a" sha1="6e1b5bdcbdea244a46e4dc58a3b6b3672ba6083c" offset="0" />
</dataarea>
</part>
</software>
<software name="mansell" supported="no">
<!-- SPS (CAPS) release 3148 -->
<description>Nigel Mansell's World Championship (Europe)</description>
<year>1992</year>
<publisher>Gremlin</publisher>
<info name="usage" value="Sports code wheel copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="nigel mansell's world championship (europe).ipf" size="918252" crc="0321e01f" sha1="2d76db1251811591b489ae892173eb28828ff28e" offset="0" />
</dataarea>
</part>
</software>
<software name="nshift" supported="no">
<!-- SPS (CAPS) release 3359 -->
<description>Night Shift (Europe)</description>
<year>1990</year>
<publisher>Lucasfilm</publisher>
<notes><![CDATA[
Doesn't recognize [disk swap] when prompted to
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="918252">
<rom name="night shift (europe) (disk 1).ipf" size="918252" crc="66a14e52" sha1="555f97987efeea59b2a82696e19a480aeb94f515" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="918252">
<rom name="night shift (europe) (disk 2).ipf" size="918252" crc="52770c02" sha1="7a9525672540556234de031772265e7262b3b66e" offset="0" />
</dataarea>
</part>
</software>
<software name="nightwlk" supported="no">
<!-- SPS (CAPS) release 3279 -->
<description>Night Walk (Europe)</description>
<year>1988</year>
<publisher>Alternative Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="night walk (europe).ipf" size="517627" crc="bfe03968" sha1="d3563e282cede1c604208a88f0521aff5f878ea4" offset="0" />
</dataarea>
</part>
</software>
<software name="ninjarab" supported="no">
<!-- SPS (CAPS) release 3218 -->
<description>Ninja Rabbits (Europe)</description>
<year>1991</year>
<publisher>MicroValue</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="ninja rabbits (europe) (disk 1).ipf" size="517627" crc="a48eebb2" sha1="872e9b3f9a064d016ad89c4469e8129ac08b4e53" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517627">
<rom name="ninja rabbits (europe) (disk 2).ipf" size="517627" crc="677fd5ad" sha1="70e1aa09918a8bcd050c164b542561439e8f67ed" offset="0" />
</dataarea>
</part>
</software>
<software name="nitrobc" supported="no">
<!-- SPS (CAPS) release 3284 -->
<description>Nitro Boost Challenge (Europe)</description>
<year>1989</year>
<publisher>Codemasters</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="nitro boost challenge (europe).ipf" size="517627" crc="017b04b1" sha1="3452f036b3bdb4d1933717ddde10f7bda072ed03" offset="0" />
</dataarea>
</part>
</software>
<software name="noexcuse" supported="no">
<!-- SPS (CAPS) release 3285 -->
<description>No Excuses (Europe)</description>
<year>1988</year>
<publisher>Arcana</publisher>
<notes><![CDATA[
Hangs during gameplay, or black screen after title screen, or doesn't recognize keyboard input on main menu
Cannot choose option 4 (Italian)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="no excuses (europe) (en,fr,de,it).ipf" size="468252" crc="40cf641e" sha1="b37dedecfc4840a65c7c7969d6b3102db5dbdd67" offset="0" />
</dataarea>
</part>
</software>
<software name="northns" supported="no">
<!-- SPS (CAPS) release 3283 -->
<description>North and South (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="916039">
<rom name="north and south (europe) (en,fr,de,es,it).ipf" size="916039" crc="de3bab95" sha1="979e8375cda1a2bab00902ae7e3055c137248533" offset="0" />
</dataarea>
</part>
</software>
<software name="obliter" supported="no">
<!-- SPS (CAPS) release 3363 -->
<description>Obliterator (Europe)</description>
<year>1988</year>
<publisher>Psygnosis</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="446377">
<rom name="obliterator (europe) (disk a).ipf" size="446377" crc="e75b59c8" sha1="ecd181d33e38d98dd8bd014376b5cb900e79680a" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="333252">
<rom name="obliterator (europe) (disk b).ipf" size="333252" crc="269eb800" sha1="777184fb895e43a783852e5e68e7f0fa9dd9e8a3" offset="0" />
</dataarea>
</part>
</software>
<software name="everton" supported="no">
<!-- SPS (CAPS) release 3323 -->
<description>The Official Everton F.C. Intelligensia (Europe)</description>
<year>1990</year>
<publisher>Amfas</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="official everton f.c. intelligensia, the (europe).ipf" size="918252" crc="f435f18c" sha1="d7000e73518f0b07c8f5c229b7b18f073f625b16" offset="0" />
</dataarea>
</part>
</software>
<software name="oharrier" supported="no">
<!-- SPS (CAPS) release 3393 -->
<description>Operation Harrier (Europe)</description>
<year>1990</year>
<publisher>U.S. Gold</publisher>
<notes><![CDATA[
Black screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018252">
<rom name="operation harrier (europe).ipf" size="1018252" crc="0984b4b8" sha1="42726a1a7dad4ca28c84e95f7eac93e8361729ca" offset="0" />
</dataarea>
</part>
</software>
<software name="ostealth" supported="no">
<!-- SPS (CAPS) release 3198 -->
<description>Operation Stealth (France)</description>
<year>1990</year>
<publisher>U.S. Gold</publisher>
<info name="usage" value="Sports code wheel copy protection (codes de couleurs)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="917820">
<rom name="operation stealth (france) (disk 1).ipf" size="917820" crc="131371cd" sha1="b9707c93b593daff3977a51d9f447ad533c6eee5" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="917820">
<rom name="operation stealth (france) (disk 2).ipf" size="917820" crc="b6cbd908" sha1="44b2d40c3bfb66ec9adf80be8063a2e9a4d07544" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="917820">
<rom name="operation stealth (france) (disk 3).ipf" size="917820" crc="43c10368" sha1="ae82ee854995113d5d4c8b1714f3dfa73ed33a2a" offset="0" />
</dataarea>
</part>
</software>
<software name="othunder" supported="no">
<!-- SPS (CAPS) release 3356 -->
<description>Operation Thunderbolt (Europe)</description>
<year>1989</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Black screen, enables [68k] trace mode
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1022242">
<rom name="operation thunderbolt (europe) (disk 1).ipf" size="1022242" crc="1b45de73" sha1="decf64e666bdd69c673360147d72502e3090e3ed" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1022242">
<rom name="operation thunderbolt (europe) (disk 2).ipf" size="1022242" crc="e5477eef" sha1="a0dadde3474494dd3e0036a3d83380df87141620" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="1022242">
<rom name="operation thunderbolt (europe) (disk 3).ipf" size="1022242" crc="f5bd3c85" sha1="f629ababb85e0cd8ffe7cbff93a932c545cfaebf" offset="0" />
</dataarea>
</part>
</software>
<software name="orbit2k" supported="no">
<!-- SPS (CAPS) release 3357 -->
<description>Orbit 2000 (Europe)</description>
<year>1991</year>
<publisher>Byte Back</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="orbit 2000 (europe).ipf" size="518252" crc="74879679" sha1="8192052f7e8ac1e152cfa0c696866b730e715f62" offset="0" />
</dataarea>
</part>
</software>
<software name="orgames" supported="no">
<!-- SPS (CAPS) release 3358 -->
<description>Oriental Games (Europe)</description>
<year>1990</year>
<publisher>MicroStyle</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A (Boot Disk)" />
<dataarea name="flop" size="1018252">
<rom name="oriental games (europe) (boot disk a).ipf" size="1018252" crc="db75a97b" sha1="5a2dcb6500af55dea5e5e2ff1ca7e51eba56fcf4" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B (Game Disk)" />
<dataarea name="flop" size="518252">
<rom name="oriental games (europe) (games disk b).ipf" size="518252" crc="955df886" sha1="2754df54bb9acbc1fe5b980d00ebb6e37eb55b9a" offset="0" />
</dataarea>
</part>
</software>
<software name="outcast" supported="no">
<!-- SPS (CAPS) release 3263 -->
<description>Outcast (Europe)</description>
<year>1987</year>
<publisher>Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="outcast (europe).ipf" size="468252" crc="52444471" sha1="6e6abbcd1dfffd3c39167b8662ab3fbb8feb3c54" offset="0" />
</dataarea>
</part>
</software>
<software name="overland" supported="no">
<!-- SPS (CAPS) release 3226 -->
<description>Overlander (Europe)</description>
<year>1988</year>
<publisher>Elite</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468254">
<rom name="overlander (europe).ipf" size="468254" crc="f4548c59" sha1="6edbc8b1bd89c8cf60e836cbd690a47966f5cf80" offset="0" />
</dataarea>
</part>
</software>
<software name="overlanda" cloneof="overland" supported="no">
<!-- SPS (CAPS) release 3387 -->
<description>Overlander (Europe, Finale)</description>
<year>1988</year>
<publisher>Elite</publisher>
<notes><![CDATA[
Executes illegal opcode at PC=126f4, [68k] hangs
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="overlander (europe) (compilation - finale).ipf" size="520242" crc="66c2e498" sha1="ba0a6f3f48002c254b20e74b38efcffd4353bdce" offset="0" />
</dataarea>
</part>
</software>
<software name="goplayer" supported="no">
<!-- SPS (CAPS) release 3296 -->
<description>The Oxford Softworks Go Player (Europe)</description>
<year>1991</year>
<publisher>Oxford Softworks</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="oxford softworks go player, the (europe) (en,fr,de).ipf" size="468252" crc="9190ad7d" sha1="4a0a64dce055869706e6468f070da4edb90da404" offset="0" />
</dataarea>
</part>
</software>
<software name="pacmania" supported="no">
<!-- SPS (CAPS) release 3140 -->
<description>Pac-Mania (Europe)</description>
<year>1989</year>
<publisher>Grandslam</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="pac-mania (europe).ipf" size="518252" crc="eaa700c3" sha1="5e60bc1be307627bc1db8e944d92db184094136c" offset="0" />
</dataarea>
</part>
</software>
<software name="pandora" supported="no">
<!-- SPS (CAPS) release 3141 -->
<description>Pandora (Europe)</description>
<year>1988</year>
<publisher>Firebird</publisher>
<notes><![CDATA[
Doesn't recognize fire button or space key on title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="pandora (europe).ipf" size="518254" crc="c13b362f" sha1="a425e0c33500ae04352c35f7f9e9af01601b1722" offset="0" />
</dataarea>
</part>
</software>
<software name="paperboy" supported="no">
<!-- SPS (CAPS) release 3386 -->
<description>Paperboy (Europe, Finale)</description>
<year>1989</year>
<publisher>Elite</publisher>
<notes><![CDATA[
Executes illegal opcode at PC=af06, [68k] hangs
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="paperboy (europe) (compilation - finale).ipf" size="520242" crc="1f431b44" sha1="c7623602de34ae813958b8b5c840fc8a15bc9488" offset="0" />
</dataarea>
</part>
</software>
<software name="passwnd2" supported="no">
<!-- SPS (CAPS) release 3396 -->
<description>Passengers on the Wind 2 (Europe)</description>
<year>1988</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468258">
<rom name="passengers on the wind 2 (europe).ipf" size="468258" crc="bec7e827" sha1="0f234ef8f8400f89807e852a8116bd10bfbcd8e3" offset="0" />
</dataarea>
</part>
</software>
<software name="pawn" supported="no">
<!-- SPS (CAPS) release 3209 -->
<description>The Pawn (Europe, v2.1)</description>
<year>1986</year>
<publisher>Rainbird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="472560">
<rom name="pawn, the (europe) (v2.1).ipf" size="472560" crc="5a863ad1" sha1="9da4b05d4825fdfa6118fae68ccff9f1c881a279" offset="0" />
</dataarea>
</part>
</software>
<software name="pharaoh3" supported="no">
<!-- SPS (CAPS) release 3142 -->
<description>Pharaoh III (Europe)</description>
<year>1989</year>
<publisher>Digita International</publisher>
<notes><![CDATA[
F3 doesn't show key configure screen, doesn't seem joystick controllable?
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="pharaoh iii (europe).ipf" size="518252" crc="40279d1a" sha1="c0dd0bfd288bbd484aa5043ee8e1c4df682b0f18" offset="0" />
</dataarea>
</part>
</software>
<software name="piction" supported="no">
<!-- SPS (CAPS) release 3143 -->
<description>Pictionary - The Game of Quick Draw (Europe)</description>
<year>1989</year>
<publisher>Domark</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="pictionary - the game of quick draw (europe).ipf" size="468252" crc="7f06eab5" sha1="f62a9390308a001a07fcdaafbb41f470ca235420" offset="0" />
</dataarea>
</part>
</software>
<software name="pirabarb" supported="no">
<!-- SPS (CAPS) release 3395 -->
<description>Pirates of the Barbary Coast (Europe)</description>
<year>1987</year>
<publisher>Cascade Games</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="pirates of the barbary coast (europe).ipf" size="468252" crc="0dc48ed2" sha1="731c51bd3d0500a9ae4e91d94c3107ba3154fab1" offset="0" />
</dataarea>
</part>
</software>
<software name="pmanger" supported="no">
<!-- SPS (CAPS) release 3188 -->
<description>Player Manager (Europe, Football Crazy Challenge)</description>
<year>1990</year>
<publisher>Anco</publisher>
<notes><![CDATA[
Hangs after title screen with a broken icon in the middle.
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="519442">
<rom name="player manager (europe) (compilation - football crazy challenge).ipf" size="519442" crc="938060a7" sha1="3bef25fdbea9f68a049e5b0586a139ce43a5adf5" offset="0" />
</dataarea>
</part>
</software>
<software name="pquest" supported="no">
<!-- SPS (CAPS) release 3149 -->
<description>Police Quest - In Pursuit of the Death Angel (Europe, v2.0G 19870312)</description>
<year>1987</year>
<publisher>Sierra</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="468252">
<rom name="police quest - in pursuit of the death angel (europe) (v2.0g 12.3.87) (disk 1).ipf" size="468252" crc="86a631be" sha1="769d3b223b2dcfba8a753f34e0588d1d7ed573fc" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="police quest - in pursuit of the death angel (europe) (v2.0g 12.3.87) (disk 2).ipf" size="468252" crc="f16d4a27" sha1="5df35f53937ed2c0837f0376bb92c157e1ca9345" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="468252">
<rom name="police quest - in pursuit of the death angel (europe) (v2.0g 12.3.87) (disk 3).ipf" size="468252" crc="ffddfa40" sha1="c9759deff7b74807b21b8585e65cd94fab768bd9" offset="0" />
</dataarea>
</part>
</software>
<software name="populopl" supported="no">
<!-- SPS (CAPS) release 3024 -->
<description>Populous - The Promised Lands (Europe)</description>
<year>1989</year>
<publisher>Electronic Arts</publisher>
<info name="usage" value="Requires "Populous" to work" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1037012">
<rom name="populous - the promised lands (europe) (addon) (amiga + st).ipf" size="1037012" crc="de09f0a3" sha1="21301177eb04122183aa716c081e8a4fda35cff8" offset="0" />
</dataarea>
</part>
</software>
<software name="presidnt" supported="no">
<!-- SPS (CAPS) release 3281 -->
<description>The President is Missing (Europe)</description>
<year>1988</year>
<publisher>MicroProse</publisher>
<info name="usage" value="Sports manual copy protection (logon procedure)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="president is missing, the (europe).ipf" size="518252" crc="82fe6664" sha1="fb8ac7c4c96860c2e8f43d978d559377e9cce304" offset="0" />
</dataarea>
</part>
</software>
<software name="prince" supported="no">
<!-- SPS (CAPS) release 3162 -->
<description>Prince (Europe)</description>
<year>1989</year>
<publisher>ARC</publisher>
<notes><![CDATA[
White screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1022242">
<rom name="prince (europe).ipf" size="1022242" crc="cd245f0f" sha1="7718e05befff092806c53de4003e0785d0025822" offset="0" />
</dataarea>
</part>
</software>
<software name="prison" supported="no">
<!-- SPS (CAPS) release 3369 -->
<description>Prison (Europe)</description>
<year>1989</year>
<publisher>Krisalis</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="prison (europe) (en,fr,de,it) (disk 1).ipf" size="517627" crc="00025bcc" sha1="f1420804cdb7119330c24d1c747df08ea8978073" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="prison (europe) (en,fr,de,it) (disk 2).ipf" size="518252" crc="402e8c1e" sha1="3ae6968596250b2645d93593e1013b1db93fab97" offset="0" />
</dataarea>
</part>
</software>
<software name="puzznic" supported="no">
<!-- SPS (CAPS) release 3368 -->
<description>Puzznic (Europe)</description>
<year>1990</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Broken white screen with black box, [68k] stalls at invalid opcode PC=4d1c
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1022242">
<rom name="puzznic (europe).ipf" size="1022242" crc="bf30e373" sha1="f0d0ea8620bc19e988af26c99fda87cae0372535" offset="0" />
</dataarea>
</part>
</software>
<software name="quink" supported="no">
<!-- SPS (CAPS) release 3397 -->
<description>Quink (USA)</description>
<year>1984</year>
<publisher>Mindscape</publisher>
<notes><![CDATA[
Prompts for a disk B: that doesn't exist in the set.
]]></notes>
<sharedfeat name="compatibility" value="NTSC"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="469240">
<rom name="quink (usa).ipf" size="469240" crc="ba6001ee" sha1="60f50797be41e19229254c6c7b8960e9e73cb233" offset="0" />
</dataarea>
</part>
</software>
<software name="raffles" supported="no">
<!-- SPS (CAPS) release 3163 -->
<description>Raffles (Europe)</description>
<year>1989</year>
<publisher>The Edge</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="raffles (europe).ipf" size="918252" crc="ae0dc018" sha1="4a1bd0fd4f61e6f549cb560e46b4ae3bc7da2749" offset="0" />
</dataarea>
</part>
</software>
<software name="rallyx" supported="no">
<!-- SPS (CAPS) release 3379 -->
<description>Rally Cross (Europe)</description>
<year>1989</year>
<publisher>Anco</publisher>
<notes><![CDATA[
White screen, enables [68k] trace mode
]]></notes>
<info name="alt_title" value="Rally Cross Challenge (Box)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="rally cross challenge (europe).ipf" size="520242" crc="8aba62dc" sha1="1229664b54b4182754d9159f277b2ec4a5eef7d5" offset="0" />
</dataarea>
</part>
</software>
<software name="rghostb" supported="no">
<!-- SPS (CAPS) release 3164 -->
<description>The Real Ghostbusters (Europe)</description>
<year>1988</year>
<publisher>Activision</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="557852">
<rom name="real ghostbusters, the (europe).ipf" size="557852" crc="f2447ee4" sha1="8cada93ef9663e339d6a028cbd5fced1d0d45e08" offset="0" />
</dataarea>
</part>
</software>
<software name="redheat" supported="no">
<!-- SPS (CAPS) release 3370 -->
<description>Red Heat (Europe)</description>
<year>1989</year>
<publisher>Ocean</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="red heat (europe) (disk 1).ipf" size="517627" crc="f4003f59" sha1="9be95d4c98b5020c1a9864d04f0c4a8ede7ddaf7" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517627">
<rom name="red heat (europe) (disk 2).ipf" size="517627" crc="612d962a" sha1="3f2250d72f1196b05a33ff2eb08fc6ef5b6384c8" offset="0" />
</dataarea>
</part>
</software>
<software name="redstorm" supported="no">
<!-- SPS (CAPS) release 3165 -->
<description>Red Storm Rising (Europe, v743.01)</description>
<year>1990</year>
<publisher>MicroProse</publisher>
<notes><![CDATA[
Prompts user to insert "ORIGINAL" DISK A, assume failed copy protection
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="518616">
<rom name="red storm rising (europe) (v743.01) (disk a).ipf" size="518616" crc="66ac3e11" sha1="e2bc52fcca5101c65af4ad60ef41e337ea833f0f" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="518252">
<rom name="red storm rising (europe) (v743.01) (disk b).ipf" size="518252" crc="09ca6acd" sha1="7293b8e99b849b2b834fb8fd1487dacbb45a3a6b" offset="0" />
</dataarea>
</part>
</software>
<software name="resol101" supported="no">
<!-- SPS (CAPS) release 3200 -->
<description>Resolution 101 (Europe)</description>
<year>1990</year>
<publisher>Millennium</publisher>
<notes><![CDATA[
During gameplay player loses a life with no chance of actual game.
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="519810">
<rom name="resolution 101 (europe).ipf" size="519810" crc="c2035bd0" sha1="640729e6be35556973174ea0cc774dd0af26eec4" offset="0" />
</dataarea>
</part>
</software>
<software name="revmutcm" supported="no">
<!-- SPS (CAPS) release 3146 -->
<description>Revenge of the Mutant Camels II (Europe)</description>
<year>1988</year>
<publisher>Mastertronic</publisher>
<info name="alt_title" value="Revenge II (Box)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="revenge ii - revenge of the mutant camels ii (europe).ipf" size="517627" crc="7f0fe084" sha1="4bd9af5151f3e12503621e560f5e259e7e0107bd" offset="0" />
</dataarea>
</part>
</software>
<software name="roadwars" supported="no">
<!-- SPS (CAPS) release 3371 -->
<description>Road Wars (Europe)</description>
<year>1987</year>
<publisher>Melbourne House</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="roadwars (europe).ipf" size="517627" crc="48cf06af" sha1="f8fc1fa34fca68686dd279a7f2b39df6af68f67b" offset="0" />
</dataarea>
</part>
</software>
<software name="robocop" supported="no">
<!-- SPS (CAPS) release 3166 -->
<description>RoboCop (Europe)</description>
<year>1989</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Fails [disk swap] when prompted to after title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="468252">
<rom name="robocop (europe) (disk 1).ipf" size="468252" crc="edf76c34" sha1="61a1b3c375f512f80160e0e9a84094106743a8b6" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="517627">
<rom name="robocop (europe) (disk 2).ipf" size="517627" crc="695db228" sha1="6fd5c7cb8678e61c236387a3ce5f27f1f234d892" offset="0" />
</dataarea>
</part>
</software>
<software name="rockstar" supported="no">
<!-- SPS (CAPS) release 3373 -->
<description>Rock Star Ate My Hamster (Europe)</description>
<year>1989</year>
<publisher>Codemasters</publisher>
<notes><![CDATA[
11 [bombs] Line 1111 Emulator
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="rock star ate my hamster (europe).ipf" size="520242" crc="1226738e" sha1="04213fe88c6255d5288aed6293ffb99ca845c575" offset="0" />
</dataarea>
</part>
</software>
<software name="rodymas3" supported="no">
<!-- SPS (CAPS) release 3199 -->
<description>Rody & Mastico III (France)</description>
<year>1991</year>
<publisher>Lankhor</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520607">
<rom name="rody et mastico iii (france).ipf" size="520607" crc="846a8e73" sha1="e5440806ab3e9a54ae23dd261365cc1d61d73b60" offset="0" />
</dataarea>
</part>
</software>
<software name="rotor" supported="no">
<!-- SPS (CAPS) release 3372 -->
<description>Rotor (Europe)</description>
<year>1989</year>
<publisher>Arcana</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="rotor (europe).ipf" size="517627" crc="4cb9efae" sha1="fce7b61b9d3c3bd3ab4d94fe46c18657ab96bbea" offset="0" />
</dataarea>
</part>
</software>
<software name="sargon3" supported="no">
<!-- SPS (CAPS) release 3167 -->
<description>Sargon III (Europe)</description>
<year>1988</year>
<publisher>Logotron</publisher>
<notes><![CDATA[
"An error has occurred , Re-Load"
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="465752">
<rom name="sargon iii (europe).ipf" size="465752" crc="778ea9ab" sha1="52e1231b236d4c52f08abce13436b28217d4d20e" offset="0" />
</dataarea>
</part>
</software>
<software name="sascombs" supported="no">
<!-- SPS (CAPS) release 3378 -->
<description>SAS Combat Simulator (Europe)</description>
<year>1990</year>
<publisher>Codemasters</publisher>
<notes><![CDATA[
White screen. Track 1 appears to be malformed, causing CRC errors on reads; 68000 eventually hangs on double bus error after SSP is corrupted.
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="sas combat simulator (europe).ipf" size="520242" crc="00afc741" sha1="b40dfc1c65cfca8624f3331caa38c5542ca2b631" offset="0" />
</dataarea>
</part>
</software>
<software name="7gatejam" supported="no">
<!-- SPS (CAPS) release 3168 -->
<description>The Seven Gates of Jambala (Europe)</description>
<year>1989</year>
<publisher>Grandslam</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="170330">
<rom name="seven gates of jambala, the (europe) (disk 1).ipf" size="170330" crc="ec1e520e" sha1="07978e715e4d095890677d363358fecfd46a4079" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="522145">
<rom name="seven gates of jambala, the (europe) (disk 2).ipf" size="522145" crc="82addda0" sha1="6e2dc4b9c4bb00f4e5bedc5db710099f49c2c4a1" offset="0" />
</dataarea>
</part>
</software>
<software name="shadgate" supported="no">
<!-- SPS (CAPS) release 3315 -->
<description>Shadowgate (Europe)</description>
<year>1987</year>
<publisher>Mindscape</publisher>
<notes><![CDATA[
Fails [disk swap]
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="468337">
<rom name="shadowgate (europe) (disk 1).ipf" size="468337" crc="a6068cc8" sha1="023ca53a43b778c2c420074bf69ecceee2cd283d" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="shadowgate (europe) (disk 2).ipf" size="468252" crc="3690e0d4" sha1="eeeaeb7fc2ac80bb69dd473d489bd6f339ff0be4" offset="0" />
</dataarea>
</part>
</software>
<software name="sidewind" supported="no">
<!-- SPS (CAPS) release 3107 -->
<description>SideWinder (Europe)</description>
<year>1988</year>
<publisher>Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="517627">
<rom name="sidewinder (europe) (disk a).ipf" size="517627" crc="9e9fd1a3" sha1="fb7490f603962a00d305dfd77bda2c895dffaf69" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="517627">
<rom name="sidewinder (europe) (disk b).ipf" size="517627" crc="16bbcc50" sha1="b4ceb752b6584dbb7e015654134fa66a0db1bdf6" offset="0" />
</dataarea>
</part>
</software>
<software name="silkworm" supported="no">
<!-- SPS (CAPS) release 3144 -->
<description>Silkworm (Europe)</description>
<year>1990</year>
<publisher>Virgin Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="silkworm (europe).ipf" size="517627" crc="bee632c4" sha1="b062f1d048855b8f259fcea2a7e87f0d2d84d46d" offset="0" />
</dataarea>
</part>
</software>
<software name="sinbad" supported="no">
<!-- SPS (CAPS) release 3390 -->
<description>Sinbad and the Throne of the Falcon (Europe)</description>
<year>1988</year>
<publisher>Mirror Image</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Reel 1" />
<dataarea name="flop" size="468254">
<rom name="sinbad and the throne of the falcon (europe) (reel 1).ipf" size="468254" crc="84e27ae5" sha1="9eecd49c9c362cdbabd5b345eb6e5bc43c975715" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Reel 2" />
<dataarea name="flop" size="468252">
<rom name="sinbad and the throne of the falcon (europe) (reel 2).ipf" size="468252" crc="5e49f880" sha1="e26ccb4631ab481ac1728acbb66b8fba5073f1a9" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Reel 3" />
<dataarea name="flop" size="468252">
<rom name="sinbad and the throne of the falcon (europe) (reel 3).ipf" size="468252" crc="579fcdce" sha1="8ff68a0fc2f53d00d6987873f223551c059bd936" offset="0" />
</dataarea>
</part>
</software>
<software name="sharrier" supported="no">
<!-- SPS (CAPS) release 3391 -->
<description>Space Harrier (Europe)</description>
<year>1988</year>
<publisher>Elite</publisher>
<notes><![CDATA[
Randomly hangs, stalls waiting for a $bcbe that never becomes 1, supposed to be provided by [GPIO4] irq, manually triggering a [ikbd] rx_cb 0 will resume comms with [ACIA0]
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1018252">
<rom name="space harrier (europe) (disk 1).ipf" size="1018252" crc="3fc2438e" sha1="a0b5c506368d7b51c65dbb1393e392db42047ef7" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1018252">
<rom name="space harrier (europe) (disk 2).ipf" size="1018252" crc="63de23bb" sha1="ea88096bcd30c92af9d4b61fb64a8aa542ab7e3d" offset="0" />
</dataarea>
</part>
</software>
<software name="sharriera" cloneof="sharrier" supported="no">
<!-- SPS (CAPS) release 3388 -->
<description>Space Harrier (Europe, Finale)</description>
<year>1988</year>
<publisher>Elite</publisher>
<notes><![CDATA[
Draws "ELTE" instead of "ELITE" on game select
Random hangs, cfr. sharrier
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1018252">
<rom name="space harrier (europe) (compilation - finale).ipf" size="1018252" crc="7b3415e4" sha1="146d50a9635b45783373482a68c14ae7c769c528" offset="0" />
</dataarea>
</part>
</software>
<software name="sharrie2" supported="no">
<!-- SPS (CAPS) release 3392 -->
<description>Space Harrier II (Europe)</description>
<year>1990</year>
<publisher>Grandslam</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="1018252">
<rom name="space harrier ii (europe) (disk 1).ipf" size="1018252" crc="c4ef520d" sha1="0b9fe3d8f172d78ca1f89aaca35857482aed66ab" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="1018252">
<rom name="space harrier ii (europe) (disk 2).ipf" size="1018252" crc="f02028c8" sha1="18c4e91a2fb5e2a1b925701504b477e3b8689fdd" offset="0" />
</dataarea>
</part>
</software>
<software name="sphericl" supported="no">
<!-- SPS (CAPS) release 3169 -->
<description>Spherical (Europe)</description>
<year>1989</year>
<publisher>Rainbow Arts</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="524502">
<rom name="spherical (europe) (disk a).ipf" size="524502" crc="a7f705fc" sha1="ae674e73163c0f82ca9eb9e37b4ce892349e3775" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="569457">
<rom name="spherical (europe) (disk b).ipf" size="569457" crc="c0bbcdc0" sha1="749bf3489f92b932ebe6e22af6d3da58bb9fd818" offset="0" />
</dataarea>
</part>
</software>
<software name="spidertr" supported="no">
<!-- SPS (CAPS) release 3170 -->
<description>Spidertronic (Europe)</description>
<year>1988</year>
<publisher>ERE</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="471664">
<rom name="spidertronic (europe).ipf" size="471664" crc="f1e6df96" sha1="f52b44f4e27eb1cc76408cafb678812a5fc269df" offset="0" />
</dataarea>
</part>
</software>
<software name="spidertr1" cloneof="spidertr" supported="no">
<description>Spidertronic (Europe, Smash 16)</description>
<year>1990</year>
<publisher>Smash 16</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="3133401">
<rom name="spidertronic.mfm" size="3133401" crc="57607130" sha1="4dc1ee4efacd52e5ba9a5c74c3b82618783b35aa" />
</dataarea>
</part>
</software>
<software name="spitfr40" supported="no">
<!-- SPS (CAPS) release 3101 -->
<description>Spitfire 40 (Europe)</description>
<year>1988</year>
<publisher>Mirrorsoft</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="spitfire 40 (europe).ipf" size="517627" crc="9fb5f1ba" sha1="b223275e72f0d54ee1fe7f8736fbd53fd9ace4e7" offset="0" />
</dataarea>
</part>
</software>
<software name="spitimag" supported="no">
<!-- SPS (CAPS) release 3376 -->
<description>Spitting Image (Europe)</description>
<year>1988</year>
<publisher>Domark</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="480127">
<rom name="spitting image (europe).ipf" size="480127" crc="8bfe0283" sha1="6624dfdd592087ea837d62675307b9d9a46f7bba" offset="0" />
</dataarea>
</part>
</software>
<software name="jedi" supported="no">
<!-- SPS (CAPS) release 3374 -->
<description>Return of the Jedi (Europe, The Star Wars Trilogy)</description>
<year>1989</year>
<publisher>Domark</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="star wars - return of the jedi (europe) (compilation - the star wars trilogy).ipf" size="518252" crc="e3ca5fa2" sha1="b9afbddd1300154fa65f0b7dedfc0df7c8d8e024" offset="0" />
</dataarea>
</part>
</software>
<software name="esb" supported="no">
<!-- SPS (CAPS) release 3171 -->
<description>Star Wars - The Empire Strikes Back (Europe, The Star Wars Trilogy)</description>
<year>1989</year>
<publisher>Domark</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="star wars - the empire strikes back (europe) (compilation - the star wars trilogy).ipf" size="518252" crc="c0c4329f" sha1="04de6eaf22f5db39485847ba6afd8875b68b1a19" offset="0" />
</dataarea>
</part>
</software>
<software name="starwrek" supported="no">
<!-- SPS (CAPS) release 3375 -->
<description>Star Wrek (Europe)</description>
<year>1989</year>
<publisher>Castlesoft</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="472812">
<rom name="star wrek (europe).ipf" size="472812" crc="e1cc5280" sha1="0af3a592992cea6701b2e5a13e6958538b3c35f7" offset="0" />
</dataarea>
</part>
</software>
<software name="starblaz" supported="no">
<!-- SPS (CAPS) release 3377 -->
<description>Starblaze (Europe)</description>
<year>1989</year>
<publisher>Logotron</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="starblaze (europe).ipf" size="517627" crc="feaa81e0" sha1="f3d054d299e41b8f751a0040f745675519e4873c" offset="0" />
</dataarea>
</part>
</software>
<software name="starfl" supported="no">
<!-- SPS (CAPS) release 3113 -->
<description>Starflight (Europe)</description>
<year>1989</year>
<publisher>Electronic Arts</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="468252">
<rom name="starflight (europe) (disk a).ipf" size="468252" crc="503ae67c" sha1="076e971f9a23e31c04022b9e51c79cd641670c01" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="468252">
<rom name="starflight (europe) (disk b).ipf" size="468252" crc="9d44d8d5" sha1="98a8c13d21f5b6ee4c7a7c9bb613d0df90d43a28" offset="0" />
</dataarea>
</part>
</software>
<software name="starglid" supported="no">
<!-- SPS (CAPS) release 3210 -->
<description>Starglider (Europe)</description>
<year>1987</year>
<publisher>Rainbird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517820">
<rom name="starglider (europe).ipf" size="517820" crc="b0472c8c" sha1="aae5e32c2bbd5c31631d65da238d947d1a749c5c" offset="0" />
</dataarea>
</part>
</software>
<!-- This is a dual disk Amiga + ST -->
<software name="stargld2" supported="no">
<!-- SPS (CAPS) release 3000 -->
<description>Starglider 2 (Europe)</description>
<year>1988</year>
<publisher>Rainbird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1019021">
<rom name="starglider 2 (europe) (en,fr,de) (amiga + st).ipf" size="1019021" crc="ed38c67f" sha1="c2cb4b2f517e2f20205577b8ba16331920660160" offset="0" />
</dataarea>
</part>
</software>
<software name="strquake" supported="no">
<!-- SPS (CAPS) release 3399 -->
<description>Starquake (Europe)</description>
<year>1988</year>
<publisher>Mandarin</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="starquake (europe).ipf" size="468252" crc="cd1aee1b" sha1="ddff723f14c56a2591ca5fa74670ceff2499d4c7" offset="0" />
</dataarea>
</part>
</software>
<software name="steel" supported="no">
<!-- SPS (CAPS) release 3306 -->
<description>Steel (Europe)</description>
<year>1989</year>
<publisher>Hewson</publisher>
<notes><![CDATA[
11 [bombs] Line 1111 Emulator, resets TOS if trying to run auto/steel.prg manually
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="steel (europe).ipf" size="520242" crc="6ac8b3b0" sha1="3c562fba4b6654ad28835ebeebd7eecbb7e22af2" offset="0" />
</dataarea>
</part>
</software>
<software name="stormstr" supported="no">
<!-- SPS (CAPS) release 3115 -->
<description>Storm Master (Europe)</description>
<year>1992</year>
<publisher>Silmarils</publisher>
<notes><![CDATA[
Hangs on title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1014649">
<rom name="storm master (europe).ipf" size="1014649" crc="1fc8c46c" sha1="f442bab4751112a0c60ebf3ec68d9d77cc65f796" offset="0" />
</dataarea>
</part>
</software>
<software name="sf2" supported="no">
<description>Street Fighter II: The World Warrior (Europe)</description>
<year>1992</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="2131682">
<rom name="Street Fighter 2 Disk 1.mfm" size="2131682" crc="2712b1aa" sha1="9fc407a84590f18d2c5225e3ad25cc9800281936" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="2141960">
<rom name="Street Fighter 2 Disk 2.mfm" size="2141960" crc="9d569238" sha1="658ea036f65fa9ff0b9ec06cec40c3a36860de51" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="2139383">
<rom name="Street Fighter 2 Disk 3.mfm" size="2139383" crc="526ec0bd" sha1="a13c85ec80e06b35055ca70b85f6c519e44e8fd4" />
</dataarea>
</part>
<part name="flop4" interface="floppy_3_5">
<feature name="part_id" value="Disk 4" />
<dataarea name="flop" size="2139380">
<rom name="Street Fighter 2 Disk 4.mfm" size="2139380" crc="eda4a515" sha1="be40cb13b26bd22f3b10fc798fd1803ef675287d" />
</dataarea>
</part>
</software>
<software name="strider" supported="no">
<!-- SPS (CAPS) release 3193 -->
<description>Strider (Europe, Les Chevaliers)</description>
<year>1989</year>
<publisher>U.S. Gold</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1010945">
<rom name="strider (europe) (compilation - les chevaliers).ipf" size="1010945" crc="508fbd09" sha1="1042302ce7a68f39e8a862a66544a61d3c61977f" offset="0" />
</dataarea>
</part>
</software>
<software name="strike" supported="no">
<!-- SPS (CAPS) release 3394 -->
<description>Strike (Europe)</description>
<year>1987</year>
<publisher>Mastertronic</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="strike (europe).ipf" size="517627" crc="43013dcd" sha1="98836048190c82466f39dbad065d38b0682759ce" offset="0" />
</dataarea>
</part>
</software>
<software name="striker" supported="no">
<description>Striker (Europe)</description>
<year>1993</year>
<publisher>Gremlin Graphics</publisher>
<notes><![CDATA[
Black screen, hangs in TOS comparing buffers coming from $db0
Player cursor oddly appears a bit lower compared to the shadow (verify)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="2150288">
<rom name="striker.mfm" size="2150288" crc="f4145309" sha1="af26fd1b75bedd50f2a58fbb0eb4acf1f37f3d19" />
</dataarea>
</part>
</software>
<software name="stryx" supported="no">
<!-- SPS (CAPS) release 3172 -->
<description>Stryx (Europe)</description>
<year>1989</year>
<publisher>Psyclapse</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk A" />
<dataarea name="flop" size="517627">
<rom name="stryx (europe) (disk a).ipf" size="517627" crc="30e13f1d" sha1="ecf46d4eb22a937695d36db6f9797d28ec4f7b8b" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk B" />
<dataarea name="flop" size="517627">
<rom name="stryx (europe) (disk b).ipf" size="517627" crc="24eaf056" sha1="95c1463e2f86f9d95bb4043966e06a0fcacb4e13" offset="0" />
</dataarea>
</part>
</software>
<software name="sundog" supported="no">
<!-- SPS (CAPS) release 3222 -->
<description>Sundog - Frozen Legacy (Europe)</description>
<!-- Shows (c) 1985 on title screen as per original USA version -->
<year>1988</year>
<publisher>Mirrorsoft</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468877">
<rom name="sundog - frozen legacy (europe).ipf" size="468877" crc="46f0ae7e" sha1="512b89b7bece87df8ffc7c3a3fb6f22496ff69a7" offset="0" />
</dataarea>
</part>
</software>
<software name="swap" supported="no">
<!-- SPS (CAPS) release 3301 -->
<description>Swap (Europe, Budget)</description>
<year>1991</year>
<publisher>Fox Hits</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="swap (europe) (budget - fox hits).ipf" size="918252" crc="c1af7fdd" sha1="e3e4e972b05d23d9784b495d1fd081bac5e40344" offset="0" />
</dataarea>
</part>
</software>
<software name="taipan" supported="no">
<!-- SPS (CAPS) release 3398 -->
<description>Tai-Pan (Europe)</description>
<year>1987</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Hangs after selecting input device on title screen, looping on [MFP] and [MMU] interactions
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520092">
<rom name="tai-pan (europe).ipf" size="520092" crc="8ce5a8a6" sha1="529a47fc044410f0bd8b8ffa36449146448781fe" offset="0" />
</dataarea>
</part>
</software>
<software name="tasstime" supported="no">
<!-- SPS (CAPS) release 3300 -->
<description>Tass Times in Tonetown (Europe)</description>
<year>1986</year>
<publisher>Activision</publisher>
<notes><![CDATA[
[68k] stalls after [disk swap], PC=a34a
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="469240">
<rom name="tass times in tonetown (europe) (disk 1).ipf" size="469240" crc="0ff0f9a2" sha1="ab72d80f0d826ec6d4e54202a0b602f5c2300a67" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="tass times in tonetown (europe) (disk 2).ipf" size="468252" crc="61755523" sha1="8786204acae66159f2c14c999629f5d8b8481157" offset="0" />
</dataarea>
</part>
</software>
<software name="tauceti" supported="no">
<!-- SPS (CAPS) release 3268 -->
<description>Tau Ceti (Europe)</description>
<year>1987</year>
<publisher>Electronic Arts</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="tau ceti (europe).ipf" size="468252" crc="bff7a431" sha1="1d6715f7cd019a0e78da3d0907791cd58f708378" offset="0" />
</dataarea>
</part>
</software>
<software name="tenniscp" supported="no">
<!-- SPS (CAPS) release 3173 -->
<description>Tennis Cup (Europe, Budget)</description>
<year>1990</year>
<publisher>Action Sixteen</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1023233">
<rom name="tennis cup (europe) (budget - action sixteen).ipf" size="1023233" crc="47e02070" sha1="c802950995652c2a0b2d330193445d1b8ac78f79" offset="0" />
</dataarea>
</part>
</software>
<software name="terramex" supported="no">
<!-- SPS (CAPS) release 3299 -->
<description>Terramex (Europe)</description>
<year>1987</year>
<publisher>Grandslam</publisher>
<notes><![CDATA[
2 [bombs] bus error on title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="terramex (europe) (disk 1).ipf" size="518252" crc="0c42d259" sha1="08b690e780433288bf41bd66937eee8cc677f0af" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="terramex (europe) (disk 2).ipf" size="518252" crc="dd8a2902" sha1="53ca6ac10552da078e9aeb72e19d4da8b22c80c4" offset="0" />
</dataarea>
</part>
</software>
<software name="tdriv" supported="no">
<!-- SPS (CAPS) release 3361 -->
<description>Test Drive (Europe, Accolade All Time Favourites)</description>
<year>1987</year>
<publisher>Accolade</publisher>
<notes><![CDATA[
Prompts user to play with same car or a new one after [disk swap] with no gameplay, assume [FDC] copy protection
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518615">
<rom name="test drive (europe) (compilation - accolade all time favourites) (disk 1).ipf" size="518615" crc="4576bca7" sha1="870248fb519a31efb673ccde625817f5a44716d8" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518615">
<rom name="test drive (europe) (compilation - accolade all time favourites) (disk 2).ipf" size="518615" crc="c293654b" sha1="eb1defacbc6ee1edc8700b548e4745c4d9c28460" offset="0" />
</dataarea>
</part>
</software>
<software name="tparkmys" supported="no">
<!-- SPS (CAPS) release 3211 -->
<description>Theme Park Mystery - Variations on a Theme (Europe)</description>
<year>1991</year>
<publisher>Image Works</publisher>
<notes><![CDATA[
Mouse pointer becomes invisible when selecting fortune teller cabinet in gameplay
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1021810">
<rom name="theme park mystery (europe).ipf" size="1021810" crc="adafa9ca" sha1="eed220be58a12d2affc3535417558ed60b360cfa" offset="0" />
</dataarea>
</part>
</software>
<software name="thrust" supported="no">
<!-- SPS (CAPS) release 3245 -->
<description>Thrust (Europe)</description>
<year>1989</year>
<publisher>Firebird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="thrust (europe).ipf" size="518254" crc="e2a2f206" sha1="4d89490441faffca7952c0b38701159718b2be4b" offset="0" />
</dataarea>
</part>
</software>
<software name="tburner" supported="no">
<!-- SPS (CAPS) release 3295 -->
<description>Thunder Burner (Europe)</description>
<year>1992</year>
<publisher>Loriciel</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1014859">
<rom name="thunder burner (europe).ipf" size="1014859" crc="6f8e0512" sha1="ce97963bbf852945295c44bb1a3c276b2b9de99b" offset="0" />
</dataarea>
</part>
</software>
<software name="thdrcats" supported="no">
<!-- SPS (CAPS) release 3302 -->
<description>ThunderCats (Europe, Budget)</description>
<year>1988</year>
<publisher>Encore</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468254">
<rom name="thundercats (europe) (budget - encore).ipf" size="468254" crc="3ae4ef28" sha1="41481fd1d7afd83e8c543b3a8c407150ef0c6d4f" offset="0" />
</dataarea>
</part>
</software>
<software name="thdrwing" supported="no">
<!-- SPS (CAPS) release 3225 -->
<description>ThunderWing (Europe)</description>
<year>1989</year>
<publisher>Artronic Products</publisher>
<notes><![CDATA[
Player bullets color clash with backgrounds (btanb)
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="512002">
<rom name="thunderwing (europe).ipf" size="512002" crc="8039ccd0" sha1="c05b20e3501a7738164607503759021086389645" offset="0" />
</dataarea>
</part>
</software>
<software name="timemag" supported="no">
<!-- SPS (CAPS) release 3175 -->
<description>Time and Magik (Europe)</description>
<year>1988</year>
<publisher>Mandarin</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="time and magik (europe) (disk 1).ipf" size="518252" crc="e41bb508" sha1="a876fe2d7b00f45934b6de666da3670dd1135149" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="time and magik (europe) (disk 2).ipf" size="518252" crc="85832646" sha1="748c71c0ebdc5281db6304f397df1e9eb5af6333" offset="0" />
</dataarea>
</part>
</software>
<software name="timeblst" supported="no">
<!-- SPS (CAPS) release 3346 -->
<description>Time Blast (Europe)</description>
<year>19??</year>
<publisher>Micro-Value</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="timeblast (europe).ipf" size="468252" crc="d2b9af2b" sha1="868edc2c1aa97138392fd1b06cdbdd0dbf3e3039" offset="0" />
</dataarea>
</part>
</software>
<software name="tintin" supported="no">
<!-- SPS (CAPS) release 3294 -->
<description>Tintin on the Moon (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="918252">
<rom name="tintin on the moon (europe) (en,fr,de).ipf" size="918252" crc="46500bf0" sha1="8cf545d304ac6c9d41cbfe3800d1c20429f58b9f" offset="0" />
</dataarea>
</part>
</software>
<software name="toobin" supported="no">
<!-- SPS (CAPS) release 3176 -->
<description>Toobin' (Europe)</description>
<year>1989</year>
<publisher>Domark</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="toobin' (europe).ipf" size="520242" crc="894947e5" sha1="e11e91bfd4573eed471ed9fa7b8716dbc6413b91" offset="0" />
</dataarea>
</part>
</software>
<software name="bhcats" supported="no">
<!-- SPS (CAPS) release 3177 -->
<description>Top Cat Starring in Beverly Hills Cats (Europe)</description>
<year>1991</year>
<publisher>HiTec Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="top cat starring in beverly hills cats (europe).ipf" size="518252" crc="b22c9b87" sha1="f6bee6b766d85c87721ed4a16c0bca602440ead3" offset="0" />
</dataarea>
</part>
</software>
<software name="towbabel" supported="no">
<!-- SPS (CAPS) release 3178 -->
<description>Tower of Babel (Europe)</description>
<year>1990</year>
<publisher>Rainbird</publisher>
<notes><![CDATA[
"Load time: 50 seconds", never completes [FDC]
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="tower of babel (europe).ipf" size="520242" crc="dc83d3fb" sha1="47e73c3522e53194cfd6ff538e2d0813682e41d5" offset="0" />
</dataarea>
</part>
</software>
<software name="traksuit" supported="no">
<description>Track Suit Manager (Europe)</description>
<year>1989</year>
<publisher>Again Again</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="2993999">
<rom name="track suit manager.mfm" size="2993999" crc="4ed508ad" sha1="4e2d765b06efa87a80362439566da96f367993e0" />
</dataarea>
</part>
</software>
<software name="trailblz" supported="no">
<!-- SPS (CAPS) release 3103 -->
<description>Trailblazer (Europe)</description>
<year>1987</year>
<publisher>Gremlin</publisher>
<notes><![CDATA[
editor.prg hangs when creating a folder, [FDC] write
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="519292">
<rom name="trailblazer (europe).ipf" size="519292" crc="05edff74" sha1="bf48ebeec193f9baefdddb5f67282f8754e1bfdc" offset="0" />
</dataarea>
</part>
</software>
<software name="trasheap" supported="no">
<!-- SPS (CAPS) release 3347 -->
<description>Trash Heap (Europe)</description>
<year>1987</year>
<publisher>Robtek</publisher>
<notes><![CDATA[
First two copy protection codes are always W/16 - A/5 (verify)
]]></notes>
<info name="usage" value="Sports code wheel copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="468252">
<rom name="trash heap (europe) (disk 1).ipf" size="468252" crc="5ede6877" sha1="4015625130704d9f3ae59eba70d56b98cb51cd59" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="trash heap (europe) (disk 2).ipf" size="468252" crc="6072083f" sha1="e48b97286d969311a78ffd5163309acbff295e5c" offset="0" />
</dataarea>
</part>
</software>
<software name="trauma" supported="no">
<!-- SPS (CAPS) release 3348 -->
<description>Trauma (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<notes><![CDATA[
Fails [disk swap] after title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="471664">
<rom name="trauma (europe) (disk 1).ipf" size="471664" crc="02e9d19e" sha1="bbfae77bc29a8369a2a7ec8d4773544c45d254e0" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="trauma (europe) (disk 2).ipf" size="468252" crc="24d09513" sha1="50eb573ab8c1a191a7490b746e29930a4988ecd4" offset="0" />
</dataarea>
</part>
</software>
<software name="treblech" supported="no">
<!-- SPS (CAPS) release 3280 -->
<description>Treble Champions (Europe, v1.0)</description>
<year>1990</year>
<publisher>Challenge Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="treble champions (europe) (v1.0).ipf" size="518252" crc="ca67cf86" sha1="52481690d88f9f77736ea36251d8334bb3e84465" offset="0" />
</dataarea>
</part>
</software>
<software name="trinity" supported="no">
<!-- SPS (CAPS) release 3212 -->
<description>Trinity (Europe, r11)</description>
<year>1986</year>
<publisher>Infocom</publisher>
<info name="usage" value="Requires Medium or High res screen setup in TOS (disk defaults to Low)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="467820">
<rom name="trinity (europe) (r11).ipf" size="467820" crc="9d9283ad" sha1="4aeeb5ff209c7c78b928d2114cc69693c7de42b7" offset="0" />
</dataarea>
</part>
</software>
<software name="trivianb" supported="no">
<!-- SPS (CAPS) release 3179 -->
<description>Trivial Pursuit - A New Beginning (Europe)</description>
<year>1988</year>
<publisher>Domark</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="trivial pursuit - a new beginning (europe).ipf" size="518252" crc="28c85cd1" sha1="b7f24d9a884f5812f5b30ef21b146bb0de5cf5f9" offset="0" />
</dataarea>
</part>
</software>
<software name="turbogt" supported="no">
<!-- SPS (CAPS) release 3261 -->
<description>Turbo GT (Europe)</description>
<year>1989</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="turbo gt (europe).ipf" size="468252" crc="58193517" sha1="6d0711d422ead8bfdb529ffe713a16da82ca2e84" offset="0" />
</dataarea>
</part>
</software>
<software name="toutrun" supported="no">
<!-- SPS (CAPS) release 3221 -->
<description>Turbo Out Run (Europe, Budget)</description>
<year>1989</year>
<publisher>KIXX</publisher>
<notes><![CDATA[
Prompts user on inserting disk 2, but there's only one disk in the set.
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1095692">
<rom name="turbo outrun (europe) (budget - kixx).ipf" size="1095692" crc="93ae44b1" sha1="07c058d0eb50f06a5ce682a0ead7146483f888c6" offset="0" />
</dataarea>
</part>
</software>
<software name="turricn2" supported="no">
<!-- SPS (CAPS) release 3349 -->
<description>Turrican II (Europe, Budget)</description>
<year>1991</year>
<publisher>KIXX</publisher>
<info name="alt_title" value="Turrican II - The Final Fight (Box)" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1019827">
<rom name="turrican ii - the final fight (europe) (budget - kixx).ipf" size="1019827" crc="1c16f12e" sha1="f0b2e01d9ec7dce0a33a14caf63d0dda5705f778" offset="0" />
</dataarea>
</part>
</software>
<software name="tvfootbl" supported="no">
<!-- SPS (CAPS) release 3189 -->
<description>TV Sports Football (Europe)</description>
<year>1989</year>
<publisher>Mirrorsoft</publisher>
<notes><![CDATA[
White screen, [68k] stalls on bootstrap with invalid opcode PC=13eba
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="520242">
<rom name="tv sports football (europe).ipf" size="520242" crc="c1630d7a" sha1="4fbd579361f68fe20bbc881e53b07873447893b7" offset="0" />
</dataarea>
</part>
</software>
<software name="twylyte" supported="no">
<!-- SPS (CAPS) release 3246 -->
<description>Twylyte (Europe)</description>
<year>1989</year>
<publisher>Wicked</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="twylyte (europe).ipf" size="518252" crc="af320fb0" sha1="01f07eb08bee89999de4735267cf19ebe46c385e" offset="0" />
</dataarea>
</part>
</software>
<software name="ums" supported="no">
<!-- SPS (CAPS) release 3102 -->
<description>UMS - The Universal Military Simulator (Europe)</description>
<year>1988</year>
<publisher>Rainbird</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="ums - the universal military simulator (europe).ipf" size="468252" crc="1afe1220" sha1="2e28e66236b56578591431eb08a3f486690a6b74" offset="0" />
</dataarea>
</part>
</software>
<software name="univers3" supported="no">
<!-- SPS (CAPS) release 3350 -->
<description>Universe 3 (Europe, v1.0)</description>
<year>1990</year>
<publisher>Impressions</publisher>
<notes><![CDATA[
Fails [disk swap] when launching univers3.prg
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Game Disk" />
<dataarea name="flop" size="918252">
<rom name="universe 3 (europe) (v1.0) (game disk).ipf" size="918252" crc="b58abf6c" sha1="c21ac500f72528e457a1c0dbb594db2c79ef98d9" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Data Disk" />
<dataarea name="flop" size="918252">
<rom name="universe 3 (europe) (v1.0) (data disk).ipf" size="918252" crc="9191ed09" sha1="d5480fd0c2b32249d6d82d4a1b967e8498c125db" offset="0" />
</dataarea>
</part>
</software>
<software name="untouch" supported="no">
<!-- SPS (CAPS) release 3345 -->
<description>The Untouchables (Europe)</description>
<year>1990</year>
<publisher>Ocean</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="517627">
<rom name="untouchables, the (europe) (disk 1).ipf" size="517627" crc="5a75c57a" sha1="93de98e2b1e6ddb41ca2c6ab7863d4412ee798cd" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="untouchables, the (europe) (disk 2).ipf" size="518252" crc="dbf2471a" sha1="2c4e942dfa5e5d14de34cb75ffbd219d283b817e" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="518252">
<rom name="untouchables, the (europe) (disk 3).ipf" size="518252" crc="78a88d78" sha1="02fc45c232a2840a2f10f14d7f750941cd07f3b2" offset="0" />
</dataarea>
</part>
</software>
<software name="vectball" supported="no">
<!-- SPS (CAPS) release 3224 -->
<description>Vectorball (Europe)</description>
<year>1988</year>
<publisher>MAD</publisher>
<notes><![CDATA[
2 or 3 [bombs] bus error by pressing fire on title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="vectorball (europe).ipf" size="517627" crc="08506a17" sha1="a66f3904ae26eea2d0bae25fb5d6c2fe9c697819" offset="0" />
</dataarea>
</part>
</software>
<software name="vindictr" supported="no">
<!-- SPS (CAPS) release 3351 -->
<description>Vindicators (Europe)</description>
<year>1989</year>
<publisher>Domark</publisher>
<info name="usage" value="Requires joystick in port 0"/>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="vindicators (europe) (disk 1).ipf" size="518252" crc="b4b2e13d" sha1="d0909a0a2ff4b0275fd974d61fb0c26d8e36736e" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="vindicators (europe) (disk 2).ipf" size="518252" crc="7b3c62d3" sha1="0de576c14c1d5d806d8f5c11105913a2856ecb50" offset="0" />
</dataarea>
</part>
</software>
<software name="virus" supported="no">
<!-- SPS (CAPS) release 3223 -->
<description>Virus (Europe)</description>
<year>1988</year>
<publisher>Firebird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="175752">
<rom name="virus (europe).ipf" size="175752" crc="28ae7efb" sha1="108882d71030cfed99ccf6e51d59b29da07c85f3" offset="0" />
</dataarea>
</part>
</software>
<software name="wander3d" supported="no">
<!-- SPS (CAPS) release 3303 -->
<description>Wanderer 3D (Europe, Budget)</description>
<year>1988</year>
<publisher>Encore</publisher>
<notes><![CDATA[
Unsupported optional 3d glasses
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468254">
<rom name="wanderer 3d (europe) (budget - encore).ipf" size="468254" crc="7eb28e97" sha1="29bbdfd5c88375db134111962fd096342e092dff" offset="0" />
</dataarea>
</part>
</software>
<software name="wanted" supported="no">
<!-- SPS (CAPS) release 3180 -->
<description>Wanted (Europe)</description>
<year>1988</year>
<publisher>Infogrames</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="471664">
<rom name="wanted (europe) (disk 1).ipf" size="471664" crc="5e92ccb2" sha1="d4b9b062acefe6ce59ecdac1ac33a7b661770bc6" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="468252">
<rom name="wanted (europe) (disk 2).ipf" size="468252" crc="6c4325f7" sha1="8b5d36e943b1a91c6686b29a0fee671c80d0c96e" offset="0" />
</dataarea>
</part>
</software>
<software name="warmidle" supported="no">
<!-- SPS (CAPS) release 3385 -->
<description>War in Middle Earth (Europe)</description>
<year>1989</year>
<publisher>Melbourne House</publisher>
<notes><![CDATA[
Fails to recognize [disk swap] after title screen
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="war in middle earth (europe) (disk 1).ipf" size="518252" crc="faedb2c9" sha1="ceafaa35b893940b4cf8c7027134fcca5eaaa924" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="war in middle earth (europe) (disk 2).ipf" size="518252" crc="8a08cec6" sha1="54e0832a4e3f25fd4853df4f73477f3cc2006848" offset="0" />
</dataarea>
</part>
<part name="flop3" interface="floppy_3_5">
<feature name="part_id" value="Disk 3" />
<dataarea name="flop" size="518252">
<rom name="war in middle earth (europe) (disk 3).ipf" size="518252" crc="ab404366" sha1="a7da2854fa95f93e44f224329b3cc501956bf8b4" offset="0" />
</dataarea>
</part>
</software>
<software name="warhawk" supported="no">
<!-- SPS (CAPS) release 3249 -->
<description>Warhawk (Europe)</description>
<year>1988</year>
<publisher>Silverbird</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518254">
<rom name="warhawk (europe).ipf" size="518254" crc="85d4beef" sha1="f52b5659cc52461564f8a8081b19a95181b710e2" offset="0" />
</dataarea>
</part>
</software>
<software name="warlock" supported="no">
<!-- SPS (CAPS) release 3181 -->
<description>Warlock's Quest (Europe, Budget)</description>
<year>1988</year>
<publisher>Pocket Soft</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="471664">
<rom name="warlock's quest (europe) (budget - pocket soft).ipf" size="471664" crc="c911962e" sha1="3cb786659a2c53e8a986d5e51561eca5775ae0e3" offset="0" />
</dataarea>
</part>
</software>
<software name="warlocke" supported="no">
<!-- SPS (CAPS) release 3247 -->
<description>Warlock (Europe, The Edge)</description>
<year>19??</year>
<publisher>The Edge</publisher>
<info name="usage" value="Keyboard only, where pause is space key and S to resume" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="warlock (europe) (the edge).ipf" size="468252" crc="d2fd5a69" sha1="6e1d2626020e409efba790322cdb25f73ca64eb5" offset="0" />
</dataarea>
</part>
</software>
<software name="wtsstill" supported="no">
<!-- SPS (CAPS) release 3250 -->
<description>Where Time Stood Still (Europe)</description>
<year>1988</year>
<publisher>Ocean</publisher>
<notes><![CDATA[
Randomly hangs after few seconds in gameplay or doesn't recognize fire button on title screen, likely [GPIO4] irq
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517002">
<rom name="where time stood still (europe) (en,de).ipf" size="517002" crc="8829de66" sha1="bfed208fab0cdfe8c8a5de5ff99003a93ce4b0c2" offset="0" />
</dataarea>
</part>
</software>
<software name="whirligg" supported="no">
<!-- SPS (CAPS) release 3110 -->
<description>Whirligig (Europe)</description>
<year>1988</year>
<publisher>Firebird</publisher>
<info name="usage" value="Sports manual copy protection" />
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="468252">
<rom name="whirligig (europe).ipf" size="468252" crc="ce2a4c3d" sha1="8daae90f3677674510a5c95bad6cbe1be244214b" offset="0" />
</dataarea>
</part>
</software>
<software name="wildstrt" supported="no">
<!-- SPS (CAPS) release 3182 -->
<description>Wild Streets (Europe, Budget)</description>
<year>1990</year>
<publisher>Fox Hits</publisher>
<notes><![CDATA[
"Incompatible image format or corrupted data" on mount
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="1025674">
<rom name="wild streets (europe) (budget - fox hits).ipf" size="1025674" crc="723f49ed" sha1="c5d7fec78f1e0f630f44a469f554be4e35cad873" offset="0" />
</dataarea>
</part>
</software>
<software name="wcbox" supported="no">
<!-- SPS (CAPS) release 3184 -->
<description>World Championship Boxing Manager (Europe)</description>
<year>1990</year>
<publisher>Krisalis</publisher>
<notes><![CDATA[
Prompts user to insert the "other" disk, fails [disk swap]
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="518252">
<rom name="world championship boxing manager (europe) (disk 1).ipf" size="518252" crc="e2e0c94c" sha1="ce737e5941faaefc43a7d66c3b6bd1ad30ed3e67" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="world championship boxing manager (europe) (disk 2).ipf" size="518252" crc="5e9b73d5" sha1="66af89e80aa0288be835ae46d161fef4ab93ce51" offset="0" />
</dataarea>
</part>
</software>
<software name="wclead" supported="no">
<!-- SPS (CAPS) release 3185 -->
<description>World Class Leader Board (Europe, Budget)</description>
<year>1990</year>
<publisher>Klassix</publisher>
<notes><![CDATA[
Randomly hangs on main menu, [joystick] or [keyboard] becomes unresponsive, likely [GPIO4] irq
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="world class leader board (europe) (budget - klassix).ipf" size="517627" crc="cc8a9a06" sha1="97289ac4f0e7a2d083edfeb96f1500dc83bbc5a4" offset="0" />
</dataarea>
</part>
</software>
<software name="wrangler" supported="no">
<!-- SPS (CAPS) release 3248 -->
<description>Wrangler (Europe)</description>
<year>1988</year>
<publisher>Alternative Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="517627">
<rom name="wrangler (europe).ipf" size="517627" crc="74bc5a25" sha1="a0babad97a71be52b7f48839f8962649d67acda1" offset="0" />
</dataarea>
</part>
</software>
<software name="xout" supported="no">
<!-- SPS (CAPS) release 3111 -->
<description>X-Out (Europe)</description>
<year>1990</year>
<publisher>Rainbow Arts</publisher>
<notes><![CDATA[
Static sound during intro and gameplay
]]></notes>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<feature name="part_id" value="Disk 1" />
<dataarea name="flop" size="525628">
<rom name="x-out (europe) (disk 1).ipf" size="525628" crc="1ebeff5a" sha1="4e2606baab7875219576bf76c7794c6c09b2f299" offset="0" />
</dataarea>
</part>
<part name="flop2" interface="floppy_3_5">
<feature name="part_id" value="Disk 2" />
<dataarea name="flop" size="518252">
<rom name="x-out (europe) (disk 2).ipf" size="518252" crc="dad5c809" sha1="630ae878c1c03ca8a5af88de724c77e85c7beff0" offset="0" />
</dataarea>
</part>
</software>
<software name="xenon" supported="no">
<!-- SPS (CAPS) release 3251 -->
<description>Xenon (Europe, Budget)</description>
<year>1988</year>
<publisher>16 Blitz</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="518252">
<rom name="xenon (europe) (budget - 16 blitz).ipf" size="518252" crc="ecf4be37" sha1="f3ac6a228aa620137eba057a591ea05031e68030" offset="0" />
</dataarea>
</part>
</software>
<!-- S/N: CA400607-012 Rev. B -->
<software name="stelang">
<description>STE Language Disk (Sweden, rev. B)</description>
<year>1989</year>
<publisher>Atari</publisher>
<info name="usage" value="Requires a STE machine"/>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size="737280">
<rom name="ca400607-012 rev. b.img" size="737280" crc="87f39639" sha1="16de1678dd4f0fe1295f51ff4307fc0c09290249" offset="0" />
</dataarea>
</part>
</software>
<software name="highwaye">
<!-- Unreleased official port. -->
<description>Highway Encounter (unreleased)</description>
<year>1990</year>
<publisher>Vortex Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size = "737280">
<rom name="highway.st" size="737280" crc="3a83b6b2" sha1="d6db24f519690e2481926fc5fb89b1e6b7b24601" offset="0"/>
</dataarea>
</part>
</software>
<software name="toiacidg">
<!-- Unreleased official port. Hidden message reveals a build date of February 1990. -->
<description>Toi Acid Game (unreleased)</description>
<year>1990</year>
<publisher>Iber Software</publisher>
<sharedfeat name="compatibility" value="PAL"/>
<part name="flop1" interface="floppy_3_5">
<dataarea name="flop" size = "420014">
<rom name="toiacidgame.msa" size="420014" crc="aaff7c21" sha1="99694f3d78bce3aa985a14753fbc69425025dc5c" offset="0"/>
</dataarea>
</part>
</software>
</softwarelist>
|