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
|
<?xml version="1.0"?>
<!DOCTYPE softwarelist SYSTEM "softwarelist.dtd">
<!--
license:CC0
Undumped:
CD Diagnostic Cartridge
Cybermorph (Rev. 0)(serial "J9000 700700")
Diagnostic Cartridge
Iron Soldier (Prototype)
Skycopter (Carousel Entertainment)(K-Mart and Walmart any different?)
Speedster II (Carousel Entertainment)(K-Mart and Walmart any different?)
Homebrew:
GORF pluz - Earth GOD's Troopers (FORCE Design)(finished?)
Mad Bodies (Force Design)
Dumped, released by Jaguar Sector II, leaked by x-cult, lost to time:
2600 Emulator (Stella)(Unreleased)
Arena Football 95 (JSII Release)
GPU26 2600 Emulator (Unreleased)
Jack Nicklaus Golf (V002A)(Unreleased)
Phase Zero (Prototype)
Slam Racer (Unreleased)
Spacewar2000 (unreleased)
Ultra VorteX (Prototype)
Oswald's Invention - PC Demo (Unreleased)
Dante's Inferno PC Demo (Unreleased)
Unreleased (possibly no prototypes exist):
Title Players Publisher Developer Type
Allegiance 1-2? ? Team 17 Action/Strategy
Al Michaels Announces Hardball 1-2 Accolade/Atari Atari Sports
Apeshit 1-2 Ocean Ocean Action/Arcade
Arena Football League 1-8 Atari V-Reel Prod. Sports
Assault: Covert Ops 1-2? Midnite Sw Midnite Sw Action
Automaniacs 1-2 Visual Dim. Visual Dim. Action/Driving
Bases Loaded 1-2 Jaleco/Atari Atari? Sports
Batman Forever 1-2? Atari Atari Action
Battlewheels 2025 1-2 Beyond Games Beyond Games Action
Bong+ 1999 1-2? ? Just Claws Action
Brett Hull Hockey 1-2 Atari Ringler Sports
Casino Royale 1-2? Telegames Telegames Strategy
Center Court Tennis 1-2 Zeppelin ? Sports
Charles Barkley Basketball 1-4? ? Ringler Sports
Cisco Heat 1? Jaleco/Atari Atari Action/Arcade
'Dactyl Joust 1? Atari High Voltage Action/Arcade?
Deathwatch 1-2 Atari Data Design Action
Demolition Man 1? Atari Virgin Action/Shooting
Dino Dudes 2 1 Atari Imagitec Puzzle/Strategy
Dune Racer 1-2 Atari ? Action/Driving
Dungeon Depths 1 Midnite Sw Midnite Sw Adventure
Droppings 1? Delta Music ? ?
European Soccer Challenge 1-2 Telegames Telegames Sports
F1 Racer 1-2 Atari Domark Sports
Frank Thomas "Big Hurt" Baseball 1-2 Atari Acclaim Sports
Galactic Gladiators 1-2 ? Photosur. Action/Strategy
Gotcha! 1? ? ? ?
Graham Gooch's World Class Cricket 1-2? Telegames Telegames Sports
Gunship 2000 1 Microprose ? Strategy
Hammerhead 1 Atari Rainmaker Action/Arcade
Indiana Jags 1 ? Virtual Exp. Action/Platform
Iratan Supremecy 1-2 ? Level Seven Action/Fighting
Iron Man/XO-Manowar 1-2 Atari Acclaim Action?
James Pond 3 1 Telegames Telegames Platform
Jagmania 1 ? Matthias Domin Action
Jagmarble 1 ? Matthias Domin Action
Jagtris 1 ? Bastian Schick Action/Puzzle
Kick Off 3 1-2 ? Anco Software Sports
Legion Force Jidai 1? ? FORCE Design Action/Arcade
Legions of the Undead 1? Atari Rebellion Action/Adventure
Lester the Unlikely 1 DTMC DTMC Action/Strategy
Live Wire 1-2? Black Scorpion ? ?
Max Force 1? ? ? Action/Shooter
Miniature Golf 1-2 DTMC DTMC Sports
Mountain Sports 1-2 DTMC DTMC Action/Sports
Nanoterror 1? ? Delta Music ?
Native 1? ? Duranik Sw. Action/Shooter
Nerves of Steel 1? ? Rainmaker Action/Adventure
Painter 1? ? Sinister ?
Phase Zero 1-8 Atari Hyper Image Action
Phear 1-2 Atari H2O Design Puzzle
Pinball Dreams 1-2 Atari 21st Century Arcade
Powerdrive 1? Telegames Elite Action/Driving
Quake 1? Atari id Software Action
Rainbow Warrior 1? ? 3D Games Action?
Return of Magic 1? ? Virtual Art. Adventure?
Rise of the Robots 1 Time-Warner Williams Br. Action/Adventure
Robotron:2084 1-2 Atari ? Action/Arcade
Rollcage 1-2? ? Team 17 Sports/Driving
Star Alliance 1-2? Starcat Dev. Starcat Dev. Arcade/Action
Star Raiders 2000 1? Atari ? Action
Sudden Impact 1-2 Atari Creative Tal. Action/Driving
Super Off-Road 1-2 Telegames ? Arcade/Driving
T-Mek 1-2? Time-Warner ? Arcade
The Assassin 1 OMC Games OMC Games Adventure
Thea Realm Fighters 1-2 Atari Atari Arcade/Action
Thunderstalker 1? Telegames Telegames ?
Tin Head 1-2? Microprose Microprose ?
Ultimate Brain Games 1-2? Telegames ? Puzzle
Virtuoso 1? Telegames Williams Br. Action
Virtual Warriors 1-2 ? Rainmaker Action/Fighting
Waterworld 1? Ocean Ocean ?
Wild Cup Soccer 1-2? Telegames ? Action/Sports
Witchwood 1-2 Atari Team 17 Action
World Cup 1-2? ? Anco Software Sports
Zzyorxx II 1? ? Virtual Exp. Action/Shooter
-->
<softwarelist name="jaguar" description="Atari Jaguar cartridges">
<!-- boot OK, gameplay graphics are in shades of blue, pause message gets cut off -->
<software name="aircars" supported="no">
<description>Air Cars</description>
<year>1997</year>
<publisher>ICD</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<!-- The original dump, released in a custom .j01 format, was the following one
<rom name="air cars.j01" size="2097152" crc="cbfd822a" sha1="9d1ecdb230f94d8145520ba03d187a19d6851a75" offset="000000" />
-->
<!-- below dump has a bad bit
<rom name="air cars.j64" size="2097152" crc="237d5643" sha1="1842ba3823131d48623f733709eac85e770868df" offset="000000" />
-->
<rom name="air cars.j64" size="2097152" crc="40e1a1d0" sha1="533c497761cc802624708108bc9ef6e7c4f40296" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, gameplay graphics are in shades of blue, pause message gets cut off -->
<software name="aircars94" cloneof="aircars" supported="no">
<description>Air Cars (1994 version)</description>
<year>1994</year>
<publisher>Midnite Entertainment Group</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="0x200000" width="32" endianness="big">
<rom name="aircars94.u1" size="0x100000" crc="bbd4c4bd" sha1="4f9c914b43208eb100fb25b8be87dec370fd205d" offset="0x000000" loadflag="load32_word"/>
<rom name="aircars94.u2" size="0x100000" crc="d9958c79" sha1="d7aa26e084b68023076ac025eff819f0e568e2a0" offset="0x000002" loadflag="load32_word"/>
</dataarea>
</part>
</software>
<!-- boot OK, several HUD elements have wrong pitch, HUD automap is incorrectly drawn as a big quadrilateral, HUD blending looks ugly -->
<software name="avsp" supported="no">
<description>Alien vs Predator</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9008E 800108-022"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="alien vs predator (world).j64" size="4194304" crc="dc187f82" sha1="fd8c89250ebc1e403838b2e589d1f69e3fe2fe02" offset="000000" />
</dataarea>
</part>
</software>
<!-- "licensed by Atari" then black screen -->
<software name="fball95" supported="no">
<description>Arena Football '95</description>
<!-- Made in 1995 but released in 2006 -->
<year>2006</year>
<publisher>B&C Computervision</publisher>
<info name="serial" value="J9003E 800108-006"/>
<part name="cart" interface="jaguar_cart">
<!-- 4MB Alpine ROM with Universal Header -->
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="arena football.j64" size="4194304" crc="199b9d83" sha1="542063a5b27659781a85821f61e85cd89ea59ab3" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, gameplay graphics have clipping/alignment issues, eventually throws an exception, no sound -->
<software name="atarikrt" supported="no">
<description>Atari Karts</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9091E 705091-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="atari karts (world).j64" size="4194304" crc="e28756de" sha1="9c96e6c2195ce56aa930e677a041b35bd9b8bc7e" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, title screen foreground layer not drawn properly, no sound -->
<software name="mutntpng" supported="partial">
<description>Attack of the Mutant Penguins</description>
<year>1996</year>
<publisher>Atari</publisher>
<info name="serial" value="J9072E 705072-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="attack of the mutant penguins (world).j64" size="2097152" crc="cd5bf827" sha1="01dc37e7a9d03246a93bcb8c6a3116cb6391ed31" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, hangs after choosing a game mode, title screen has black dots of garbage on top (btanb) -->
<software name="barkley" supported="no">
<description>Barkley Shut Up and Jam!</description>
<year>2002</year>
<publisher>B&C Computervision</publisher>
<info name="serial" value="J9018E 705018-001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="barkley shut up and jam.j64" size="4194304" crc="aea9d831" sha1="18535f5985c840aefce0fa639131cb83a8a647f9" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="battlesp" supported="no">
<description>Battle Sphere</description>
<year>2000</year>
<publisher>ScatoLOGIC</publisher>
<info name="serial" value="J9807E"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="battlesphere.j64" size="4194304" crc="5f2c2774" sha1="8f4c964d2411a52c64eec1d1a3061f77117bb7a6" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="battlesg" supported="no">
<description>Battle Sphere Gold</description>
<year>2002</year>
<publisher>ScatoLOGIC</publisher>
<info name="serial" value="J0201G"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="battle sphere gold (world).j64" size="4194304" crc="67f9ab3a" sha1="49716a6a3a4c6abeea36040f26c4e8cf2a545df7" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, has severe RMW issues in both versions of the game when breaking blocks -->
<software name="breakout" supported="no">
<description>Breakout 2000</description>
<year>1996</year>
<publisher>Telegames</publisher>
<info name="serial" value="J9093E"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="breakout 2000.j64" size="2097152" crc="b5604d40" sha1="fe4c35c24be8df92f867b4fb42eb75a3fcc875e8" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, hardlocks then eventually throws an exception after the Dyna Cam logo -->
<software name="bretth" supported="no">
<description>Brett Hull NHL Hockey</description>
<year>2004</year>
<publisher>B&C Computervision</publisher>
<info name="serial" value="J9021E 705021-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="brett hull hockey.j64" size="4194304" crc="91095dd3" sha1="7f21c6de18c46629c0d54e68143d619093b4b8d6" offset="000000" />
</dataarea>
</part>
</software>
<!-- switching items in main menu causes a glitch on the text -->
<!-- rightmost column of gameplay has odd "overscan" area -->
<software name="brutalsp" supported="no">
<description>Brutal Sports Football</description>
<year>1994</year>
<publisher>Telegames</publisher>
<info name="serial" value="JA100"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="brutal sports football (world).j64" size="2097152" crc="bcb1a4bf" sha1="cdfefdf28dd9127f7a9425088a1ee3ea88dfb618" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK -->
<software name="bubsy">
<description>Bubsy in Fractured Furry Tales</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9020E 700720-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="bubsy in fractured furry tales (world).j64" size="2097152" crc="2e17d5da" sha1="752d6e1ed185f9db49230f42319a573a44e32397" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK -->
<software name="cfodder">
<description>Cannon Fodder</description>
<year>1995</year>
<publisher>Virgin Interactive</publisher>
<info name="serial" value="02763-00162"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="cannon fodder (world).j64" size="2097152" crc="bda405c6" sha1="0c195676be099f4594ce1d5a38303f6cce899dc5" offset="000000" />
</dataarea>
</part>
</software>
<!-- has serious 3D GFX pitch issues -->
<software name="chekflag" supported="no">
<description>Checkered Flag</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9007E 700707-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="checkered flag (world).j64" size="2097152" crc="fa7775ae" sha1="4d0cc8d248a8bd0fc4b8169c5d5772e59c073c59" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, title screen cuts off background, gameplay GFX pop-ups, eventually black screens -->
<software name="clubdriv" supported="no">
<description>Club Drive</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9003E 800103-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="club drive (world).j64" size="2097152" crc="eee8d61d" sha1="6588f7d677463d0ef10cf905d44a2581fd9dd055" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, huge GFX issues (mostly related with pitch) -->
<software name="cybermor" supported="no">
<description>Cybermorph (Rev. B)</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9000E 700700-3"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="1048576" width="32" endianness="big">
<rom name="cybermorph (world) (rev 2).j64" size="1048576" crc="ecf854e7" sha1="c9aa59769df207d85d9212d619c266c793c9063b" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, huge GFX issues (mostly related with pitch) -->
<software name="cybermor1" cloneof="cybermor" supported="no">
<description>Cybermorph (Rev. A)</description>
<year>1993</year>
<publisher>Atari</publisher>
<info name="serial" value="J9000E 700700-2"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="cybermorph (world) (rev 1).j64" size="2097152" crc="bde67498" sha1="e00ab55f555fd1fe63b4fce66a9b8ffe3485963e" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, Defender 2000 and Defender Plus both crashes after some few seconds in gameplay -->
<!-- Defender 2000 have misplaced GFX portions -->
<!-- "paused" GFX upper part incorrectly placed in Defender Classic -->
<software name="defender" supported="no">
<description>Defender 2000</description>
<year>1996</year>
<publisher>Atari</publisher>
<info name="serial" value="J9041E 705041-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="defender 2000 (world).j64" size="4194304" crc="27594c6a" sha1="13a4084bd5be1cca21d83d4c26b5b8e5cf1a3e30" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, sound farts, GFX status bar is stretched in horizontal direction (screen mode changes mid-frame) -->
<!-- automap becomes blue a few frames after being called -->
<software name="doom" supported="no">
<description>Doom</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9029E 800129-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="doom (world).j64" size="4194304" crc="5e2cdbc0" sha1="20ddf412e42a50d526cbbb6411bf0ec4516db283" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no BGMs -->
<software name="ddragon5" supported="partial">
<description>Double Dragon V - The Shadow Falls</description>
<year>1995</year>
<publisher>Tradewest</publisher>
<info name="serial" value="21941"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="double dragon v - the shadow falls (world).j64" size="2097152" crc="348e6449" sha1="d66b4e5f9ac27d53f0d781c741e420698630b9fc" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, gameplay backgrounds are missing or garbled -->
<software name="dragon" supported="partial">
<description>Dragon - The Bruce Lee Story</description>
<year>1994</year>
<publisher>Virgin Interactibe</publisher>
<info name="serial" value="J9036E 700128-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="dragon - the bruce lee story (world).j64" size="2097152" crc="8fea5ab0" sha1="da7f5dac4317ab0258f54da436abb8d89e530f27" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, gameplay area is cut off to the right, status bar even moreso (screen mode changes mid-frame) -->
<software name="dinodude" supported="no">
<description>Evolution - Dino Dudes</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9006 700706-001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="evolution - dino dudes (world).j64" size="2097152" crc="0ec5369d" sha1="179b511464abcda5a5de9f971bd5cb5775d8c313" offset="000000" />
</dataarea>
</part>
</software>
<!-- "licensed by Atari" then black screen -->
<software name="feverpit" supported="no">
<description>Fever Pitch Soccer</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9106E 705106-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="fever pitch soccer (world) (en,fr,de,es,it).j64" size="2097152" crc="3615af6a" sha1="5be3da69a64b779d064d139968fadbe1c475c715" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, heavy pitch GFX issues -->
<software name="fforlife" supported="no">
<description>Fight for Life</description>
<year>1996</year>
<publisher>Atari</publisher>
<info name="serial" value="J9037E 705037-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="fight for life (world).j64" size="4194304" crc="b14c4753" sha1="9f5b8844d58bb1c174da4824eabbfd8616ba28d2" offset="000000" />
</dataarea>
</part>
</software>
<!-- RSoD on Jaguar logo -->
<software name="fforlife1" cloneof="fforlife" supported="no">
<description>Fight for Life (Alt)</description>
<year>1996</year>
<publisher>Atari</publisher>
<info name="serial" value="J9037E 705037-002"/><!-- could be different -->
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="fight for life (world) (alt).j64" size="4194304" crc="c6c7ba62" sha1="686176f5a7bdaef690d853523a338beb8a93d244" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, gameplay area is cut off to the right (especially noticeable when pausing game), no color fill for cutscenes -->
<software name="flashb" supported="no">
<description>Flashback - The Quest for Identity</description>
<year>1995</year>
<publisher>U.S. Gold</publisher>
<info name="serial" value="43175-79126"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="flashback - the quest for identity (world) (en,fr).j64" size="2097152" crc="de55dcc7" sha1="824613451be0b99020fc02e5dba15c45e76fc8c2" offset="000000" />
</dataarea>
</part>
</software>
<!-- "Another Great Game" then black screen -->
<software name="flipout" supported="no">
<description>Flip Out!</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9040E 700740-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<!-- below dump was mirrored
<rom name="flip out (world).j64" size="4194304" crc="fae31dd0" sha1="61d4db841c090ae3104eb20b6087160ff80e7a12" offset="000000" />
-->
<rom name="flip out (world).j64" size="2097152" crc="892bc67c" sha1="886cbbaa434d6e1e7fc4401bb6d176c2788c4d19" offset="000000" />
</dataarea>
</part>
</software>
<!-- huge GFX issues (mostly related with pitch) -->
<software name="hstrike" supported="no">
<description>Hover Strike</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9009E 700709-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="hover strike (world).j64" size="2097152" crc="4899628f" sha1="94e615e7a57f7c08645322870121bb32310298f5" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, reload after saving doesn't work -->
<software name="hyperfrc" supported="partial">
<description>Hyper Force</description>
<year>2000</year>
<publisher>Songboard Productions</publisher>
<info name="serial" value="CF3003"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="hyper force (world).j64" size="2097152" crc="f0360db3" sha1="037396347d65d1a8b56e7db361d737ab2070118f" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, has heavy pitch GFX issues -->
<software name="iwar" supported="no">
<description>I-War</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9043E 705043-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="i-war (world).j64" size="2097152" crc="97eb4651" sha1="3db485aaa28a817f468739a85e3f25741c3855ad" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, black screen after briefing -->
<software name="ironsold" supported="no">
<description>Iron Soldier (v1.04)</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9026E 700726-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="iron soldier (world) (v1.04).j64" size="2097152" crc="08f15576" sha1="8bdefc60dd1734315e1c145e29abf41800f908cb" offset="000000" />
</dataarea>
</part>
</software>
<!-- no sound, black screen after title (with incorrect width too) -->
<software name="ironsol2" supported="no">
<description>Iron Soldier 2</description>
<year>1997</year>
<publisher>Telegames</publisher>
<info name="serial" value="JA810"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="iron soldier 2 (world).j64" size="2097152" crc="d6c19e34" sha1="47b9580eb9eea121cf080cdbdc4afe7fb7a19ab5" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen with heavy logs -->
<software name="kasumi" supported="no">
<description>Kasumi Ninja</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9012E 700712-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="kasumi ninja (world).j64" size="4194304" crc="0957a072" sha1="2327112b9c6f9b0e49c55def0adb8119ee39ce29" offset="000000" />
</dataarea>
</part>
</software>
<!-- technically a Jaguar CD cartridge -->
<!-- draws an incorrect pitch GFX, doesn't do much else -->
<software name="memtrack" supported="no">
<description>Memory Track</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J8911 700140"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="131072" width="32" endianness="big">
<rom name="memory track.j64" size="131072" crc="fdf37f47" sha1="815d6e8beccc6720ffb8d349587a382409f30042" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, text GFXs are solid filled, no BGMs -->
<software name="missil3d" supported="no">
<description>Missile Command 3D</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9097 705097-001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="missile command 3d (world).j64" size="2097152" crc="da9c4162" sha1="3ea9053a63a3b0165ccec91e85f0e699a998dc0a" offset="000000" />
</dataarea>
</part>
</software>
<!-- exception on non-debug, on debug gameplay sports no sprite GFXs -->
<!-- minor glitch on team box when selecting one (blitter not filling properly) -->
<software name="nbajamte" supported="no">
<description>NBA Jam T.E. - Tournament Edition</description>
<year>1996</year>
<publisher>Atari</publisher>
<info name="serial" value="J9089E 705089-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="nba jam t.e. (world).j64" size="4194304" crc="0ac83d77" sha1="b9c8ff2d26fe1e91ecd6d59b9f3f76c5b5650f26" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, "Enter Combat" has ground textures with black, "Enter Network" causes a black screen after loading, no BGMs -->
<software name="phase0" supported="no">
<description>Phase Zero</description>
<year>2002</year>
<publisher>Songbird Productions</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="phase zero.j64" size="2097152" crc="7168b143" sha1="3ec9524921d07647f527e0a82a831f794a7d6d9b" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no sound -->
<software name="pbfant" supported="partial">
<description>Pinball Fantasies</description>
<year>1995</year>
<publisher>21st Century Entertainment</publisher>
<info name="serial" value="J0144E 700709-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="pinball fantasies (world).j64" size="2097152" crc="5cff14ab" sha1="4733cf2ede2713467f2a80b052ab94edf6dfe534" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, hangs after few seconds of gameplay -->
<software name="pitfall" supported="no">
<description>Pitfall - The Mayan Adventure</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9101 700701-001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="pitfall - the mayan adventure (world).j64" size="4194304" crc="817a2273" sha1="25611b1cff1384db72cc5422dbe70555e5bbd32c" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no BGMs, water background in stage 1 is in Black and white, eventually crashes if bumping into road edges -->
<software name="pdrive" supported="no">
<description>Power Drive Rally</description>
<year>1995</year>
<publisher>Time Warner Interactive</publisher>
<info name="serial" value="31763-11153"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="power drive rally (world).j64" size="2097152" crc="1660f070" sha1="75ee0ab0daba31284a1dff27f3c247885f5a427a" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="protect" supported="no">
<description>Protector</description>
<year>1999</year>
<publisher>Songbird Productions</publisher>
<info name="serial" value="CF3004"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="protector.j64" size="2097152" crc="1a20c5c4" sha1="8043e3b521ea00e806d3ab79c6c548a140944db1" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="protctse" supported="no">
<description>Protector - Special Edition</description>
<year>2002</year>
<publisher>Songbird Productions</publisher>
<info name="serial" value="CF3004"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="protector - special edition (world).j64" size="2097152" crc="a56d0798" sha1="ddea86820dcaa1a67bd82cf8023f9b3c494357b0" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, ranking screen cuts off text on 9th and 10th places -->
<software name="raiden" supported="partial">
<description>Raiden (Rev. A)</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9005E 700705-2"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="raiden alt.j64" size="2097152" crc="31812799" sha1="50ccf7043a702531a0e9ef86d629d5ede5255c13" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, ranking screen cuts off text on 9th and 10th places -->
<software name="raiden1" cloneof="raiden" supported="partial">
<description>Raiden</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9005 700705-1"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="raiden (world).j64" size="2097152" crc="0509c85e" sha1="9d2f894da3f25944c2f33e3a109ae8d0d951d329" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, saves reports error, no sound -->
<software name="rayman" supported="partial">
<description>Rayman</description>
<year>1995</year>
<publisher>Ubisoft</publisher>
<info name="serial" value="C3669T"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="rayman (world).j64" size="4194304" crc="a9f8a00e" sha1="d22912992fd966365a1221886e0fc5303ef04a59" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="ruinerp" supported="no">
<description>Ruiner Pinball</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9061 7005061-001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="ruiner pinball (world).j64" size="2097152" crc="5b6bb205" sha1="e0db2fdea7f95743c1ef452b7d289f5fe8158e33" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no BGMs -->
<software name="sensible" supported="partial">
<description>Sensible Soccer - International Edition</description>
<year>1995</year>
<publisher>Telegames</publisher>
<info name="alt_title" value="International Sensible Soccer (box, cart); Soccer (manual)"/>
<info name="serial" value="JA250"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="sensible soccer - international edition (world).j64" size="2097152" crc="5a101212" sha1="f0914be41331e3045bbc04225044dc3c73fd9de1" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, hangs after loading a stage -->
<software name="skyhamm" supported="no">
<description>Skyhammer</description>
<year>2000</year>
<publisher>Songbird Productions</publisher>
<info name="serial" value="CF3001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="skyhammer (world).j64" size="4194304" crc="3c044941" sha1="34a9941459e3b66c836f25b3ef55303734b9583e" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK -->
<software name="soccerkd">
<description>Soccer Kid</description>
<year>1996</year>
<publisher>ReadySoft</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="soccer kid (world).j64" size="2097152" crc="42a13ec5" sha1="a738a2df47f09c3bfdeddfc01b35f3e8b5c5d99c" offset="000000" />
</dataarea>
</part>
</software>
<!-- RSoD on Jaguar logo -->
<software name="soccerkd1" cloneof="soccerkd" supported="no">
<!-- uses BIOS security skipping hardware -->
<description>Soccer Kid (Re-release)</description>
<year>2000</year>
<publisher>Songbird Productions</publisher>
<info name="serial" value="CF3002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="soccer kid.j64" size="2097152" crc="732ffab6" sha1="b615fe0f229eee89abe4a6fce8e4ce63d2f92c6f" offset="000000" />
</dataarea>
<!-- BIOS blaster -->
<dataarea name="bios" size="131072" width="32" endianness="big">
<rom name="soccer kid 2.j64" size="131072" crc="41a551b0" sha1="59887e23f23b720a0676ef63a0ec0cf53df7e5dc" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK -->
<software name="soccerkd1h" cloneof="soccerkd">
<!-- uses universal header, only way to boot this at moment -->
<description>Soccer Kid (Re-release, Hacked)</description>
<year>2000</year>
<publisher>Songbird Productions</publisher>
<info name="serial" value="CF3002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="soccer kid with universal header.j64" size="2097152" crc="9e265a6e" sha1="9524fa2870865b8433bdba7684861b1ef9092c00" offset="000000" />
</dataarea>
</part>
</software>
<!-- gets to title screen (with wrong GFX width) then hangs -->
<software name="spacewar" supported="no">
<description>Space War 2000</description>
<year>2001</year>
<publisher>B&C Computervisions</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="space war 2000.j64" size="2097152" crc="d821f5eb" sha1="6b010477155f30f1ecec7eab2c9a7544242bbd19" offset="000000" />
</dataarea>
</part>
</software>
<!-- gets to title screen (with wrong GFX width) then hangs -->
<software name="spacewarp" cloneof="spacewar" supported="no">
<description>Space War 2000 (Prototype)</description>
<year>19??</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<!-- below dump contains 2M of "00"
<rom name="space war 2000 (world).j64" size="4194304" crc="53df6440" sha1="b5da0b1231a6e6532268c4e04f74e56f047dd5a5" offset="000000" />
-->
<rom name="space war 2000 (world).j64" size="2097152" crc="45aa46ba" sha1="0e7aacd65ecd6210d914e1c00a98dce5d00569af" offset="000000" />
</dataarea>
</part>
</software>
<!-- draws a cutted off Super Burnout copyright text then black screen -->
<software name="sburnout" supported="no">
<description>Super Burnout</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9052E 700752-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="super burnout (world).j64" size="2097152" crc="6f8b2547" sha1="9a58bc0c8843fd00a2871c01b91fec206408bf80" offset="000000" />
</dataarea>
</part>
</software>
<!-- gets to title screen (with wrong GFX width) then hangs -->
<software name="superx3d" supported="no">
<description>SuperCross 3D</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9044E 705044-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="supercross 3d (world).j64" size="2097152" crc="ec22f572" sha1="c71e0bc9eeed8670c6e7ccc7a0fe3b815d7bac83" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, OSD full of pitch imperfections (name entry chars) -->
<software name="syndicat" supported="no">
<description>Syndicate</description>
<year>1995</year>
<publisher>Ocean</publisher>
<info name="serial" value="L8002-SYNJAG"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="syndicate (world).j64" size="2097152" crc="58272540" sha1="a226086571c857f3796fd664bbc2c8fe99c78224" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK -->
<software name="tempst2k" supported="no">
<description>Tempest 2000</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9010E 700710-000"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="tempest 2000 (world).j64" size="2097152" crc="6b2b95ad" sha1="3828d2f953224d06b5fe7ab3644d6a75fdfe79e3" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, background has pitch glitch -->
<software name="themeprk" supported="no">
<description>Theme Park</description>
<year>1995</year>
<publisher>Ocean</publisher>
<info name="serial" value="L8001-TPKJAG"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="theme park (world).j64" size="2097152" crc="47ebc158" sha1="24da4fe776ae9daa86cf643c703ec0f399c77521" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no sprites, main menu with incorrect width, no sound (btanb) -->
<software name="ttoonadv" supported="no">
<description>Tiny Toon Adventures (Ver. 1)</description>
<year>2010</year>
<publisher>Team Jaguar</publisher>
<info name="serial" value="J6004E 110403-110"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="tiny toon.j64" size="2097152" crc="f4acbb04" sha1="841ce8ae1b71955d9b8df3b80da11fd40308ef5f" offset="000000" />
</dataarea>
</part>
</software>
<!-- heavy GFX issues, black screen if left on title screen -->
<software name="totalcar" supported="no">
<description>Total Carnage</description>
<year>2005</year>
<publisher>Songbird Productions</publisher>
<info name="serial" value="CF3006"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="total carnage (world).j64" size="4194304" crc="c654681b" sha1="4566b33799a7c65b3e9643383d0282172ff619a5" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, gameplay screen flickers -->
<software name="towers2" supported="partial">
<description>Towers II - Plight of the Stargazer</description>
<year>1996</year>
<publisher>Telegames</publisher>
<info name="serial" value="JA256"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<!-- this dump uses the universal header
<rom name="towers ii (world).j64" size="2097152" crc="caf33bd6" sha1="f8c14fab50ab04a025d15c3410a6698f6e4c61d3" offset="000000" />
-->
<rom name="towers ii.j64" size="2097152" crc="83a3fb5d" sha1="bbe7ffb97fc07cebe53099c8acce01366d7f7e15" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no sound, GFXs missing on gameplay and title screen -->
<software name="trevmcfr" supported="no">
<description>Trevor McFur in the Crescent Galaxy (Rev. A)</description>
<year>1993</year>
<publisher>Atari</publisher>
<info name="serial" value="J9001E 700701-2"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="trevor mcfur in the crescent galaxy (world).j64" size="2097152" crc="1e451446" sha1="88e86085932af10dfb8c94032f73a5992a30b55c" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no sound, GFXs missing on gameplay and title screen -->
<software name="trevmcfr1" cloneof="trevmcfr" supported="no">
<description>Trevor McFur in the Crescent Galaxy</description>
<year>1993</year>
<publisher>Atari</publisher>
<info name="serial" value="J9001E 700701"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="trevor mcfur in the crescent galaxy.j64" size="2097152" crc="95143668" sha1="489b0fe9f070ad27f63a17aa8f0d2afaa4dabdb3" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, no BGMs, has minor GFX pitch issue when action summary message pops up after a play -->
<software name="troyaik" supported="partial">
<description>Troy Aikman NFL Football</description>
<year>1995</year>
<publisher>Williams Entertainment</publisher>
<info name="serial" value="21942"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="troy aikman nfl football (world).j64" size="2097152" crc="38a130ed" sha1="4c6a6432ea0bc198f900f4ebdb8a3a7a34475d84" offset="000000" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="ultravor" supported="no">
<description>Ultra Vortek</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9082E 700782-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="ultra vortek (world).j64" size="4194304" crc="0f6a1c2c" sha1="311e41ebba1b78f514bf16789ddb7e7e8dfb47ff" offset="000000" />
</dataarea>
</part>
</software>
<!-- RSoD on Jaguar logo -->
<software name="ultravor1" cloneof="ultravor" supported="no">
<description>Ultra Vortek (v0.94, Prototype)</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9082E 700782-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="ultra vortek (world) (v0.94) (beta).j64" size="4194304" crc="a27823d8" sha1="e3bd433bc4a573f3b05652239a6614c3878a04d1" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, sound farts, missing/wrong GFXs on menus and gameplay -->
<software name="valdiser" supported="no">
<description>Val d'Isère Skiing and Snowboarding</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9060E 700760-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="val d'isere skiing and snowboarding (world).j64" size="2097152" crc="c9608717" sha1="02253d93eef375c8334f1f77a2d8b72fff7a94c6" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, black screen after title screen, no sound -->
<software name="whitemen" supported="no">
<description>White Men Can't Jump</description>
<year>1995</year>
<publisher>Atari</publisher>
<info name="serial" value="J9070E 700770-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="white men can't jump (world).j64" size="4194304" crc="14915f20" sha1="4d16596ac2d991435599e1fe03292adfb25c346d" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, sound buzz when selecting new game, can eventually black screen or throw an exception -->
<software name="wolfn3d" supported="no">
<description>Wolfenstein 3D</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9028 700128-001"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="wolfenstein 3d (world).j64" size="2097152" crc="e91bd644" sha1="ee553176f0a32683b517b84b12c6fae13c15c3d0" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, pen corruption on background during gameplay, layers are slightly cut off -->
<software name="worms" supported="partial">
<description>Worms</description>
<year>1998</year>
<publisher>Telegames</publisher>
<info name="serial" value="JA103"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="worms (world).j64" size="2097152" crc="6eb774eb" sha1="641b07f93e8df03ab8b9bf1e8dc56e2889f247f8" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, minor GFX pitch issues, no sound -->
<software name="zero5" supported="partial">
<description>Zero 5</description>
<year>1997</year>
<publisher>Telegames</publisher>
<info name="serial" value="J4011"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="zero 5 (world).j64" size="2097152" crc="61c7eec0" sha1="b68de2cd49cb70e92f2415837edfa7ab46770a78" offset="000000" />
</dataarea>
</part>
</software>
<!-- boot OK, sound metrics menu has glitchy bars (pause menu then press 'B') -->
<software name="zool2">
<description>Zool 2</description>
<year>1994</year>
<publisher>Atari</publisher>
<info name="serial" value="J9042E 700742-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="zool 2 (world).j64" size="2097152" crc="8975f48b" sha1="32ff3811f8f6df8a2bb56165c62227a3a480e55c" offset="000000" />
</dataarea>
</part>
</software>
<!-- "licensed by Atari" screen then resets to Jaguar logo -->
<software name="zoop" supported="no">
<description>Zoop!</description>
<year>1996</year>
<publisher>Atari</publisher>
<info name="serial" value="J9109E 705109-002"/>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="1048576" width="32" endianness="big">
<rom name="zoop (world).j64" size="1048576" crc="c5562581" sha1="52ec786f7536ab043dc24725af94068cad2b0ec3" offset="000000" />
</dataarea>
</part>
</software>
<!-- The following are roms that have been leaked onto the internet, but don't seem to be proper dumps of cartridges.
These have been converted to j64 format with the universal header -->
<software name="atarikrtp" cloneof="atarikrt" supported="no">
<description>Atari Karts (Prototype)</description>
<year>1995</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="atari karts (beta).j64" size="4194304" crc="52c996e0" sha1="1bdaaa42b38f4c93a4aba34930e3ca406ac976c9" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="barkleyp" cloneof="barkley" supported="no">
<description>Barkley Shut Up and Jam! (Prototype)</description>
<year>1994</year>
<publisher>Accolade</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="barkley shut up and jam (prototype).j64" size="2097152" crc="3a3b1fd2" sha1="988897fd517ebd86742971205f3b29f9d70b5686" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="bretthp" cloneof="bretth" supported="no">
<description>Brett Hull NHL Hockey (Prototype)</description>
<year>1995</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="brett hull hockey (cart version).j64" size="4194304" crc="a4b819e4" sha1="77a9277a9b064c2f83c14c101368967ca50a50e4" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="breakoutp" cloneof="breakout" supported="no">
<description>Breakout 2000 (Prototype, xx0327)</description>
<year>1996</year>
<publisher>Telegames</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="breakout2000 (prototype) 3-27.j64" size="2097152" crc="20dbff9f" sha1="c8f29d04dacce1a83a1c93ab351737795d0f55db" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="cybermorp" cloneof="cybermor" supported="no">
<description>Cybermorph (Prototype)</description>
<year>1993</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="1048576" width="32" endianness="big">
<rom name="cybermorph (early prototype).j64" size="1048576" crc="9eb389f9" sha1="589efbc772360fa51eddc096a162c8d9fe7838d3" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="cybrgolf" supported="no">
<description>Jack Nicklaus Cyber Golf examples (Prototype, v0.01, 19940704)</description>
<year>1994</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="cyber golf v.001 (1994).j64" size="2097152" crc="7733f701" sha1="271e9411eb9e6c74240d254bdd7bab9a039bc6d9" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="cybrgolfa" cloneof="cybrgolf" supported="no">
<description>Cyber Golf (Prototype)</description>
<year>199?</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="1048576" width="32" endianness="big">
<rom name="cyber golf v0.03 (19xx)(atari)[prototype].j64" size="1048576" crc="e20f0eef" sha1="89306ada943c87da740e6166f1f53837566513e2" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="cybrgolfb" cloneof="cybrgolf" supported="no">
<description>Cyber Golf (Prototype, Alt)</description>
<year>199?</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="1048576" width="32" endianness="big">
<rom name="cyber golf v0.04 (19xx)(atari)[prototype].j64" size="1048576" crc="be5e9ef1" sha1="cecec725301d7540f9392618f4fc948def88d398" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="defenderp" cloneof="defender" supported="no">
<description>Defender 2000 (Prototype)</description>
<year>1996</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="defender 2000 (prototype).j64" size="4194304" crc="952d07f0" sha1="ae497f4839bde6c12c87c651a80633a23d6d0713" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="fforlifep" cloneof="fforlife" supported="no">
<description>Fight for Life (Prototype, xx0907)</description>
<year>1996</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="fight for life (beta 9-7).j64" size="4194304" crc="036a25e6" sha1="c92f1ff8ec83ebbe0f77f5a665169408df53b528" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="fforlifep1" cloneof="fforlife" supported="no">
<description>Fight for Life (Prototype, xx0322)</description>
<year>1996</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="4194304" width="32" endianness="big">
<rom name="fight for life (beta 3-22).j64" size="4194304" crc="59458199" sha1="37fe344383d7991d19bf2c862d29a20eaf1da8ef" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="gorf2k" supported="no">
<description>Gorf 2000 (Demo)</description>
<year>2008</year>
<publisher><unknown></publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="131072" width="32" endianness="big">
<rom name="gorf 2000 (2008).j64" size="131072" crc="74bdcb91" sha1="cfc87be2e43032ce3902b5073e63e3c6ff0e6018" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<!-- boot OK, text GFXs are solid filled, no BGMs, GFXs are cut off during gameplay -->
<software name="missilvr" supported="no">
<!-- this was intended to be released with the VR headset -->
<description>Missile Command VR</description>
<year>1995</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="missile command vr (not 3d).j64" size="2097152" crc="5810cadb" sha1="0e95613020d1b3a0ac76d994423c6f15ddfe9703" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="raymanp" cloneof="rayman" supported="no">
<description>Rayman (Prototype)</description>
<year>1995</year>
<publisher>Ubisoft</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="rayman (early prototype).j64" size="2097152" crc="254dd949" sha1="ba34de71a8d278ba76bad19964d2d886ddb94a2e" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<software name="ttoonadvp" cloneof="ttoonadv" supported="no">
<description>Tiny Toon Adventures (Prototype)</description>
<year>1994</year>
<publisher>Atari</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="tiny toons plucky duck (unreleased tech demo).j64" size="2097152" crc="4e77a83c" sha1="032aa31cef116bfba8632c14bc2fce5bc44ff137" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
<!-- black screen -->
<software name="ultbrain" supported="no">
<description>Ultimate Brain Games (Prototype)</description>
<year>199?</year>
<publisher>Crazy Ace</publisher>
<part name="cart" interface="jaguar_cart">
<dataarea name="rom" size="2097152" width="32" endianness="big">
<rom name="braingames (unreleased).j64" size="2097152" crc="9aaf8efd" sha1="b0026e73787c7a901f0b7e71418acdaf54981d17" offset="000000" status="baddump" />
</dataarea>
</part>
</software>
</softwarelist>
|