| Previous | 199869 Revisions | Next |
| r21546 Sunday 3rd March, 2013 at 13:09:54 UTC by Fabio Priuli |
|---|
| (MESS) snes.c: several updates to cart handling [Fabio Priuli] - moved Sufami Turbo and BSX carts to separate lists - added two new drivers snesnew and snespnew, using slot devices for carts - added emulation for DSP1/4, ST-010/011, S-DD1, SPC7110, SuperFX, BS-X and Sufami Turbo as slot devices - added emulation for the protection device used in some pirate carts out of whatsnew. there are one or two (possibly stupid) bugs in the new drivers causing glitches in several games (e.g. SameGame, or F1 ROC 2) which prevent us from removing the fake driver clones with add-on CPUs. if anyone is willing to help to trace them, you're all welcome. |
| [hash] | snes.xml snes_bspack.xml* snes_strom.xml* |
| [src/mess] | mess.lst mess.mak |
| [src/mess/drivers] | snes.c |
| [src/mess/machine] | snescart.c sns_bsx.c* sns_bsx.h* sns_rom.c* sns_rom.h* sns_rom21.c* sns_rom21.h* sns_sdd1.c* sns_sdd1.h* sns_sfx.c* sns_sfx.h* sns_slot.c* sns_slot.h* sns_spc7110.c* sns_spc7110.h* sns_sufami.c* sns_sufami.h* sns_upd.c* sns_upd.h* |
| r21545 | r21546 | |
|---|---|---|
| 68 | 68 | gblight // Nintendo Game Boy Light Handheld |
| 69 | 69 | gbcolor // Nintendo Game Boy Color Handheld |
| 70 | 70 | gba // Nintendo Game Boy Advance Handheld |
| 71 | snesnew // Nintendo Super Nintendo NTSC (test driver with slots) | |
| 72 | snespnew // Nintendo Super Nintendo PAL (test driver with slots) | |
| 71 | 73 | snes // Nintendo Super Nintendo NTSC |
| 72 | 74 | snespal // Nintendo Super Nintendo PAL |
| 73 | 75 | snessfx // Nintendo Super Nintendo NTSC w/SuperFX CPU |
| r21545 | r21546 | |
|---|---|---|
| 1422 | 1422 | $(MESS_MACHINE)/nes.o \ |
| 1423 | 1423 | $(MESS_DRIVERS)/nes.o \ |
| 1424 | 1424 | $(MESS_MACHINE)/snescart.o \ |
| 1425 | $(MESS_MACHINE)/sns_slot.o \ | |
| 1426 | $(MESS_MACHINE)/sns_rom.o \ | |
| 1427 | $(MESS_MACHINE)/sns_rom21.o \ | |
| 1428 | $(MESS_MACHINE)/sns_bsx.o \ | |
| 1429 | $(MESS_MACHINE)/sns_sdd1.o \ | |
| 1430 | $(MESS_MACHINE)/sns_sfx.o \ | |
| 1431 | $(MESS_MACHINE)/sns_spc7110.o \ | |
| 1432 | $(MESS_MACHINE)/sns_sufami.o \ | |
| 1433 | $(MESS_MACHINE)/sns_upd.o \ | |
| 1425 | 1434 | $(MESS_DRIVERS)/snes.o \ |
| 1426 | 1435 | $(MESS_DRIVERS)/n64.o \ |
| 1427 | 1436 | $(MESS_AUDIO)/gb.o \ |
| r21545 | r21546 | |
|---|---|---|
| 35 | 35 | #include "cpu/upd7725/upd7725.h" |
| 36 | 36 | #include "includes/snes.h" |
| 37 | 37 | #include "machine/snescart.h" |
| 38 | ||
| 38 | 39 | #include "crsshair.h" |
| 39 | 40 | |
| 40 | 41 | #define MAX_SNES_CART_SIZE 0x600000 |
| 41 | 42 | |
| 43 | ||
| 42 | 44 | /************************************* |
| 43 | 45 | * |
| 44 | 46 | * Memory handlers |
| r21545 | r21546 | |
| 55 | 57 | spc_ram_w(device, space, offset + 0x100, data); |
| 56 | 58 | } |
| 57 | 59 | |
| 60 | ||
| 61 | ||
| 58 | 62 | /************************************* |
| 59 | 63 | * |
| 60 | 64 | * Address maps |
| r21545 | r21546 | |
| 733 | 737 | MCFG_FRAGMENT_ADD(snes_cartslot) |
| 734 | 738 | MACHINE_CONFIG_END |
| 735 | 739 | |
| 740 | ||
| 736 | 741 | static SUPERFX_CONFIG( snes_superfx_config ) |
| 737 | 742 | { |
| 738 | 743 | DEVCB_DRIVER_LINE_MEMBER(snes_state,snes_extern_irq_w) /* IRQ line from cart */ |
| r21545 | r21546 | |
| 988 | 993 | // These would require cartslot to be added/removed depending on the cart which is loaded |
| 989 | 994 | CONS( 1989, snesst, snes, 0, snesst, snes, snes_state, snesst, "Nintendo", "Super Nintendo Entertainment System / Super Famicom (NTSC, w/Sufami Turbo)", GAME_NOT_WORKING ) |
| 990 | 995 | CONS( 1989, snesbsx, snes, 0, snesbsx, snes, snes_state, snes_mess, "Nintendo", "Super Nintendo Entertainment System / Super Famicom (NTSC, w/BS-X Satellaview slotted cart)", GAME_NOT_WORKING ) |
| 996 | ||
| 997 | ||
| 998 | ||
| 999 | // WIP for slot-ified cart devices | |
| 1000 | ||
| 1001 | #include "machine/sns_slot.h" | |
| 1002 | #include "machine/sns_rom.h" | |
| 1003 | #include "machine/sns_rom21.h" | |
| 1004 | #include "machine/sns_bsx.h" | |
| 1005 | #include "machine/sns_sdd1.h" | |
| 1006 | #include "machine/sns_sfx.h" | |
| 1007 | #include "machine/sns_spc7110.h" | |
| 1008 | #include "machine/sns_sufami.h" | |
| 1009 | #include "machine/sns_upd.h" | |
| 1010 | ||
| 1011 | class snsnew_state : public snes_state | |
| 1012 | { | |
| 1013 | public: | |
| 1014 | snsnew_state(const machine_config &mconfig, device_type type, const char *tag) | |
| 1015 | : snes_state(mconfig, type, tag), | |
| 1016 | m_slotcart(*this, "snsslot") | |
| 1017 | { } | |
| 1018 | ||
| 1019 | optional_device<sns_cart_slot_device> m_slotcart; | |
| 1020 | int m_type; | |
| 1021 | }; | |
| 1022 | ||
| 1023 | ||
| 1024 | // FIXME: merge these add-on specific maps into something more sane! | |
| 1025 | ||
| 1026 | // In general LoROM games have perfect mirror between 0x00-0x7d and 0x80-0xff | |
| 1027 | // But BSX+LoROM games use different read handlers (to access ROM beyond 2MB) | |
| 1028 | // so we use two different set of handlers... | |
| 1029 | ||
| 1030 | // LoROM | |
| 1031 | ||
| 1032 | static READ8_HANDLER( snes20_hi_r ) | |
| 1033 | { | |
| 1034 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1035 | UINT16 address = offset & 0xffff; | |
| 1036 | ||
| 1037 | if (offset < 0x400000) | |
| 1038 | { | |
| 1039 | if (address < 0x2000) | |
| 1040 | return space.read_byte(0x7e0000 + address); | |
| 1041 | if (address >= 0x2000 && address < 0x6000) | |
| 1042 | return snes_r_io(space, address); | |
| 1043 | if (address >= 0x6000 && address < 0x8000) | |
| 1044 | return snes_open_bus_r(space, 0); | |
| 1045 | if (address >= 0x8000) | |
| 1046 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1047 | } | |
| 1048 | else if (offset < 0x700000) | |
| 1049 | { | |
| 1050 | if (address < 0x8000) | |
| 1051 | return snes_open_bus_r(space, 0); | |
| 1052 | else | |
| 1053 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1054 | } | |
| 1055 | ||
| 1056 | // ROM & NVRAM access | |
| 1057 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1058 | } | |
| 1059 | ||
| 1060 | static WRITE8_HANDLER( snes20_hi_w ) | |
| 1061 | { | |
| 1062 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1063 | UINT16 address = offset & 0xffff; | |
| 1064 | if (offset < 0x400000) | |
| 1065 | { | |
| 1066 | if (address < 0x2000) | |
| 1067 | space.write_byte(0x7e0000 + address, data); | |
| 1068 | if (address >= 0x2000 && address < 0x6000) | |
| 1069 | snes_w_io(space, address, data); | |
| 1070 | } | |
| 1071 | else if (offset >= 0x700000) // NVRAM access | |
| 1072 | { | |
| 1073 | state->m_slotcart->m_cart->write_h(space, offset, data); | |
| 1074 | } | |
| 1075 | } | |
| 1076 | ||
| 1077 | static READ8_HANDLER( snes20_lo_r ) | |
| 1078 | { | |
| 1079 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1080 | UINT16 address = offset & 0xffff; | |
| 1081 | ||
| 1082 | if (offset < 0x400000) | |
| 1083 | { | |
| 1084 | if (address < 0x2000) | |
| 1085 | return space.read_byte(0x7e0000 + address); | |
| 1086 | if (address >= 0x2000 && address < 0x6000) | |
| 1087 | return snes_r_io(space, address); | |
| 1088 | if (address >= 0x6000 && address < 0x8000) | |
| 1089 | return snes_open_bus_r(space, 0); | |
| 1090 | if (address >= 0x8000) | |
| 1091 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1092 | } | |
| 1093 | else if (offset < 0x700000) | |
| 1094 | { | |
| 1095 | if (address < 0x8000) | |
| 1096 | return snes_open_bus_r(space, 0); | |
| 1097 | else | |
| 1098 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1099 | } | |
| 1100 | ||
| 1101 | // ROM & NVRAM access | |
| 1102 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1103 | } | |
| 1104 | ||
| 1105 | static WRITE8_HANDLER( snes20_lo_w ) | |
| 1106 | { | |
| 1107 | snes20_hi_w(space, offset, data, 0xff); | |
| 1108 | } | |
| 1109 | ||
| 1110 | ||
| 1111 | // HiROM | |
| 1112 | ||
| 1113 | static READ8_HANDLER( snes21_lo_r ) | |
| 1114 | { | |
| 1115 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1116 | UINT16 address = offset & 0xffff; | |
| 1117 | ||
| 1118 | if (offset < 0x400000) | |
| 1119 | { | |
| 1120 | if (address < 0x2000) | |
| 1121 | return space.read_byte(0x7e0000 + address); | |
| 1122 | if (address >= 0x2000 && address < 0x6000) | |
| 1123 | return snes_r_io(space, address); | |
| 1124 | if (address >= 0x6000 && address < 0x8000) | |
| 1125 | { | |
| 1126 | if (state->m_slotcart->m_cart->get_nvram_size()) | |
| 1127 | { | |
| 1128 | // read NVRAM, instead | |
| 1129 | if (offset >= 0x300000) | |
| 1130 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1131 | } | |
| 1132 | return snes_open_bus_r(space, 0); | |
| 1133 | } | |
| 1134 | if (address >= 0x8000) | |
| 1135 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1136 | } | |
| 1137 | ||
| 1138 | // ROM & NVRAM access | |
| 1139 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1140 | } | |
| 1141 | ||
| 1142 | static WRITE8_HANDLER( snes21_lo_w ) | |
| 1143 | { | |
| 1144 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1145 | UINT16 address = offset & 0xffff; | |
| 1146 | if (offset < 0x400000) | |
| 1147 | { | |
| 1148 | if (address < 0x2000) | |
| 1149 | space.write_byte(0x7e0000 + address, data); | |
| 1150 | if (address >= 0x2000 && address < 0x6000) | |
| 1151 | snes_w_io(space, address, data); | |
| 1152 | if (address >= 0x6000 && address < 0x8000) | |
| 1153 | { | |
| 1154 | if (state->m_slotcart->m_cart->get_nvram_size()) | |
| 1155 | { | |
| 1156 | // write to NVRAM, in this case | |
| 1157 | if (offset >= 0x300000) | |
| 1158 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1159 | } | |
| 1160 | } | |
| 1161 | } | |
| 1162 | else if (offset >= 0x700000) // NVRAM access | |
| 1163 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1164 | } | |
| 1165 | ||
| 1166 | static READ8_HANDLER( snes21_hi_r ) | |
| 1167 | { | |
| 1168 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1169 | UINT16 address = offset & 0xffff; | |
| 1170 | ||
| 1171 | if (offset < 0x400000) | |
| 1172 | { | |
| 1173 | if (address < 0x2000) | |
| 1174 | return space.read_byte(0x7e0000 + address); | |
| 1175 | if (address >= 0x2000 && address < 0x6000) | |
| 1176 | return snes_r_io(space, address); | |
| 1177 | if (address >= 0x6000 && address < 0x8000) | |
| 1178 | { | |
| 1179 | if (state->m_slotcart->m_cart->get_nvram_size()) | |
| 1180 | { | |
| 1181 | // read NVRAM, instead | |
| 1182 | if (offset >= 0x300000) | |
| 1183 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1184 | } | |
| 1185 | return snes_open_bus_r(space, 0); | |
| 1186 | } | |
| 1187 | if (address >= 0x8000) | |
| 1188 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1189 | } | |
| 1190 | ||
| 1191 | // ROM & NVRAM access | |
| 1192 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1193 | } | |
| 1194 | ||
| 1195 | static WRITE8_HANDLER( snes21_hi_w ) | |
| 1196 | { | |
| 1197 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1198 | UINT16 address = offset & 0xffff; | |
| 1199 | if (offset < 0x400000) | |
| 1200 | { | |
| 1201 | if (address < 0x2000) | |
| 1202 | space.write_byte(0x7e0000 + address, data); | |
| 1203 | if (address >= 0x2000 && address < 0x6000) | |
| 1204 | snes_w_io(space, address, data); | |
| 1205 | if (address >= 0x6000 && address < 0x8000) | |
| 1206 | { | |
| 1207 | if (state->m_slotcart->m_cart->get_nvram_size()) | |
| 1208 | { | |
| 1209 | // write to NVRAM, in this case | |
| 1210 | if (offset >= 0x300000) | |
| 1211 | state->m_slotcart->m_cart->write_h(space, offset, data); | |
| 1212 | } | |
| 1213 | } | |
| 1214 | } | |
| 1215 | else if (offset >= 0x700000) // NVRAM access | |
| 1216 | state->m_slotcart->m_cart->write_h(space, offset, data); | |
| 1217 | } | |
| 1218 | ||
| 1219 | // SuperFX / GSU | |
| 1220 | ||
| 1221 | static READ8_HANDLER( snesfx_hi_r ) | |
| 1222 | { | |
| 1223 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1224 | UINT16 address = offset & 0xffff; | |
| 1225 | ||
| 1226 | if (offset < 0x400000) | |
| 1227 | { | |
| 1228 | if (address < 0x2000) | |
| 1229 | return space.read_byte(0x7e0000 + address); | |
| 1230 | if (address >= 0x2000 && address < 0x6000) | |
| 1231 | { | |
| 1232 | if (address >= 0x3000 && address < 0x3300) | |
| 1233 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1234 | else | |
| 1235 | return snes_r_io(space, address); | |
| 1236 | } | |
| 1237 | if (address >= 0x6000 && address < 0x8000) | |
| 1238 | { | |
| 1239 | return state->m_slotcart->m_cart->read_h(space, offset); //RAM | |
| 1240 | } | |
| 1241 | if (address >= 0x8000) | |
| 1242 | return state->m_slotcart->m_cart->read_h(space, offset); //ROM | |
| 1243 | } | |
| 1244 | if (offset < 0x600000) | |
| 1245 | return state->m_slotcart->m_cart->read_h(space, offset); //ROM | |
| 1246 | ||
| 1247 | return state->m_slotcart->m_cart->read_h(space, offset); //RAM | |
| 1248 | } | |
| 1249 | ||
| 1250 | static READ8_HANDLER( snesfx_lo_r ) | |
| 1251 | { | |
| 1252 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1253 | UINT16 address = offset & 0xffff; | |
| 1254 | ||
| 1255 | if (offset < 0x400000) | |
| 1256 | { | |
| 1257 | if (address < 0x2000) | |
| 1258 | return space.read_byte(0x7e0000 + address); | |
| 1259 | if (address >= 0x2000 && address < 0x6000) | |
| 1260 | { | |
| 1261 | if (address >= 0x3000 && address < 0x3300) | |
| 1262 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1263 | else | |
| 1264 | return snes_r_io(space, address); | |
| 1265 | } | |
| 1266 | if (address >= 0x6000 && address < 0x8000) | |
| 1267 | { | |
| 1268 | return state->m_slotcart->m_cart->read_l(space, offset); //RAM | |
| 1269 | } | |
| 1270 | if (address >= 0x8000) | |
| 1271 | return state->m_slotcart->m_cart->read_l(space, offset); //ROM | |
| 1272 | } | |
| 1273 | if (offset < 0x600000) | |
| 1274 | return state->m_slotcart->m_cart->read_l(space, offset); //ROM | |
| 1275 | ||
| 1276 | return state->m_slotcart->m_cart->read_l(space, offset); //RAM | |
| 1277 | } | |
| 1278 | ||
| 1279 | static WRITE8_HANDLER( snesfx_hi_w ) | |
| 1280 | { | |
| 1281 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1282 | UINT16 address = offset & 0xffff; | |
| 1283 | if (offset < 0x400000) | |
| 1284 | { | |
| 1285 | if (address < 0x2000) | |
| 1286 | space.write_byte(0x7e0000 + address, data); | |
| 1287 | if (address >= 0x2000 && address < 0x6000) | |
| 1288 | { | |
| 1289 | if (address >= 0x3000 && address < 0x3300) | |
| 1290 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1291 | else | |
| 1292 | snes_w_io(space, address, data); | |
| 1293 | } | |
| 1294 | if (address >= 0x6000 && address < 0x8000) | |
| 1295 | state->m_slotcart->m_cart->write_h(space, offset, data); | |
| 1296 | } | |
| 1297 | else | |
| 1298 | state->m_slotcart->m_cart->write_h(space, offset, data); | |
| 1299 | } | |
| 1300 | ||
| 1301 | static WRITE8_HANDLER( snesfx_lo_w ) | |
| 1302 | { | |
| 1303 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1304 | UINT16 address = offset & 0xffff; | |
| 1305 | if (offset < 0x400000) | |
| 1306 | { | |
| 1307 | if (address < 0x2000) | |
| 1308 | space.write_byte(0x7e0000 + address, data); | |
| 1309 | if (address >= 0x2000 && address < 0x6000) | |
| 1310 | { | |
| 1311 | if (address >= 0x3000 && address < 0x3300) | |
| 1312 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1313 | else | |
| 1314 | snes_w_io(space, address, data); | |
| 1315 | } | |
| 1316 | if (address >= 0x6000 && address < 0x8000) | |
| 1317 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1318 | } | |
| 1319 | else | |
| 1320 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1321 | } | |
| 1322 | ||
| 1323 | // SPC-7110 | |
| 1324 | ||
| 1325 | static READ8_HANDLER( snespc7110_hi_r ) | |
| 1326 | { | |
| 1327 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1328 | UINT16 address = offset & 0xffff; | |
| 1329 | ||
| 1330 | if (offset < 0x400000) | |
| 1331 | { | |
| 1332 | if (address < 0x2000) | |
| 1333 | return space.read_byte(0x7e0000 + address); | |
| 1334 | if (address >= 0x2000 && address < 0x6000) | |
| 1335 | { | |
| 1336 | UINT16 limit = (state->m_slotcart->get_type() == SNES_SPC7110_RTC) ? 0x4843 : 0x4840; | |
| 1337 | if (address >= 0x4800 && address < limit) | |
| 1338 | return state->m_slotcart->m_cart->chip_read(space, address); | |
| 1339 | ||
| 1340 | return snes_r_io(space, address); | |
| 1341 | } | |
| 1342 | if (address >= 0x6000 && address < 0x8000) | |
| 1343 | { | |
| 1344 | if (offset < 0x10000) | |
| 1345 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1346 | if (offset >= 0x300000 && offset < 0x310000) | |
| 1347 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1348 | } | |
| 1349 | if (address >= 0x8000) | |
| 1350 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1351 | } | |
| 1352 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1353 | } | |
| 1354 | ||
| 1355 | static READ8_HANDLER( snespc7110_lo_r ) | |
| 1356 | { | |
| 1357 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1358 | UINT16 address = offset & 0xffff; | |
| 1359 | ||
| 1360 | if (offset < 0x400000) | |
| 1361 | { | |
| 1362 | if (address < 0x2000) | |
| 1363 | return space.read_byte(0x7e0000 + address); | |
| 1364 | if (address >= 0x2000 && address < 0x6000) | |
| 1365 | { | |
| 1366 | UINT16 limit = (state->m_slotcart->get_type() == SNES_SPC7110_RTC) ? 0x4843 : 0x4840; | |
| 1367 | if (address >= 0x4800 && address < limit) | |
| 1368 | return state->m_slotcart->m_cart->chip_read(space, address); | |
| 1369 | ||
| 1370 | return snes_r_io(space, address); | |
| 1371 | } | |
| 1372 | if (address >= 0x6000 && address < 0x8000) | |
| 1373 | { | |
| 1374 | if (offset < 0x10000) | |
| 1375 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1376 | if (offset >= 0x300000 && offset < 0x310000) | |
| 1377 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1378 | } | |
| 1379 | if (address >= 0x8000) | |
| 1380 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1381 | } | |
| 1382 | if (offset >= 0x500000 && offset < 0x510000) | |
| 1383 | return state->m_slotcart->m_cart->chip_read(space, 0x4800); | |
| 1384 | ||
| 1385 | return snes_open_bus_r(space, 0); | |
| 1386 | } | |
| 1387 | ||
| 1388 | static WRITE8_HANDLER( snespc7110_hi_w ) | |
| 1389 | { | |
| 1390 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1391 | UINT16 address = offset & 0xffff; | |
| 1392 | if (offset < 0x400000) | |
| 1393 | { | |
| 1394 | if (address < 0x2000) | |
| 1395 | space.write_byte(0x7e0000 + address, data); | |
| 1396 | if (address >= 0x2000 && address < 0x6000) | |
| 1397 | { | |
| 1398 | UINT16 limit = (state->m_slotcart->get_type() == SNES_SPC7110_RTC) ? 0x4843 : 0x4840; | |
| 1399 | if (address >= 0x4800 && address < limit) | |
| 1400 | { | |
| 1401 | state->m_slotcart->m_cart->chip_write(space, address, data); | |
| 1402 | return; | |
| 1403 | } | |
| 1404 | snes_w_io(space, address, data); | |
| 1405 | } | |
| 1406 | if (address >= 0x6000 && address < 0x8000) | |
| 1407 | { | |
| 1408 | if (offset < 0x10000) | |
| 1409 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1410 | if (offset >= 0x300000 && offset < 0x310000) | |
| 1411 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1412 | } | |
| 1413 | } | |
| 1414 | } | |
| 1415 | ||
| 1416 | static WRITE8_HANDLER( snespc7110_lo_w ) | |
| 1417 | { | |
| 1418 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1419 | UINT16 address = offset & 0xffff; | |
| 1420 | if (offset < 0x400000) | |
| 1421 | { | |
| 1422 | if (address < 0x2000) | |
| 1423 | space.write_byte(0x7e0000 + address, data); | |
| 1424 | if (address >= 0x2000 && address < 0x6000) | |
| 1425 | { | |
| 1426 | UINT16 limit = (state->m_slotcart->get_type() == SNES_SPC7110_RTC) ? 0x4843 : 0x4840; | |
| 1427 | if (address >= 0x4800 && address < limit) | |
| 1428 | { | |
| 1429 | state->m_slotcart->m_cart->chip_write(space, address, data); | |
| 1430 | return; | |
| 1431 | } | |
| 1432 | snes_w_io(space, address, data); | |
| 1433 | } | |
| 1434 | if (address >= 0x6000 && address < 0x8000) | |
| 1435 | { | |
| 1436 | if (offset < 0x10000) | |
| 1437 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1438 | if (offset >= 0x300000 && offset < 0x310000) | |
| 1439 | state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1440 | } | |
| 1441 | } | |
| 1442 | } | |
| 1443 | ||
| 1444 | ||
| 1445 | // S-DD1 | |
| 1446 | ||
| 1447 | static READ8_HANDLER( snesdd1_lo_r ) | |
| 1448 | { | |
| 1449 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1450 | UINT16 address = offset & 0xffff; | |
| 1451 | ||
| 1452 | if (offset < 0x400000) | |
| 1453 | { | |
| 1454 | if (address < 0x2000) | |
| 1455 | return space.read_byte(0x7e0000 + address); | |
| 1456 | if (address >= 0x2000 && address < 0x6000) | |
| 1457 | { | |
| 1458 | if (address >= 0x4800 && address < 0x4808) | |
| 1459 | return state->m_slotcart->m_cart->chip_read(space, address); | |
| 1460 | ||
| 1461 | return snes_r_io(space, address); | |
| 1462 | } | |
| 1463 | if (address >= 0x6000 && address < 0x8000) | |
| 1464 | return snes_open_bus_r(space, 0); | |
| 1465 | if (address >= 0x8000) | |
| 1466 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1467 | } | |
| 1468 | ||
| 1469 | // ROM & NVRAM access | |
| 1470 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1471 | } | |
| 1472 | ||
| 1473 | static WRITE8_HANDLER( snesdd1_lo_w ) | |
| 1474 | { | |
| 1475 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1476 | UINT16 address = offset & 0xffff; | |
| 1477 | if (offset < 0x400000) | |
| 1478 | { | |
| 1479 | if (address < 0x2000) | |
| 1480 | space.write_byte(0x7e0000 + address, data); | |
| 1481 | if (address >= 0x2000 && address < 0x6000) | |
| 1482 | { | |
| 1483 | if (address >= 0x4300 && address < 0x4380) | |
| 1484 | { | |
| 1485 | state->m_slotcart->m_cart->chip_write(space, address, data); | |
| 1486 | // here we don't return, but we let the w_io happen... | |
| 1487 | } | |
| 1488 | if (address >= 0x4800 && address < 0x4808) | |
| 1489 | { | |
| 1490 | state->m_slotcart->m_cart->chip_write(space, address, data); | |
| 1491 | return; | |
| 1492 | } | |
| 1493 | snes_w_io(space, address, data); | |
| 1494 | } | |
| 1495 | } | |
| 1496 | if (offset >= 0x700000 && address < 0x8000 && state->m_slotcart->m_cart->get_nvram_size()) | |
| 1497 | return state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1498 | } | |
| 1499 | ||
| 1500 | static READ8_HANDLER( snesdd1_hi_r ) | |
| 1501 | { | |
| 1502 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1503 | ||
| 1504 | if (offset >= 0x400000) | |
| 1505 | return state->m_slotcart->m_cart->read_h(space, offset); | |
| 1506 | else | |
| 1507 | return snesdd1_lo_r(space, offset, 0xff); | |
| 1508 | } | |
| 1509 | ||
| 1510 | static WRITE8_HANDLER( snesdd1_hi_w ) | |
| 1511 | { | |
| 1512 | snesdd1_lo_w(space, offset, data, 0xff); | |
| 1513 | } | |
| 1514 | ||
| 1515 | ||
| 1516 | // BS-X | |
| 1517 | ||
| 1518 | static READ8_HANDLER( snesbsx_hi_r ) | |
| 1519 | { | |
| 1520 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1521 | UINT16 address = offset & 0xffff; | |
| 1522 | ||
| 1523 | if (offset < 0x400000) | |
| 1524 | { | |
| 1525 | if (address < 0x2000) | |
| 1526 | return space.read_byte(0x7e0000 + address); | |
| 1527 | if (address >= 0x2000 && address < 0x6000) | |
| 1528 | { | |
| 1529 | if (address >= 0x2188 && address < 0x21a0) | |
| 1530 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1531 | if (address >= 0x5000) | |
| 1532 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1533 | return snes_r_io(space, address); | |
| 1534 | } | |
| 1535 | if (address >= 0x6000 && address < 0x8000) | |
| 1536 | { | |
| 1537 | if (offset >= 0x200000) | |
| 1538 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1539 | else | |
| 1540 | return snes_open_bus_r(space, 0); | |
| 1541 | } | |
| 1542 | if (address >= 0x8000) | |
| 1543 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1544 | } | |
| 1545 | return state->m_slotcart->m_cart->read_l(space, offset); | |
| 1546 | } | |
| 1547 | ||
| 1548 | static WRITE8_HANDLER( snesbsx_hi_w ) | |
| 1549 | { | |
| 1550 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1551 | UINT16 address = offset & 0xffff; | |
| 1552 | if (offset < 0x400000) | |
| 1553 | { | |
| 1554 | if (address < 0x2000) | |
| 1555 | space.write_byte(0x7e0000 + address, data); | |
| 1556 | if (address >= 0x2000 && address < 0x6000) | |
| 1557 | { | |
| 1558 | if (address >= 0x2188 && address < 0x21a0) | |
| 1559 | { | |
| 1560 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1561 | return; | |
| 1562 | } | |
| 1563 | if (address >= 0x5000) | |
| 1564 | { | |
| 1565 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1566 | return; | |
| 1567 | } | |
| 1568 | snes_w_io(space, address, data); | |
| 1569 | } | |
| 1570 | if (address >= 0x6000 && address < 0x8000) | |
| 1571 | { | |
| 1572 | if (offset >= 0x200000) | |
| 1573 | return state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1574 | } | |
| 1575 | if (address >= 0x8000) | |
| 1576 | return state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1577 | } | |
| 1578 | return state->m_slotcart->m_cart->write_l(space, offset, data); | |
| 1579 | } | |
| 1580 | ||
| 1581 | static READ8_HANDLER( snesbsx_lo_r ) | |
| 1582 | { | |
| 1583 | return snesbsx_hi_r(space, offset, 0xff); | |
| 1584 | } | |
| 1585 | ||
| 1586 | static WRITE8_HANDLER( snesbsx_lo_w ) | |
| 1587 | { | |
| 1588 | snesbsx_hi_w(space, offset, data, 0xff); | |
| 1589 | } | |
| 1590 | ||
| 1591 | ||
| 1592 | static READ8_HANDLER( snesnew_lo_r ) | |
| 1593 | { | |
| 1594 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1595 | ||
| 1596 | // take care of add-on IO | |
| 1597 | if (state->m_slotcart->get_type() == SNES_DSP | |
| 1598 | && (offset >= 0x200000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1599 | return state->m_slotcart->m_cart->chip_read(space, offset & 0x7fff); | |
| 1600 | else if (state->m_slotcart->get_type() == SNES_DSP_MODE21 | |
| 1601 | && (offset < 0x200000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1602 | return state->m_slotcart->m_cart->chip_read(space, offset & 0x1fff); | |
| 1603 | else if (state->m_slotcart->get_type() == SNES_DSP4 | |
| 1604 | && (offset >= 0x300000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1605 | return state->m_slotcart->m_cart->chip_read(space, offset & 0x7fff); | |
| 1606 | else if (state->m_slotcart->get_type() == SNES_OBC1 | |
| 1607 | && (offset < 0x400000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1608 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1609 | else if ((state->m_slotcart->get_type() == SNES_ST010 || state->m_slotcart->get_type() == SNES_ST011) | |
| 1610 | && (offset >= 0x680000 && offset < 0x700000 && (offset & 0xffff) < 0x1000)) | |
| 1611 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1612 | else if (state->m_slotcart->get_type() == SNES_SRTC | |
| 1613 | && (offset < 0x400000 && (offset & 0xffff) == 0x2800)) | |
| 1614 | return state->m_slotcart->m_cart->chip_read(space, offset & 0xffff); | |
| 1615 | else | |
| 1616 | { | |
| 1617 | switch (state->m_type) | |
| 1618 | { | |
| 1619 | case SNES_MODE20: | |
| 1620 | case SNES_ST010: | |
| 1621 | case SNES_ST011: | |
| 1622 | case SNES_DSP: | |
| 1623 | case SNES_DSP4: | |
| 1624 | case SNES_OBC1: | |
| 1625 | case SNES_SUFAMITURBO: | |
| 1626 | case SNES_STROM: | |
| 1627 | case SNES_BSXLO: | |
| 1628 | case SNES_POKEMON: | |
| 1629 | case SNES_BANANA: | |
| 1630 | return snes20_lo_r(space, offset, 0xff); | |
| 1631 | ||
| 1632 | case SNES_MODE21: | |
| 1633 | case SNES_DSP_MODE21: | |
| 1634 | case SNES_SRTC: | |
| 1635 | case SNES_BSXHI: | |
| 1636 | return snes21_lo_r(space, offset, 0xff); | |
| 1637 | ||
| 1638 | case SNES_SFX: | |
| 1639 | return snesfx_lo_r(space, offset, 0xff); | |
| 1640 | ||
| 1641 | case SNES_SPC7110: | |
| 1642 | case SNES_SPC7110_RTC: | |
| 1643 | return snespc7110_lo_r(space, offset, 0xff); | |
| 1644 | ||
| 1645 | case SNES_SDD1: | |
| 1646 | return snesdd1_lo_r(space, offset, 0xff); | |
| 1647 | ||
| 1648 | case SNES_BSX: | |
| 1649 | return snesbsx_lo_r(space, offset, 0xff); | |
| 1650 | } | |
| 1651 | } | |
| 1652 | return snes_open_bus_r(space, 0); | |
| 1653 | } | |
| 1654 | ||
| 1655 | static READ8_HANDLER( snesnew_hi_r ) | |
| 1656 | { | |
| 1657 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1658 | ||
| 1659 | // take care of add-on IO | |
| 1660 | if (state->m_slotcart->get_type() == SNES_DSP | |
| 1661 | && (offset >= 0x200000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1662 | return state->m_slotcart->m_cart->chip_read(space, offset & 0x7fff); | |
| 1663 | else if (state->m_slotcart->get_type() == SNES_DSP_MODE21 | |
| 1664 | && (offset < 0x200000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1665 | return state->m_slotcart->m_cart->chip_read(space, offset & 0x1fff); | |
| 1666 | else if (state->m_slotcart->get_type() == SNES_DSP4 | |
| 1667 | && (offset >= 0x300000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1668 | return state->m_slotcart->m_cart->chip_read(space, offset & 0x7fff); | |
| 1669 | else if (state->m_slotcart->get_type() == SNES_OBC1 | |
| 1670 | && (offset < 0x400000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1671 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1672 | else if ((state->m_slotcart->get_type() == SNES_ST010 || state->m_slotcart->get_type() == SNES_ST011) | |
| 1673 | && (offset >= 0x680000 && offset < 0x700000 && (offset & 0xffff) < 0x1000)) | |
| 1674 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1675 | else if (state->m_slotcart->get_type() == SNES_SRTC | |
| 1676 | && (offset < 0x400000 && (offset & 0xffff) == 0x2800)) | |
| 1677 | return state->m_slotcart->m_cart->chip_read(space, offset & 0xffff); | |
| 1678 | else if ((state->m_slotcart->get_type() == SNES_POKEMON || state->m_slotcart->get_type() == SNES_BANANA) | |
| 1679 | && (offset & 0x70000) == 0x0000) | |
| 1680 | { | |
| 1681 | // printf("hi read %x\n", offset); | |
| 1682 | return state->m_slotcart->m_cart->chip_read(space, offset); | |
| 1683 | } | |
| 1684 | else | |
| 1685 | { | |
| 1686 | switch (state->m_type) | |
| 1687 | { | |
| 1688 | case SNES_MODE20: | |
| 1689 | case SNES_ST010: | |
| 1690 | case SNES_ST011: | |
| 1691 | case SNES_DSP: | |
| 1692 | case SNES_DSP4: | |
| 1693 | case SNES_OBC1: | |
| 1694 | case SNES_SUFAMITURBO: | |
| 1695 | case SNES_STROM: | |
| 1696 | case SNES_BSXLO: | |
| 1697 | case SNES_POKEMON: | |
| 1698 | case SNES_BANANA: | |
| 1699 | return snes20_hi_r(space, offset, 0xff); | |
| 1700 | ||
| 1701 | case SNES_MODE21: | |
| 1702 | case SNES_DSP_MODE21: | |
| 1703 | case SNES_SRTC: | |
| 1704 | case SNES_BSXHI: | |
| 1705 | return snes21_hi_r(space, offset, 0xff); | |
| 1706 | ||
| 1707 | case SNES_SFX: | |
| 1708 | return snesfx_hi_r(space, offset, 0xff); | |
| 1709 | ||
| 1710 | case SNES_SPC7110: | |
| 1711 | case SNES_SPC7110_RTC: | |
| 1712 | return snespc7110_hi_r(space, offset, 0xff); | |
| 1713 | ||
| 1714 | case SNES_SDD1: | |
| 1715 | return snesdd1_hi_r(space, offset, 0xff); | |
| 1716 | ||
| 1717 | case SNES_BSX: | |
| 1718 | return snesbsx_hi_r(space, offset, 0xff); | |
| 1719 | } | |
| 1720 | } | |
| 1721 | return snes_open_bus_r(space, 0); | |
| 1722 | } | |
| 1723 | ||
| 1724 | static WRITE8_HANDLER( snesnew_lo_w ) | |
| 1725 | { | |
| 1726 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1727 | ||
| 1728 | // take care of add-on IO | |
| 1729 | if (state->m_slotcart->get_type() == SNES_DSP | |
| 1730 | && (offset >= 0x200000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1731 | state->m_slotcart->m_cart->chip_write(space, offset & 0x7fff, data); | |
| 1732 | else if (state->m_slotcart->get_type() == SNES_DSP_MODE21 | |
| 1733 | && (offset < 0x200000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1734 | state->m_slotcart->m_cart->chip_write(space, offset & 0x1fff, data); | |
| 1735 | else if (state->m_slotcart->get_type() == SNES_DSP4 | |
| 1736 | && (offset >= 0x300000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1737 | state->m_slotcart->m_cart->chip_write(space, offset & 0x7fff, data); | |
| 1738 | else if (state->m_slotcart->get_type() == SNES_OBC1 | |
| 1739 | && (offset < 0x400000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1740 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1741 | else if ((state->m_slotcart->get_type() == SNES_ST010 || state->m_slotcart->get_type() == SNES_ST011) | |
| 1742 | && (offset >= 0x680000 && offset < 0x700000 && (offset & 0xffff) < 0x1000)) | |
| 1743 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1744 | else if (state->m_slotcart->get_type() == SNES_SRTC | |
| 1745 | && (offset < 0x400000 && (offset & 0xffff) == 0x2801)) | |
| 1746 | state->m_slotcart->m_cart->chip_write(space, offset & 0xffff, data); | |
| 1747 | else if (state->m_slotcart->get_type() == SNES_BANANA | |
| 1748 | && (offset & 0x78000) == 0x8000) | |
| 1749 | { | |
| 1750 | // printf("lo write %x\n", offset); | |
| 1751 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1752 | } | |
| 1753 | else | |
| 1754 | { | |
| 1755 | switch (state->m_type) | |
| 1756 | { | |
| 1757 | case SNES_MODE20: | |
| 1758 | case SNES_ST010: | |
| 1759 | case SNES_ST011: | |
| 1760 | case SNES_DSP: | |
| 1761 | case SNES_DSP4: | |
| 1762 | case SNES_OBC1: | |
| 1763 | case SNES_SUFAMITURBO: | |
| 1764 | case SNES_STROM: | |
| 1765 | case SNES_BSXLO: | |
| 1766 | case SNES_POKEMON: | |
| 1767 | case SNES_BANANA: | |
| 1768 | snes20_lo_w(space, offset, data, 0xff); | |
| 1769 | break; | |
| 1770 | ||
| 1771 | case SNES_MODE21: | |
| 1772 | case SNES_DSP_MODE21: | |
| 1773 | case SNES_SRTC: | |
| 1774 | case SNES_BSXHI: | |
| 1775 | snes21_lo_w(space, offset, data, 0xff); | |
| 1776 | break; | |
| 1777 | ||
| 1778 | case SNES_SFX: | |
| 1779 | snesfx_lo_w(space, offset, data, 0xff); | |
| 1780 | break; | |
| 1781 | ||
| 1782 | case SNES_SPC7110: | |
| 1783 | case SNES_SPC7110_RTC: | |
| 1784 | snespc7110_lo_w(space, offset, data, 0xff); | |
| 1785 | break; | |
| 1786 | ||
| 1787 | case SNES_SDD1: | |
| 1788 | snesdd1_lo_w(space, offset, data, 0xff); | |
| 1789 | break; | |
| 1790 | ||
| 1791 | case SNES_BSX: | |
| 1792 | snesbsx_lo_w(space, offset, data, 0xff); | |
| 1793 | break; | |
| 1794 | } | |
| 1795 | } | |
| 1796 | } | |
| 1797 | ||
| 1798 | static WRITE8_HANDLER( snesnew_hi_w ) | |
| 1799 | { | |
| 1800 | snsnew_state *state = space.machine().driver_data<snsnew_state>(); | |
| 1801 | ||
| 1802 | // take care of add-on IO | |
| 1803 | if (state->m_slotcart->get_type() == SNES_DSP | |
| 1804 | && (offset >= 0x200000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1805 | state->m_slotcart->m_cart->chip_write(space, offset & 0x7fff, data); | |
| 1806 | else if (state->m_slotcart->get_type() == SNES_DSP_MODE21 | |
| 1807 | && (offset < 0x200000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1808 | state->m_slotcart->m_cart->chip_write(space, offset & 0x1fff, data); | |
| 1809 | else if (state->m_slotcart->get_type() == SNES_DSP4 | |
| 1810 | && (offset >= 0x300000 && offset < 0x400000 && (offset & 0x8000) == 0x8000)) | |
| 1811 | state->m_slotcart->m_cart->chip_write(space, offset & 0x7fff, data); | |
| 1812 | else if (state->m_slotcart->get_type() == SNES_OBC1 | |
| 1813 | && (offset < 0x400000 && (offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000)) | |
| 1814 | return state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1815 | else if ((state->m_slotcart->get_type() == SNES_ST010 || state->m_slotcart->get_type() == SNES_ST011) | |
| 1816 | && (offset >= 0x680000 && offset < 0x700000 && (offset & 0xffff) < 0x1000)) | |
| 1817 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1818 | else if (state->m_slotcart->get_type() == SNES_SRTC | |
| 1819 | && (offset < 0x400000 && (offset & 0xffff) == 0x2801)) | |
| 1820 | state->m_slotcart->m_cart->chip_write(space, offset & 0xffff, data); | |
| 1821 | else if ((state->m_slotcart->get_type() == SNES_POKEMON) | |
| 1822 | && (offset & 0x70000) == 0x0000) | |
| 1823 | { | |
| 1824 | // printf("hi write %x\n", offset); | |
| 1825 | state->m_slotcart->m_cart->chip_write(space, offset, data); | |
| 1826 | } | |
| 1827 | else | |
| 1828 | { | |
| 1829 | switch (state->m_type) | |
| 1830 | { | |
| 1831 | case SNES_MODE20: | |
| 1832 | case SNES_ST010: | |
| 1833 | case SNES_ST011: | |
| 1834 | case SNES_DSP: | |
| 1835 | case SNES_DSP4: | |
| 1836 | case SNES_OBC1: | |
| 1837 | case SNES_SUFAMITURBO: | |
| 1838 | case SNES_STROM: | |
| 1839 | case SNES_BSXLO: | |
| 1840 | case SNES_POKEMON: | |
| 1841 | case SNES_BANANA: | |
| 1842 | snes20_hi_w(space, offset, data, 0xff); | |
| 1843 | break; | |
| 1844 | ||
| 1845 | case SNES_MODE21: | |
| 1846 | case SNES_DSP_MODE21: | |
| 1847 | case SNES_SRTC: | |
| 1848 | case SNES_BSXHI: | |
| 1849 | snes21_hi_w(space, offset, data, 0xff); | |
| 1850 | break; | |
| 1851 | ||
| 1852 | case SNES_SFX: | |
| 1853 | snesfx_hi_w(space, offset, data, 0xff); | |
| 1854 | break; | |
| 1855 | ||
| 1856 | case SNES_SPC7110: | |
| 1857 | case SNES_SPC7110_RTC: | |
| 1858 | snespc7110_hi_w(space, offset, data, 0xff); | |
| 1859 | break; | |
| 1860 | ||
| 1861 | case SNES_SDD1: | |
| 1862 | snesdd1_hi_w(space, offset, data, 0xff); | |
| 1863 | break; | |
| 1864 | ||
| 1865 | case SNES_BSX: | |
| 1866 | snesbsx_hi_w(space, offset, data, 0xff); | |
| 1867 | break; | |
| 1868 | } | |
| 1869 | } | |
| 1870 | } | |
| 1871 | ||
| 1872 | ||
| 1873 | static ADDRESS_MAP_START( snesnew_map, AS_PROGRAM, 8, snsnew_state ) | |
| 1874 | AM_RANGE(0x000000, 0x7dffff) AM_READWRITE_LEGACY(snesnew_lo_r, snesnew_lo_w) | |
| 1875 | AM_RANGE(0x7e0000, 0x7fffff) AM_RAM /* 8KB Low RAM, 24KB High RAM, 96KB Expanded RAM */ | |
| 1876 | AM_RANGE(0x800000, 0xffffff) AM_READWRITE_LEGACY(snesnew_hi_r, snesnew_hi_w) | |
| 1877 | ADDRESS_MAP_END | |
| 1878 | ||
| 1879 | static SLOT_INTERFACE_START(snes_cart) | |
| 1880 | SLOT_INTERFACE_INTERNAL("lorom", SNS_LOROM) | |
| 1881 | SLOT_INTERFACE_INTERNAL("lorom_bsx", SNS_LOROM_BSX) // LoROM + BS-X slot - unsupported | |
| 1882 | SLOT_INTERFACE_INTERNAL("lorom_cx4", SNS_LOROM) // Cart + CX4 - unsupported | |
| 1883 | SLOT_INTERFACE_INTERNAL("lorom_dsp", SNS_LOROM_NECDSP) | |
| 1884 | SLOT_INTERFACE_INTERNAL("lorom_dsp4", SNS_LOROM_NECDSP) | |
| 1885 | SLOT_INTERFACE_INTERNAL("lorom_obc1", SNS_LOROM_OBC1) | |
| 1886 | SLOT_INTERFACE_INTERNAL("lorom_sa1", SNS_LOROM) // Cart + SA1 - unsupported | |
| 1887 | SLOT_INTERFACE_INTERNAL("lorom_sdd1", SNS_LOROM_SDD1) | |
| 1888 | SLOT_INTERFACE_INTERNAL("lorom_sfx", SNS_LOROM_SUPERFX) | |
| 1889 | SLOT_INTERFACE_INTERNAL("lorom_sgb", SNS_LOROM) // SuperGB base cart - unsupported | |
| 1890 | SLOT_INTERFACE_INTERNAL("lorom_st010", SNS_LOROM_SETA10) | |
| 1891 | SLOT_INTERFACE_INTERNAL("lorom_st011", SNS_LOROM_SETA11) | |
| 1892 | SLOT_INTERFACE_INTERNAL("lorom_st018", SNS_LOROM) // Cart + ST018 - unsupported | |
| 1893 | SLOT_INTERFACE_INTERNAL("lorom_sufami", SNS_LOROM_SUFAMI) // Sufami Turbo base cart | |
| 1894 | SLOT_INTERFACE_INTERNAL("hirom", SNS_HIROM) | |
| 1895 | SLOT_INTERFACE_INTERNAL("hirom_bsx", SNS_HIROM_BSX) // HiROM + BS-X slot - unsupported | |
| 1896 | SLOT_INTERFACE_INTERNAL("hirom_dsp", SNS_HIROM_NECDSP) | |
| 1897 | SLOT_INTERFACE_INTERNAL("hirom_spc7110", SNS_HIROM_SPC7110) | |
| 1898 | SLOT_INTERFACE_INTERNAL("hirom_spcrtc", SNS_HIROM_SPC7110_RTC) | |
| 1899 | SLOT_INTERFACE_INTERNAL("hirom_srtc", SNS_HIROM_SRTC) | |
| 1900 | SLOT_INTERFACE_INTERNAL("bsxrom", SNS_ROM_BSX) // BS-X base cart - partial support only | |
| 1901 | // pirate carts | |
| 1902 | SLOT_INTERFACE_INTERNAL("lorom_poke", SNS_LOROM_POKEMON) | |
| 1903 | SLOT_INTERFACE_END | |
| 1904 | ||
| 1905 | ||
| 1906 | static MACHINE_START( snesnew ) | |
| 1907 | { | |
| 1908 | snsnew_state *state = machine.driver_data<snsnew_state>(); | |
| 1909 | ||
| 1910 | state->m_type = state->m_slotcart->get_type(); | |
| 1911 | ||
| 1912 | MACHINE_START_CALL(snes); | |
| 1913 | ||
| 1914 | // FIXME: why installing handlers here does not work? it would allow to clean up handlers above... | |
| 1915 | switch (state->m_type) | |
| 1916 | { | |
| 1917 | case SNES_MODE21: | |
| 1918 | case SNES_MODE25: | |
| 1919 | case SNES_DSP_MODE21: | |
| 1920 | // machine.device("maincpu")->memory().space(AS_PROGRAM).install_legacy_readwrite_handler(0x000000, 0x7dffff, FUNC(snes21_lo_r), FUNC(snes21_lo_w)); | |
| 1921 | // machine.device("maincpu")->memory().space(AS_PROGRAM).install_legacy_readwrite_handler(0x800000, 0xffffff, FUNC(snes21_hi_r), FUNC(snes21_hi_w)); | |
| 1922 | break; | |
| 1923 | } | |
| 1924 | } | |
| 1925 | ||
| 1926 | static MACHINE_CONFIG_START( snesnew, snsnew_state ) | |
| 1927 | MCFG_FRAGMENT_ADD( snes_base ) | |
| 1928 | ||
| 1929 | MCFG_CPU_MODIFY("maincpu") | |
| 1930 | MCFG_CPU_PROGRAM_MAP(snesnew_map) | |
| 1931 | ||
| 1932 | MCFG_MACHINE_START(snesnew) | |
| 1933 | ||
| 1934 | MCFG_SNS_CARTRIDGE_ADD("snsslot", snes_cart, NULL, NULL) | |
| 1935 | MCFG_SOFTWARE_LIST_ADD("cart_list","snes") | |
| 1936 | MCFG_SOFTWARE_LIST_ADD("bsx_list","snes_bspack") | |
| 1937 | MCFG_SOFTWARE_LIST_ADD("st_list","snes_strom") | |
| 1938 | MACHINE_CONFIG_END | |
| 1939 | ||
| 1940 | static MACHINE_CONFIG_DERIVED( snespnew, snesnew ) | |
| 1941 | MCFG_CPU_MODIFY( "maincpu" ) | |
| 1942 | MCFG_CPU_CLOCK( MCLK_PAL ) | |
| 1943 | ||
| 1944 | MCFG_SCREEN_MODIFY("screen") | |
| 1945 | MCFG_SCREEN_RAW_PARAMS(DOTCLK_PAL, SNES_HTOTAL, 0, SNES_SCR_WIDTH, SNES_VTOTAL_PAL, 0, SNES_SCR_HEIGHT_PAL) | |
| 1946 | MACHINE_CONFIG_END | |
| 1947 | ||
| 1948 | ||
| 1949 | #define rom_snesnew rom_snes | |
| 1950 | #define rom_snespnew rom_snespal | |
| 1951 | ||
| 1952 | CONS( 1989, snesnew, snes, 0, snesnew, snes, snes_state, snes_mess, "Nintendo", "Super Nintendo Entertainment System / Super Famicom (NTSC, Test)", GAME_NOT_WORKING ) | |
| 1953 | CONS( 1989, snespnew, snes, 0, snespnew, snes, snes_state, snes_mess, "Nintendo", "Super Nintendo Entertainment System (PAL, Test)", GAME_NOT_WORKING ) |
| r21545 | r21546 | |
|---|---|---|
| 303 | 303 | |
| 304 | 304 | /* This function assign a 'score' to data immediately after 'offset' to measure how valid they are |
| 305 | 305 | as information block (to decide if the image is HiRom, LoRom, ExLoRom or ExHiRom) */ |
| 306 | /* Code from bsnes, courtesy of byuu - http://byuu. | |
| 306 | /* Code from bsnes, courtesy of byuu - http://byuu.org/ , based on previous code by Cowering */ | |
| 307 | 307 | static int snes_validate_infoblock( UINT8 *infoblock, UINT32 offset ) |
| 308 | 308 | { |
| 309 | 309 | int score = 0; |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | Bandai Sufami Turbo cartridge emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Copyright MESS Team. | |
| 6 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 7 | ||
| 8 | This is basically a standard LoROM cart with two slots for ST minicarts | |
| 9 | The content of each slot (with ROM and RAM) is mapped to a separate memory range | |
| 10 | Slot 1: ROM [20-3f][8000-ffff], RAM [60-63][8000-ffff] | |
| 11 | Slot 2: ROM [40-5f][8000-ffff], RAM [70-73][8000-ffff] | |
| 12 | ||
| 13 | ***********************************************************************************************************/ | |
| 14 | ||
| 15 | ||
| 16 | #include "emu.h" | |
| 17 | #include "machine/sns_sufami.h" | |
| 18 | ||
| 19 | ||
| 20 | //------------------------------------------------- | |
| 21 | // sns_rom_sufami_device - constructor | |
| 22 | //------------------------------------------------- | |
| 23 | ||
| 24 | const device_type SNS_LOROM_SUFAMI = &device_creator<sns_rom_sufami_device>; | |
| 25 | const device_type SNS_STROM = &device_creator<sns_rom_strom_device>; | |
| 26 | ||
| 27 | ||
| 28 | sns_rom_sufami_device::sns_rom_sufami_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 29 | : sns_rom_device(mconfig, SNS_LOROM_SUFAMI, "SNES Sufami Turbo Cart", tag, owner, clock), | |
| 30 | m_slot1(*this, "st_slot1"), | |
| 31 | m_slot2(*this, "st_slot2") | |
| 32 | { | |
| 33 | } | |
| 34 | ||
| 35 | sns_rom_strom_device::sns_rom_strom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 36 | : sns_rom_device(mconfig, SNS_STROM, "SNES Sufami Turbo Minicart", tag, owner, clock) | |
| 37 | { | |
| 38 | } | |
| 39 | ||
| 40 | ||
| 41 | void sns_rom_sufami_device::device_start() | |
| 42 | { | |
| 43 | } | |
| 44 | ||
| 45 | void sns_rom_strom_device::device_start() | |
| 46 | { | |
| 47 | } | |
| 48 | ||
| 49 | //------------------------------------------------- | |
| 50 | // MACHINE_CONFIG_FRAGMENT( st_slot ) | |
| 51 | //------------------------------------------------- | |
| 52 | ||
| 53 | static SLOT_INTERFACE_START(sufamiturbo_cart) | |
| 54 | SLOT_INTERFACE_INTERNAL("strom", SNS_STROM) | |
| 55 | SLOT_INTERFACE_END | |
| 56 | ||
| 57 | static MACHINE_CONFIG_FRAGMENT( st_slot ) | |
| 58 | MCFG_SNS_SUFAMI_CARTRIDGE_ADD("st_slot1", sufamiturbo_cart, NULL, NULL) | |
| 59 | MCFG_SNS_SUFAMI_CARTRIDGE_ADD("st_slot2", sufamiturbo_cart, NULL, NULL) | |
| 60 | MACHINE_CONFIG_END | |
| 61 | ||
| 62 | ||
| 63 | //------------------------------------------------- | |
| 64 | // machine_config_additions - device-specific | |
| 65 | // machine configurations | |
| 66 | //------------------------------------------------- | |
| 67 | ||
| 68 | machine_config_constructor sns_rom_sufami_device::device_mconfig_additions() const | |
| 69 | { | |
| 70 | return MACHINE_CONFIG_NAME( st_slot ); | |
| 71 | } | |
| 72 | ||
| 73 | /*------------------------------------------------- | |
| 74 | mapper specific handlers | |
| 75 | -------------------------------------------------*/ | |
| 76 | ||
| 77 | READ8_MEMBER(sns_rom_sufami_device::read_l) | |
| 78 | { | |
| 79 | return read_h(space, offset); | |
| 80 | } | |
| 81 | ||
| 82 | READ8_MEMBER(sns_rom_sufami_device::read_h) | |
| 83 | { | |
| 84 | if (offset < 0x200000) // SUFAMI TURBO ROM | |
| 85 | { | |
| 86 | int bank = offset / 0x10000; | |
| 87 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 88 | } | |
| 89 | if (offset >= 0x200000 && offset < 0x400000) // SLOT1 STROM | |
| 90 | { | |
| 91 | if (m_slot1->m_cart) | |
| 92 | return m_slot1->m_cart->read_l(space, offset - 0x200000); | |
| 93 | } | |
| 94 | if (offset >= 0x400000 && offset < 0x600000) // SLOT2 STROM | |
| 95 | { | |
| 96 | if (m_slot2->m_cart) | |
| 97 | return m_slot2->m_cart->read_l(space, offset - 0x400000); | |
| 98 | } | |
| 99 | if (offset >= 0x600000 && offset < 0x640000) // SLOT1 RAM | |
| 100 | { | |
| 101 | if (m_slot1->m_cart && (offset & 0xffff) > 0x8000) | |
| 102 | return m_slot1->m_cart->read_h(space, offset - 0x600000); | |
| 103 | } | |
| 104 | if (offset >= 0x700000 && offset < 0x740000) // SLOT2 RAM | |
| 105 | { | |
| 106 | if (m_slot2->m_cart && (offset & 0xffff) > 0x8000) | |
| 107 | return m_slot2->m_cart->read_h(space, offset - 0x700000); | |
| 108 | } | |
| 109 | ||
| 110 | return 0xff; | |
| 111 | } | |
| 112 | ||
| 113 | WRITE8_MEMBER(sns_rom_sufami_device::write_l) | |
| 114 | { | |
| 115 | write_h(space, offset, data); | |
| 116 | } | |
| 117 | ||
| 118 | WRITE8_MEMBER(sns_rom_sufami_device::write_h) | |
| 119 | { | |
| 120 | if (offset >= 0x600000 && offset < 0x640000) // SLOT1 RAM | |
| 121 | { | |
| 122 | if (m_slot1->m_cart && (offset & 0xffff) > 0x8000) | |
| 123 | return m_slot1->m_cart->write_h(space, offset - 0x600000, data); | |
| 124 | } | |
| 125 | ||
| 126 | if (offset >= 0x700000 && offset < 0x740000) // SLOT2 RAM | |
| 127 | { | |
| 128 | if (m_slot2->m_cart && (offset & 0xffff) > 0x8000) | |
| 129 | return m_slot2->m_cart->write_h(space, offset - 0x700000, data); | |
| 130 | } | |
| 131 | ||
| 132 | } | |
| 133 | ||
| 134 | /*------------------------------------------------- | |
| 135 | Sufami Turbo 'minicart' emulation | |
| 136 | -------------------------------------------------*/ | |
| 137 | ||
| 138 | // Here we're cheating a bit, for the moment, to avoid the need of ST carts as a completely different device | |
| 139 | // which would require separate loading routines | |
| 140 | // Hence, we use low r/w handlers for ROM access and hi r/w handlers for RAM access... | |
| 141 | // Eventually, it might be better to create a separate device for these, with rom_r and ram_r/ram_w handlers | |
| 142 | ||
| 143 | READ8_MEMBER(sns_rom_strom_device::read_l) | |
| 144 | { | |
| 145 | if (offset < 0x200000) | |
| 146 | { | |
| 147 | int bank = offset / 0x10000; | |
| 148 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 149 | } | |
| 150 | return 0xff; | |
| 151 | } | |
| 152 | ||
| 153 | READ8_MEMBER(sns_rom_strom_device::read_h) | |
| 154 | { | |
| 155 | if (offset < 0x40000) | |
| 156 | { | |
| 157 | int bank = offset / 0x10000; | |
| 158 | return m_nvram[bank * 0x8000 + (offset & 0x7fff)]; | |
| 159 | } | |
| 160 | return 0xff; | |
| 161 | } | |
| 162 | ||
| 163 | WRITE8_MEMBER(sns_rom_strom_device::write_l) | |
| 164 | { | |
| 165 | } | |
| 166 | ||
| 167 | WRITE8_MEMBER(sns_rom_strom_device::write_h) | |
| 168 | { | |
| 169 | if (offset < 0x40000) | |
| 170 | { | |
| 171 | int bank = offset / 0x10000; | |
| 172 | m_nvram[bank * 0x8000 + (offset & 0x7fff)] = data; | |
| 173 | } | |
| 174 | } | |
| 175 | ||
| 176 |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_SUFAMI_H | |
| 2 | #define __SNS_SUFAMI_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | #include "machine/sns_rom.h" | |
| 6 | ||
| 7 | ||
| 8 | // ======================> sns_rom_sufami_device | |
| 9 | ||
| 10 | class sns_rom_sufami_device : public sns_rom_device | |
| 11 | { | |
| 12 | public: | |
| 13 | // construction/destruction | |
| 14 | sns_rom_sufami_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 15 | ||
| 16 | // device-level overrides | |
| 17 | virtual void device_start(); | |
| 18 | virtual void device_config_complete() { m_shortname = "sns_rom_sufami"; } | |
| 19 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 20 | ||
| 21 | // additional reading and writing | |
| 22 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 23 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 24 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 25 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 26 | ||
| 27 | private: | |
| 28 | required_device<sns_sufami_cart_slot_device> m_slot1; | |
| 29 | required_device<sns_sufami_cart_slot_device> m_slot2; | |
| 30 | }; | |
| 31 | ||
| 32 | // ======================> sns_rom_strom_device | |
| 33 | ||
| 34 | class sns_rom_strom_device : public sns_rom_device | |
| 35 | { | |
| 36 | public: | |
| 37 | // construction/destruction | |
| 38 | sns_rom_strom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 39 | ||
| 40 | // device-level overrides | |
| 41 | virtual void device_start(); | |
| 42 | virtual void device_config_complete() { m_shortname = "sns_strom"; } | |
| 43 | ||
| 44 | // additional reading and writing | |
| 45 | virtual DECLARE_READ8_MEMBER(read_l); // used for ROM | |
| 46 | virtual DECLARE_READ8_MEMBER(read_h); // used for ROM | |
| 47 | virtual DECLARE_WRITE8_MEMBER(write_l); // used for RAM | |
| 48 | virtual DECLARE_WRITE8_MEMBER(write_h); // used for RAM | |
| 49 | }; | |
| 50 | ||
| 51 | ||
| 52 | // device type definition | |
| 53 | extern const device_type SNS_LOROM_SUFAMI; | |
| 54 | extern const device_type SNS_STROM; | |
| 55 | ||
| 56 | #endif |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | Super NES/Famicom (HiROM) cartridge emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Copyright MESS Team. | |
| 6 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 7 | ||
| 8 | ***********************************************************************************************************/ | |
| 9 | ||
| 10 | ||
| 11 | #include "emu.h" | |
| 12 | #include "machine/sns_rom21.h" | |
| 13 | ||
| 14 | ||
| 15 | //------------------------------------------------- | |
| 16 | // sns_rom_device - constructor | |
| 17 | //------------------------------------------------- | |
| 18 | ||
| 19 | const device_type SNS_HIROM = &device_creator<sns_rom21_device>; | |
| 20 | const device_type SNS_HIROM_SRTC = &device_creator<sns_rom21_srtc_device>; | |
| 21 | ||
| 22 | ||
| 23 | sns_rom21_device::sns_rom21_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) | |
| 24 | : device_t(mconfig, type, name, tag, owner, clock), | |
| 25 | device_sns_cart_interface( mconfig, *this ) | |
| 26 | { | |
| 27 | } | |
| 28 | ||
| 29 | sns_rom21_device::sns_rom21_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 30 | : device_t(mconfig, SNS_HIROM, "SNES Cart (HiROM)", tag, owner, clock), | |
| 31 | device_sns_cart_interface( mconfig, *this ) | |
| 32 | { | |
| 33 | } | |
| 34 | ||
| 35 | sns_rom21_srtc_device::sns_rom21_srtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 36 | : sns_rom21_device(mconfig, SNS_HIROM_SRTC, "SNES Cart (HiROM) + S-RTC", tag, owner, clock) | |
| 37 | { | |
| 38 | } | |
| 39 | ||
| 40 | ||
| 41 | void sns_rom21_device::device_start() | |
| 42 | { | |
| 43 | memset(rom_bank_map, 0, sizeof(rom_bank_map)); | |
| 44 | } | |
| 45 | ||
| 46 | void sns_rom21_srtc_device::device_start() | |
| 47 | { | |
| 48 | memset(rom_bank_map, 0, sizeof(rom_bank_map)); | |
| 49 | ||
| 50 | m_mode = RTCM_Read; | |
| 51 | m_index = -1; | |
| 52 | ||
| 53 | // at this stage, rtc_ram is not yet allocated. this will be fixed when converting RTC to be a separate device. | |
| 54 | // update_time(); | |
| 55 | ||
| 56 | save_item(NAME(m_mode)); | |
| 57 | save_item(NAME(m_index)); | |
| 58 | } | |
| 59 | ||
| 60 | /*------------------------------------------------- | |
| 61 | mapper specific handlers | |
| 62 | -------------------------------------------------*/ | |
| 63 | ||
| 64 | // low and hi reads are not the same! (different ROM banks are accessed) | |
| 65 | ||
| 66 | READ8_MEMBER(sns_rom21_device::read_l) | |
| 67 | { | |
| 68 | UINT16 address = offset & 0xffff; | |
| 69 | ||
| 70 | if (offset >= 0x300000 && offset < 0x400000 && address < 0x8000) | |
| 71 | { | |
| 72 | if (m_nvram_size > 0) | |
| 73 | { | |
| 74 | /* Donkey Kong Country checks this and detects a copier if 0x800 is not masked out due to sram size */ | |
| 75 | /* OTOH Secret of Mana does not work properly if sram is not mirrored on later banks */ | |
| 76 | int mask = (m_nvram_size - 1) & 0x7fff; /* Limit SRAM size to what's actually present */ | |
| 77 | return m_nvram[(offset - 0x6000) & mask]; | |
| 78 | } | |
| 79 | } | |
| 80 | ||
| 81 | // here ROM banks from 128 to 255, mirrored twice | |
| 82 | int bank = (offset & 0x3fffff) / 0x8000; | |
| 83 | return m_rom[rom_bank_map[bank + 0x80] * 0x8000 + (offset & 0x7fff)]; | |
| 84 | } | |
| 85 | ||
| 86 | READ8_MEMBER(sns_rom21_device::read_h) | |
| 87 | { | |
| 88 | UINT16 address = offset & 0xffff; | |
| 89 | ||
| 90 | if (offset >= 0x300000 && offset < 0x400000 && address < 0x8000) | |
| 91 | { | |
| 92 | if (m_nvram_size > 0) | |
| 93 | { | |
| 94 | /* Donkey Kong Country checks this and detects a copier if 0x800 is not masked out due to sram size */ | |
| 95 | /* OTOH Secret of Mana does not work properly if sram is not mirrored on later banks */ | |
| 96 | int mask = (m_nvram_size - 1) & 0x7fff; /* Limit SRAM size to what's actually present */ | |
| 97 | return m_nvram[(offset - 0x6000) & mask]; | |
| 98 | } | |
| 99 | } | |
| 100 | ||
| 101 | // here ROM banks from 0 to 127, mirrored twice | |
| 102 | int bank = (offset & 0x3fffff) / 0x8000; | |
| 103 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 104 | } | |
| 105 | ||
| 106 | WRITE8_MEMBER(sns_rom21_device::write_l) | |
| 107 | { | |
| 108 | write_h(space, offset, data); | |
| 109 | } | |
| 110 | ||
| 111 | WRITE8_MEMBER(sns_rom21_device::write_h) | |
| 112 | { | |
| 113 | UINT16 address = offset & 0xffff; | |
| 114 | ||
| 115 | if (offset >= 0x300000 && offset < 0x400000 && address < 0x8000) | |
| 116 | { | |
| 117 | if (m_nvram_size > 0) | |
| 118 | { | |
| 119 | /* Donkey Kong Country checks this and detects a copier if 0x800 is not masked out due to sram size */ | |
| 120 | /* OTOH Secret of Mana does not work properly if sram is not mirrored on later banks */ | |
| 121 | int mask = (m_nvram_size - 1) & 0x7fff; /* Limit SRAM size to what's actually present */ | |
| 122 | m_nvram[(offset - 0x6000) & mask] = data; | |
| 123 | } | |
| 124 | } | |
| 125 | } | |
| 126 | ||
| 127 | // Hi-ROM + S-RTC (used by Daikaijuu Monogatari II) | |
| 128 | // same as above but additional read/write handling for the RTC | |
| 129 | /*************************************************************************** | |
| 130 | ||
| 131 | Based on C++ implementation by Byuu in BSNES. | |
| 132 | ||
| 133 | Byuu's code is released under GNU General Public License | |
| 134 | version 2 as published by the Free Software Foundation. | |
| 135 | ||
| 136 | The implementation below is released under the MAME license | |
| 137 | for use in MAME, MESS and derivatives by permission of Byuu | |
| 138 | ||
| 139 | Copyright (for the implementation below) MESS Team. | |
| 140 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 141 | ||
| 142 | ***************************************************************************/ | |
| 143 | ||
| 144 | static const UINT8 srtc_months[12] = | |
| 145 | { | |
| 146 | 31, 28, 31, | |
| 147 | 30, 31, 30, | |
| 148 | 31, 31, 30, | |
| 149 | 31, 30, 31 | |
| 150 | }; | |
| 151 | ||
| 152 | void sns_rom21_srtc_device::update_time() | |
| 153 | { | |
| 154 | system_time curtime, *systime = &curtime; | |
| 155 | machine().current_datetime(curtime); | |
| 156 | m_rtc_ram[0] = systime->local_time.second % 10; | |
| 157 | m_rtc_ram[1] = systime->local_time.second / 10; | |
| 158 | m_rtc_ram[2] = systime->local_time.minute % 10; | |
| 159 | m_rtc_ram[3] = systime->local_time.minute / 10; | |
| 160 | m_rtc_ram[4] = systime->local_time.hour % 10; | |
| 161 | m_rtc_ram[5] = systime->local_time.hour / 10; | |
| 162 | m_rtc_ram[6] = systime->local_time.mday % 10; | |
| 163 | m_rtc_ram[7] = systime->local_time.mday / 10; | |
| 164 | m_rtc_ram[8] = systime->local_time.month; | |
| 165 | m_rtc_ram[9] = (systime->local_time.year - 1000) % 10; | |
| 166 | m_rtc_ram[10] = ((systime->local_time.year - 1000) / 10) % 10; | |
| 167 | m_rtc_ram[11] = (systime->local_time.year - 1000) / 100; | |
| 168 | m_rtc_ram[12] = systime->local_time.weekday % 7; | |
| 169 | } | |
| 170 | ||
| 171 | // Returns day-of-week for specified date | |
| 172 | // e.g. 0 = Sunday, 1 = Monday, ... 6 = Saturday | |
| 173 | // Usage: weekday(2008, 1, 1) returns the weekday of January 1st, 2008 | |
| 174 | UINT8 sns_rom21_srtc_device::srtc_weekday( UINT32 year, UINT32 month, UINT32 day ) | |
| 175 | { | |
| 176 | UINT32 y = 1900, m = 1; // Epoch is 1900-01-01 | |
| 177 | UINT32 sum = 0; // Number of days passed since epoch | |
| 178 | ||
| 179 | year = MAX(1900, year); | |
| 180 | month = MAX(1, MIN(12, month)); | |
| 181 | day = MAX(1, MIN(31, day)); | |
| 182 | ||
| 183 | while (y < year) | |
| 184 | { | |
| 185 | UINT8 leapyear = 0; | |
| 186 | if ((y % 4) == 0) | |
| 187 | { | |
| 188 | leapyear = 1; | |
| 189 | if ((y % 100) == 0 && (y % 400) != 0) | |
| 190 | { | |
| 191 | leapyear = 0; | |
| 192 | } | |
| 193 | } | |
| 194 | sum += leapyear ? 366 : 365; | |
| 195 | y++; | |
| 196 | } | |
| 197 | ||
| 198 | while (m < month) | |
| 199 | { | |
| 200 | UINT32 days = srtc_months[m - 1]; | |
| 201 | if (days == 28) | |
| 202 | { | |
| 203 | UINT8 leapyear = 0; | |
| 204 | if ((y % 4) == 0) | |
| 205 | { | |
| 206 | leapyear = 1; | |
| 207 | if ((y % 100) == 0 && (y % 400) != 0) | |
| 208 | { | |
| 209 | leapyear = 0; | |
| 210 | } | |
| 211 | } | |
| 212 | days += leapyear ? 1 : 0; | |
| 213 | } | |
| 214 | sum += days; | |
| 215 | m++; | |
| 216 | } | |
| 217 | ||
| 218 | sum += day - 1; | |
| 219 | return (sum + 1) % 7; // 1900-01-01 was a Monday | |
| 220 | } | |
| 221 | ||
| 222 | ||
| 223 | // this gets called only for accesses at 0x2800, | |
| 224 | // because for 0x2801 open bus gets returned... | |
| 225 | READ8_MEMBER(sns_rom21_srtc_device::chip_read) | |
| 226 | { | |
| 227 | if (m_mode != RTCM_Read) | |
| 228 | return 0x00; | |
| 229 | ||
| 230 | if (m_index < 0) | |
| 231 | { | |
| 232 | update_time(); | |
| 233 | m_index++; | |
| 234 | return 0x0f; | |
| 235 | } | |
| 236 | else if (m_index > 12) | |
| 237 | { | |
| 238 | m_index = -1; | |
| 239 | return 0x0f; | |
| 240 | } | |
| 241 | else | |
| 242 | return m_rtc_ram[m_index++]; | |
| 243 | } | |
| 244 | ||
| 245 | // this gets called only for accesses at 0x2801 | |
| 246 | WRITE8_MEMBER(sns_rom21_srtc_device::chip_write) | |
| 247 | { | |
| 248 | data &= 0x0f; // Only the low four bits are used | |
| 249 | ||
| 250 | if (data == 0x0d) | |
| 251 | { | |
| 252 | m_mode = RTCM_Read; | |
| 253 | m_index = -1; | |
| 254 | return; | |
| 255 | } | |
| 256 | ||
| 257 | if (data == 0x0e) | |
| 258 | { | |
| 259 | m_mode = RTCM_Command; | |
| 260 | return; | |
| 261 | } | |
| 262 | ||
| 263 | if (data == 0x0f) | |
| 264 | return; // Unknown behaviour | |
| 265 | ||
| 266 | if (m_mode == RTCM_Write) | |
| 267 | { | |
| 268 | if (m_index >= 0 && m_index < 12) | |
| 269 | { | |
| 270 | m_rtc_ram[m_index++] = data; | |
| 271 | ||
| 272 | if (m_index == 12) | |
| 273 | { | |
| 274 | // Day of week is automatically calculated and written | |
| 275 | UINT32 day = m_rtc_ram[6] + m_rtc_ram[7] * 10; | |
| 276 | UINT32 month = m_rtc_ram[8]; | |
| 277 | UINT32 year = m_rtc_ram[9] + m_rtc_ram[10] * 10 + m_rtc_ram[11] * 100; | |
| 278 | year += 1000; | |
| 279 | ||
| 280 | m_rtc_ram[m_index++] = srtc_weekday(year, month, day); | |
| 281 | } | |
| 282 | } | |
| 283 | } | |
| 284 | else if (m_mode == RTCM_Command) | |
| 285 | { | |
| 286 | if (data == 0) | |
| 287 | { | |
| 288 | m_mode = RTCM_Write; | |
| 289 | m_index = 0; | |
| 290 | } | |
| 291 | else if (data == 4) | |
| 292 | { | |
| 293 | UINT8 i; | |
| 294 | m_mode = RTCM_Ready; | |
| 295 | m_index = -1; | |
| 296 | for(i = 0; i < 13; i++) | |
| 297 | m_rtc_ram[i] = 0; | |
| 298 | } | |
| 299 | else | |
| 300 | { | |
| 301 | // Unknown behaviour | |
| 302 | m_mode = RTCM_Ready; | |
| 303 | } | |
| 304 | } | |
| 305 | } | |
| 306 |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_ROM21_H | |
| 2 | #define __SNS_ROM21_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | ||
| 6 | ||
| 7 | // ======================> sns_rom21_device | |
| 8 | ||
| 9 | class sns_rom21_device : public device_t, | |
| 10 | public device_sns_cart_interface | |
| 11 | { | |
| 12 | public: | |
| 13 | // construction/destruction | |
| 14 | sns_rom21_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 15 | sns_rom21_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 16 | ||
| 17 | // device-level overrides | |
| 18 | virtual void device_start(); | |
| 19 | virtual void device_config_complete() { m_shortname = "sns_rom21"; } | |
| 20 | ||
| 21 | // reading and writing | |
| 22 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 23 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 24 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 25 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 26 | }; | |
| 27 | ||
| 28 | // ======================> sns_rom21_srtc_device | |
| 29 | ||
| 30 | class sns_rom21_srtc_device : public sns_rom21_device | |
| 31 | { | |
| 32 | public: | |
| 33 | // construction/destruction | |
| 34 | sns_rom21_srtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 35 | ||
| 36 | // device-level overrides | |
| 37 | virtual void device_start(); | |
| 38 | virtual void device_config_complete() { m_shortname = "sns_rom21_srtc"; } | |
| 39 | ||
| 40 | // reading and writing | |
| 41 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 42 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 43 | ||
| 44 | // S-RTC specific variables | |
| 45 | enum | |
| 46 | { | |
| 47 | RTCM_Ready = 0, | |
| 48 | RTCM_Command, | |
| 49 | RTCM_Read, | |
| 50 | RTCM_Write | |
| 51 | }; | |
| 52 | ||
| 53 | void update_time(); | |
| 54 | UINT8 srtc_weekday(UINT32 year, UINT32 month, UINT32 day); | |
| 55 | ||
| 56 | //this is now allocated in the main snes cart class, to allow saving to nvram | |
| 57 | //UINT8 m_rtc_ram[13]; | |
| 58 | INT32 m_mode; | |
| 59 | INT8 m_index; | |
| 60 | }; | |
| 61 | ||
| 62 | ||
| 63 | // device type definition | |
| 64 | extern const device_type SNS_HIROM; | |
| 65 | extern const device_type SNS_HIROM_SRTC; | |
| 66 | ||
| 67 | #endif |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | UPD7725 / UPD96050 add-on chip emulation (for SNES/SFC) | |
| 4 | used in carts with DSP-1, DSP-1A, DSP-1B, DSP-2, DSP-3, DSP-4, ST-010 & ST-011 add-on chips | |
| 5 | ||
| 6 | Copyright MESS Team. | |
| 7 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 8 | ||
| 9 | ***********************************************************************************************************/ | |
| 10 | ||
| 11 | ||
| 12 | #include "emu.h" | |
| 13 | #include "machine/sns_upd.h" | |
| 14 | ||
| 15 | //------------------------------------------------- | |
| 16 | // constructor | |
| 17 | //------------------------------------------------- | |
| 18 | ||
| 19 | const device_type SNS_LOROM_NECDSP = &device_creator<sns_rom20_necdsp_device>; | |
| 20 | const device_type SNS_HIROM_NECDSP = &device_creator<sns_rom21_necdsp_device>; | |
| 21 | const device_type SNS_LOROM_SETA10 = &device_creator<sns_rom_seta10dsp_device>; | |
| 22 | const device_type SNS_LOROM_SETA11 = &device_creator<sns_rom_seta11dsp_device>; | |
| 23 | ||
| 24 | ||
| 25 | sns_rom20_necdsp_device::sns_rom20_necdsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 26 | : sns_rom_device(mconfig, SNS_LOROM_NECDSP, "SNES Cart (LoROM) + NEC DSP", tag, owner, clock), | |
| 27 | m_upd7725(*this, "dsp") | |
| 28 | { | |
| 29 | } | |
| 30 | ||
| 31 | sns_rom21_necdsp_device::sns_rom21_necdsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 32 | : sns_rom21_device(mconfig, SNS_HIROM_NECDSP, "SNES Cart (HiROM) + NEC DSP", tag, owner, clock), | |
| 33 | m_upd7725(*this, "dsp") | |
| 34 | { | |
| 35 | } | |
| 36 | ||
| 37 | sns_rom_setadsp_device::sns_rom_setadsp_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) | |
| 38 | : sns_rom_device(mconfig, type, name, tag, owner, clock), | |
| 39 | m_upd96050(*this, "dsp") | |
| 40 | { | |
| 41 | } | |
| 42 | ||
| 43 | sns_rom_seta10dsp_device::sns_rom_seta10dsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 44 | : sns_rom_setadsp_device(mconfig, SNS_LOROM_SETA10, "SNES Cart (LoROM) + Seta ST010 DSP", tag, owner, clock) | |
| 45 | { | |
| 46 | } | |
| 47 | ||
| 48 | sns_rom_seta11dsp_device::sns_rom_seta11dsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 49 | : sns_rom_setadsp_device(mconfig, SNS_LOROM_SETA11, "SNES Cart (LoROM) + Seta ST011 DSP", tag, owner, clock) | |
| 50 | { | |
| 51 | } | |
| 52 | ||
| 53 | ||
| 54 | void sns_rom20_necdsp_device::device_start() | |
| 55 | { | |
| 56 | } | |
| 57 | ||
| 58 | void sns_rom21_necdsp_device::device_start() | |
| 59 | { | |
| 60 | } | |
| 61 | ||
| 62 | void sns_rom_setadsp_device::device_start() | |
| 63 | { | |
| 64 | } | |
| 65 | ||
| 66 | ||
| 67 | /*------------------------------------------------- | |
| 68 | mapper specific handlers | |
| 69 | -------------------------------------------------*/ | |
| 70 | ||
| 71 | //------------------------------------------------- | |
| 72 | // NEC DSP | |
| 73 | //------------------------------------------------- | |
| 74 | ||
| 75 | // Lo-ROM | |
| 76 | ||
| 77 | // DSP dump contains prg at offset 0 and data at offset 0x2000 | |
| 78 | READ32_MEMBER( sns_rom20_necdsp_device::necdsp_prg_r ) | |
| 79 | { | |
| 80 | return (m_bios[offset * 4] << 24) | (m_bios[offset * 4 + 1] << 16) | | |
| 81 | (m_bios[offset * 4 + 2] << 8) | 0x00; | |
| 82 | } | |
| 83 | ||
| 84 | READ16_MEMBER( sns_rom20_necdsp_device::necdsp_data_r ) | |
| 85 | { | |
| 86 | return (m_bios[0x2000 + offset * 2] << 8) | m_bios[0x2000 + offset * 2 + 1]; | |
| 87 | } | |
| 88 | ||
| 89 | ||
| 90 | //------------------------------------------------- | |
| 91 | // ADDRESS_MAP( dsp_prg_map ) | |
| 92 | //------------------------------------------------- | |
| 93 | ||
| 94 | static ADDRESS_MAP_START( dsp_prg_map_lorom, AS_PROGRAM, 32, sns_rom20_necdsp_device ) | |
| 95 | AM_RANGE(0x0000, 0x07ff) AM_READ(necdsp_prg_r) | |
| 96 | ADDRESS_MAP_END | |
| 97 | ||
| 98 | ||
| 99 | //------------------------------------------------- | |
| 100 | // ADDRESS_MAP( dsp_data_map ) | |
| 101 | //------------------------------------------------- | |
| 102 | ||
| 103 | static ADDRESS_MAP_START( dsp_data_map_lorom, AS_DATA, 16, sns_rom20_necdsp_device ) | |
| 104 | AM_RANGE(0x0000, 0x03ff) AM_READ(necdsp_data_r) | |
| 105 | ADDRESS_MAP_END | |
| 106 | ||
| 107 | ||
| 108 | //------------------------------------------------- | |
| 109 | // MACHINE_DRIVER( snes_dsp ) | |
| 110 | //------------------------------------------------- | |
| 111 | ||
| 112 | static MACHINE_CONFIG_FRAGMENT( snes_dsp_lorom ) | |
| 113 | MCFG_CPU_ADD("dsp", UPD7725, 8000000) | |
| 114 | MCFG_CPU_PROGRAM_MAP(dsp_prg_map_lorom) | |
| 115 | MCFG_CPU_DATA_MAP(dsp_data_map_lorom) | |
| 116 | MACHINE_CONFIG_END | |
| 117 | ||
| 118 | //------------------------------------------------- | |
| 119 | // machine_config_additions - device-specific | |
| 120 | // machine configurations | |
| 121 | //------------------------------------------------- | |
| 122 | ||
| 123 | machine_config_constructor sns_rom20_necdsp_device::device_mconfig_additions() const | |
| 124 | { | |
| 125 | return MACHINE_CONFIG_NAME( snes_dsp_lorom ); | |
| 126 | } | |
| 127 | ||
| 128 | READ8_MEMBER( sns_rom20_necdsp_device::chip_read ) | |
| 129 | { | |
| 130 | offset &= 0x7fff; | |
| 131 | return m_upd7725->snesdsp_read(offset < 0x4000); | |
| 132 | } | |
| 133 | ||
| 134 | ||
| 135 | WRITE8_MEMBER( sns_rom20_necdsp_device::chip_write ) | |
| 136 | { | |
| 137 | offset &= 0x7fff; | |
| 138 | m_upd7725->snesdsp_write(offset < 0x4000, data); | |
| 139 | } | |
| 140 | ||
| 141 | ||
| 142 | // Hi-ROM | |
| 143 | ||
| 144 | // DSP dump contains prg at offset 0 and data at offset 0x2000 | |
| 145 | READ32_MEMBER( sns_rom21_necdsp_device::necdsp_prg_r ) | |
| 146 | { | |
| 147 | return (m_bios[offset * 4] << 24) | (m_bios[offset * 4 + 1] << 16) | | |
| 148 | (m_bios[offset * 4 + 2] << 8) | 0x00; | |
| 149 | } | |
| 150 | ||
| 151 | READ16_MEMBER( sns_rom21_necdsp_device::necdsp_data_r ) | |
| 152 | { | |
| 153 | return (m_bios[0x2000 + offset * 2] << 8) | m_bios[0x2000 + offset * 2 + 1]; | |
| 154 | } | |
| 155 | ||
| 156 | ||
| 157 | //------------------------------------------------- | |
| 158 | // ADDRESS_MAP( dsp_prg_map ) | |
| 159 | //------------------------------------------------- | |
| 160 | ||
| 161 | static ADDRESS_MAP_START( dsp_prg_map_hirom, AS_PROGRAM, 32, sns_rom21_necdsp_device ) | |
| 162 | AM_RANGE(0x0000, 0x07ff) AM_READ(necdsp_prg_r) | |
| 163 | ADDRESS_MAP_END | |
| 164 | ||
| 165 | ||
| 166 | //------------------------------------------------- | |
| 167 | // ADDRESS_MAP( dsp_data_map ) | |
| 168 | //------------------------------------------------- | |
| 169 | ||
| 170 | static ADDRESS_MAP_START( dsp_data_map_hirom, AS_DATA, 16, sns_rom21_necdsp_device ) | |
| 171 | AM_RANGE(0x0000, 0x03ff) AM_READ(necdsp_data_r) | |
| 172 | ADDRESS_MAP_END | |
| 173 | ||
| 174 | ||
| 175 | //------------------------------------------------- | |
| 176 | // MACHINE_DRIVER( snes_dsp ) | |
| 177 | //------------------------------------------------- | |
| 178 | ||
| 179 | static MACHINE_CONFIG_FRAGMENT( snes_dsp_hirom ) | |
| 180 | MCFG_CPU_ADD("dsp", UPD7725, 8000000) | |
| 181 | MCFG_CPU_PROGRAM_MAP(dsp_prg_map_hirom) | |
| 182 | MCFG_CPU_DATA_MAP(dsp_data_map_hirom) | |
| 183 | MACHINE_CONFIG_END | |
| 184 | ||
| 185 | //------------------------------------------------- | |
| 186 | // machine_config_additions - device-specific | |
| 187 | // machine configurations | |
| 188 | //------------------------------------------------- | |
| 189 | ||
| 190 | machine_config_constructor sns_rom21_necdsp_device::device_mconfig_additions() const | |
| 191 | { | |
| 192 | return MACHINE_CONFIG_NAME( snes_dsp_hirom ); | |
| 193 | } | |
| 194 | ||
| 195 | READ8_MEMBER( sns_rom21_necdsp_device::chip_read ) | |
| 196 | { | |
| 197 | offset &= 0x1fff; | |
| 198 | return m_upd7725->snesdsp_read(offset < 0x1000); | |
| 199 | } | |
| 200 | ||
| 201 | ||
| 202 | WRITE8_MEMBER( sns_rom21_necdsp_device::chip_write ) | |
| 203 | { | |
| 204 | offset &= 0x1fff; | |
| 205 | m_upd7725->snesdsp_write(offset < 0x1000, data); | |
| 206 | } | |
| 207 | ||
| 208 | ||
| 209 | //------------------------------------------------- | |
| 210 | // Seta DSP | |
| 211 | //------------------------------------------------- | |
| 212 | ||
| 213 | // same as above but additional read/write handling for the add-on chip | |
| 214 | ||
| 215 | READ8_MEMBER( sns_rom_setadsp_device::chip_read ) | |
| 216 | { | |
| 217 | if (offset >= 0x680000 && offset < 0x700000 && (offset & 0xffff) < 0x1000) | |
| 218 | { | |
| 219 | UINT16 address = offset & 0xffff; | |
| 220 | UINT16 temp = m_upd96050->dataram_r(address/2); | |
| 221 | if (offset & 1) | |
| 222 | return temp >> 8; | |
| 223 | else | |
| 224 | return temp & 0xff; | |
| 225 | } | |
| 226 | return 0xff; | |
| 227 | } | |
| 228 | ||
| 229 | ||
| 230 | WRITE8_MEMBER( sns_rom_setadsp_device::chip_write ) | |
| 231 | { | |
| 232 | if (offset >= 0x680000 && offset < 0x700000 && (offset & 0xffff) < 0x1000) | |
| 233 | { | |
| 234 | UINT16 address = offset & 0xffff; | |
| 235 | UINT16 temp = m_upd96050->dataram_r(address/2); | |
| 236 | ||
| 237 | if (offset & 1) | |
| 238 | { | |
| 239 | temp &= 0xff; | |
| 240 | temp |= data << 8; | |
| 241 | } | |
| 242 | else | |
| 243 | { | |
| 244 | temp &= 0xff00; | |
| 245 | temp |= data; | |
| 246 | } | |
| 247 | ||
| 248 | m_upd96050->dataram_w(address/2, temp); | |
| 249 | return; | |
| 250 | } | |
| 251 | } | |
| 252 | ||
| 253 | ||
| 254 | // DSP dump contains prg at offset 0 and data at offset 0x10000 | |
| 255 | READ32_MEMBER( sns_rom_setadsp_device::setadsp_prg_r ) | |
| 256 | { | |
| 257 | return (m_bios[offset * 4] << 24) | (m_bios[offset * 4 + 1] << 16) | | |
| 258 | (m_bios[offset * 4 + 2] << 8) | 0x00; | |
| 259 | } | |
| 260 | ||
| 261 | READ16_MEMBER( sns_rom_setadsp_device::setadsp_data_r ) | |
| 262 | { | |
| 263 | return (m_bios[0x10000 + offset * 2] << 8) | m_bios[0x10000 + offset * 2 + 1]; | |
| 264 | } | |
| 265 | ||
| 266 | ||
| 267 | //------------------------------------------------- | |
| 268 | // ADDRESS_MAP( st01x_prg_map ) | |
| 269 | //------------------------------------------------- | |
| 270 | ||
| 271 | static ADDRESS_MAP_START( st01x_prg_map, AS_PROGRAM, 32, sns_rom_setadsp_device ) | |
| 272 | AM_RANGE(0x0000, 0x3fff) AM_READ(setadsp_prg_r) | |
| 273 | ADDRESS_MAP_END | |
| 274 | ||
| 275 | ||
| 276 | //------------------------------------------------- | |
| 277 | // ADDRESS_MAP( st01x_data_map ) | |
| 278 | //------------------------------------------------- | |
| 279 | ||
| 280 | static ADDRESS_MAP_START( st01x_data_map, AS_DATA, 16, sns_rom_setadsp_device ) | |
| 281 | AM_RANGE(0x0000, 0x07ff) AM_READ(setadsp_data_r) | |
| 282 | ADDRESS_MAP_END | |
| 283 | ||
| 284 | ||
| 285 | //------------------------------------------------- | |
| 286 | // MACHINE_DRIVER( snes_st010 ) | |
| 287 | //------------------------------------------------- | |
| 288 | ||
| 289 | static MACHINE_CONFIG_FRAGMENT( snes_st010 ) | |
| 290 | MCFG_CPU_ADD("dsp", UPD96050, 10000000) | |
| 291 | MCFG_CPU_PROGRAM_MAP(st01x_prg_map) | |
| 292 | MCFG_CPU_DATA_MAP(st01x_data_map) | |
| 293 | MACHINE_CONFIG_END | |
| 294 | ||
| 295 | //------------------------------------------------- | |
| 296 | // MACHINE_DRIVER( snes_st011 ) | |
| 297 | //------------------------------------------------- | |
| 298 | ||
| 299 | static MACHINE_CONFIG_FRAGMENT( snes_st011 ) | |
| 300 | MCFG_CPU_ADD("dsp", UPD96050, 15000000) | |
| 301 | MCFG_CPU_PROGRAM_MAP(st01x_prg_map) | |
| 302 | MCFG_CPU_DATA_MAP(st01x_data_map) | |
| 303 | MACHINE_CONFIG_END | |
| 304 | ||
| 305 | //------------------------------------------------- | |
| 306 | // machine_config_additions - device-specific | |
| 307 | // machine configurations | |
| 308 | //------------------------------------------------- | |
| 309 | ||
| 310 | machine_config_constructor sns_rom_seta10dsp_device::device_mconfig_additions() const | |
| 311 | { | |
| 312 | return MACHINE_CONFIG_NAME( snes_st010 ); | |
| 313 | } | |
| 314 | ||
| 315 | machine_config_constructor sns_rom_seta11dsp_device::device_mconfig_additions() const | |
| 316 | { | |
| 317 | return MACHINE_CONFIG_NAME( snes_st011 ); | |
| 318 | } | |
| 319 |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_UPD_H | |
| 2 | #define __SNS_UPD_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | #include "machine/sns_rom.h" | |
| 6 | #include "machine/sns_rom21.h" | |
| 7 | #include "cpu/upd7725/upd7725.h" | |
| 8 | ||
| 9 | // ======================> sns_rom_necdsp_device | |
| 10 | ||
| 11 | class sns_rom20_necdsp_device : public sns_rom_device | |
| 12 | { | |
| 13 | public: | |
| 14 | // construction/destruction | |
| 15 | sns_rom20_necdsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 16 | ||
| 17 | // device-level overrides | |
| 18 | virtual void device_start(); | |
| 19 | virtual void device_config_complete() { m_shortname = "sns_rom_necdsp"; } | |
| 20 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 21 | ||
| 22 | required_device<upd7725_device> m_upd7725; | |
| 23 | ||
| 24 | // additional reading and writing | |
| 25 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 26 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 27 | ||
| 28 | virtual DECLARE_READ32_MEMBER(necdsp_prg_r); | |
| 29 | virtual DECLARE_READ16_MEMBER(necdsp_data_r); | |
| 30 | }; | |
| 31 | ||
| 32 | // ======================> sns_rom21_necdsp_device | |
| 33 | ||
| 34 | class sns_rom21_necdsp_device : public sns_rom21_device | |
| 35 | { | |
| 36 | public: | |
| 37 | // construction/destruction | |
| 38 | sns_rom21_necdsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 39 | ||
| 40 | // device-level overrides | |
| 41 | virtual void device_start(); | |
| 42 | virtual void device_config_complete() { m_shortname = "sns_rom21_necdsp"; } | |
| 43 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 44 | ||
| 45 | required_device<upd7725_device> m_upd7725; | |
| 46 | ||
| 47 | // additional reading and writing | |
| 48 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 49 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 50 | ||
| 51 | virtual DECLARE_READ32_MEMBER(necdsp_prg_r); | |
| 52 | virtual DECLARE_READ16_MEMBER(necdsp_data_r); | |
| 53 | }; | |
| 54 | ||
| 55 | // ======================> sns_rom_setadsp_device | |
| 56 | ||
| 57 | class sns_rom_setadsp_device : public sns_rom_device | |
| 58 | { | |
| 59 | public: | |
| 60 | // construction/destruction | |
| 61 | sns_rom_setadsp_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 62 | ||
| 63 | // device-level overrides | |
| 64 | virtual void device_start(); | |
| 65 | virtual void device_config_complete() { m_shortname = "sns_rom_setadsp"; } | |
| 66 | ||
| 67 | required_device<upd96050_device> m_upd96050; | |
| 68 | ||
| 69 | // additional reading and writing | |
| 70 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 71 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 72 | ||
| 73 | virtual DECLARE_READ32_MEMBER(setadsp_prg_r); | |
| 74 | virtual DECLARE_READ16_MEMBER(setadsp_data_r); | |
| 75 | }; | |
| 76 | ||
| 77 | // ======================> sns_rom_seta10_device | |
| 78 | ||
| 79 | class sns_rom_seta10dsp_device : public sns_rom_setadsp_device | |
| 80 | { | |
| 81 | public: | |
| 82 | // construction/destruction | |
| 83 | sns_rom_seta10dsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 84 | ||
| 85 | // device-level overrides | |
| 86 | virtual void device_config_complete() { m_shortname = "sns_rom_seta10"; } | |
| 87 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 88 | }; | |
| 89 | ||
| 90 | // ======================> sns_rom_seta11_device [Faster CPU than ST010] | |
| 91 | ||
| 92 | class sns_rom_seta11dsp_device : public sns_rom_setadsp_device | |
| 93 | { | |
| 94 | public: | |
| 95 | // construction/destruction | |
| 96 | sns_rom_seta11dsp_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 97 | ||
| 98 | // device-level overrides | |
| 99 | virtual void device_config_complete() { m_shortname = "sns_rom_seta11"; } | |
| 100 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 101 | }; | |
| 102 | ||
| 103 | ||
| 104 | // device type definition | |
| 105 | extern const device_type SNS_LOROM_NECDSP; | |
| 106 | extern const device_type SNS_HIROM_NECDSP; | |
| 107 | extern const device_type SNS_LOROM_SETA10; | |
| 108 | extern const device_type SNS_LOROM_SETA11; | |
| 109 | ||
| 110 | #endif |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | SuperFX add-on chip emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Copyright MESS Team. | |
| 6 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 7 | ||
| 8 | ***********************************************************************************************************/ | |
| 9 | ||
| 10 | ||
| 11 | #include "emu.h" | |
| 12 | #include "machine/sns_sfx.h" | |
| 13 | #include "cpu/g65816/g65816.h" | |
| 14 | ||
| 15 | //------------------------------------------------- | |
| 16 | // sns_rom_superfx_device - constructor | |
| 17 | //------------------------------------------------- | |
| 18 | ||
| 19 | const device_type SNS_LOROM_SUPERFX = &device_creator<sns_rom_superfx_device>; | |
| 20 | ||
| 21 | ||
| 22 | sns_rom_superfx_device::sns_rom_superfx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 23 | : sns_rom_device(mconfig, SNS_LOROM_SUPERFX, "SNES Cart (LoROM) + SuperFX", tag, owner, clock), | |
| 24 | m_superfx(*this, "superfx") | |
| 25 | { | |
| 26 | } | |
| 27 | ||
| 28 | void sns_rom_superfx_device::device_start() | |
| 29 | { | |
| 30 | save_item(NAME(sfx_ram)); | |
| 31 | } | |
| 32 | ||
| 33 | /*------------------------------------------------- | |
| 34 | mapper specific handlers | |
| 35 | -------------------------------------------------*/ | |
| 36 | ||
| 37 | // LoROM + SuperFX (GSU-1,2) | |
| 38 | // TODO: mask sfx_ram based on the actual RAM... | |
| 39 | ||
| 40 | READ8_MEMBER( sns_rom_superfx_device::superfx_r_bank1 ) | |
| 41 | { | |
| 42 | return m_rom[rom_bank_map[offset / 0x10000] * 0x8000 + (offset & 0x7fff)]; | |
| 43 | } | |
| 44 | ||
| 45 | READ8_MEMBER( sns_rom_superfx_device::superfx_r_bank2 ) | |
| 46 | { | |
| 47 | return m_rom[rom_bank_map[offset / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 48 | } | |
| 49 | ||
| 50 | READ8_MEMBER( sns_rom_superfx_device::superfx_r_bank3 ) | |
| 51 | { | |
| 52 | return sfx_ram[offset & 0xfffff]; | |
| 53 | } | |
| 54 | ||
| 55 | WRITE8_MEMBER( sns_rom_superfx_device::superfx_w_bank1 ) | |
| 56 | { | |
| 57 | } | |
| 58 | ||
| 59 | WRITE8_MEMBER( sns_rom_superfx_device::superfx_w_bank2 ) | |
| 60 | { | |
| 61 | } | |
| 62 | ||
| 63 | WRITE8_MEMBER( sns_rom_superfx_device::superfx_w_bank3 ) | |
| 64 | { | |
| 65 | sfx_ram[offset & 0xfffff] = data; | |
| 66 | } | |
| 67 | ||
| 68 | static ADDRESS_MAP_START( sfx_map, AS_PROGRAM, 8, sns_rom_superfx_device ) | |
| 69 | AM_RANGE(0x000000, 0x3fffff) AM_READWRITE(superfx_r_bank1, superfx_w_bank1) | |
| 70 | AM_RANGE(0x400000, 0x5fffff) AM_READWRITE(superfx_r_bank2, superfx_w_bank2) | |
| 71 | AM_RANGE(0x600000, 0x7dffff) AM_READWRITE(superfx_r_bank3, superfx_w_bank3) | |
| 72 | AM_RANGE(0x800000, 0xbfffff) AM_READWRITE(superfx_r_bank1, superfx_w_bank1) | |
| 73 | AM_RANGE(0xc00000, 0xdfffff) AM_READWRITE(superfx_r_bank2, superfx_w_bank2) | |
| 74 | AM_RANGE(0xe00000, 0xffffff) AM_READWRITE(superfx_r_bank3, superfx_w_bank3) | |
| 75 | ADDRESS_MAP_END | |
| 76 | ||
| 77 | ||
| 78 | WRITE_LINE_MEMBER(sns_rom_superfx_device::snes_extern_irq_w) | |
| 79 | { | |
| 80 | machine().device("maincpu")->execute().set_input_line(G65816_LINE_IRQ, state); | |
| 81 | } | |
| 82 | ||
| 83 | static SUPERFX_CONFIG( snes_sfx_config ) | |
| 84 | { | |
| 85 | DEVCB_LINE_MEMBER(sns_rom_superfx_device,snes_extern_irq_w) /* IRQ line from cart */ | |
| 86 | }; | |
| 87 | ||
| 88 | ||
| 89 | static MACHINE_CONFIG_FRAGMENT( snes_sfx ) | |
| 90 | MCFG_CPU_ADD("superfx", SUPERFX, 21480000) /* 21.48MHz */ | |
| 91 | MCFG_CPU_PROGRAM_MAP(sfx_map) | |
| 92 | MCFG_CPU_CONFIG(snes_sfx_config) | |
| 93 | MACHINE_CONFIG_END | |
| 94 | ||
| 95 | machine_config_constructor sns_rom_superfx_device::device_mconfig_additions() const | |
| 96 | { | |
| 97 | return MACHINE_CONFIG_NAME( snes_sfx ); | |
| 98 | } | |
| 99 | ||
| 100 | READ8_MEMBER( sns_rom_superfx_device::chip_read ) | |
| 101 | { | |
| 102 | return superfx_mmio_read(m_superfx, offset); | |
| 103 | } | |
| 104 | ||
| 105 | WRITE8_MEMBER( sns_rom_superfx_device::chip_write ) | |
| 106 | { | |
| 107 | superfx_mmio_write(m_superfx, offset, data); | |
| 108 | } | |
| 109 | ||
| 110 | READ8_MEMBER( sns_rom_superfx_device::read_l ) | |
| 111 | { | |
| 112 | UINT16 address = offset & 0xffff; | |
| 113 | ||
| 114 | if (offset < 0x400000) | |
| 115 | { | |
| 116 | if (address >= 0x6000 && address < 0x8000) | |
| 117 | { | |
| 118 | if (superfx_access_ram(m_superfx)) | |
| 119 | return sfx_ram[offset & 0x1fff]; | |
| 120 | } | |
| 121 | if (address >= 0x8000) | |
| 122 | return m_rom[rom_bank_map[offset / 0x10000] * 0x8000 + (offset & 0x7fff)]; | |
| 123 | } | |
| 124 | else if (offset < 0x600000) | |
| 125 | { | |
| 126 | if (superfx_access_rom(m_superfx)) | |
| 127 | { | |
| 128 | return m_rom[rom_bank_map[(offset - 0x400000) / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 129 | } | |
| 130 | else | |
| 131 | { | |
| 132 | static const UINT8 sfx_data[16] = { | |
| 133 | 0x00, 0x01, 0x00, 0x01, 0x04, 0x01, 0x00, 0x01, | |
| 134 | 0x00, 0x01, 0x08, 0x01, 0x00, 0x01, 0x0c, 0x01, | |
| 135 | }; | |
| 136 | return sfx_data[offset & 0x0f]; | |
| 137 | } | |
| 138 | } | |
| 139 | else | |
| 140 | { | |
| 141 | if (superfx_access_ram(m_superfx)) | |
| 142 | return sfx_ram[offset & 0xfffff]; | |
| 143 | } | |
| 144 | ||
| 145 | return 0xff; // should be open bus... | |
| 146 | } | |
| 147 | ||
| 148 | ||
| 149 | WRITE8_MEMBER( sns_rom_superfx_device::write_l ) | |
| 150 | { | |
| 151 | UINT16 address = offset & 0xffff; | |
| 152 | if (offset < 0x400000) | |
| 153 | { | |
| 154 | if (address >= 0x6000 && address < 0x8000) | |
| 155 | { | |
| 156 | if (superfx_access_ram(m_superfx)) | |
| 157 | sfx_ram[offset & 0x1fff] = data; | |
| 158 | } | |
| 159 | } | |
| 160 | else if (offset >= 0x600000) | |
| 161 | { | |
| 162 | if (superfx_access_ram(m_superfx)) | |
| 163 | sfx_ram[offset & 0xfffff] = data; | |
| 164 | } | |
| 165 | } | |
| 166 | ||
| 167 | READ8_MEMBER(sns_rom_superfx_device::read_h) | |
| 168 | { | |
| 169 | UINT16 address = offset & 0xffff; | |
| 170 | ||
| 171 | if (offset < 0x400000) | |
| 172 | { | |
| 173 | if (address >= 0x6000 && address < 0x8000) | |
| 174 | { | |
| 175 | if (superfx_access_ram(m_superfx)) | |
| 176 | return sfx_ram[offset & 0x1fff]; | |
| 177 | } | |
| 178 | if (address >= 0x8000) | |
| 179 | return m_rom[rom_bank_map[offset / 0x10000] * 0x8000 + (offset & 0x7fff)]; | |
| 180 | } | |
| 181 | else if (offset < 0x600000) | |
| 182 | { | |
| 183 | if (superfx_access_rom(m_superfx)) | |
| 184 | { | |
| 185 | return m_rom[rom_bank_map[(offset - 0x400000) / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 186 | } | |
| 187 | else | |
| 188 | { | |
| 189 | static const UINT8 sfx_data[16] = { | |
| 190 | 0x00, 0x01, 0x00, 0x01, 0x04, 0x01, 0x00, 0x01, | |
| 191 | 0x00, 0x01, 0x08, 0x01, 0x00, 0x01, 0x0c, 0x01, | |
| 192 | }; | |
| 193 | return sfx_data[offset & 0x0f]; | |
| 194 | } | |
| 195 | } | |
| 196 | else | |
| 197 | { | |
| 198 | if (superfx_access_ram(m_superfx)) | |
| 199 | return sfx_ram[offset & 0xfffff]; | |
| 200 | } | |
| 201 | ||
| 202 | return 0xff; // should be open bus... | |
| 203 | } | |
| 204 | ||
| 205 | WRITE8_MEMBER( sns_rom_superfx_device::write_h ) | |
| 206 | { | |
| 207 | UINT16 address = offset & 0xffff; | |
| 208 | if (offset < 0x400000) | |
| 209 | { | |
| 210 | if (address >= 0x6000 && address < 0x8000) | |
| 211 | { | |
| 212 | if (superfx_access_ram(m_superfx)) | |
| 213 | sfx_ram[offset & 0x1fff] = data; | |
| 214 | } | |
| 215 | } | |
| 216 | else if (offset >= 0x600000) | |
| 217 | { | |
| 218 | if (superfx_access_ram(m_superfx)) | |
| 219 | sfx_ram[offset & 0xfffff] = data; | |
| 220 | } | |
| 221 | } | |
| 222 |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_SFX_H | |
| 2 | #define __SNS_SFX_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | #include "machine/sns_rom.h" | |
| 6 | #include "cpu/superfx/superfx.h" | |
| 7 | ||
| 8 | ||
| 9 | // ======================> sns_rom_superfx_device | |
| 10 | ||
| 11 | class sns_rom_superfx_device : public sns_rom_device | |
| 12 | { | |
| 13 | public: | |
| 14 | // construction/destruction | |
| 15 | sns_rom_superfx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 16 | ||
| 17 | // device-level overrides | |
| 18 | virtual void device_start(); | |
| 19 | virtual void device_config_complete() { m_shortname = "sns_rom_superfx"; } | |
| 20 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 21 | ||
| 22 | required_device<device_t> m_superfx; | |
| 23 | ||
| 24 | // additional reading and writing | |
| 25 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 26 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 27 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 28 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 29 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 30 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 31 | ||
| 32 | virtual DECLARE_READ8_MEMBER(superfx_r_bank1); | |
| 33 | virtual DECLARE_READ8_MEMBER(superfx_r_bank2); | |
| 34 | virtual DECLARE_READ8_MEMBER(superfx_r_bank3); | |
| 35 | virtual DECLARE_WRITE8_MEMBER(superfx_w_bank1); | |
| 36 | virtual DECLARE_WRITE8_MEMBER(superfx_w_bank2); | |
| 37 | virtual DECLARE_WRITE8_MEMBER(superfx_w_bank3); | |
| 38 | virtual DECLARE_WRITE_LINE_MEMBER(snes_extern_irq_w); | |
| 39 | ||
| 40 | ||
| 41 | UINT8 sfx_ram[0x200000]; | |
| 42 | }; | |
| 43 | ||
| 44 | ||
| 45 | // device type definition | |
| 46 | extern const device_type SNS_LOROM_SUPERFX; | |
| 47 | ||
| 48 | #endif |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | Super NES/Famicom (LoROM) cartridge emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Copyright MESS Team. | |
| 6 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 7 | ||
| 8 | ***********************************************************************************************************/ | |
| 9 | ||
| 10 | ||
| 11 | #include "emu.h" | |
| 12 | #include "machine/sns_rom.h" | |
| 13 | ||
| 14 | ||
| 15 | //------------------------------------------------- | |
| 16 | // sns_rom_device - constructor | |
| 17 | //------------------------------------------------- | |
| 18 | ||
| 19 | const device_type SNS_LOROM = &device_creator<sns_rom_device>; | |
| 20 | const device_type SNS_LOROM_OBC1 = &device_creator<sns_rom_obc1_device>; | |
| 21 | // LoROM pirate carts with protection | |
| 22 | const device_type SNS_LOROM_POKEMON = &device_creator<sns_rom_pokemon_device>; | |
| 23 | ||
| 24 | ||
| 25 | sns_rom_device::sns_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) | |
| 26 | : device_t(mconfig, type, name, tag, owner, clock), | |
| 27 | device_sns_cart_interface( mconfig, *this ) | |
| 28 | { | |
| 29 | } | |
| 30 | ||
| 31 | sns_rom_device::sns_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 32 | : device_t(mconfig, SNS_LOROM, "SNES Cart (LoROM)", tag, owner, clock), | |
| 33 | device_sns_cart_interface( mconfig, *this ) | |
| 34 | { | |
| 35 | } | |
| 36 | ||
| 37 | sns_rom_pokemon_device::sns_rom_pokemon_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 38 | : sns_rom_device(mconfig, SNS_LOROM_POKEMON, "SNES Pirate Carts with Protection", tag, owner, clock) | |
| 39 | { | |
| 40 | } | |
| 41 | ||
| 42 | sns_rom_obc1_device::sns_rom_obc1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 43 | : sns_rom_device(mconfig, SNS_LOROM_OBC1, "SNES Cart (LoROM) + OBC-1", tag, owner, clock) | |
| 44 | { | |
| 45 | } | |
| 46 | ||
| 47 | ||
| 48 | void sns_rom_device::device_start() | |
| 49 | { | |
| 50 | memset(rom_bank_map, 0, sizeof(rom_bank_map)); | |
| 51 | } | |
| 52 | ||
| 53 | void sns_rom_pokemon_device::device_start() | |
| 54 | { | |
| 55 | m_latch = 0; | |
| 56 | save_item(NAME(m_latch)); | |
| 57 | } | |
| 58 | ||
| 59 | void sns_rom_obc1_device::device_start() | |
| 60 | { | |
| 61 | memset(m_ram, 0xff, sizeof(m_ram)); | |
| 62 | // or from rom? | |
| 63 | m_offset = (m_ram[0x1ff5] & 0x01) ? 0x1800 : 0x1c00; | |
| 64 | m_address = (m_ram[0x1ff6] & 0x7f); | |
| 65 | m_shift = (m_ram[0x1ff6] & 0x03) << 1; | |
| 66 | ||
| 67 | save_item(NAME(m_ram)); | |
| 68 | save_item(NAME(m_address)); | |
| 69 | save_item(NAME(m_offset)); | |
| 70 | save_item(NAME(m_shift)); | |
| 71 | } | |
| 72 | ||
| 73 | ||
| 74 | /*------------------------------------------------- | |
| 75 | mapper specific handlers | |
| 76 | -------------------------------------------------*/ | |
| 77 | ||
| 78 | READ8_MEMBER(sns_rom_device::read_l) | |
| 79 | { | |
| 80 | return read_h(space, offset); | |
| 81 | } | |
| 82 | ||
| 83 | READ8_MEMBER(sns_rom_device::read_h) | |
| 84 | { | |
| 85 | UINT8 value = 0xff; | |
| 86 | UINT16 address = offset & 0xffff; | |
| 87 | ||
| 88 | if (offset < 0x700000) | |
| 89 | { | |
| 90 | int bank = offset / 0x10000; | |
| 91 | value = m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 92 | } | |
| 93 | else | |
| 94 | { | |
| 95 | if (address < 0x8000) | |
| 96 | { | |
| 97 | if (m_nvram_size > 0x8000) | |
| 98 | { | |
| 99 | // In this case, SRAM is mapped in 0x8000 chunks at diff offsets: 0x700000-0x707fff, 0x710000-0x717fff, etc. | |
| 100 | int mask = m_nvram_size - 1; | |
| 101 | offset = ((offset - 0x700000) / 0x10000) * 0x8000 + (offset & 0x7fff); | |
| 102 | value = m_nvram[offset & mask]; | |
| 103 | } | |
| 104 | else if (m_nvram_size > 0) | |
| 105 | { | |
| 106 | int mask = m_nvram_size - 1; /* Limit SRAM size to what's actually present */ | |
| 107 | value = m_nvram[offset & mask]; | |
| 108 | } | |
| 109 | else | |
| 110 | value = 0xff; // this should never happened... | |
| 111 | } | |
| 112 | else | |
| 113 | { | |
| 114 | int bank = offset / 0x10000; | |
| 115 | value = m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 116 | } | |
| 117 | } | |
| 118 | return value; | |
| 119 | } | |
| 120 | ||
| 121 | WRITE8_MEMBER(sns_rom_device::write_l) | |
| 122 | { | |
| 123 | write_h(space, offset, data); | |
| 124 | } | |
| 125 | ||
| 126 | WRITE8_MEMBER(sns_rom_device::write_h) | |
| 127 | { | |
| 128 | if (offset >= 0x700000) // SRAM | |
| 129 | { | |
| 130 | if (m_nvram_size > 0x8000) | |
| 131 | { | |
| 132 | // In this case, SRAM is mapped in 0x8000 chunks at diff offsets: 0x700000-0x707fff, 0x710000-0x717fff, etc. | |
| 133 | int mask = m_nvram_size - 1; | |
| 134 | offset = ((offset - 0x700000) / 0x10000) * 0x8000 + (offset & 0x7fff); | |
| 135 | m_nvram[offset & mask] = data; | |
| 136 | } | |
| 137 | else if (m_nvram_size > 0) | |
| 138 | { | |
| 139 | int mask = m_nvram_size - 1; /* Limit SRAM size to what's actually present */ | |
| 140 | m_nvram[offset & mask] = data; | |
| 141 | } | |
| 142 | } | |
| 143 | } | |
| 144 | ||
| 145 | ||
| 146 | ||
| 147 | // Lo-ROM + Protection device | |
| 148 | ||
| 149 | READ8_MEMBER( sns_rom_pokemon_device::chip_read ) | |
| 150 | { | |
| 151 | return BITSWAP8(m_latch,0,6,7,1,2,3,4,5); | |
| 152 | } | |
| 153 | ||
| 154 | WRITE8_MEMBER( sns_rom_pokemon_device::chip_write ) | |
| 155 | { | |
| 156 | m_latch = data; | |
| 157 | } | |
| 158 | ||
| 159 | ||
| 160 | // Lo-ROM + OBC-1 (used by Metal Combat - Falcon's Revenge) | |
| 161 | // same as above but additional read/write handling for the add-on chip | |
| 162 | ||
| 163 | /*************************************************************************** | |
| 164 | ||
| 165 | Based on C++ implementation by Byuu in BSNES. | |
| 166 | ||
| 167 | Byuu's code is released under GNU General Public License | |
| 168 | version 2 as published by the Free Software Foundation. | |
| 169 | ||
| 170 | The implementation below is released under the MAME license | |
| 171 | for use in MAME, MESS and derivatives by permission of Byuu | |
| 172 | ||
| 173 | Copyright (for the implementation below) MESS Team. | |
| 174 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 175 | ||
| 176 | ***********************************************************************************************************/ | |
| 177 | ||
| 178 | ||
| 179 | READ8_MEMBER( sns_rom_obc1_device::chip_read ) | |
| 180 | { | |
| 181 | UINT16 address = offset & 0x1fff; | |
| 182 | UINT8 value; | |
| 183 | ||
| 184 | switch (address) | |
| 185 | { | |
| 186 | case 0x1ff0: | |
| 187 | value = m_ram[m_offset + (m_address << 2) + 0]; | |
| 188 | break; | |
| 189 | ||
| 190 | case 0x1ff1: | |
| 191 | value = m_ram[m_offset + (m_address << 2) + 1]; | |
| 192 | break; | |
| 193 | ||
| 194 | case 0x1ff2: | |
| 195 | value = m_ram[m_offset + (m_address << 2) + 2]; | |
| 196 | break; | |
| 197 | ||
| 198 | case 0x1ff3: | |
| 199 | value = m_ram[m_offset + (m_address << 2) + 3]; | |
| 200 | break; | |
| 201 | ||
| 202 | case 0x1ff4: | |
| 203 | value = m_ram[m_offset + (m_address >> 2) + 0x200]; | |
| 204 | break; | |
| 205 | ||
| 206 | default: | |
| 207 | value = m_ram[address]; | |
| 208 | break; | |
| 209 | } | |
| 210 | ||
| 211 | return value; | |
| 212 | } | |
| 213 | ||
| 214 | ||
| 215 | WRITE8_MEMBER( sns_rom_obc1_device::chip_write ) | |
| 216 | { | |
| 217 | UINT16 address = offset & 0x1fff; | |
| 218 | UINT8 temp; | |
| 219 | ||
| 220 | switch(address) | |
| 221 | { | |
| 222 | case 0x1ff0: | |
| 223 | m_ram[m_offset + (m_address << 2) + 0] = data; | |
| 224 | break; | |
| 225 | ||
| 226 | case 0x1ff1: | |
| 227 | m_ram[m_offset + (m_address << 2) + 1] = data; | |
| 228 | break; | |
| 229 | ||
| 230 | case 0x1ff2: | |
| 231 | m_ram[m_offset + (m_address << 2) + 2] = data; | |
| 232 | break; | |
| 233 | ||
| 234 | case 0x1ff3: | |
| 235 | m_ram[m_offset + (m_address << 2) + 3] = data; | |
| 236 | break; | |
| 237 | ||
| 238 | case 0x1ff4: | |
| 239 | temp = m_ram[m_offset + (m_address >> 2) + 0x200]; | |
| 240 | temp = (temp & ~(3 << m_shift)) | ((data & 0x03) << m_shift); | |
| 241 | m_ram[m_offset + (m_address >> 2) + 0x200] = temp; | |
| 242 | break; | |
| 243 | ||
| 244 | case 0x1ff5: | |
| 245 | m_offset = (data & 0x01) ? 0x1800 : 0x1c00; | |
| 246 | m_ram[address & 0x1fff] = data; | |
| 247 | break; | |
| 248 | ||
| 249 | case 0x1ff6: | |
| 250 | m_address = data & 0x7f; | |
| 251 | m_shift = (data & 0x03) << 1; | |
| 252 | m_ram[address & 0x1fff] = data; | |
| 253 | break; | |
| 254 | ||
| 255 | default: | |
| 256 | m_ram[address & 0x1fff] = data; | |
| 257 | break; | |
| 258 | } | |
| 259 | } | |
| 260 |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_ROM_H | |
| 2 | #define __SNS_ROM_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | ||
| 6 | ||
| 7 | // ======================> sns_rom_device | |
| 8 | ||
| 9 | class sns_rom_device : public device_t, | |
| 10 | public device_sns_cart_interface | |
| 11 | { | |
| 12 | public: | |
| 13 | // construction/destruction | |
| 14 | sns_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 15 | sns_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 16 | ||
| 17 | // device-level overrides | |
| 18 | virtual void device_start(); | |
| 19 | virtual void device_config_complete() { m_shortname = "sns_rom"; } | |
| 20 | ||
| 21 | // reading and writing | |
| 22 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 23 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 24 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 25 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 26 | }; | |
| 27 | ||
| 28 | // ======================> sns_rom_pokemon_device | |
| 29 | ||
| 30 | class sns_rom_pokemon_device : public sns_rom_device | |
| 31 | { | |
| 32 | public: | |
| 33 | // construction/destruction | |
| 34 | sns_rom_pokemon_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 35 | ||
| 36 | // device-level overrides | |
| 37 | virtual void device_start(); | |
| 38 | virtual void device_config_complete() { m_shortname = "sns_rom_pokemon"; } | |
| 39 | ||
| 40 | // reading and writing | |
| 41 | virtual DECLARE_READ8_MEMBER(chip_read); // protection device | |
| 42 | virtual DECLARE_WRITE8_MEMBER(chip_write); // protection device | |
| 43 | UINT8 m_latch; | |
| 44 | }; | |
| 45 | ||
| 46 | // ======================> sns_rom_obc1_device | |
| 47 | ||
| 48 | class sns_rom_obc1_device : public sns_rom_device | |
| 49 | { | |
| 50 | public: | |
| 51 | // construction/destruction | |
| 52 | sns_rom_obc1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 53 | ||
| 54 | // device-level overrides | |
| 55 | virtual void device_start(); | |
| 56 | virtual void device_config_complete() { m_shortname = "sns_rom_obc1"; } | |
| 57 | ||
| 58 | // additional reading and writing | |
| 59 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 60 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 61 | ||
| 62 | int m_address; | |
| 63 | int m_offset; | |
| 64 | int m_shift; | |
| 65 | UINT8 m_ram[0x2000]; | |
| 66 | }; | |
| 67 | ||
| 68 | ||
| 69 | // device type definition | |
| 70 | extern const device_type SNS_LOROM; | |
| 71 | extern const device_type SNS_LOROM_OBC1; | |
| 72 | extern const device_type SNS_LOROM_POKEMON; | |
| 73 | ||
| 74 | #endif |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | S-DD1 add-on chip emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Based on Andreas Naive Public Domain code. | |
| 6 | Code ported by MooglyGuy and updated to slots by Fabio Priuli. | |
| 7 | ||
| 8 | Copyright MESS Team. | |
| 9 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 10 | ||
| 11 | ***********************************************************************************************************/ | |
| 12 | ||
| 13 | ||
| 14 | #include "emu.h" | |
| 15 | #include "machine/sns_sdd1.h" | |
| 16 | ||
| 17 | ||
| 18 | #define SSD1_ADD(addr)\ | |
| 19 | mmc[(addr >> 20) & 3] + (addr & 0x0fffff) | |
| 20 | ||
| 21 | ||
| 22 | // Input Manager | |
| 23 | ||
| 24 | void SDD1__IM::IM_prepareDecomp(UINT32 in_buf) | |
| 25 | { | |
| 26 | m_byte_ptr = in_buf; | |
| 27 | m_bit_count = 4; | |
| 28 | } | |
| 29 | ||
| 30 | UINT8 SDD1__IM::IM_getCodeword(UINT8 *ROM, UINT32 *mmc, const UINT8 code_len) | |
| 31 | { | |
| 32 | UINT8 codeword = ROM[SSD1_ADD(m_byte_ptr)] << m_bit_count; | |
| 33 | ||
| 34 | ++m_bit_count; | |
| 35 | ||
| 36 | if (codeword & 0x80) | |
| 37 | { | |
| 38 | codeword |= ROM[SSD1_ADD((m_byte_ptr + 1))] >> (9 - m_bit_count); | |
| 39 | m_bit_count += code_len; | |
| 40 | } | |
| 41 | ||
| 42 | if (m_bit_count & 0x08) | |
| 43 | { | |
| 44 | m_byte_ptr++; | |
| 45 | m_bit_count &= 0x07; | |
| 46 | } | |
| 47 | ||
| 48 | return codeword; | |
| 49 | } | |
| 50 | ||
| 51 | // GCD | |
| 52 | ||
| 53 | void SDD1__GCD::GCD_getRunCount(UINT8 *ROM, UINT32 *mmc, UINT8 code_num, UINT8* MPScount, UINT8* LPSind) | |
| 54 | { | |
| 55 | const UINT8 run_count[] = | |
| 56 | { | |
| 57 | 0x00, 0x00, 0x01, 0x00, 0x03, 0x01, 0x02, 0x00, | |
| 58 | 0x07, 0x03, 0x05, 0x01, 0x06, 0x02, 0x04, 0x00, | |
| 59 | 0x0f, 0x07, 0x0b, 0x03, 0x0d, 0x05, 0x09, 0x01, | |
| 60 | 0x0e, 0x06, 0x0a, 0x02, 0x0c, 0x04, 0x08, 0x00, | |
| 61 | 0x1f, 0x0f, 0x17, 0x07, 0x1b, 0x0b, 0x13, 0x03, | |
| 62 | 0x1d, 0x0d, 0x15, 0x05, 0x19, 0x09, 0x11, 0x01, | |
| 63 | 0x1e, 0x0e, 0x16, 0x06, 0x1a, 0x0a, 0x12, 0x02, | |
| 64 | 0x1c, 0x0c, 0x14, 0x04, 0x18, 0x08, 0x10, 0x00, | |
| 65 | 0x3f, 0x1f, 0x2f, 0x0f, 0x37, 0x17, 0x27, 0x07, | |
| 66 | 0x3b, 0x1b, 0x2b, 0x0b, 0x33, 0x13, 0x23, 0x03, | |
| 67 | 0x3d, 0x1d, 0x2d, 0x0d, 0x35, 0x15, 0x25, 0x05, | |
| 68 | 0x39, 0x19, 0x29, 0x09, 0x31, 0x11, 0x21, 0x01, | |
| 69 | 0x3e, 0x1e, 0x2e, 0x0e, 0x36, 0x16, 0x26, 0x06, | |
| 70 | 0x3a, 0x1a, 0x2a, 0x0a, 0x32, 0x12, 0x22, 0x02, | |
| 71 | 0x3c, 0x1c, 0x2c, 0x0c, 0x34, 0x14, 0x24, 0x04, | |
| 72 | 0x38, 0x18, 0x28, 0x08, 0x30, 0x10, 0x20, 0x00, | |
| 73 | 0x7f, 0x3f, 0x5f, 0x1f, 0x6f, 0x2f, 0x4f, 0x0f, | |
| 74 | 0x77, 0x37, 0x57, 0x17, 0x67, 0x27, 0x47, 0x07, | |
| 75 | 0x7b, 0x3b, 0x5b, 0x1b, 0x6b, 0x2b, 0x4b, 0x0b, | |
| 76 | 0x73, 0x33, 0x53, 0x13, 0x63, 0x23, 0x43, 0x03, | |
| 77 | 0x7d, 0x3d, 0x5d, 0x1d, 0x6d, 0x2d, 0x4d, 0x0d, | |
| 78 | 0x75, 0x35, 0x55, 0x15, 0x65, 0x25, 0x45, 0x05, | |
| 79 | 0x79, 0x39, 0x59, 0x19, 0x69, 0x29, 0x49, 0x09, | |
| 80 | 0x71, 0x31, 0x51, 0x11, 0x61, 0x21, 0x41, 0x01, | |
| 81 | 0x7e, 0x3e, 0x5e, 0x1e, 0x6e, 0x2e, 0x4e, 0x0e, | |
| 82 | 0x76, 0x36, 0x56, 0x16, 0x66, 0x26, 0x46, 0x06, | |
| 83 | 0x7a, 0x3a, 0x5a, 0x1a, 0x6a, 0x2a, 0x4a, 0x0a, | |
| 84 | 0x72, 0x32, 0x52, 0x12, 0x62, 0x22, 0x42, 0x02, | |
| 85 | 0x7c, 0x3c, 0x5c, 0x1c, 0x6c, 0x2c, 0x4c, 0x0c, | |
| 86 | 0x74, 0x34, 0x54, 0x14, 0x64, 0x24, 0x44, 0x04, | |
| 87 | 0x78, 0x38, 0x58, 0x18, 0x68, 0x28, 0x48, 0x08, | |
| 88 | 0x70, 0x30, 0x50, 0x10, 0x60, 0x20, 0x40, 0x00, | |
| 89 | }; | |
| 90 | ||
| 91 | UINT8 codeword = m_IM->IM_getCodeword(ROM, mmc, code_num); | |
| 92 | ||
| 93 | if (codeword & 0x80) | |
| 94 | { | |
| 95 | *LPSind = 1; | |
| 96 | *MPScount = run_count[codeword >> (code_num ^ 0x07)]; | |
| 97 | } | |
| 98 | else | |
| 99 | { | |
| 100 | *MPScount = (1 << code_num); | |
| 101 | } | |
| 102 | } | |
| 103 | ||
| 104 | // BG | |
| 105 | ||
| 106 | void SDD1__BG::BG_prepareDecomp() | |
| 107 | { | |
| 108 | m_MPScount = 0; | |
| 109 | m_LPSind = 0; | |
| 110 | } | |
| 111 | ||
| 112 | UINT8 SDD1__BG::BG_getBit(UINT8 *ROM, UINT32 *mmc, UINT8* endOfRun) | |
| 113 | { | |
| 114 | UINT8 bit; | |
| 115 | ||
| 116 | if (!(m_MPScount || m_LPSind)) | |
| 117 | { | |
| 118 | m_GCD->GCD_getRunCount(ROM, mmc, m_code_num, &(m_MPScount), &(m_LPSind)); | |
| 119 | } | |
| 120 | ||
| 121 | if (m_MPScount) | |
| 122 | { | |
| 123 | bit = 0; | |
| 124 | m_MPScount--; | |
| 125 | } | |
| 126 | else | |
| 127 | { | |
| 128 | bit = 1; | |
| 129 | m_LPSind = 0; | |
| 130 | } | |
| 131 | ||
| 132 | if (m_MPScount || m_LPSind) | |
| 133 | { | |
| 134 | (*endOfRun) = 0; | |
| 135 | } | |
| 136 | else | |
| 137 | { | |
| 138 | (*endOfRun) = 1; | |
| 139 | } | |
| 140 | ||
| 141 | return bit; | |
| 142 | } | |
| 143 | ||
| 144 | // PEM | |
| 145 | ||
| 146 | struct SDD1__PEM_state | |
| 147 | { | |
| 148 | UINT8 code_num; | |
| 149 | UINT8 nextIfMPS; | |
| 150 | UINT8 nextIfLPS; | |
| 151 | }; | |
| 152 | ||
| 153 | static const SDD1__PEM_state PEM_evolution_table[33] = | |
| 154 | { | |
| 155 | { 0,25,25}, | |
| 156 | { 0, 2, 1}, | |
| 157 | { 0, 3, 1}, | |
| 158 | { 0, 4, 2}, | |
| 159 | { 0, 5, 3}, | |
| 160 | { 1, 6, 4}, | |
| 161 | { 1, 7, 5}, | |
| 162 | { 1, 8, 6}, | |
| 163 | { 1, 9, 7}, | |
| 164 | { 2,10, 8}, | |
| 165 | { 2,11, 9}, | |
| 166 | { 2,12,10}, | |
| 167 | { 2,13,11}, | |
| 168 | { 3,14,12}, | |
| 169 | { 3,15,13}, | |
| 170 | { 3,16,14}, | |
| 171 | { 3,17,15}, | |
| 172 | { 4,18,16}, | |
| 173 | { 4,19,17}, | |
| 174 | { 5,20,18}, | |
| 175 | { 5,21,19}, | |
| 176 | { 6,22,20}, | |
| 177 | { 6,23,21}, | |
| 178 | { 7,24,22}, | |
| 179 | { 7,24,23}, | |
| 180 | { 0,26, 1}, | |
| 181 | { 1,27, 2}, | |
| 182 | { 2,28, 4}, | |
| 183 | { 3,29, 8}, | |
| 184 | { 4,30,12}, | |
| 185 | { 5,31,16}, | |
| 186 | { 6,32,18}, | |
| 187 | { 7,24,22} | |
| 188 | }; | |
| 189 | ||
| 190 | void SDD1__PEM::PEM_prepareDecomp() | |
| 191 | { | |
| 192 | for (int i = 0; i < 32; i++) | |
| 193 | { | |
| 194 | m_contextInfo[i].status = 0; | |
| 195 | m_contextInfo[i].MPS = 0; | |
| 196 | } | |
| 197 | } | |
| 198 | ||
| 199 | UINT8 SDD1__PEM::PEM_getBit(UINT8 *ROM, UINT32 *mmc, UINT8 context) | |
| 200 | { | |
| 201 | UINT8 endOfRun; | |
| 202 | UINT8 bit; | |
| 203 | ||
| 204 | SDD1__PEM_ContextInfo *pContInfo = &(m_contextInfo)[context]; | |
| 205 | UINT8 currStatus = pContInfo->status; | |
| 206 | const SDD1__PEM_state* pState = &(PEM_evolution_table[currStatus]); | |
| 207 | UINT8 currentMPS = pContInfo->MPS; | |
| 208 | ||
| 209 | bit = m_BG[pState->code_num]->BG_getBit(ROM, mmc, &endOfRun); | |
| 210 | ||
| 211 | if (endOfRun) | |
| 212 | { | |
| 213 | if (bit) | |
| 214 | { | |
| 215 | if (!(currStatus & 0xfe)) | |
| 216 | { | |
| 217 | (pContInfo->MPS) ^= 0x01; | |
| 218 | } | |
| 219 | pContInfo->status = pState->nextIfLPS; | |
| 220 | } | |
| 221 | else | |
| 222 | { | |
| 223 | pContInfo->status = pState->nextIfMPS; | |
| 224 | } | |
| 225 | } | |
| 226 | ||
| 227 | return bit ^ currentMPS; | |
| 228 | } | |
| 229 | ||
| 230 | // CM | |
| 231 | ||
| 232 | void SDD1__CM::CM_prepareDecomp(UINT8 *ROM, UINT32 *mmc, UINT32 first_byte) | |
| 233 | { | |
| 234 | INT32 i = 0; | |
| 235 | m_bitplanesInfo = ROM[SSD1_ADD(first_byte)] & 0xc0; | |
| 236 | m_contextBitsInfo = ROM[SSD1_ADD(first_byte)] & 0x30; | |
| 237 | m_bit_number = 0; | |
| 238 | for (i = 0; i < 8; i++) | |
| 239 | { | |
| 240 | m_prevBitplaneBits[i] = 0; | |
| 241 | } | |
| 242 | switch (m_bitplanesInfo) | |
| 243 | { | |
| 244 | case 0x00: | |
| 245 | m_currBitplane = 1; | |
| 246 | break; | |
| 247 | case 0x40: | |
| 248 | m_currBitplane = 7; | |
| 249 | break; | |
| 250 | case 0x80: | |
| 251 | m_currBitplane = 3; | |
| 252 | break; | |
| 253 | } | |
| 254 | } | |
| 255 | ||
| 256 | UINT8 SDD1__CM::CM_getBit(UINT8 *ROM, UINT32 *mmc) | |
| 257 | { | |
| 258 | UINT8 currContext; | |
| 259 | UINT16 *context_bits; | |
| 260 | UINT8 bit = 0; | |
| 261 | ||
| 262 | switch (m_bitplanesInfo) | |
| 263 | { | |
| 264 | case 0x00: | |
| 265 | m_currBitplane ^= 0x01; | |
| 266 | break; | |
| 267 | case 0x40: | |
| 268 | m_currBitplane ^= 0x01; | |
| 269 | if (!(m_bit_number & 0x7f)) | |
| 270 | m_currBitplane = ((m_currBitplane + 2) & 0x07); | |
| 271 | break; | |
| 272 | case 0x80: | |
| 273 | m_currBitplane ^= 0x01; | |
| 274 | if (!(m_bit_number & 0x7f)) | |
| 275 | m_currBitplane ^= 0x02; | |
| 276 | break; | |
| 277 | case 0xc0: | |
| 278 | m_currBitplane = m_bit_number & 0x07; | |
| 279 | break; | |
| 280 | } | |
| 281 | ||
| 282 | context_bits = &(m_prevBitplaneBits)[m_currBitplane]; | |
| 283 | ||
| 284 | currContext = (m_currBitplane & 0x01) << 4; | |
| 285 | switch (m_contextBitsInfo) | |
| 286 | { | |
| 287 | case 0x00: | |
| 288 | currContext |= ((*context_bits & 0x01c0) >> 5) | (*context_bits & 0x0001); | |
| 289 | break; | |
| 290 | case 0x10: | |
| 291 | currContext |= ((*context_bits & 0x0180) >> 5) | (*context_bits & 0x0001); | |
| 292 | break; | |
| 293 | case 0x20: | |
| 294 | currContext |= ((*context_bits & 0x00c0) >> 5) | (*context_bits & 0x0001); | |
| 295 | break; | |
| 296 | case 0x30: | |
| 297 | currContext |= ((*context_bits & 0x0180) >> 5) | (*context_bits & 0x0003); | |
| 298 | break; | |
| 299 | } | |
| 300 | ||
| 301 | bit = m_PEM->PEM_getBit(ROM, mmc, currContext); | |
| 302 | ||
| 303 | *context_bits <<= 1; | |
| 304 | *context_bits |= bit; | |
| 305 | ||
| 306 | m_bit_number++; | |
| 307 | ||
| 308 | return bit; | |
| 309 | } | |
| 310 | ||
| 311 | // OL | |
| 312 | ||
| 313 | void SDD1__OL::OL_prepareDecomp(UINT8 *ROM, UINT32 *mmc, UINT32 first_byte, UINT16 out_len, UINT8 *out_buf) | |
| 314 | { | |
| 315 | m_bitplanesInfo = ROM[SSD1_ADD(first_byte)] & 0xc0; | |
| 316 | m_length = out_len; | |
| 317 | m_buffer = out_buf; | |
| 318 | } | |
| 319 | ||
| 320 | void SDD1__OL::OL_launch(UINT8 *ROM, UINT32 *mmc) | |
| 321 | { | |
| 322 | UINT8 i; | |
| 323 | UINT8 register1 = 0, register2 = 0; | |
| 324 | ||
| 325 | switch (m_bitplanesInfo) | |
| 326 | { | |
| 327 | case 0x00: | |
| 328 | case 0x40: | |
| 329 | case 0x80: | |
| 330 | i = 1; | |
| 331 | do | |
| 332 | { // if length == 0, we output 2^16 bytes | |
| 333 | if (!i) | |
| 334 | { | |
| 335 | *(m_buffer++) = register2; | |
| 336 | i = ~i; | |
| 337 | } | |
| 338 | else | |
| 339 | { | |
| 340 | for (register1 = register2 = 0, i = 0x80; i; i >>= 1) | |
| 341 | { | |
| 342 | if (m_CM->CM_getBit(ROM, mmc)) | |
| 343 | register1 |= i; | |
| 344 | ||
| 345 | if (m_CM->CM_getBit(ROM, mmc)) | |
| 346 | register2 |= i; | |
| 347 | } | |
| 348 | *(m_buffer++) = register1; | |
| 349 | } | |
| 350 | } while (--(m_length)); | |
| 351 | break; | |
| 352 | case 0xc0: | |
| 353 | do | |
| 354 | { | |
| 355 | for (register1 = 0, i = 0x01; i; i <<= 1) | |
| 356 | { | |
| 357 | if (m_CM->CM_getBit(ROM, mmc)) | |
| 358 | { | |
| 359 | register1 |= i; | |
| 360 | } | |
| 361 | } | |
| 362 | *(m_buffer++) = register1; | |
| 363 | } while (--(m_length)); | |
| 364 | break; | |
| 365 | } | |
| 366 | } | |
| 367 | ||
| 368 | // S-DD1 | |
| 369 | ||
| 370 | SDD1__emu::SDD1__emu(running_machine &machine) | |
| 371 | : m_machine(machine) | |
| 372 | { | |
| 373 | m_IM = auto_alloc(machine, SDD1__IM()); | |
| 374 | m_GCD = auto_alloc(machine, SDD1__GCD(m_IM)); | |
| 375 | m_BG0 = auto_alloc(machine, SDD1__BG(m_GCD, 0)); | |
| 376 | m_BG1 = auto_alloc(machine, SDD1__BG(m_GCD, 1)); | |
| 377 | m_BG2 = auto_alloc(machine, SDD1__BG(m_GCD, 2)); | |
| 378 | m_BG3 = auto_alloc(machine, SDD1__BG(m_GCD, 3)); | |
| 379 | m_BG4 = auto_alloc(machine, SDD1__BG(m_GCD, 4)); | |
| 380 | m_BG5 = auto_alloc(machine, SDD1__BG(m_GCD, 5)); | |
| 381 | m_BG6 = auto_alloc(machine, SDD1__BG(m_GCD, 6)); | |
| 382 | m_BG7 = auto_alloc(machine, SDD1__BG(m_GCD, 7)); | |
| 383 | m_PEM = auto_alloc(machine, SDD1__PEM(m_BG0, m_BG1, m_BG2, m_BG3, | |
| 384 | m_BG4, m_BG5, m_BG6, m_BG7)); | |
| 385 | m_CM = auto_alloc(machine, SDD1__CM(m_PEM)); | |
| 386 | m_OL = auto_alloc(machine, SDD1__OL(m_CM)); | |
| 387 | } | |
| 388 | ||
| 389 | void SDD1__emu::SDD1emu_decompress(UINT8 *ROM, UINT32 *mmc, UINT32 in_buf, UINT16 out_len, UINT8 *out_buf) | |
| 390 | { | |
| 391 | m_IM->IM_prepareDecomp(in_buf); | |
| 392 | m_BG0->BG_prepareDecomp(); | |
| 393 | m_BG1->BG_prepareDecomp(); | |
| 394 | m_BG2->BG_prepareDecomp(); | |
| 395 | m_BG3->BG_prepareDecomp(); | |
| 396 | m_BG4->BG_prepareDecomp(); | |
| 397 | m_BG5->BG_prepareDecomp(); | |
| 398 | m_BG6->BG_prepareDecomp(); | |
| 399 | m_BG7->BG_prepareDecomp(); | |
| 400 | m_PEM->PEM_prepareDecomp(); | |
| 401 | m_CM->CM_prepareDecomp(ROM, mmc, in_buf); | |
| 402 | m_OL->OL_prepareDecomp(ROM, mmc, in_buf, out_len, out_buf); | |
| 403 | ||
| 404 | m_OL->OL_launch(ROM, mmc); | |
| 405 | } | |
| 406 | ||
| 407 | ||
| 408 | //------------------------------------------------- | |
| 409 | // sns_rom_sdd1_device - constructor | |
| 410 | //------------------------------------------------- | |
| 411 | ||
| 412 | const device_type SNS_LOROM_SDD1 = &device_creator<sns_rom_sdd1_device>; | |
| 413 | ||
| 414 | ||
| 415 | sns_rom_sdd1_device::sns_rom_sdd1_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) | |
| 416 | : device_t(mconfig, type, name, tag, owner, clock), | |
| 417 | device_sns_cart_interface( mconfig, *this ) | |
| 418 | { | |
| 419 | } | |
| 420 | ||
| 421 | sns_rom_sdd1_device::sns_rom_sdd1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 422 | : device_t(mconfig, SNS_LOROM_SDD1, "SNES Cart + S-DD1", tag, owner, clock), | |
| 423 | device_sns_cart_interface( mconfig, *this ) | |
| 424 | { | |
| 425 | } | |
| 426 | ||
| 427 | ||
| 428 | void sns_rom_sdd1_device::device_start() | |
| 429 | { | |
| 430 | UINT8 i; | |
| 431 | ||
| 432 | m_sdd1_enable = 0x00; | |
| 433 | m_xfer_enable = 0x00; | |
| 434 | ||
| 435 | m_mmc[0] = 0 << 20; | |
| 436 | m_mmc[1] = 1 << 20; | |
| 437 | m_mmc[2] = 2 << 20; | |
| 438 | m_mmc[3] = 3 << 20; | |
| 439 | ||
| 440 | for(i = 0; i < 8; i++) | |
| 441 | { | |
| 442 | m_dma[i].addr = 0; | |
| 443 | m_dma[i].size = 0; | |
| 444 | } | |
| 445 | ||
| 446 | m_sdd1emu = auto_alloc(machine(), SDD1__emu(machine())); | |
| 447 | ||
| 448 | m_buffer.data = (UINT8*)auto_alloc_array(machine(), UINT8, 0x10000); | |
| 449 | m_buffer.ready = 0; | |
| 450 | ||
| 451 | save_item(NAME(m_sdd1_enable)); | |
| 452 | save_item(NAME(m_xfer_enable)); | |
| 453 | save_item(NAME(m_mmc)); | |
| 454 | // TODO: save decomp-related and dma-related items and fix their restore... | |
| 455 | } | |
| 456 | ||
| 457 | /*------------------------------------------------- | |
| 458 | mapper specific handlers | |
| 459 | -------------------------------------------------*/ | |
| 460 | ||
| 461 | READ8_MEMBER( sns_rom_sdd1_device::chip_read ) | |
| 462 | { | |
| 463 | UINT16 addr = offset & 0xffff; | |
| 464 | ||
| 465 | switch (addr) | |
| 466 | { | |
| 467 | case 0x4804: | |
| 468 | return (m_mmc[0] >> 20) & 7; | |
| 469 | case 0x4805: | |
| 470 | return (m_mmc[1] >> 20) & 7; | |
| 471 | case 0x4806: | |
| 472 | return (m_mmc[2] >> 20) & 7; | |
| 473 | case 0x4807: | |
| 474 | return (m_mmc[3] >> 20) & 7; | |
| 475 | } | |
| 476 | ||
| 477 | // we should never get here, but... | |
| 478 | return 0; | |
| 479 | } | |
| 480 | ||
| 481 | ||
| 482 | WRITE8_MEMBER( sns_rom_sdd1_device::chip_write ) | |
| 483 | { | |
| 484 | UINT16 addr = offset & 0xffff; | |
| 485 | ||
| 486 | if ((addr & 0x4380) == 0x4300) | |
| 487 | { | |
| 488 | UINT8 channel = (addr >> 4) & 7; | |
| 489 | switch(addr & 0xf) | |
| 490 | { | |
| 491 | case 2: | |
| 492 | m_dma[channel].addr = (m_dma[channel].addr & 0xffff00) + (data << 0); | |
| 493 | break; | |
| 494 | case 3: | |
| 495 | m_dma[channel].addr = (m_dma[channel].addr & 0xff00ff) + (data << 8); | |
| 496 | break; | |
| 497 | case 4: | |
| 498 | m_dma[channel].addr = (m_dma[channel].addr & 0x00ffff) + (data << 16); | |
| 499 | break; | |
| 500 | ||
| 501 | case 5: | |
| 502 | m_dma[channel].size = (m_dma[channel].size & 0xff00) + (data << 0); | |
| 503 | break; | |
| 504 | case 6: | |
| 505 | m_dma[channel].size = (m_dma[channel].size & 0x00ff) + (data << 8); | |
| 506 | break; | |
| 507 | } | |
| 508 | return; | |
| 509 | } | |
| 510 | ||
| 511 | switch(addr) | |
| 512 | { | |
| 513 | case 0x4800: | |
| 514 | m_sdd1_enable = data; | |
| 515 | break; | |
| 516 | case 0x4801: | |
| 517 | m_xfer_enable = data; | |
| 518 | break; | |
| 519 | ||
| 520 | case 0x4804: | |
| 521 | m_mmc[0] = (data & 7) << 20; | |
| 522 | break; | |
| 523 | case 0x4805: | |
| 524 | m_mmc[1] = (data & 7) << 20; | |
| 525 | break; | |
| 526 | case 0x4806: | |
| 527 | m_mmc[2] = (data & 7) << 20; | |
| 528 | break; | |
| 529 | case 0x4807: | |
| 530 | m_mmc[3] = (data & 7) << 20; | |
| 531 | break; | |
| 532 | } | |
| 533 | ||
| 534 | } | |
| 535 | ||
| 536 | UINT8 sns_rom_sdd1_device::read_helper(UINT32 addr) | |
| 537 | { | |
| 538 | if (m_sdd1_enable & m_xfer_enable) | |
| 539 | { | |
| 540 | // at least one channel has S-DD1 decompression enabled... | |
| 541 | for (int i = 0; i < 8; i++) | |
| 542 | { | |
| 543 | if (m_sdd1_enable & m_xfer_enable & (1 << i)) | |
| 544 | { | |
| 545 | // S-DD1 always uses fixed transfer mode, so address will not change during transfer | |
| 546 | if ((addr + 0xc00000) == m_dma[i].addr) | |
| 547 | { | |
| 548 | UINT8 data; | |
| 549 | if (!m_buffer.ready) | |
| 550 | { | |
| 551 | // first byte read for channel performs full decompression. | |
| 552 | // this really should stream byte-by-byte, but it's not necessary since the size is known | |
| 553 | m_buffer.offset = 0; | |
| 554 | m_buffer.size = m_dma[i].size ? m_dma[i].size : 65536; | |
| 555 | ||
| 556 | // SDD1_emu calls this function; it needs to access uncompressed data; | |
| 557 | // so temporarily disable decompression mode for decompress() call. | |
| 558 | m_sdd1emu->SDD1emu_decompress(m_rom, m_mmc, addr, m_buffer.size, m_buffer.data); | |
| 559 | ||
| 560 | m_buffer.ready = 1; | |
| 561 | } | |
| 562 | ||
| 563 | // fetch a decompressed byte; once buffer is depleted, disable channel and invalidate buffer | |
| 564 | data = m_buffer.data[(UINT16)m_buffer.offset++]; | |
| 565 | if (m_buffer.offset >= m_buffer.size) | |
| 566 | { | |
| 567 | m_buffer.ready = 0; | |
| 568 | m_xfer_enable &= ~(1 << i); | |
| 569 | } | |
| 570 | ||
| 571 | return data; | |
| 572 | } | |
| 573 | } | |
| 574 | } | |
| 575 | } | |
| 576 | ||
| 577 | return m_rom[m_mmc[(addr >> 20) & 3] + (addr & 0x0fffff)]; | |
| 578 | } | |
| 579 | ||
| 580 | READ8_MEMBER(sns_rom_sdd1_device::read_l) | |
| 581 | { | |
| 582 | if (offset < 0x400000) | |
| 583 | return m_rom[rom_bank_map[offset / 0x10000] * 0x8000 + (offset & 0x7fff)]; | |
| 584 | else if (offset >= 0x700000 && (offset & 0xffff) < 0x8000 && m_nvram_size > 0) | |
| 585 | return m_nvram[offset & 0x1fff]; | |
| 586 | else | |
| 587 | return m_rom[rom_bank_map[(offset - 0x400000) / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 588 | } | |
| 589 | ||
| 590 | READ8_MEMBER(sns_rom_sdd1_device::read_h) | |
| 591 | { | |
| 592 | if (offset >= 0x400000) | |
| 593 | return read_helper(offset - 0x400000); | |
| 594 | else | |
| 595 | return read_l(space, offset); | |
| 596 | } | |
| 597 | ||
| 598 | WRITE8_MEMBER(sns_rom_sdd1_device::write_l) | |
| 599 | { | |
| 600 | if (offset >= 0x700000 && (offset & 0xffff) < 0x8000 && m_nvram_size > 0) // SRAM | |
| 601 | m_nvram[offset & 0x1fff] = data; | |
| 602 | } |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_SDD1_H | |
| 2 | #define __SNS_SDD1_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | ||
| 6 | // misc classes for the S-DD1 | |
| 7 | ||
| 8 | class SDD1__IM //Input Manager | |
| 9 | { | |
| 10 | public: | |
| 11 | SDD1__IM() {} | |
| 12 | ||
| 13 | UINT32 m_byte_ptr; | |
| 14 | UINT8 m_bit_count; | |
| 15 | ||
| 16 | void IM_prepareDecomp(UINT32 in_buf); | |
| 17 | UINT8 IM_getCodeword(UINT8 *ROM, UINT32 *mmc, const UINT8 code_len); | |
| 18 | }; | |
| 19 | ||
| 20 | class SDD1__GCD //Golomb-Code Decoder | |
| 21 | { | |
| 22 | public: | |
| 23 | SDD1__GCD(SDD1__IM* associatedIM) | |
| 24 | : m_IM(associatedIM) { } | |
| 25 | ||
| 26 | SDD1__IM* m_IM; | |
| 27 | ||
| 28 | void GCD_getRunCount(UINT8 *ROM, UINT32 *mmc, UINT8 code_num, UINT8* MPScount, UINT8* LPSind); | |
| 29 | }; | |
| 30 | ||
| 31 | class SDD1__BG // Bits Generator | |
| 32 | { | |
| 33 | public: | |
| 34 | SDD1__BG(SDD1__GCD* associatedGCD, UINT8 code) | |
| 35 | : m_code_num(code), | |
| 36 | m_GCD(associatedGCD) { } | |
| 37 | ||
| 38 | UINT8 m_code_num; | |
| 39 | UINT8 m_MPScount; | |
| 40 | UINT8 m_LPSind; | |
| 41 | SDD1__GCD* m_GCD; | |
| 42 | ||
| 43 | void BG_prepareDecomp(); | |
| 44 | UINT8 BG_getBit(UINT8 *ROM, UINT32 *mmc, UINT8* endOfRun); | |
| 45 | } ; | |
| 46 | ||
| 47 | struct SDD1__PEM_ContextInfo | |
| 48 | { | |
| 49 | UINT8 status; | |
| 50 | UINT8 MPS; | |
| 51 | }; | |
| 52 | ||
| 53 | class SDD1__PEM //Probability Estimation Module | |
| 54 | { | |
| 55 | public: | |
| 56 | SDD1__PEM( | |
| 57 | SDD1__BG* associatedBG0, SDD1__BG* associatedBG1, | |
| 58 | SDD1__BG* associatedBG2, SDD1__BG* associatedBG3, | |
| 59 | SDD1__BG* associatedBG4, SDD1__BG* associatedBG5, | |
| 60 | SDD1__BG* associatedBG6, SDD1__BG* associatedBG7) | |
| 61 | { | |
| 62 | m_BG[0] = associatedBG0; | |
| 63 | m_BG[1] = associatedBG1; | |
| 64 | m_BG[2] = associatedBG2; | |
| 65 | m_BG[3] = associatedBG3; | |
| 66 | m_BG[4] = associatedBG4; | |
| 67 | m_BG[5] = associatedBG5; | |
| 68 | m_BG[6] = associatedBG6; | |
| 69 | m_BG[7] = associatedBG7; | |
| 70 | } | |
| 71 | ||
| 72 | SDD1__PEM_ContextInfo m_contextInfo[32]; | |
| 73 | SDD1__BG* m_BG[8]; | |
| 74 | ||
| 75 | void PEM_prepareDecomp(); | |
| 76 | UINT8 PEM_getBit(UINT8 *ROM, UINT32 *mmc, UINT8 context); | |
| 77 | } ; | |
| 78 | ||
| 79 | ||
| 80 | class SDD1__CM | |
| 81 | { | |
| 82 | public: | |
| 83 | SDD1__CM(SDD1__PEM* associatedPEM) | |
| 84 | : m_PEM(associatedPEM) { } | |
| 85 | ||
| 86 | UINT8 m_bitplanesInfo; | |
| 87 | UINT8 m_contextBitsInfo; | |
| 88 | UINT8 m_bit_number; | |
| 89 | UINT8 m_currBitplane; | |
| 90 | UINT16 m_prevBitplaneBits[8]; | |
| 91 | SDD1__PEM* m_PEM; | |
| 92 | ||
| 93 | void CM_prepareDecomp(UINT8 *ROM, UINT32 *mmc, UINT32 first_byte); | |
| 94 | UINT8 CM_getBit(UINT8 *ROM, UINT32 *mmc); | |
| 95 | } ; | |
| 96 | ||
| 97 | ||
| 98 | class SDD1__OL | |
| 99 | { | |
| 100 | public: | |
| 101 | SDD1__OL(SDD1__CM* associatedCM) | |
| 102 | : m_CM(associatedCM) { } | |
| 103 | ||
| 104 | UINT8 m_bitplanesInfo; | |
| 105 | UINT16 m_length; | |
| 106 | UINT8* m_buffer; | |
| 107 | SDD1__CM* m_CM; | |
| 108 | ||
| 109 | void OL_prepareDecomp(UINT8 *ROM, UINT32 *mmc, UINT32 first_byte, UINT16 out_len, UINT8 *out_buf); | |
| 110 | void OL_launch(UINT8 *ROM, UINT32 *mmc); | |
| 111 | } ; | |
| 112 | ||
| 113 | class SDD1__emu | |
| 114 | { | |
| 115 | public: | |
| 116 | SDD1__emu(running_machine &machine); | |
| 117 | ||
| 118 | running_machine &machine() const { return m_machine; } | |
| 119 | ||
| 120 | SDD1__IM* m_IM; | |
| 121 | SDD1__GCD* m_GCD; | |
| 122 | SDD1__BG* m_BG0; SDD1__BG* m_BG1; SDD1__BG* m_BG2; SDD1__BG* m_BG3; | |
| 123 | SDD1__BG* m_BG4; SDD1__BG* m_BG5; SDD1__BG* m_BG6; SDD1__BG* m_BG7; | |
| 124 | SDD1__PEM* m_PEM; | |
| 125 | SDD1__CM* m_CM; | |
| 126 | SDD1__OL* m_OL; | |
| 127 | ||
| 128 | void SDD1emu_decompress(UINT8 *ROM, UINT32 *mmc, UINT32 in_buf, UINT16 out_len, UINT8 *out_buf); | |
| 129 | ||
| 130 | private: | |
| 131 | running_machine& m_machine; | |
| 132 | }; | |
| 133 | ||
| 134 | ||
| 135 | ||
| 136 | // ======================> sns_rom_sdd1_device | |
| 137 | ||
| 138 | class sns_rom_sdd1_device : public device_t, | |
| 139 | public device_sns_cart_interface | |
| 140 | { | |
| 141 | public: | |
| 142 | // construction/destruction | |
| 143 | sns_rom_sdd1_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 144 | sns_rom_sdd1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 145 | ||
| 146 | // device-level overrides | |
| 147 | virtual void device_start(); | |
| 148 | virtual void device_config_complete() { m_shortname = "sns_rom_sdd1"; } | |
| 149 | ||
| 150 | // reading and writing | |
| 151 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 152 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 153 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 154 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 155 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 156 | ||
| 157 | UINT8 read_helper(UINT32 offset); | |
| 158 | ||
| 159 | UINT8 m_sdd1_enable; // channel bit-mask | |
| 160 | UINT8 m_xfer_enable; // channel bit-mask | |
| 161 | UINT32 m_mmc[4]; // memory map controller ROM indices | |
| 162 | ||
| 163 | struct | |
| 164 | { | |
| 165 | UINT32 addr; // $43x2-$43x4 -- DMA transfer address | |
| 166 | UINT16 size; // $43x5-$43x6 -- DMA transfer size | |
| 167 | } m_dma[8]; | |
| 168 | ||
| 169 | SDD1__emu* m_sdd1emu; | |
| 170 | ||
| 171 | struct | |
| 172 | { | |
| 173 | UINT8 *data; // pointer to decompressed S-DD1 data (65536 bytes) | |
| 174 | UINT16 offset; // read index into S-DD1 decompression buffer | |
| 175 | UINT32 size; // length of data buffer; reads decrement counter, set ready to false at 0 | |
| 176 | UINT8 ready; // 1 when data[] is valid; 0 to invoke sdd1emu.decompress() | |
| 177 | } m_buffer; | |
| 178 | }; | |
| 179 | ||
| 180 | ||
| 181 | // device type definition | |
| 182 | extern const device_type SNS_LOROM_SDD1; | |
| 183 | ||
| 184 | #endif |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | BS-X Satellaview cartridge emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Copyright MESS Team. | |
| 6 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 7 | ||
| 8 | ***********************************************************************************************************/ | |
| 9 | ||
| 10 | ||
| 11 | // TODO: Emulate FLASH memory... (possibly using flash device?) | |
| 12 | ||
| 13 | ||
| 14 | #include "emu.h" | |
| 15 | #include "machine/sns_bsx.h" | |
| 16 | ||
| 17 | ||
| 18 | //------------------------------------------------- | |
| 19 | // sns_rom_bsx_device - constructor | |
| 20 | //------------------------------------------------- | |
| 21 | ||
| 22 | const device_type SNS_ROM_BSX = &device_creator<sns_rom_bsx_device>; | |
| 23 | const device_type SNS_LOROM_BSX = &device_creator<sns_rom_bsxlo_device>; | |
| 24 | const device_type SNS_HIROM_BSX = &device_creator<sns_rom_bsxhi_device>; | |
| 25 | const device_type SNS_BSMEMPAK = &device_creator<sns_rom_bsmempak_device>; | |
| 26 | ||
| 27 | ||
| 28 | sns_rom_bsx_device::sns_rom_bsx_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) | |
| 29 | : sns_rom_device(mconfig, type, name, tag, owner, clock), | |
| 30 | m_slot(*this, "bs_slot") | |
| 31 | { | |
| 32 | } | |
| 33 | ||
| 34 | sns_rom_bsx_device::sns_rom_bsx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 35 | : sns_rom_device(mconfig, SNS_ROM_BSX, "SNES BS-X Cart", tag, owner, clock), | |
| 36 | m_slot(*this, "bs_slot") | |
| 37 | { | |
| 38 | } | |
| 39 | ||
| 40 | sns_rom_bsxlo_device::sns_rom_bsxlo_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 41 | : sns_rom_device(mconfig, SNS_LOROM_BSX, "SNES Cart (LoROM) + BS-X slot", tag, owner, clock), | |
| 42 | m_slot(*this, "bs_slot") | |
| 43 | { | |
| 44 | } | |
| 45 | ||
| 46 | sns_rom_bsxhi_device::sns_rom_bsxhi_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 47 | : sns_rom21_device(mconfig, SNS_HIROM_BSX, "SNES Cart (HiROM) + BS-X slot", tag, owner, clock), | |
| 48 | m_slot(*this, "bs_slot") | |
| 49 | { | |
| 50 | } | |
| 51 | ||
| 52 | sns_rom_bsmempak_device::sns_rom_bsmempak_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 53 | : sns_rom_device(mconfig, SNS_BSMEMPAK, "SNES BS-X Memory packs", tag, owner, clock) | |
| 54 | { | |
| 55 | } | |
| 56 | ||
| 57 | ||
| 58 | void sns_rom_bsx_device::device_start() | |
| 59 | { | |
| 60 | m_base_unit = auto_alloc(machine(), BSX_base(machine())); | |
| 61 | memset(m_cart_regs, 0x00, sizeof(m_cart_regs)); | |
| 62 | m_cart_regs[7] = 0x80; | |
| 63 | m_cart_regs[8] = 0x80; | |
| 64 | access_update(); | |
| 65 | ||
| 66 | memset(m_pram, 0xff, sizeof(m_pram)); | |
| 67 | ||
| 68 | save_item(NAME(m_cart_regs)); | |
| 69 | save_item(NAME(access_00_1f)); | |
| 70 | save_item(NAME(access_80_9f)); | |
| 71 | save_item(NAME(access_40_4f)); | |
| 72 | save_item(NAME(access_50_5f)); | |
| 73 | save_item(NAME(access_60_6f)); | |
| 74 | save_item(NAME(rom_access)); | |
| 75 | save_item(NAME(m_pram)); | |
| 76 | // TODO: save unit-related items and fix their restore... | |
| 77 | } | |
| 78 | ||
| 79 | void sns_rom_bsxlo_device::device_start() | |
| 80 | { | |
| 81 | } | |
| 82 | ||
| 83 | void sns_rom_bsxhi_device::device_start() | |
| 84 | { | |
| 85 | } | |
| 86 | ||
| 87 | void sns_rom_bsmempak_device::device_start() | |
| 88 | { | |
| 89 | m_command = 0; | |
| 90 | m_write_old = 0; | |
| 91 | m_write_new = 0; | |
| 92 | ||
| 93 | m_flash_enable = 0; | |
| 94 | m_read_enable = 0; | |
| 95 | m_write_enable = 0; | |
| 96 | ||
| 97 | save_item(NAME(m_command)); | |
| 98 | save_item(NAME(m_write_old)); | |
| 99 | save_item(NAME(m_write_new)); | |
| 100 | save_item(NAME(m_flash_enable)); | |
| 101 | save_item(NAME(m_read_enable)); | |
| 102 | save_item(NAME(m_write_enable)); | |
| 103 | } | |
| 104 | ||
| 105 | ||
| 106 | ||
| 107 | // BS-X Base Unit emulation, to be device-fied ? | |
| 108 | ||
| 109 | BSX_base::BSX_base(running_machine &machine) | |
| 110 | : m_machine(machine) | |
| 111 | { | |
| 112 | } | |
| 113 | ||
| 114 | void BSX_base::init() | |
| 115 | { | |
| 116 | memset(regs, 0x00, sizeof(regs)); | |
| 117 | r2192_counter = 0; | |
| 118 | r2192_hour = 0; | |
| 119 | r2192_minute = 0; | |
| 120 | r2192_second = 0; | |
| 121 | } | |
| 122 | ||
| 123 | ||
| 124 | UINT8 BSX_base::read(UINT32 offset) | |
| 125 | { | |
| 126 | offset &= 0xffff; | |
| 127 | if (offset < 0x2188 || offset >= 0x21a0) | |
| 128 | { | |
| 129 | mame_printf_debug("BS-X Base Unit reg read outside correct range!\n"); | |
| 130 | return 0x00; | |
| 131 | } | |
| 132 | ||
| 133 | switch (offset) | |
| 134 | { | |
| 135 | // no 218b? no 218d? no 2191? no 2195? no 219a-219f? | |
| 136 | case 0x2192: | |
| 137 | { | |
| 138 | UINT8 counter = r2192_counter++; | |
| 139 | if (r2192_counter >= 18) | |
| 140 | r2192_counter = 0; | |
| 141 | ||
| 142 | if (counter == 0) | |
| 143 | { | |
| 144 | system_time curtime, *systime = &curtime; | |
| 145 | m_machine.current_datetime(curtime); | |
| 146 | r2192_hour = systime->local_time.hour; | |
| 147 | r2192_minute = systime->local_time.minute; | |
| 148 | r2192_second = systime->local_time.second; | |
| 149 | } | |
| 150 | ||
| 151 | switch (counter) | |
| 152 | { | |
| 153 | case 0: return 0x00; //??? | |
| 154 | case 1: return 0x00; //??? | |
| 155 | case 2: return 0x00; //??? | |
| 156 | case 3: return 0x00; //??? | |
| 157 | case 4: return 0x00; //??? | |
| 158 | case 5: return 0x01; | |
| 159 | case 6: return 0x01; | |
| 160 | case 7: return 0x00; | |
| 161 | case 8: return 0x00; | |
| 162 | case 9: return 0x00; | |
| 163 | case 10: return r2192_second; | |
| 164 | case 11: return r2192_minute; | |
| 165 | case 12: return r2192_hour; | |
| 166 | case 13: return 0x00; //??? | |
| 167 | case 14: return 0x00; //??? | |
| 168 | case 15: return 0x00; //??? | |
| 169 | case 16: return 0x00; //??? | |
| 170 | case 17: return 0x00; //??? | |
| 171 | } | |
| 172 | } | |
| 173 | break; | |
| 174 | ||
| 175 | case 0x2193: | |
| 176 | return regs[offset - 0x2188] & ~0x0c; | |
| 177 | ||
| 178 | default: | |
| 179 | return regs[offset - 0x2188]; | |
| 180 | } | |
| 181 | ||
| 182 | return 0x00; | |
| 183 | } | |
| 184 | ||
| 185 | ||
| 186 | void BSX_base::write(UINT32 offset, UINT8 data) | |
| 187 | { | |
| 188 | offset &= 0xffff; | |
| 189 | if (offset < 0x2188 || offset >= 0x21a0) | |
| 190 | { | |
| 191 | mame_printf_debug("BS-X Base Unit reg write outside correct range!\n"); | |
| 192 | return; | |
| 193 | } | |
| 194 | ||
| 195 | switch(offset) | |
| 196 | { | |
| 197 | // no 218d? no 2190? no 2195? no 2196? no 2198? no 219a-219f? | |
| 198 | case 0x218f: | |
| 199 | regs[6] >>= 1; // 0x218e | |
| 200 | regs[6] = regs[7] - regs[6]; // 0x218f - 0x218e | |
| 201 | regs[7] >>= 1; // 0x218f | |
| 202 | break; | |
| 203 | ||
| 204 | case 0x2191: | |
| 205 | regs[offset - 0x2188] = data; | |
| 206 | r2192_counter = 0; | |
| 207 | break; | |
| 208 | ||
| 209 | case 0x2192: | |
| 210 | regs[8] = data; // sets 0x2190 | |
| 211 | break; | |
| 212 | ||
| 213 | default: | |
| 214 | regs[offset - 0x2188] = data; | |
| 215 | break; | |
| 216 | } | |
| 217 | } | |
| 218 | ||
| 219 | //------------------------------------------------- | |
| 220 | // MACHINE_CONFIG_FRAGMENT( bs_slot ) | |
| 221 | //------------------------------------------------- | |
| 222 | ||
| 223 | static SLOT_INTERFACE_START(bsx_cart) | |
| 224 | SLOT_INTERFACE_INTERNAL("bsmempak", SNS_BSMEMPAK) | |
| 225 | SLOT_INTERFACE_END | |
| 226 | ||
| 227 | static MACHINE_CONFIG_FRAGMENT( bs_slot ) | |
| 228 | MCFG_SNS_BSX_CARTRIDGE_ADD("bs_slot", bsx_cart, NULL, NULL) | |
| 229 | MACHINE_CONFIG_END | |
| 230 | ||
| 231 | ||
| 232 | //------------------------------------------------- | |
| 233 | // machine_config_additions - device-specific | |
| 234 | // machine configurations | |
| 235 | //------------------------------------------------- | |
| 236 | ||
| 237 | machine_config_constructor sns_rom_bsx_device::device_mconfig_additions() const | |
| 238 | { | |
| 239 | return MACHINE_CONFIG_NAME( bs_slot ); | |
| 240 | } | |
| 241 | ||
| 242 | machine_config_constructor sns_rom_bsxlo_device::device_mconfig_additions() const | |
| 243 | { | |
| 244 | return MACHINE_CONFIG_NAME( bs_slot ); | |
| 245 | } | |
| 246 | ||
| 247 | machine_config_constructor sns_rom_bsxhi_device::device_mconfig_additions() const | |
| 248 | { | |
| 249 | return MACHINE_CONFIG_NAME( bs_slot ); | |
| 250 | } | |
| 251 | ||
| 252 | /*------------------------------------------------- | |
| 253 | mapper specific handlers | |
| 254 | -------------------------------------------------*/ | |
| 255 | ||
| 256 | // BS-X base + cart | |
| 257 | ||
| 258 | void sns_rom_bsx_device::access_update() | |
| 259 | { | |
| 260 | access_00_1f = BIT(m_cart_regs[0x07], 7); | |
| 261 | access_40_4f = !BIT(m_cart_regs[0x05], 7); | |
| 262 | access_50_5f = !BIT(m_cart_regs[0x06], 7); | |
| 263 | access_60_6f = BIT(m_cart_regs[0x03], 7); | |
| 264 | access_80_9f = BIT(m_cart_regs[0x08], 7); | |
| 265 | if (BIT(m_cart_regs[0x01], 7)) | |
| 266 | rom_access = 0; | |
| 267 | else | |
| 268 | { | |
| 269 | // rom_access = BIT(m_cart_regs[0x02], 7) + 1; | |
| 270 | rom_access = 1; // for whatever reason bsxsore changes access mode here and then fails to read the ROM properly! | |
| 271 | printf("rom_access %s\n", !BIT(m_cart_regs[0x02], 7) ? "Lo" : "Hi"); | |
| 272 | } | |
| 273 | } | |
| 274 | ||
| 275 | READ8_MEMBER(sns_rom_bsx_device::read_l) | |
| 276 | { | |
| 277 | if (offset < 0x200000 && access_00_1f) | |
| 278 | { | |
| 279 | // 0x00-0x1f:0x8000-0xffff -> CART | |
| 280 | if (m_slot->m_cart && m_slot->m_cart->get_rom_size()) | |
| 281 | return m_slot->m_cart->read_l(space, offset); | |
| 282 | } | |
| 283 | if (offset >= 0x200000 && offset < 0x400000) | |
| 284 | { | |
| 285 | // 0x20-0x3f:0x6000-0x7fff -> PRAM | |
| 286 | if ((offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000) | |
| 287 | return m_pram[offset & 0xffff]; | |
| 288 | } | |
| 289 | if (offset >= 0x400000 && offset < 0x500000 && access_40_4f) | |
| 290 | { | |
| 291 | // 0x40-0x4f:0x0000-0xffff -> PRAM | |
| 292 | return m_pram[offset & 0x7ffff]; | |
| 293 | } | |
| 294 | if (offset >= 0x500000 && offset < 0x600000 && access_50_5f) | |
| 295 | { | |
| 296 | // 0x50-0x5f:0x0000-0xffff -> PRAM | |
| 297 | return m_pram[offset & 0x7ffff]; | |
| 298 | } | |
| 299 | if (offset >= 0x600000 && offset < 0x700000 && access_60_6f) | |
| 300 | { | |
| 301 | // 0x60-0x6f:0x0000-0xffff -> PRAM | |
| 302 | return m_pram[offset & 0x7ffff]; | |
| 303 | } | |
| 304 | if (offset >= 0x700000 && offset < 0x780000) | |
| 305 | { | |
| 306 | // 0x70-0x77:0x0000-0xffff -> PRAM | |
| 307 | return m_pram[offset & 0x7ffff]; | |
| 308 | } | |
| 309 | ||
| 310 | // if not in any of the cases above... | |
| 311 | //$00-3f|80-bf:8000-ffff | |
| 312 | //$40-7f|c0-ff:0000-ffff | |
| 313 | if (!rom_access) | |
| 314 | return m_pram[offset & 0x7ffff]; | |
| 315 | else | |
| 316 | { | |
| 317 | int bank = (rom_access == 1) ? (offset / 0x10000) : (offset / 0x8000); | |
| 318 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 319 | } | |
| 320 | ||
| 321 | return 0x00; | |
| 322 | } | |
| 323 | ||
| 324 | ||
| 325 | READ8_MEMBER(sns_rom_bsx_device::read_h) | |
| 326 | { | |
| 327 | if (offset < 0x200000 && access_80_9f) | |
| 328 | { | |
| 329 | // 0x80-0x9f:0x8000-0xffff -> CART | |
| 330 | if (m_slot->m_cart && m_slot->m_cart->get_rom_size()) | |
| 331 | return m_slot->m_cart->read_l(space, offset); | |
| 332 | } | |
| 333 | ||
| 334 | // if not in any of the cases above... | |
| 335 | //$00-3f|80-bf:8000-ffff | |
| 336 | //$40-7f|c0-ff:0000-ffff | |
| 337 | if (!rom_access) | |
| 338 | return m_pram[offset & 0x7ffff]; | |
| 339 | else | |
| 340 | { | |
| 341 | int bank = (rom_access == 1) ? (offset / 0x10000) : (offset / 0x8000); | |
| 342 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 343 | } | |
| 344 | ||
| 345 | return 0x00; | |
| 346 | } | |
| 347 | ||
| 348 | WRITE8_MEMBER(sns_rom_bsx_device::write_l) | |
| 349 | { | |
| 350 | if (offset < 0x200000 && access_00_1f) | |
| 351 | { | |
| 352 | // write to cart... | |
| 353 | return; | |
| 354 | } | |
| 355 | if (offset >= 0x200000 && offset < 0x400000) | |
| 356 | { | |
| 357 | // 0x20-0x3f:0x6000-0x7fff -> PRAM | |
| 358 | if ((offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000) | |
| 359 | m_pram[offset & 0xffff] = data; | |
| 360 | } | |
| 361 | if (offset >= 0x400000 && offset < 0x500000 && access_40_4f) | |
| 362 | { | |
| 363 | // 0x40-0x4f:0x0000-0xffff -> PRAM | |
| 364 | m_pram[offset & 0x7ffff] = data; | |
| 365 | } | |
| 366 | if (offset >= 0x500000 && offset < 0x600000 && access_50_5f) | |
| 367 | { | |
| 368 | // 0x50-0x5f:0x0000-0xffff -> PRAM | |
| 369 | m_pram[offset & 0x7ffff] = data; | |
| 370 | } | |
| 371 | if (offset >= 0x600000 && offset < 0x700000 && access_60_6f) | |
| 372 | { | |
| 373 | // 0x60-0x6f:0x0000-0xffff -> PRAM | |
| 374 | m_pram[offset & 0x7ffff] = data; | |
| 375 | } | |
| 376 | if (offset >= 0x700000 && offset < 0x780000) | |
| 377 | { | |
| 378 | // 0x70-0x77:0x0000-0xffff -> PRAM | |
| 379 | m_pram[offset & 0x7ffff] = data; | |
| 380 | } | |
| 381 | ||
| 382 | // if not in any of the cases above... | |
| 383 | //$00-3f|80-bf:8000-ffff | |
| 384 | //$40-7f|c0-ff:0000-ffff | |
| 385 | if (!rom_access) | |
| 386 | m_pram[offset & 0x7ffff] = data; | |
| 387 | } | |
| 388 | ||
| 389 | ||
| 390 | WRITE8_MEMBER(sns_rom_bsx_device::write_h) | |
| 391 | { | |
| 392 | if (offset < 0x200000 && access_80_9f) | |
| 393 | { | |
| 394 | // write to cart... | |
| 395 | return; | |
| 396 | } | |
| 397 | ||
| 398 | // if not in any of the cases above... | |
| 399 | //$00-3f|80-bf:8000-ffff | |
| 400 | //$40-7f|c0-ff:0000-ffff | |
| 401 | if (!rom_access) | |
| 402 | m_pram[offset & 0x7ffff] = data; | |
| 403 | } | |
| 404 | ||
| 405 | ||
| 406 | READ8_MEMBER(sns_rom_bsx_device::chip_read) | |
| 407 | { | |
| 408 | if ((offset & 0xffff) >= 0x2188 && (offset & 0xffff) < 0x21a0) | |
| 409 | return m_base_unit->read(offset & 0xffff); | |
| 410 | ||
| 411 | if ((offset & 0xf0ffff) == 0x005000) //$[00-0f]:5000 reg access | |
| 412 | { | |
| 413 | UINT8 n = (offset >> 16) & 0x0f; | |
| 414 | return m_cart_regs[n]; | |
| 415 | } | |
| 416 | ||
| 417 | if ((offset & 0xf8f000) == 0x105000) //$[10-17]:[5000-5fff] SRAM access | |
| 418 | { | |
| 419 | return m_nvram[((offset >> 16) & 7) * 0x1000 + (offset & 0xfff)]; | |
| 420 | } | |
| 421 | ||
| 422 | return 0x00; | |
| 423 | } | |
| 424 | ||
| 425 | WRITE8_MEMBER(sns_rom_bsx_device::chip_write) | |
| 426 | { | |
| 427 | if ((offset & 0xffff) >= 0x2188 && (offset & 0xffff) < 0x21a0) | |
| 428 | m_base_unit->write(offset & 0xffff, data); | |
| 429 | ||
| 430 | if ((offset & 0xf0ffff) == 0x005000) //$[00-0f]:5000 reg access | |
| 431 | { | |
| 432 | UINT8 n = (offset >> 16) & 0x0f; | |
| 433 | m_cart_regs[n] = data; | |
| 434 | if (n == 0x0e && data & 0x80) | |
| 435 | access_update(); | |
| 436 | } | |
| 437 | ||
| 438 | if ((offset & 0xf8f000) == 0x105000) //$[10-17]:[5000-5fff] SRAM access | |
| 439 | { | |
| 440 | m_nvram[((offset >> 16) & 7) * 0x1000 + (offset & 0xfff)] = data; | |
| 441 | } | |
| 442 | } | |
| 443 | ||
| 444 | ||
| 445 | // LoROM cart w/BS-X slot | |
| 446 | ||
| 447 | READ8_MEMBER(sns_rom_bsxlo_device::read_l) | |
| 448 | { | |
| 449 | if (offset < 0x400000) | |
| 450 | { | |
| 451 | int bank = offset / 0x10000; | |
| 452 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 453 | } | |
| 454 | if (offset >= 0x700000 && (offset & 0xffff) < 0x8000) | |
| 455 | { | |
| 456 | if (m_nvram_size > 0x8000) | |
| 457 | { | |
| 458 | // In this case, SRAM is mapped in 0x8000 chunks at diff offsets: 0x700000-0x707fff, 0x710000-0x717fff, etc. | |
| 459 | int mask = (m_nvram_size << 1) - 1; | |
| 460 | mask &= ~0x8000; | |
| 461 | return m_nvram[offset & mask]; | |
| 462 | } | |
| 463 | else if (m_nvram_size > 0) | |
| 464 | { | |
| 465 | int mask = m_nvram_size - 1; /* Limit SRAM size to what's actually present */ | |
| 466 | return m_nvram[offset & mask]; | |
| 467 | } | |
| 468 | } | |
| 469 | return 0x00; | |
| 470 | } | |
| 471 | ||
| 472 | READ8_MEMBER(sns_rom_bsxlo_device::read_h) | |
| 473 | { | |
| 474 | if (offset < 0x400000) | |
| 475 | { | |
| 476 | int bank = offset / 0x10000; | |
| 477 | if (offset < 0x200000) | |
| 478 | bank += 64; | |
| 479 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 480 | } | |
| 481 | else if (offset < 0x700000) | |
| 482 | { | |
| 483 | if (m_slot->m_cart && m_slot->m_cart->get_rom_size()) | |
| 484 | return m_slot->m_cart->read_h(space, offset); | |
| 485 | } | |
| 486 | ||
| 487 | if (offset >= 0x700000 && (offset & 0xffff) < 0x8000) | |
| 488 | { | |
| 489 | if (m_nvram_size > 0x8000) | |
| 490 | { | |
| 491 | // In this case, SRAM is mapped in 0x8000 chunks at diff offsets: 0x700000-0x707fff, 0x710000-0x717fff, etc. | |
| 492 | int mask = (m_nvram_size << 1) - 1; | |
| 493 | mask &= ~0x8000; | |
| 494 | return m_nvram[offset & mask]; | |
| 495 | } | |
| 496 | else if (m_nvram_size > 0) | |
| 497 | { | |
| 498 | int mask = m_nvram_size - 1; /* Limit SRAM size to what's actually present */ | |
| 499 | return m_nvram[offset & mask]; | |
| 500 | } | |
| 501 | } | |
| 502 | return 0x00; | |
| 503 | } | |
| 504 | ||
| 505 | ||
| 506 | // HiROM cart w/BS-X slot | |
| 507 | ||
| 508 | READ8_MEMBER(sns_rom_bsxhi_device::read_l) | |
| 509 | { | |
| 510 | return read_h(space, offset); | |
| 511 | } | |
| 512 | ||
| 513 | READ8_MEMBER(sns_rom_bsxhi_device::read_h) | |
| 514 | { | |
| 515 | if (offset < 0x200000 && (offset & 0xffff) >= 0x8000) | |
| 516 | { | |
| 517 | int bank = offset / 0x8000; | |
| 518 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 519 | } | |
| 520 | if (offset >= 0x200000 && offset < 0x400000) | |
| 521 | { | |
| 522 | if ((offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000 && m_nvram_size > 0) | |
| 523 | { | |
| 524 | int mask = (m_nvram_size - 1) & 0x7fff; | |
| 525 | return m_nvram[(offset - 0x6000) & mask]; | |
| 526 | } | |
| 527 | if ((offset & 0xffff) >= 0x8000 && m_slot->m_cart && m_slot->m_cart->get_rom_size()) | |
| 528 | return m_slot->m_cart->read_h(space, offset); | |
| 529 | } | |
| 530 | if (offset >= 0x400000 && offset < 0x600000) | |
| 531 | { | |
| 532 | // TODO: Ongaku Tsukuru Kanadeeru does not like accesses in 0x0000-0x8000 here... investigate... | |
| 533 | int bank = offset / 0x8000; | |
| 534 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 535 | } | |
| 536 | if (offset >= 0x600000) | |
| 537 | { | |
| 538 | if (m_slot->m_cart && m_slot->m_cart->get_rom_size()) | |
| 539 | return m_slot->m_cart->read_h(space, offset); | |
| 540 | } | |
| 541 | return 0xff; | |
| 542 | } | |
| 543 | ||
| 544 | WRITE8_MEMBER(sns_rom_bsxhi_device::write_l) | |
| 545 | { | |
| 546 | write_h(space, offset, data); | |
| 547 | } | |
| 548 | ||
| 549 | WRITE8_MEMBER(sns_rom_bsxhi_device::write_h) | |
| 550 | { | |
| 551 | if (offset >= 0x200000 && offset < 0x400000) | |
| 552 | { | |
| 553 | if ((offset & 0xffff) >= 0x6000 && (offset & 0xffff) < 0x8000 && m_nvram_size > 0) | |
| 554 | { | |
| 555 | int mask = (m_nvram_size - 1) & 0x7fff; | |
| 556 | m_nvram[(offset - 0x6000) & mask] = data; | |
| 557 | } | |
| 558 | } | |
| 559 | } | |
| 560 | ||
| 561 | ||
| 562 | /*------------------------------------------------- | |
| 563 | BS-X Memory Packs | |
| 564 | -------------------------------------------------*/ | |
| 565 | ||
| 566 | // Here we're cheating a bit, for the moment, to avoid the need of BSX mempacks as a completely different device | |
| 567 | // which would require separate loading routines | |
| 568 | // Hence, we use low read handler for ROM access in the 0x8000-0xffff range (i.e. mempack mapped as LoROM) and | |
| 569 | // hi read handler for ROM access in the 0x0000-0xffff range (i.e. mempack mapped as HiROM)... | |
| 570 | ||
| 571 | READ8_MEMBER(sns_rom_bsmempak_device::read_l) | |
| 572 | { | |
| 573 | int bank = offset / 0x10000; | |
| 574 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 575 | } | |
| 576 | ||
| 577 | READ8_MEMBER(sns_rom_bsmempak_device::read_h) | |
| 578 | { | |
| 579 | int bank = offset / 0x8000; | |
| 580 | return m_rom[rom_bank_map[bank] * 0x8000 + (offset & 0x7fff)]; | |
| 581 | } | |
| 582 | ||
| 583 | WRITE8_MEMBER(sns_rom_bsmempak_device::write_l) | |
| 584 | { | |
| 585 | } | |
| 586 |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_BSX_H | |
| 2 | #define __SNS_BSX_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | #include "machine/sns_rom.h" | |
| 6 | #include "machine/sns_rom21.h" | |
| 7 | ||
| 8 | class BSX_base | |
| 9 | { | |
| 10 | public: | |
| 11 | BSX_base(running_machine &machine); | |
| 12 | running_machine &machine() const { return m_machine; } | |
| 13 | ||
| 14 | void init(); | |
| 15 | UINT8 read(UINT32 offset); | |
| 16 | void write(UINT32 offset, UINT8 data); | |
| 17 | ||
| 18 | private: | |
| 19 | // regs | |
| 20 | UINT8 regs[0x18]; // 0x2188-0x219f | |
| 21 | ||
| 22 | // counter + clock | |
| 23 | UINT8 r2192_counter; | |
| 24 | UINT8 r2192_hour, r2192_minute, r2192_second; | |
| 25 | ||
| 26 | running_machine& m_machine; | |
| 27 | }; | |
| 28 | ||
| 29 | // ======================> sns_rom_bsx_device | |
| 30 | ||
| 31 | class sns_rom_bsx_device : public sns_rom_device | |
| 32 | { | |
| 33 | public: | |
| 34 | // construction/destruction | |
| 35 | sns_rom_bsx_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 36 | sns_rom_bsx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 37 | ||
| 38 | // device-level overrides | |
| 39 | virtual void device_start(); | |
| 40 | virtual void device_config_complete() { m_shortname = "sns_rom_bsx"; } | |
| 41 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 42 | ||
| 43 | // additional reading and writing | |
| 44 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 45 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 46 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 47 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 48 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 49 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 50 | ||
| 51 | // base regs | |
| 52 | BSX_base *m_base_unit; | |
| 53 | ||
| 54 | // cart regs | |
| 55 | UINT8 m_cart_regs[16]; | |
| 56 | UINT8 access_00_1f; // 1 = CART, 0 = NOTHING | |
| 57 | UINT8 access_80_9f; // 1 = CART, 0 = NOTHING | |
| 58 | UINT8 access_40_4f; // 1 = NOTHING, 0 = PRAM | |
| 59 | UINT8 access_50_5f; // 1 = NOTHING, 0 = PRAM | |
| 60 | UINT8 access_60_6f; // 1 = PRAM, 0 = NOTHING | |
| 61 | UINT8 rom_access; // 2 = HiROM, 1 = LoROM, 0 = PRAM | |
| 62 | void access_update(); | |
| 63 | ||
| 64 | ||
| 65 | UINT8 m_pram[0x80000]; | |
| 66 | ||
| 67 | private: | |
| 68 | required_device<sns_bsx_cart_slot_device> m_slot; | |
| 69 | }; | |
| 70 | ||
| 71 | // ======================> sns_rom_bsxlo_device | |
| 72 | ||
| 73 | class sns_rom_bsxlo_device : public sns_rom_device | |
| 74 | { | |
| 75 | public: | |
| 76 | // construction/destruction | |
| 77 | sns_rom_bsxlo_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 78 | ||
| 79 | // device-level overrides | |
| 80 | virtual void device_start(); | |
| 81 | virtual void device_config_complete() { m_shortname = "sns_rom_bsxlo"; } | |
| 82 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 83 | ||
| 84 | // additional reading and writing | |
| 85 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 86 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 87 | // virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 88 | // virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 89 | // virtual DECLARE_READ8_MEMBER(chip_read); | |
| 90 | // virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 91 | ||
| 92 | private: | |
| 93 | required_device<sns_bsx_cart_slot_device> m_slot; | |
| 94 | }; | |
| 95 | ||
| 96 | // ======================> sns_rom_bsxhi_device | |
| 97 | ||
| 98 | class sns_rom_bsxhi_device : public sns_rom21_device | |
| 99 | { | |
| 100 | public: | |
| 101 | // construction/destruction | |
| 102 | sns_rom_bsxhi_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 103 | ||
| 104 | // device-level overrides | |
| 105 | virtual void device_start(); | |
| 106 | virtual void device_config_complete() { m_shortname = "sns_rom_bsxhi"; } | |
| 107 | virtual machine_config_constructor device_mconfig_additions() const; | |
| 108 | ||
| 109 | // additional reading and writing | |
| 110 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 111 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 112 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 113 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 114 | // virtual DECLARE_READ8_MEMBER(chip_read); | |
| 115 | // virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 116 | ||
| 117 | private: | |
| 118 | required_device<sns_bsx_cart_slot_device> m_slot; | |
| 119 | }; | |
| 120 | ||
| 121 | ||
| 122 | // ======================> sns_rom_bsmempak_device | |
| 123 | ||
| 124 | class sns_rom_bsmempak_device : public sns_rom_device | |
| 125 | { | |
| 126 | public: | |
| 127 | // construction/destruction | |
| 128 | sns_rom_bsmempak_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 129 | ||
| 130 | // device-level overrides | |
| 131 | virtual void device_start(); | |
| 132 | virtual void device_config_complete() { m_shortname = "sns_bsmempak"; } | |
| 133 | ||
| 134 | // additional reading and writing | |
| 135 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 136 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 137 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 138 | // virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 139 | // virtual DECLARE_READ8_MEMBER(chip_read); | |
| 140 | // virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 141 | ||
| 142 | // flash regs | |
| 143 | UINT32 m_command; | |
| 144 | UINT8 m_write_old; | |
| 145 | UINT8 m_write_new; | |
| 146 | ||
| 147 | int m_flash_enable; | |
| 148 | int m_read_enable; | |
| 149 | int m_write_enable; | |
| 150 | }; | |
| 151 | ||
| 152 | ||
| 153 | // device type definition | |
| 154 | extern const device_type SNS_ROM_BSX; | |
| 155 | extern const device_type SNS_LOROM_BSX; | |
| 156 | extern const device_type SNS_HIROM_BSX; | |
| 157 | extern const device_type SNS_BSMEMPAK; | |
| 158 | ||
| 159 | #endif |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | SPC-7110 add-on chip emulation (for SNES/SFC) | |
| 4 | ||
| 5 | Based on C++ implementation by Byuu in BSNES. | |
| 6 | ||
| 7 | Byuu's code is released under GNU General Public License | |
| 8 | version 2 as published by the Free Software Foundation. | |
| 9 | ||
| 10 | The implementation below is released under the MAME license | |
| 11 | for use in MAME, MESS and derivatives by permission of Byuu | |
| 12 | ||
| 13 | Copyright (for the implementation below) MESS Team. | |
| 14 | Visit http://mamedev.org for licensing and usage restrictions. | |
| 15 | ||
| 16 | ***********************************************************************************************************/ | |
| 17 | ||
| 18 | ||
| 19 | #include "emu.h" | |
| 20 | #include "machine/sns_spc7110.h" | |
| 21 | ||
| 22 | ||
| 23 | //------------------------------------------------- | |
| 24 | // constructor | |
| 25 | //------------------------------------------------- | |
| 26 | ||
| 27 | const device_type SNS_HIROM_SPC7110 = &device_creator<sns_rom_spc7110_device>; | |
| 28 | const device_type SNS_HIROM_SPC7110_RTC = &device_creator<sns_rom_spc7110rtc_device>; | |
| 29 | ||
| 30 | ||
| 31 | sns_rom_spc7110_device::sns_rom_spc7110_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) | |
| 32 | : sns_rom21_device(mconfig, type, name, tag, owner, clock) | |
| 33 | { | |
| 34 | } | |
| 35 | ||
| 36 | sns_rom_spc7110_device::sns_rom_spc7110_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 37 | : sns_rom21_device(mconfig, SNS_HIROM_SPC7110, "SNES Cart + SPC-7110", tag, owner, clock) | |
| 38 | { | |
| 39 | } | |
| 40 | ||
| 41 | sns_rom_spc7110rtc_device::sns_rom_spc7110rtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) | |
| 42 | : sns_rom_spc7110_device(mconfig, SNS_HIROM_SPC7110_RTC, "SNES Cart + SPC-7110 + RTC", tag, owner, clock) | |
| 43 | { | |
| 44 | } | |
| 45 | ||
| 46 | ||
| 47 | void sns_rom_spc7110_device::spc7110_start() | |
| 48 | { | |
| 49 | memset(m_ram, 0, sizeof(m_ram)); | |
| 50 | m_r4801 = 0x00; | |
| 51 | m_r4802 = 0x00; | |
| 52 | m_r4803 = 0x00; | |
| 53 | m_r4804 = 0x00; | |
| 54 | m_r4805 = 0x00; | |
| 55 | m_r4806 = 0x00; | |
| 56 | m_r4807 = 0x00; | |
| 57 | m_r4808 = 0x00; | |
| 58 | m_r4809 = 0x00; | |
| 59 | m_r480a = 0x00; | |
| 60 | m_r480b = 0x00; | |
| 61 | m_r480c = 0x00; | |
| 62 | ||
| 63 | m_r4811 = 0x00; | |
| 64 | m_r4812 = 0x00; | |
| 65 | m_r4813 = 0x00; | |
| 66 | m_r4814 = 0x00; | |
| 67 | m_r4815 = 0x00; | |
| 68 | m_r4816 = 0x00; | |
| 69 | m_r4817 = 0x00; | |
| 70 | m_r4818 = 0x00; | |
| 71 | ||
| 72 | m_r481x = 0x00; | |
| 73 | m_r4814_latch = 0; | |
| 74 | m_r4815_latch = 0; | |
| 75 | ||
| 76 | m_r4820 = 0x00; | |
| 77 | m_r4821 = 0x00; | |
| 78 | m_r4822 = 0x00; | |
| 79 | m_r4823 = 0x00; | |
| 80 | m_r4824 = 0x00; | |
| 81 | m_r4825 = 0x00; | |
| 82 | m_r4826 = 0x00; | |
| 83 | m_r4827 = 0x00; | |
| 84 | m_r4828 = 0x00; | |
| 85 | m_r4829 = 0x00; | |
| 86 | m_r482a = 0x00; | |
| 87 | m_r482b = 0x00; | |
| 88 | m_r482c = 0x00; | |
| 89 | m_r482d = 0x00; | |
| 90 | m_r482e = 0x00; | |
| 91 | m_r482f = 0x00; | |
| 92 | ||
| 93 | m_r4830 = 0x00; | |
| 94 | m_r4831 = 0; | |
| 95 | m_dx_offset = spc7110_datarom_addr(0 * 0x100000, 0x200000); // we would need the rom length here... | |
| 96 | m_r4832 = 1; | |
| 97 | m_ex_offset = spc7110_datarom_addr(1 * 0x100000, 0x200000); // we would need the rom length here... | |
| 98 | m_r4833 = 2; | |
| 99 | m_fx_offset = spc7110_datarom_addr(2 * 0x100000, 0x200000); // we would need the rom length here... | |
| 100 | m_r4834 = 0x00; | |
| 101 | ||
| 102 | m_r4840 = 0x00; | |
| 103 | m_r4841 = 0x00; | |
| 104 | m_r4842 = 0x00; | |
| 105 | ||
| 106 | m_decomp = auto_alloc(machine(), SPC7110_Decomp(machine())); | |
| 107 | ||
| 108 | save_item(NAME(m_ram)); | |
| 109 | save_item(NAME(m_r4801)); | |
| 110 | save_item(NAME(m_r4802)); | |
| 111 | save_item(NAME(m_r4803)); | |
| 112 | save_item(NAME(m_r4804)); | |
| 113 | save_item(NAME(m_r4805)); | |
| 114 | save_item(NAME(m_r4806)); | |
| 115 | save_item(NAME(m_r4807)); | |
| 116 | save_item(NAME(m_r4808)); | |
| 117 | save_item(NAME(m_r4809)); | |
| 118 | save_item(NAME(m_r480a)); | |
| 119 | save_item(NAME(m_r480b)); | |
| 120 | save_item(NAME(m_r480c)); | |
| 121 | save_item(NAME(m_r4811)); | |
| 122 | save_item(NAME(m_r4812)); | |
| 123 | save_item(NAME(m_r4813)); | |
| 124 | save_item(NAME(m_r4814)); | |
| 125 | save_item(NAME(m_r4815)); | |
| 126 | save_item(NAME(m_r4816)); | |
| 127 | save_item(NAME(m_r4817)); | |
| 128 | save_item(NAME(m_r4818)); | |
| 129 | save_item(NAME(m_r481x)); | |
| 130 | save_item(NAME(m_r4814_latch)); | |
| 131 | save_item(NAME(m_r4815_latch)); | |
| 132 | save_item(NAME(m_r4820)); | |
| 133 | save_item(NAME(m_r4821)); | |
| 134 | save_item(NAME(m_r4822)); | |
| 135 | save_item(NAME(m_r4823)); | |
| 136 | save_item(NAME(m_r4824)); | |
| 137 | save_item(NAME(m_r4825)); | |
| 138 | save_item(NAME(m_r4826)); | |
| 139 | save_item(NAME(m_r4827)); | |
| 140 | save_item(NAME(m_r4828)); | |
| 141 | save_item(NAME(m_r4829)); | |
| 142 | save_item(NAME(m_r482a)); | |
| 143 | save_item(NAME(m_r482b)); | |
| 144 | save_item(NAME(m_r482c)); | |
| 145 | save_item(NAME(m_r482d)); | |
| 146 | save_item(NAME(m_r482e)); | |
| 147 | save_item(NAME(m_r482f)); | |
| 148 | save_item(NAME(m_r4830)); | |
| 149 | save_item(NAME(m_r4831)); | |
| 150 | save_item(NAME(m_r4832)); | |
| 151 | save_item(NAME(m_r4833)); | |
| 152 | save_item(NAME(m_r4834)); | |
| 153 | save_item(NAME(m_r4840)); | |
| 154 | save_item(NAME(m_r4841)); | |
| 155 | save_item(NAME(m_r4842)); | |
| 156 | save_item(NAME(m_dx_offset)); | |
| 157 | save_item(NAME(m_ex_offset)); | |
| 158 | save_item(NAME(m_fx_offset)); | |
| 159 | // TODO: save decomp-related items and fix their restore... | |
| 160 | } | |
| 161 | ||
| 162 | void sns_rom_spc7110_device::device_start() | |
| 163 | { | |
| 164 | memset(rom_bank_map, 0, sizeof(rom_bank_map)); | |
| 165 | ||
| 166 | spc7110_start(); | |
| 167 | } | |
| 168 | ||
| 169 | void sns_rom_spc7110rtc_device::device_start() | |
| 170 | { | |
| 171 | memset(rom_bank_map, 0, sizeof(rom_bank_map)); | |
| 172 | ||
| 173 | spc7110_start(); | |
| 174 | ||
| 175 | // RTC | |
| 176 | m_rtc_state = RTCS_Inactive; | |
| 177 | m_rtc_mode = RTCM_Linear; | |
| 178 | m_rtc_index = 0; | |
| 179 | m_rtc_offset = 0; | |
| 180 | ||
| 181 | // at this stage, rtc_ram is not yet allocated. this will be fixed when converting RTC to be a separate device. | |
| 182 | // spc7110_update_time(0); | |
| 183 | ||
| 184 | save_item(NAME(m_rtc_state)); | |
| 185 | save_item(NAME(m_rtc_mode)); | |
| 186 | save_item(NAME(m_rtc_index)); | |
| 187 | save_item(NAME(m_rtc_offset)); | |
| 188 | } | |
| 189 | ||
| 190 | ||
| 191 | /*------------------------------------------------- | |
| 192 | mapper specific handlers | |
| 193 | -------------------------------------------------*/ | |
| 194 | ||
| 195 | #define SPC7110_DECOMP_BUFFER_SIZE 64 | |
| 196 | ||
| 197 | static const UINT8 spc7110_evolution_table[53][4] = | |
| 198 | { | |
| 199 | { 0x5a, 1, 1, 1 }, | |
| 200 | { 0x25, 6, 2, 0 }, | |
| 201 | { 0x11, 8, 3, 0 }, | |
| 202 | { 0x08, 10, 4, 0 }, | |
| 203 | { 0x03, 12, 5, 0 }, | |
| 204 | { 0x01, 15, 5, 0 }, | |
| 205 | ||
| 206 | { 0x5a, 7, 7, 1 }, | |
| 207 | { 0x3f, 19, 8, 0 }, | |
| 208 | { 0x2c, 21, 9, 0 }, | |
| 209 | { 0x20, 22, 10, 0 }, | |
| 210 | { 0x17, 23, 11, 0 }, | |
| 211 | { 0x11, 25, 12, 0 }, | |
| 212 | { 0x0c, 26, 13, 0 }, | |
| 213 | { 0x09, 28, 14, 0 }, | |
| 214 | { 0x07, 29, 15, 0 }, | |
| 215 | { 0x05, 31, 16, 0 }, | |
| 216 | { 0x04, 32, 17, 0 }, | |
| 217 | { 0x03, 34, 18, 0 }, | |
| 218 | { 0x02, 35, 5, 0 }, | |
| 219 | ||
| 220 | { 0x5a, 20, 20, 1 }, | |
| 221 | { 0x48, 39, 21, 0 }, | |
| 222 | { 0x3a, 40, 22, 0 }, | |
| 223 | { 0x2e, 42, 23, 0 }, | |
| 224 | { 0x26, 44, 24, 0 }, | |
| 225 | { 0x1f, 45, 25, 0 }, | |
| 226 | { 0x19, 46, 26, 0 }, | |
| 227 | { 0x15, 25, 27, 0 }, | |
| 228 | { 0x11, 26, 28, 0 }, | |
| 229 | { 0x0e, 26, 29, 0 }, | |
| 230 | { 0x0b, 27, 30, 0 }, | |
| 231 | { 0x09, 28, 31, 0 }, | |
| 232 | { 0x08, 29, 32, 0 }, | |
| 233 | { 0x07, 30, 33, 0 }, | |
| 234 | { 0x05, 31, 34, 0 }, | |
| 235 | { 0x04, 33, 35, 0 }, | |
| 236 | { 0x04, 33, 36, 0 }, | |
| 237 | { 0x03, 34, 37, 0 }, | |
| 238 | { 0x02, 35, 38, 0 }, | |
| 239 | { 0x02, 36, 5, 0 }, | |
| 240 | ||
| 241 | { 0x58, 39, 40, 1 }, | |
| 242 | { 0x4d, 47, 41, 0 }, | |
| 243 | { 0x43, 48, 42, 0 }, | |
| 244 | { 0x3b, 49, 43, 0 }, | |
| 245 | { 0x34, 50, 44, 0 }, | |
| 246 | { 0x2e, 51, 45, 0 }, | |
| 247 | { 0x29, 44, 46, 0 }, | |
| 248 | { 0x25, 45, 24, 0 }, | |
| 249 | ||
| 250 | { 0x56, 47, 48, 1 }, | |
| 251 | { 0x4f, 47, 49, 0 }, | |
| 252 | { 0x47, 48, 50, 0 }, | |
| 253 | { 0x41, 49, 51, 0 }, | |
| 254 | { 0x3c, 50, 52, 0 }, | |
| 255 | { 0x37, 51, 43, 0 }, | |
| 256 | }; | |
| 257 | ||
| 258 | static const UINT8 spc7110_mode2_context_table[32][2] = | |
| 259 | { | |
| 260 | { 1, 2 }, | |
| 261 | ||
| 262 | { 3, 8 }, | |
| 263 | { 13, 14 }, | |
| 264 | ||
| 265 | { 15, 16 }, | |
| 266 | { 17, 18 }, | |
| 267 | { 19, 20 }, | |
| 268 | { 21, 22 }, | |
| 269 | { 23, 24 }, | |
| 270 | { 25, 26 }, | |
| 271 | { 25, 26 }, | |
| 272 | { 25, 26 }, | |
| 273 | { 25, 26 }, | |
| 274 | { 25, 26 }, | |
| 275 | { 27, 28 }, | |
| 276 | { 29, 30 }, | |
| 277 | ||
| 278 | { 31, 31 }, | |
| 279 | { 31, 31 }, | |
| 280 | { 31, 31 }, | |
| 281 | { 31, 31 }, | |
| 282 | { 31, 31 }, | |
| 283 | { 31, 31 }, | |
| 284 | { 31, 31 }, | |
| 285 | { 31, 31 }, | |
| 286 | { 31, 31 }, | |
| 287 | { 31, 31 }, | |
| 288 | { 31, 31 }, | |
| 289 | { 31, 31 }, | |
| 290 | { 31, 31 }, | |
| 291 | { 31, 31 }, | |
| 292 | { 31, 31 }, | |
| 293 | { 31, 31 }, | |
| 294 | ||
| 295 | { 31, 31 }, | |
| 296 | }; | |
| 297 | ||
| 298 | SPC7110_Decomp::SPC7110_Decomp(running_machine &machine) | |
| 299 | : m_machine(machine) | |
| 300 | { | |
| 301 | m_decomp_buffer = (UINT8*)auto_alloc_array(machine, UINT8, SPC7110_DECOMP_BUFFER_SIZE); | |
| 302 | reset(); | |
| 303 | ||
| 304 | for (int i = 0; i < 256; i++) | |
| 305 | { | |
| 306 | #define map(x, y) (((i >> x) & 1) << y) | |
| 307 | //2x8-bit | |
| 308 | m_morton16[1][i] = map(7, 15) + map(6, 7) + map(5, 14) + map(4, 6) | |
| 309 | + map(3, 13) + map(2, 5) + map(1, 12) + map(0, 4); | |
| 310 | m_morton16[0][i] = map(7, 11) + map(6, 3) + map(5, 10) + map(4, 2) | |
| 311 | + map(3, 9) + map(2, 1) + map(1, 8) + map(0, 0); | |
| 312 | //4x8-bit | |
| 313 | m_morton32[3][i] = map(7, 31) + map(6, 23) + map(5, 15) + map(4, 7) | |
| 314 | + map(3, 30) + map(2, 22) + map(1, 14) + map(0, 6); | |
| 315 | m_morton32[2][i] = map(7, 29) + map(6, 21) + map(5, 13) + map(4, 5) | |
| 316 | + map(3, 28) + map(2, 20) + map(1, 12) + map(0, 4); | |
| 317 | m_morton32[1][i] = map(7, 27) + map(6, 19) + map(5, 11) + map(4, 3) | |
| 318 | + map(3, 26) + map(2, 18) + map(1, 10) + map(0, 2); | |
| 319 | m_morton32[0][i] = map(7, 25) + map(6, 17) + map(5, 9) + map(4, 1) | |
| 320 | + map(3, 24) + map(2, 16) + map(1, 8) + map(0, 0); | |
| 321 | #undef map | |
| 322 | } | |
| 323 | } | |
| 324 | ||
| 325 | void SPC7110_Decomp::reset() | |
| 326 | { | |
| 327 | //mode 3 is invalid; this is treated as a special case to always return 0x00 | |
| 328 | //set to mode 3 so that reading decomp port before starting first decomp will return 0x00 | |
| 329 | m_decomp_mode = 3; | |
| 330 | ||
| 331 | m_decomp_buffer_rdoffset = 0; | |
| 332 | m_decomp_buffer_wroffset = 0; | |
| 333 | m_decomp_buffer_length = 0; | |
| 334 | } | |
| 335 | ||
| 336 | void SPC7110_Decomp::init(running_machine &machine, UINT8 *ROM, UINT32 len, UINT32 mode, UINT32 offset, UINT32 index) | |
| 337 | { | |
| 338 | m_decomp_mode = mode; | |
| 339 | m_decomp_offset = offset; | |
| 340 | ||
| 341 | m_decomp_buffer_rdoffset = 0; | |
| 342 | m_decomp_buffer_wroffset = 0; | |
| 343 | m_decomp_buffer_length = 0; | |
| 344 | ||
| 345 | //reset context states | |
| 346 | for (int i = 0; i < 32; i++) | |
| 347 | { | |
| 348 | m_context[i].index = 0; | |
| 349 | m_context[i].invert = 0; | |
| 350 | } | |
| 351 | ||
| 352 | switch (m_decomp_mode) | |
| 353 | { | |
| 354 | case 0: mode0(1, ROM, len); break; | |
| 355 | case 1: mode1(1, ROM, len); break; | |
| 356 | case 2: mode2(1, ROM, len); break; | |
| 357 | } | |
| 358 | ||
| 359 | //decompress up to requested output data index | |
| 360 | while (index--) | |
| 361 | { | |
| 362 | read(ROM, len); | |
| 363 | } | |
| 364 | } | |
| 365 | ||
| 366 | UINT8 SPC7110_Decomp::read(UINT8 *ROM, UINT32 len) | |
| 367 | { | |
| 368 | UINT8 data; | |
| 369 | ||
| 370 | if (m_decomp_buffer_length == 0) | |
| 371 | { | |
| 372 | //decompress at least (SPC7110_DECOMP_BUFFER_SIZE / 2) bytes to the buffer | |
| 373 | switch (m_decomp_mode) | |
| 374 | { | |
| 375 | case 0: | |
| 376 | mode0(0, ROM, len); | |
| 377 | break; | |
| 378 | ||
| 379 | case 1: | |
| 380 | mode1(0, ROM, len); | |
| 381 | break; | |
| 382 | ||
| 383 | case 2: | |
| 384 | mode2(0, ROM, len); | |
| 385 | break; | |
| 386 | ||
| 387 | default: | |
| 388 | return 0x00; | |
| 389 | } | |
| 390 | } | |
| 391 | ||
| 392 | data = m_decomp_buffer[m_decomp_buffer_rdoffset++]; | |
| 393 | m_decomp_buffer_rdoffset &= SPC7110_DECOMP_BUFFER_SIZE - 1; | |
| 394 | m_decomp_buffer_length--; | |
| 395 | return data; | |
| 396 | } | |
| 397 | ||
| 398 | void SPC7110_Decomp::write(UINT8 data) | |
| 399 | { | |
| 400 | m_decomp_buffer[m_decomp_buffer_wroffset++] = data; | |
| 401 | m_decomp_buffer_wroffset &= SPC7110_DECOMP_BUFFER_SIZE - 1; | |
| 402 | m_decomp_buffer_length++; | |
| 403 | } | |
| 404 | ||
| 405 | UINT8 SPC7110_Decomp::dataread(UINT8 *ROM, UINT32 len) | |
| 406 | { | |
| 407 | UINT32 size = len - 0x100000; | |
| 408 | while (m_decomp_offset >= size) | |
| 409 | { | |
| 410 | m_decomp_offset -= size; | |
| 411 | } | |
| 412 | return ROM[0x100000 + m_decomp_offset++]; | |
| 413 | } | |
| 414 | ||
| 415 | void SPC7110_Decomp::mode0(UINT8 init, UINT8 *ROM, UINT32 len) | |
| 416 | { | |
| 417 | static UINT8 val, in, span; | |
| 418 | static INT32 out, inverts, lps, in_count; | |
| 419 | ||
| 420 | if (init == 1) | |
| 421 | { | |
| 422 | out = inverts = lps = 0; | |
| 423 | span = 0xff; | |
| 424 | val = dataread(ROM, len); | |
| 425 | in = dataread(ROM, len); | |
| 426 | in_count = 8; | |
| 427 | return; | |
| 428 | } | |
| 429 | ||
| 430 | while (m_decomp_buffer_length < (SPC7110_DECOMP_BUFFER_SIZE >> 1)) | |
| 431 | { | |
| 432 | for (int bit = 0; bit < 8; bit++) | |
| 433 | { | |
| 434 | //get context | |
| 435 | UINT8 mask = (1 << (bit & 3)) - 1; | |
| 436 | UINT8 con = mask + ((inverts & mask) ^ (lps & mask)); | |
| 437 | UINT32 prob, mps, flag_lps; | |
| 438 | UINT32 shift = 0; | |
| 439 | if (bit > 3) | |
| 440 | { | |
| 441 | con += 15; | |
| 442 | } | |
| 443 | ||
| 444 | //get prob and mps | |
| 445 | prob = probability(con); | |
| 446 | mps = (((out >> 15) & 1) ^ m_context[con].invert); | |
| 447 | ||
| 448 | //get bit | |
| 449 | if (val <= span - prob) //mps | |
| 450 | { | |
| 451 | span = span - prob; | |
| 452 | out = (out << 1) + mps; | |
| 453 | flag_lps = 0; | |
| 454 | } | |
| 455 | else //lps | |
| 456 | { | |
| 457 | val = val - (span - (prob - 1)); | |
| 458 | span = prob - 1; | |
| 459 | out = (out << 1) + 1 - mps; | |
| 460 | flag_lps = 1; | |
| 461 | } | |
| 462 | ||
| 463 | //renormalize | |
| 464 | while (span < 0x7f) | |
| 465 | { | |
| 466 | shift++; | |
| 467 | ||
| 468 | span = (span << 1) + 1; | |
| 469 | val = (val << 1) + (in >> 7); | |
| 470 | ||
| 471 | in <<= 1; | |
| 472 | if (--in_count == 0) | |
| 473 | { | |
| 474 | in = dataread(ROM, len); | |
| 475 | in_count = 8; | |
| 476 | } | |
| 477 | } | |
| 478 | ||
| 479 | //update processing info | |
| 480 | lps = (lps << 1) + flag_lps; | |
| 481 | inverts = (inverts << 1) + m_context[con].invert; | |
| 482 | ||
| 483 | //update context state | |
| 484 | if (flag_lps & toggle_invert(con)) | |
| 485 | { | |
| 486 | m_context[con].invert ^= 1; | |
| 487 | } | |
| 488 | if (flag_lps) | |
| 489 | { | |
| 490 | m_context[con].index = next_lps(con); | |
| 491 | } | |
| 492 | else if (shift) | |
| 493 | { | |
| 494 | m_context[con].index = next_mps(con); | |
| 495 | } | |
| 496 | } | |
| 497 | ||
| 498 | //save byte | |
| 499 | write(out); | |
| 500 | } | |
| 501 | } | |
| 502 | ||
| 503 | void SPC7110_Decomp::mode1(UINT8 init, UINT8 *ROM, UINT32 len) | |
| 504 | { | |
| 505 | static INT32 pixelorder[4], realorder[4]; | |
| 506 | static UINT8 in, val, span; | |
| 507 | static INT32 out, inverts, lps, in_count; | |
| 508 | ||
| 509 | if (init == 1) | |
| 510 | { | |
| 511 | for (int i = 0; i < 4; i++) | |
| 512 | { | |
| 513 | pixelorder[i] = i; | |
| 514 | } | |
| 515 | out = inverts = lps = 0; | |
| 516 | span = 0xff; | |
| 517 | val = dataread(ROM, len); | |
| 518 | in = dataread(ROM, len); | |
| 519 | in_count = 8; | |
| 520 | return; | |
| 521 | } | |
| 522 | ||
| 523 | while (m_decomp_buffer_length < (SPC7110_DECOMP_BUFFER_SIZE >> 1)) | |
| 524 | { | |
| 525 | UINT16 data; | |
| 526 | for (int pixel = 0; pixel < 8; pixel++) | |
| 527 | { | |
| 528 | //get first symbol context | |
| 529 | UINT32 a = ((out >> (1 * 2)) & 3); | |
| 530 | UINT32 b = ((out >> (7 * 2)) & 3); | |
| 531 | UINT32 c = ((out >> (8 * 2)) & 3); | |
| 532 | UINT32 con = (a == b) ? (b != c) : (b == c) ? 2 : 4 - (a == c); | |
| 533 | ||
| 534 | //update pixel order | |
| 535 | UINT32 m, n; | |
| 536 | for (m = 0; m < 4; m++) | |
| 537 | { | |
| 538 | if (pixelorder[m] == a) | |
| 539 | { | |
| 540 | break; | |
| 541 | } | |
| 542 | } | |
| 543 | for (n = m; n > 0; n--) | |
| 544 | { | |
| 545 | pixelorder[n] = pixelorder[n - 1]; | |
| 546 | } | |
| 547 | pixelorder[0] = a; | |
| 548 | ||
| 549 | //calculate the real pixel order | |
| 550 | for (m = 0; m < 4; m++) | |
| 551 | { | |
| 552 | realorder[m] = pixelorder[m]; | |
| 553 | } | |
| 554 | ||
| 555 | //rotate reference pixel c value to top | |
| 556 | for (m = 0; m < 4; m++) | |
| 557 | { | |
| 558 | if (realorder[m] == c) | |
| 559 | { | |
| 560 | break; | |
| 561 | } | |
| 562 | } | |
| 563 | for (n = m; n > 0; n--) | |
| 564 | { | |
| 565 | realorder[n] = realorder[n - 1]; | |
| 566 | } | |
| 567 | realorder[0] = c; | |
| 568 | ||
| 569 | //rotate reference pixel b value to top | |
| 570 | for (m = 0; m < 4; m++) | |
| 571 | { | |
| 572 | if (realorder[m] == b) | |
| 573 | { | |
| 574 | break; | |
| 575 | } | |
| 576 | } | |
| 577 | for (n = m; n > 0; n--) | |
| 578 | { | |
| 579 | realorder[n] = realorder[n - 1]; | |
| 580 | } | |
| 581 | realorder[0] = b; | |
| 582 | ||
| 583 | //rotate reference pixel a value to top | |
| 584 | for (m = 0; m < 4; m++) | |
| 585 | { | |
| 586 | if (realorder[m] == a) | |
| 587 | { | |
| 588 | break; | |
| 589 | } | |
| 590 | } | |
| 591 | for (n = m; n > 0; n--) | |
| 592 | { | |
| 593 | realorder[n] = realorder[n - 1]; | |
| 594 | } | |
| 595 | realorder[0] = a; | |
| 596 | ||
| 597 | //get 2 symbols | |
| 598 | for (int bit = 0; bit < 2; bit++) | |
| 599 | { | |
| 600 | //get prob | |
| 601 | UINT32 prob = probability(con); | |
| 602 | UINT32 shift = 0; | |
| 603 | ||
| 604 | //get symbol | |
| 605 | UINT32 flag_lps; | |
| 606 | if (val <= span - prob) //mps | |
| 607 | { | |
| 608 | span = span - prob; | |
| 609 | flag_lps = 0; | |
| 610 | } | |
| 611 | else //lps | |
| 612 | { | |
| 613 | val = val - (span - (prob - 1)); | |
| 614 | span = prob - 1; | |
| 615 | flag_lps = 1; | |
| 616 | } | |
| 617 | ||
| 618 | //renormalize | |
| 619 | while (span < 0x7f) | |
| 620 | { | |
| 621 | shift++; | |
| 622 | ||
| 623 | span = (span << 1) + 1; | |
| 624 | val = (val << 1) + (in >> 7); | |
| 625 | ||
| 626 | in <<= 1; | |
| 627 | if (--in_count == 0) | |
| 628 | { | |
| 629 | in = dataread(ROM, len); | |
| 630 | in_count = 8; | |
| 631 | } | |
| 632 | } | |
| 633 | ||
| 634 | //update processing info | |
| 635 | lps = (lps << 1) + flag_lps; | |
| 636 | inverts = (inverts << 1) + m_context[con].invert; | |
| 637 | ||
| 638 | //update context state | |
| 639 | if (flag_lps & toggle_invert(con)) | |
| 640 | { | |
| 641 | m_context[con].invert ^= 1; | |
| 642 | } | |
| 643 | if (flag_lps) | |
| 644 | { | |
| 645 | m_context[con].index = next_lps(con); | |
| 646 | } | |
| 647 | else if (shift) | |
| 648 | { | |
| 649 | m_context[con].index = next_mps(con); | |
| 650 | } | |
| 651 | ||
| 652 | //get next context | |
| 653 | con = 5 + (con << 1) + ((lps ^ inverts) & 1); | |
| 654 | } | |
| 655 | ||
| 656 | //get pixel | |
| 657 | b = realorder[(lps ^ inverts) & 3]; | |
| 658 | out = (out << 2) + b; | |
| 659 | } | |
| 660 | ||
| 661 | //turn pixel data into bitplanes | |
| 662 | data = morton_2x8(out); | |
| 663 | write(data >> 8); | |
| 664 | write(data >> 0); | |
| 665 | } | |
| 666 | } | |
| 667 | ||
| 668 | void SPC7110_Decomp::mode2(UINT8 init, UINT8 *ROM, UINT32 len) | |
| 669 | { | |
| 670 | static INT32 pixelorder[16], realorder[16]; | |
| 671 | static UINT8 bitplanebuffer[16], buffer_index; | |
| 672 | static UINT8 in, val, span; | |
| 673 | static INT32 out0, out1, inverts, lps, in_count; | |
| 674 | ||
| 675 | if (init == 1) | |
| 676 | { | |
| 677 | for (int i = 0; i < 16; i++) | |
| 678 | { | |
| 679 | pixelorder[i] = i; | |
| 680 | } | |
| 681 | buffer_index = 0; | |
| 682 | out0 = out1 = inverts = lps = 0; | |
| 683 | span = 0xff; | |
| 684 | val = dataread(ROM, len); | |
| 685 | in = dataread(ROM, len); | |
| 686 | in_count = 8; | |
| 687 | return; | |
| 688 | } | |
| 689 | ||
| 690 | while (m_decomp_buffer_length < (SPC7110_DECOMP_BUFFER_SIZE >> 1)) | |
| 691 | { | |
| 692 | UINT32 data; | |
| 693 | for (int pixel = 0; pixel < 8; pixel++) | |
| 694 | { | |
| 695 | //get first symbol context | |
| 696 | UINT32 a = ((out0 >> (0 * 4)) & 15); | |
| 697 | UINT32 b = ((out0 >> (7 * 4)) & 15); | |
| 698 | UINT32 c = ((out1 >> (0 * 4)) & 15); | |
| 699 | UINT32 con = 0; | |
| 700 | UINT32 refcon = (a == b) ? (b != c) : (b == c) ? 2 : 4 - (a == c); | |
| 701 | ||
| 702 | //update pixel order | |
| 703 | UINT32 m, n; | |
| 704 | for (m = 0; m < 16; m++) | |
| 705 | { | |
| 706 | if (pixelorder[m] == a) | |
| 707 | { | |
| 708 | break; | |
| 709 | } | |
| 710 | } | |
| 711 | for (n = m; n > 0; n--) | |
| 712 | { | |
| 713 | pixelorder[n] = pixelorder[n - 1]; | |
| 714 | } | |
| 715 | pixelorder[0] = a; | |
| 716 | ||
| 717 | //calculate the real pixel order | |
| 718 | for (m = 0; m < 16; m++) | |
| 719 | { | |
| 720 | realorder[m] = pixelorder[m]; | |
| 721 | } | |
| 722 | ||
| 723 | //rotate reference pixel c value to top | |
| 724 | for (m = 0; m < 16; m++) | |
| 725 | { | |
| 726 | if (realorder[m] == c) | |
| 727 | { | |
| 728 | break; | |
| 729 | } | |
| 730 | } | |
| 731 | for (n = m; n > 0; n--) | |
| 732 | { | |
| 733 | realorder[n] = realorder[n - 1]; | |
| 734 | } | |
| 735 | realorder[0] = c; | |
| 736 | ||
| 737 | //rotate reference pixel b value to top | |
| 738 | for (m = 0; m < 16; m++) | |
| 739 | { | |
| 740 | if (realorder[m] == b) | |
| 741 | { | |
| 742 | break; | |
| 743 | } | |
| 744 | } | |
| 745 | for (n = m; n > 0; n--) | |
| 746 | { | |
| 747 | realorder[n] = realorder[n - 1]; | |
| 748 | } | |
| 749 | realorder[0] = b; | |
| 750 | ||
| 751 | //rotate reference pixel a value to top | |
| 752 | for (m = 0; m < 16; m++) | |
| 753 | { | |
| 754 | if (realorder[m] == a) | |
| 755 | { | |
| 756 | break; | |
| 757 | } | |
| 758 | } | |
| 759 | for (n = m; n > 0; n--) | |
| 760 | { | |
| 761 | realorder[n] = realorder[n - 1]; | |
| 762 | } | |
| 763 | realorder[0] = a; | |
| 764 | ||
| 765 | //get 4 symbols | |
| 766 | for (int bit = 0; bit < 4; bit++) | |
| 767 | { | |
| 768 | UINT32 invertbit, shift; | |
| 769 | ||
| 770 | //get prob | |
| 771 | UINT32 prob = probability(con); | |
| 772 | ||
| 773 | //get symbol | |
| 774 | UINT32 flag_lps; | |
| 775 | if (val <= span - prob) //mps | |
| 776 | { | |
| 777 | span = span - prob; | |
| 778 | flag_lps = 0; | |
| 779 | } | |
| 780 | else //lps | |
| 781 | { | |
| 782 | val = val - (span - (prob - 1)); | |
| 783 | span = prob - 1; | |
| 784 | flag_lps = 1; | |
| 785 | } | |
| 786 | ||
| 787 | //renormalize | |
| 788 | shift = 0; | |
| 789 | while (span < 0x7f) | |
| 790 | { | |
| 791 | shift++; | |
| 792 | ||
| 793 | span = (span << 1) + 1; | |
| 794 | val = (val << 1) + (in >> 7); | |
| 795 | ||
| 796 | in <<= 1; | |
| 797 | if (--in_count == 0) | |
| 798 | { | |
| 799 | in = dataread(ROM, len); | |
| 800 | in_count = 8; | |
| 801 | } | |
| 802 | } | |
| 803 | ||
| 804 | //update processing info | |
| 805 | lps = (lps << 1) + flag_lps; | |
| 806 | invertbit = m_context[con].invert; | |
| 807 | inverts = (inverts << 1) + invertbit; | |
| 808 | ||
| 809 | //update context state | |
| 810 | if (flag_lps & toggle_invert(con)) | |
| 811 | { | |
| 812 | m_context[con].invert ^= 1; | |
| 813 | } | |
| 814 | if (flag_lps) | |
| 815 | { | |
| 816 | m_context[con].index = next_lps(con); | |
| 817 | } | |
| 818 | else if (shift) | |
| 819 | { | |
| 820 | m_context[con].index = next_mps(con); | |
| 821 | } | |
| 822 | ||
| 823 | //get next context | |
| 824 | con = spc7110_mode2_context_table[con][flag_lps ^ invertbit] + (con == 1 ? refcon : 0); | |
| 825 | } | |
| 826 | ||
| 827 | //get pixel | |
| 828 | b = realorder[(lps ^ inverts) & 0x0f]; | |
| 829 | out1 = (out1 << 4) + ((out0 >> 28) & 0x0f); | |
| 830 | out0 = (out0 << 4) + b; | |
| 831 | } | |
| 832 | ||
| 833 | //convert pixel data into bitplanes | |
| 834 | data = morton_4x8(out0); | |
| 835 | write(data >> 24); | |
| 836 | write(data >> 16); | |
| 837 | bitplanebuffer[buffer_index++] = data >> 8; | |
| 838 | bitplanebuffer[buffer_index++] = data >> 0; | |
| 839 | ||
| 840 | if (buffer_index == 16) | |
| 841 | { | |
| 842 | for (int i = 0; i < 16; i++) | |
| 843 | { | |
| 844 | write(bitplanebuffer[i]); | |
| 845 | } | |
| 846 | buffer_index = 0; | |
| 847 | } | |
| 848 | } | |
| 849 | } | |
| 850 | ||
| 851 | UINT8 SPC7110_Decomp::probability(UINT32 n) | |
| 852 | { | |
| 853 | return spc7110_evolution_table[m_context[n].index][0]; | |
| 854 | } | |
| 855 | ||
| 856 | UINT8 SPC7110_Decomp::next_lps(UINT32 n) | |
| 857 | { | |
| 858 | return spc7110_evolution_table[m_context[n].index][1]; | |
| 859 | } | |
| 860 | ||
| 861 | UINT8 SPC7110_Decomp::next_mps(UINT32 n) | |
| 862 | { | |
| 863 | return spc7110_evolution_table[m_context[n].index][2]; | |
| 864 | } | |
| 865 | ||
| 866 | UINT8 SPC7110_Decomp::toggle_invert(UINT32 n) | |
| 867 | { | |
| 868 | return spc7110_evolution_table[m_context[n].index][3]; | |
| 869 | } | |
| 870 | ||
| 871 | UINT32 SPC7110_Decomp::morton_2x8(UINT32 data) | |
| 872 | { | |
| 873 | //reverse morton lookup: de-interleave two 8-bit values | |
| 874 | //15, 13, 11, 9, 7, 5, 3, 1 -> 15- 8 | |
| 875 | //14, 12, 10, 8, 6, 4, 2, 0 -> 7- 0 | |
| 876 | return m_morton16[0][(data >> 0) & 255] + m_morton16[1][(data >> 8) & 255]; | |
| 877 | } | |
| 878 | ||
| 879 | UINT32 SPC7110_Decomp::morton_4x8(UINT32 data) | |
| 880 | { | |
| 881 | //reverse morton lookup: de-interleave four 8-bit values | |
| 882 | //31, 27, 23, 19, 15, 11, 7, 3 -> 31-24 | |
| 883 | //30, 26, 22, 18, 14, 10, 6, 2 -> 23-16 | |
| 884 | //29, 25, 21, 17, 13, 9, 5, 1 -> 15- 8 | |
| 885 | //28, 24, 20, 16, 12, 8, 4, 0 -> 7- 0 | |
| 886 | return m_morton32[0][(data >> 0) & 255] + m_morton32[1][(data >> 8) & 255] | |
| 887 | + m_morton32[2][(data >> 16) & 255] + m_morton32[3][(data >> 24) & 255]; | |
| 888 | } | |
| 889 | ||
| 890 | ||
| 891 | static const UINT32 spc7110_months[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; | |
| 892 | ||
| 893 | UINT32 sns_rom_spc7110_device::spc7110_datarom_addr(UINT32 addr, UINT32 rom_len) | |
| 894 | { | |
| 895 | UINT32 size = rom_len - 0x100000; | |
| 896 | while (addr >= size) | |
| 897 | { | |
| 898 | addr -= size; | |
| 899 | } | |
| 900 | return addr + 0x100000; | |
| 901 | } | |
| 902 | ||
| 903 | UINT32 sns_rom_spc7110_device::spc7110_data_pointer(void) | |
| 904 | { | |
| 905 | return m_r4811 + (m_r4812 << 8) + (m_r4813 << 16); | |
| 906 | } | |
| 907 | ||
| 908 | UINT32 sns_rom_spc7110_device::spc7110_data_adjust(void) | |
| 909 | { | |
| 910 | return m_r4814 + (m_r4815 << 8); | |
| 911 | } | |
| 912 | ||
| 913 | UINT32 sns_rom_spc7110_device::spc7110_data_increment(void) | |
| 914 | { | |
| 915 | return m_r4816 + (m_r4817 << 8); | |
| 916 | } | |
| 917 | ||
| 918 | void sns_rom_spc7110_device::spc7110_set_data_pointer(UINT32 addr) | |
| 919 | { | |
| 920 | m_r4811 = addr; | |
| 921 | m_r4812 = addr >> 8; | |
| 922 | m_r4813 = addr >> 16; | |
| 923 | } | |
| 924 | ||
| 925 | void sns_rom_spc7110_device::spc7110_set_data_adjust(UINT32 addr) | |
| 926 | { | |
| 927 | m_r4814 = addr; | |
| 928 | m_r4815 = addr >> 8; | |
| 929 | } | |
| 930 | ||
| 931 | // FIXME: SPC7110 RTC is capable of rounding/adding/zero-ing seconds, so | |
| 932 | // we should probably keep track internally of the time rather than updating | |
| 933 | // to the system time at each call with a "offset" tracking as we do now... | |
| 934 | // (and indeed current code fails to pass Tengai Makyou Zero tests) | |
| 935 | void sns_rom_spc7110_device::spc7110_update_time(UINT8 offset) | |
| 936 | { | |
| 937 | system_time curtime, *systime = &curtime; | |
| 938 | machine().current_datetime(curtime); | |
| 939 | int update = 1; | |
| 940 | ||
| 941 | m_rtc_offset += offset; | |
| 942 | ||
| 943 | // TEST: can we go beyond 24hrs of rounding?!? I doubt it will ever go beyond 3600, but I could be wrong... | |
| 944 | assert(m_rtc_offset < 86400); | |
| 945 | ||
| 946 | /* do not update if CR0 or CR2 timer disable flags are set */ | |
| 947 | if ((m_rtc_ram[13] & 0x01) || (m_rtc_ram[15] & 0x03)) | |
| 948 | update = 0; | |
| 949 | ||
| 950 | if (update) | |
| 951 | { | |
| 952 | /* update time with offset, assuming offset < 3600s */ | |
| 953 | UINT8 second = systime->local_time.second; | |
| 954 | UINT8 minute = systime->local_time.minute; | |
| 955 | UINT8 hour = systime->local_time.hour; | |
| 956 | UINT8 mday = systime->local_time.mday; | |
| 957 | ||
| 958 | while (m_rtc_offset >= 3600) | |
| 959 | { | |
| 960 | m_rtc_offset -= 3600; | |
| 961 | hour++; | |
| 962 | ||
| 963 | if (hour == 24) | |
| 964 | { | |
| 965 | mday++; | |
| 966 | hour = 0; | |
| 967 | } | |
| 968 | } | |
| 969 | ||
| 970 | while (m_rtc_offset >= 60) | |
| 971 | { | |
| 972 | m_rtc_offset -= 60; | |
| 973 | minute++; | |
| 974 | ||
| 975 | if (minute == 60) | |
| 976 | { | |
| 977 | hour++; | |
| 978 | minute = 0; | |
| 979 | } | |
| 980 | } | |
| 981 | ||
| 982 | while (m_rtc_offset) | |
| 983 | { | |
| 984 | m_rtc_offset -= 1; | |
| 985 | second++; | |
| 986 | ||
| 987 | if (second == 60) | |
| 988 | { | |
| 989 | minute++; | |
| 990 | second = 0; | |
| 991 | } | |
| 992 | } | |
| 993 | ||
| 994 | m_rtc_ram[0] = second % 10; | |
| 995 | m_rtc_ram[1] = second / 10; | |
| 996 | m_rtc_ram[2] = minute % 10; | |
| 997 | m_rtc_ram[3] = minute / 10; | |
| 998 | m_rtc_ram[4] = hour % 10; | |
| 999 | m_rtc_ram[5] = hour / 10; | |
| 1000 | m_rtc_ram[6] = mday % 10; | |
| 1001 | m_rtc_ram[7] = mday / 10; | |
| 1002 | m_rtc_ram[8] = systime->local_time.month % 10; | |
| 1003 | m_rtc_ram[9] = systime->local_time.month / 10; | |
| 1004 | m_rtc_ram[8] = systime->local_time.month; | |
| 1005 | m_rtc_ram[10] = (systime->local_time.year - 1900) % 10; | |
| 1006 | m_rtc_ram[11] = ((systime->local_time.year - 1900) / 10) % 10; | |
| 1007 | m_rtc_ram[12] = systime->local_time.weekday % 7; | |
| 1008 | } | |
| 1009 | } | |
| 1010 | ||
| 1011 | READ8_MEMBER(sns_rom_spc7110_device::read_l) | |
| 1012 | { | |
| 1013 | UINT16 address = offset & 0xffff; | |
| 1014 | if (offset < 0x400000) | |
| 1015 | { | |
| 1016 | if (address >= 0x6000 && address < 0x8000) | |
| 1017 | { | |
| 1018 | if (offset < 0x10000) | |
| 1019 | return m_ram[offset & 0x1fff]; | |
| 1020 | if (offset >= 0x300000 && offset < 0x310000) | |
| 1021 | return m_ram[offset & 0x1fff]; | |
| 1022 | } | |
| 1023 | if (address >= 0x8000) | |
| 1024 | return m_rom[rom_bank_map[offset / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 1025 | } | |
| 1026 | ||
| 1027 | return 0xff; | |
| 1028 | } | |
| 1029 | ||
| 1030 | READ8_MEMBER(sns_rom_spc7110_device::read_h) | |
| 1031 | { | |
| 1032 | UINT16 address = offset & 0xfffff; | |
| 1033 | ||
| 1034 | if (offset < 0x400000) | |
| 1035 | { | |
| 1036 | if (address >= 0x6000 && address < 0x8000) | |
| 1037 | { | |
| 1038 | if (offset < 0x10000) | |
| 1039 | return m_ram[offset & 0x1fff]; | |
| 1040 | if (offset >= 0x300000 && offset < 0x310000) | |
| 1041 | return m_ram[offset & 0x1fff]; | |
| 1042 | } | |
| 1043 | if (address >= 0x8000) | |
| 1044 | return m_rom[rom_bank_map[offset / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 1045 | } | |
| 1046 | else | |
| 1047 | { | |
| 1048 | switch (offset & 0x300000) | |
| 1049 | { | |
| 1050 | case 0x000000: | |
| 1051 | return m_rom[rom_bank_map[(offset - 0x400000) / 0x8000] * 0x8000 + (offset & 0x7fff)]; | |
| 1052 | case 0x100000: | |
| 1053 | return m_rom[m_dx_offset + address]; | |
| 1054 | case 0x200000: | |
| 1055 | return m_rom[m_ex_offset + address]; | |
| 1056 | case 0x300000: | |
| 1057 | return m_rom[m_fx_offset + address]; | |
| 1058 | default: | |
| 1059 | break; | |
| 1060 | } | |
| 1061 | } | |
| 1062 | ||
| 1063 | return 0xff; | |
| 1064 | } | |
| 1065 | ||
| 1066 | WRITE8_MEMBER(sns_rom_spc7110_device::write_l) | |
| 1067 | { | |
| 1068 | m_ram[offset & 0x1fff] = data; | |
| 1069 | } | |
| 1070 | ||
| 1071 | ||
| 1072 | READ8_MEMBER(sns_rom_spc7110_device::chip_read) | |
| 1073 | { | |
| 1074 | UINT8 *ROM = get_rom_base(); | |
| 1075 | UINT32 len = get_rom_size(); | |
| 1076 | UINT16 addr = offset & 0xffff; | |
| 1077 | ||
| 1078 | switch (addr) | |
| 1079 | { | |
| 1080 | //================== | |
| 1081 | //decompression unit | |
| 1082 | //================== | |
| 1083 | ||
| 1084 | case 0x4800: | |
| 1085 | { | |
| 1086 | UINT16 counter = (m_r4809 + (m_r480a << 8)); | |
| 1087 | counter--; | |
| 1088 | m_r4809 = counter; | |
| 1089 | m_r480a = counter >> 8; | |
| 1090 | return m_decomp->read(ROM, len); | |
| 1091 | } | |
| 1092 | case 0x4801: return m_r4801; | |
| 1093 | case 0x4802: return m_r4802; | |
| 1094 | case 0x4803: return m_r4803; | |
| 1095 | case 0x4804: return m_r4804; | |
| 1096 | case 0x4805: return m_r4805; | |
| 1097 | case 0x4806: return m_r4806; | |
| 1098 | case 0x4807: return m_r4807; | |
| 1099 | case 0x4808: return m_r4808; | |
| 1100 | case 0x4809: return m_r4809; | |
| 1101 | case 0x480a: return m_r480a; | |
| 1102 | case 0x480b: return m_r480b; | |
| 1103 | case 0x480c: | |
| 1104 | { | |
| 1105 | UINT8 status = m_r480c; | |
| 1106 | m_r480c &= 0x7f; | |
| 1107 | return status; | |
| 1108 | } | |
| 1109 | ||
| 1110 | //============== | |
| 1111 | //data port unit | |
| 1112 | //============== | |
| 1113 | ||
| 1114 | case 0x4810: | |
| 1115 | { | |
| 1116 | UINT8 data; | |
| 1117 | UINT32 address, adjust, adjustaddr; | |
| 1118 | ||
| 1119 | if (m_r481x != 0x07) return 0x00; | |
| 1120 | ||
| 1121 | address = spc7110_data_pointer(); | |
| 1122 | adjust = spc7110_data_adjust(); | |
| 1123 | if (m_r4818 & 8) | |
| 1124 | { | |
| 1125 | adjust = (INT16)adjust; //16-bit sign extend | |
| 1126 | } | |
| 1127 | ||
| 1128 | adjustaddr = address; | |
| 1129 | if (m_r4818 & 2) | |
| 1130 | { | |
| 1131 | adjustaddr += adjust; | |
| 1132 | spc7110_set_data_adjust(adjust + 1); | |
| 1133 | } | |
| 1134 | ||
| 1135 | data = ROM[spc7110_datarom_addr(adjustaddr, len)]; | |
| 1136 | if (!(m_r4818 & 2)) | |
| 1137 | { | |
| 1138 | UINT32 increment = (m_r4818 & 1) ? spc7110_data_increment() : 1; | |
| 1139 | if (m_r4818 & 4) | |
| 1140 | { | |
| 1141 | increment = (INT16)increment; //16-bit sign extend | |
| 1142 | } | |
| 1143 | ||
| 1144 | if ((m_r4818 & 16) == 0) | |
| 1145 | { | |
| 1146 | spc7110_set_data_pointer(address + increment); | |
| 1147 | } | |
| 1148 | else | |
| 1149 | { | |
| 1150 | spc7110_set_data_adjust(adjust + increment); | |
| 1151 | } | |
| 1152 | } | |
| 1153 | ||
| 1154 | return data; | |
| 1155 | } | |
| 1156 | case 0x4811: return m_r4811; | |
| 1157 | case 0x4812: return m_r4812; | |
| 1158 | case 0x4813: return m_r4813; | |
| 1159 | case 0x4814: return m_r4814; | |
| 1160 | case 0x4815: return m_r4815; | |
| 1161 | case 0x4816: return m_r4816; | |
| 1162 | case 0x4817: return m_r4817; | |
| 1163 | case 0x4818: return m_r4818; | |
| 1164 | case 0x481a: | |
| 1165 | { | |
| 1166 | UINT8 data; | |
| 1167 | UINT32 address, adjust; | |
| 1168 | if (m_r481x != 0x07) | |
| 1169 | { | |
| 1170 | return 0x00; | |
| 1171 | } | |
| 1172 | ||
| 1173 | address = spc7110_data_pointer(); | |
| 1174 | adjust = spc7110_data_adjust(); | |
| 1175 | if (m_r4818 & 8) | |
| 1176 | { | |
| 1177 | adjust = (INT16)adjust; //16-bit sign extend | |
| 1178 | } | |
| 1179 | ||
| 1180 | data = ROM[spc7110_datarom_addr(address + adjust, len)]; | |
| 1181 | if ((m_r4818 & 0x60) == 0x60) | |
| 1182 | { | |
| 1183 | if ((m_r4818 & 16) == 0) | |
| 1184 | { | |
| 1185 | spc7110_set_data_pointer(address + adjust); | |
| 1186 | } | |
| 1187 | else | |
| 1188 | { | |
| 1189 | spc7110_set_data_adjust(adjust + adjust); | |
| 1190 | } | |
| 1191 | } | |
| 1192 | ||
| 1193 | return data; | |
| 1194 | } | |
| 1195 | ||
| 1196 | //========= | |
| 1197 | //math unit | |
| 1198 | //========= | |
| 1199 | ||
| 1200 | case 0x4820: return m_r4820; | |
| 1201 | case 0x4821: return m_r4821; | |
| 1202 | case 0x4822: return m_r4822; | |
| 1203 | case 0x4823: return m_r4823; | |
| 1204 | case 0x4824: return m_r4824; | |
| 1205 | case 0x4825: return m_r4825; | |
| 1206 | case 0x4826: return m_r4826; | |
| 1207 | case 0x4827: return m_r4827; | |
| 1208 | case 0x4828: return m_r4828; | |
| 1209 | case 0x4829: return m_r4829; | |
| 1210 | case 0x482a: return m_r482a; | |
| 1211 | case 0x482b: return m_r482b; | |
| 1212 | case 0x482c: return m_r482c; | |
| 1213 | case 0x482d: return m_r482d; | |
| 1214 | case 0x482e: return m_r482e; | |
| 1215 | case 0x482f: | |
| 1216 | { | |
| 1217 | UINT8 status = m_r482f; | |
| 1218 | m_r482f &= 0x7f; | |
| 1219 | return status; | |
| 1220 | } | |
| 1221 | ||
| 1222 | //=================== | |
| 1223 | //memory mapping unit | |
| 1224 | //=================== | |
| 1225 | ||
| 1226 | case 0x4830: return m_r4830; | |
| 1227 | case 0x4831: return m_r4831; | |
| 1228 | case 0x4832: return m_r4832; | |
| 1229 | case 0x4833: return m_r4833; | |
| 1230 | case 0x4834: return m_r4834; | |
| 1231 | ||
| 1232 | //==================== | |
| 1233 | //real-time clock unit | |
| 1234 | //==================== | |
| 1235 | case 0x4840: return m_r4840; | |
| 1236 | case 0x4841: | |
| 1237 | { | |
| 1238 | UINT8 data = 0; | |
| 1239 | if (m_rtc_state == RTCS_Inactive || m_rtc_state == RTCS_ModeSelect) | |
| 1240 | return 0x00; | |
| 1241 | ||
| 1242 | m_r4842 = 0x80; | |
| 1243 | data = m_rtc_ram[m_rtc_index]; | |
| 1244 | m_rtc_index = (m_rtc_index + 1) & 15; | |
| 1245 | return data; | |
| 1246 | } | |
| 1247 | case 0x4842: | |
| 1248 | { | |
| 1249 | UINT8 status = m_r4842; | |
| 1250 | m_r4842 &= 0x7f; | |
| 1251 | return status; | |
| 1252 | } | |
| 1253 | } | |
| 1254 | ||
| 1255 | return 0xff; | |
| 1256 | } | |
| 1257 | ||
| 1258 | WRITE8_MEMBER(sns_rom_spc7110_device::chip_write) | |
| 1259 | { | |
| 1260 | UINT8 *ROM = get_rom_base(); | |
| 1261 | UINT32 len = get_rom_size(); | |
| 1262 | UINT16 addr = offset & 0xffff; | |
| 1263 | ||
| 1264 | switch (addr) | |
| 1265 | { | |
| 1266 | //================== | |
| 1267 | //decompression unit | |
| 1268 | //================== | |
| 1269 | ||
| 1270 | case 0x4801: m_r4801 = data; break; | |
| 1271 | case 0x4802: m_r4802 = data; break; | |
| 1272 | case 0x4803: m_r4803 = data; break; | |
| 1273 | case 0x4804: m_r4804 = data; break; | |
| 1274 | case 0x4805: m_r4805 = data; break; | |
| 1275 | case 0x4806: | |
| 1276 | { | |
| 1277 | UINT32 table, index, address, mode, offset; | |
| 1278 | m_r4806 = data; | |
| 1279 | ||
| 1280 | table = (m_r4801 + (m_r4802 << 8) + (m_r4803 << 16)); | |
| 1281 | index = (m_r4804 << 2); | |
| 1282 | //length = (m_r4809 + (m_r480a << 8)); | |
| 1283 | address = spc7110_datarom_addr(table + index, len); | |
| 1284 | mode = (ROM[address + 0]); | |
| 1285 | offset = (ROM[address + 1] << 16) | |
| 1286 | + (ROM[address + 2] << 8) | |
| 1287 | + (ROM[address + 3] << 0); | |
| 1288 | ||
| 1289 | m_decomp->init(machine(), ROM, len, mode, offset, (m_r4805 + (m_r4806 << 8)) << mode); | |
| 1290 | m_r480c = 0x80; | |
| 1291 | } | |
| 1292 | break; | |
| 1293 | ||
| 1294 | case 0x4807: m_r4807 = data; break; | |
| 1295 | case 0x4808: m_r4808 = data; break; | |
| 1296 | case 0x4809: m_r4809 = data; break; | |
| 1297 | case 0x480a: m_r480a = data; break; | |
| 1298 | case 0x480b: m_r480b = data; break; | |
| 1299 | ||
| 1300 | //============== | |
| 1301 | //data port unit | |
| 1302 | //============== | |
| 1303 | ||
| 1304 | case 0x4811: m_r4811 = data; m_r481x |= 0x01; break; | |
| 1305 | case 0x4812: m_r4812 = data; m_r481x |= 0x02; break; | |
| 1306 | case 0x4813: m_r4813 = data; m_r481x |= 0x04; break; | |
| 1307 | case 0x4814: | |
| 1308 | { | |
| 1309 | m_r4814 = data; | |
| 1310 | m_r4814_latch = 1; | |
| 1311 | if (!m_r4815_latch) | |
| 1312 | { | |
| 1313 | break; | |
| 1314 | } | |
| 1315 | if (!(m_r4818 & 2)) | |
| 1316 | { | |
| 1317 | break; | |
| 1318 | } | |
| 1319 | if (m_r4818 & 0x10) | |
| 1320 | { | |
| 1321 | break; | |
| 1322 | } | |
| 1323 | ||
| 1324 | if ((m_r4818 & 0x60) == 0x20) | |
| 1325 | { | |
| 1326 | UINT32 increment = spc7110_data_adjust() & 0xff; | |
| 1327 | if (m_r4818 & 8) | |
| 1328 | { | |
| 1329 | increment = (INT8)increment; //8-bit sign extend | |
| 1330 | } | |
| 1331 | spc7110_set_data_pointer(spc7110_data_pointer() + increment); | |
| 1332 | } | |
| 1333 | else if ((m_r4818 & 0x60) == 0x40) | |
| 1334 | { | |
| 1335 | UINT32 increment = spc7110_data_adjust(); | |
| 1336 | if (m_r4818 & 8) | |
| 1337 | { | |
| 1338 | increment = (INT16)increment; //16-bit sign extend | |
| 1339 | } | |
| 1340 | spc7110_set_data_pointer(spc7110_data_pointer() + increment); | |
| 1341 | } | |
| 1342 | break; | |
| 1343 | } | |
| 1344 | ||
| 1345 | case 0x4815: | |
| 1346 | { | |
| 1347 | m_r4815 = data; | |
| 1348 | m_r4815_latch = 1; | |
| 1349 | if (!m_r4814_latch) | |
| 1350 | { | |
| 1351 | break; | |
| 1352 | } | |
| 1353 | if (!(m_r4818 & 2)) | |
| 1354 | { | |
| 1355 | break; | |
| 1356 | } | |
| 1357 | if (m_r4818 & 0x10) | |
| 1358 | { | |
| 1359 | break; | |
| 1360 | } | |
| 1361 | ||
| 1362 | if ((m_r4818 & 0x60) == 0x20) | |
| 1363 | { | |
| 1364 | UINT32 increment = spc7110_data_adjust() & 0xff; | |
| 1365 | if (m_r4818 & 8) | |
| 1366 | { | |
| 1367 | increment = (INT8)increment; //8-bit sign extend | |
| 1368 | } | |
| 1369 | spc7110_set_data_pointer(spc7110_data_pointer() + increment); | |
| 1370 | } | |
| 1371 | else if ((m_r4818 & 0x60) == 0x40) | |
| 1372 | { | |
| 1373 | UINT32 increment = spc7110_data_adjust(); | |
| 1374 | if (m_r4818 & 8) | |
| 1375 | { | |
| 1376 | increment = (INT16)increment; //16-bit sign extend | |
| 1377 | } | |
| 1378 | spc7110_set_data_pointer(spc7110_data_pointer() + increment); | |
| 1379 | } | |
| 1380 | break; | |
| 1381 | } | |
| 1382 | ||
| 1383 | case 0x4816: m_r4816 = data; break; | |
| 1384 | case 0x4817: m_r4817 = data; break; | |
| 1385 | case 0x4818: | |
| 1386 | { | |
| 1387 | if (m_r481x != 0x07) | |
| 1388 | break; | |
| 1389 | ||
| 1390 | m_r4818 = data; | |
| 1391 | m_r4814_latch = m_r4815_latch = 0; | |
| 1392 | break; | |
| 1393 | } | |
| 1394 | ||
| 1395 | //========= | |
| 1396 | //math unit | |
| 1397 | //========= | |
| 1398 | ||
| 1399 | case 0x4820: m_r4820 = data; break; | |
| 1400 | case 0x4821: m_r4821 = data; break; | |
| 1401 | case 0x4822: m_r4822 = data; break; | |
| 1402 | case 0x4823: m_r4823 = data; break; | |
| 1403 | case 0x4824: m_r4824 = data; break; | |
| 1404 | case 0x4825: | |
| 1405 | { | |
| 1406 | m_r4825 = data; | |
| 1407 | ||
| 1408 | if (m_r482e & 1) | |
| 1409 | { | |
| 1410 | //signed 16-bit x 16-bit multiplication | |
| 1411 | INT16 r0 = (INT16)(m_r4824 + (m_r4825 << 8)); | |
| 1412 | INT16 r1 = (INT16)(m_r4820 + (m_r4821 << 8)); | |
| 1413 | ||
| 1414 | INT32 result = r0 * r1; | |
| 1415 | m_r4828 = result; | |
| 1416 | m_r4829 = result >> 8; | |
| 1417 | m_r482a = result >> 16; | |
| 1418 | m_r482b = result >> 24; | |
| 1419 | } | |
| 1420 | else | |
| 1421 | { | |
| 1422 | //unsigned 16-bit x 16-bit multiplication | |
| 1423 | UINT16 r0 = (UINT16)(m_r4824 + (m_r4825 << 8)); | |
| 1424 | UINT16 r1 = (UINT16)(m_r4820 + (m_r4821 << 8)); | |
| 1425 | ||
| 1426 | UINT32 result = r0 * r1; | |
| 1427 | m_r4828 = result; | |
| 1428 | m_r4829 = result >> 8; | |
| 1429 | m_r482a = result >> 16; | |
| 1430 | m_r482b = result >> 24; | |
| 1431 | } | |
| 1432 | ||
| 1433 | m_r482f = 0x80; | |
| 1434 | break; | |
| 1435 | } | |
| 1436 | ||
| 1437 | case 0x4826: m_r4826 = data; break; | |
| 1438 | case 0x4827: | |
| 1439 | { | |
| 1440 | m_r4827 = data; | |
| 1441 | ||
| 1442 | if (m_r482e & 1) | |
| 1443 | { | |
| 1444 | //signed 32-bit x 16-bit division | |
| 1445 | INT32 dividend = (INT32)(m_r4820 + (m_r4821 << 8) + (m_r4822 << 16) + (m_r4823 << 24)); | |
| 1446 | INT16 divisor = (INT16)(m_r4826 + (m_r4827 << 8)); | |
| 1447 | ||
| 1448 | INT32 quotient; | |
| 1449 | INT16 remainder; | |
| 1450 | ||
| 1451 | if (divisor) | |
| 1452 | { | |
| 1453 | quotient = (INT32)(dividend / divisor); | |
| 1454 | remainder = (INT32)(dividend % divisor); | |
| 1455 | } | |
| 1456 | else | |
| 1457 | { | |
| 1458 | //illegal division by zero | |
| 1459 | quotient = 0; | |
| 1460 | remainder = dividend & 0xffff; | |
| 1461 | } | |
| 1462 | ||
| 1463 | m_r4828 = quotient; | |
| 1464 | m_r4829 = quotient >> 8; | |
| 1465 | m_r482a = quotient >> 16; | |
| 1466 | m_r482b = quotient >> 24; | |
| 1467 | ||
| 1468 | m_r482c = remainder; | |
| 1469 | m_r482d = remainder >> 8; | |
| 1470 | } | |
| 1471 | else | |
| 1472 | { | |
| 1473 | //unsigned 32-bit x 16-bit division | |
| 1474 | UINT32 dividend = (UINT32)(m_r4820 + (m_r4821 << 8) + (m_r4822 << 16) + (m_r4823 << 24)); | |
| 1475 | UINT16 divisor = (UINT16)(m_r4826 + (m_r4827 << 8)); | |
| 1476 | ||
| 1477 | UINT32 quotient; | |
| 1478 | UINT16 remainder; | |
| 1479 | ||
| 1480 | if (divisor) | |
| 1481 | { | |
| 1482 | quotient = (UINT32)(dividend / divisor); | |
| 1483 | remainder = (UINT16)(dividend % divisor); | |
| 1484 | } | |
| 1485 | else | |
| 1486 | { | |
| 1487 | //illegal division by zero | |
| 1488 | quotient = 0; | |
| 1489 | remainder = dividend & 0xffff; | |
| 1490 | } | |
| 1491 | ||
| 1492 | m_r4828 = quotient; | |
| 1493 | m_r4829 = quotient >> 8; | |
| 1494 | m_r482a = quotient >> 16; | |
| 1495 | m_r482b = quotient >> 24; | |
| 1496 | ||
| 1497 | m_r482c = remainder; | |
| 1498 | m_r482d = remainder >> 8; | |
| 1499 | } | |
| 1500 | ||
| 1501 | m_r482f = 0x80; | |
| 1502 | break; | |
| 1503 | } | |
| 1504 | ||
| 1505 | case 0x482e: | |
| 1506 | { | |
| 1507 | //reset math unit | |
| 1508 | m_r4820 = m_r4821 = m_r4822 = m_r4823 = 0; | |
| 1509 | m_r4824 = m_r4825 = m_r4826 = m_r4827 = 0; | |
| 1510 | m_r4828 = m_r4829 = m_r482a = m_r482b = 0; | |
| 1511 | m_r482c = m_r482d = 0; | |
| 1512 | ||
| 1513 | m_r482e = data; | |
| 1514 | break; | |
| 1515 | } | |
| 1516 | ||
| 1517 | //=================== | |
| 1518 | //memory mapping unit | |
| 1519 | //=================== | |
| 1520 | ||
| 1521 | case 0x4830: m_r4830 = data; break; | |
| 1522 | ||
| 1523 | case 0x4831: | |
| 1524 | { | |
| 1525 | m_r4831 = data; | |
| 1526 | m_dx_offset = spc7110_datarom_addr(data * 0x100000, len); | |
| 1527 | break; | |
| 1528 | } | |
| 1529 | ||
| 1530 | case 0x4832: | |
| 1531 | { | |
| 1532 | m_r4832 = data; | |
| 1533 | m_ex_offset = spc7110_datarom_addr(data * 0x100000, len); | |
| 1534 | break; | |
| 1535 | } | |
| 1536 | ||
| 1537 | case 0x4833: | |
| 1538 | { | |
| 1539 | m_r4833 = data; | |
| 1540 | m_fx_offset = spc7110_datarom_addr(data * 0x100000, len); | |
| 1541 | break; | |
| 1542 | } | |
| 1543 | ||
| 1544 | case 0x4834: m_r4834 = data; break; | |
| 1545 | ||
| 1546 | //==================== | |
| 1547 | //real-time clock unit | |
| 1548 | //==================== | |
| 1549 | ||
| 1550 | case 0x4840: | |
| 1551 | { | |
| 1552 | m_r4840 = data; | |
| 1553 | ||
| 1554 | if (!(m_r4840 & 1)) | |
| 1555 | { | |
| 1556 | //disable RTC | |
| 1557 | m_rtc_state = RTCS_Inactive; | |
| 1558 | spc7110_update_time(0); | |
| 1559 | } | |
| 1560 | else | |
| 1561 | { | |
| 1562 | //enable RTC | |
| 1563 | m_r4842 = 0x80; | |
| 1564 | m_rtc_state = RTCS_ModeSelect; | |
| 1565 | } | |
| 1566 | } | |
| 1567 | break; | |
| 1568 | ||
| 1569 | case 0x4841: | |
| 1570 | { | |
| 1571 | m_r4841 = data; | |
| 1572 | ||
| 1573 | switch (m_rtc_state) | |
| 1574 | { | |
| 1575 | case RTCS_ModeSelect: | |
| 1576 | if (data == RTCM_Linear || data == RTCM_Indexed) | |
| 1577 | { | |
| 1578 | m_r4842 = 0x80; | |
| 1579 | m_rtc_state = RTCS_IndexSelect; | |
| 1580 | m_rtc_mode = (RTC_Mode)data; | |
| 1581 | m_rtc_index = 0; | |
| 1582 | } | |
| 1583 | break; | |
| 1584 | ||
| 1585 | case RTCS_IndexSelect: | |
| 1586 | m_r4842 = 0x80; | |
| 1587 | m_rtc_index = data & 15; | |
| 1588 | if (m_rtc_mode == RTCM_Linear) | |
| 1589 | m_rtc_state = RTCS_Write; | |
| 1590 | break; | |
| 1591 | ||
| 1592 | case RTCS_Write: | |
| 1593 | m_r4842 = 0x80; | |
| 1594 | ||
| 1595 | //control register 0 | |
| 1596 | if (m_rtc_index == 13) | |
| 1597 | { | |
| 1598 | //increment second counter | |
| 1599 | if (data & 2) | |
| 1600 | spc7110_update_time(1); | |
| 1601 | ||
| 1602 | //round minute counter | |
| 1603 | if (data & 8) | |
| 1604 | { | |
| 1605 | spc7110_update_time(0); | |
| 1606 | ||
| 1607 | UINT8 second = m_rtc_ram[0] + m_rtc_ram[1] * 10; | |
| 1608 | //clear seconds | |
| 1609 | m_rtc_ram[0] = 0; | |
| 1610 | m_rtc_ram[1] = 0; | |
| 1611 | ||
| 1612 | if (second >= 30) | |
| 1613 | spc7110_update_time(60); | |
| 1614 | } | |
| 1615 | } | |
| 1616 | ||
| 1617 | //control register 2 | |
| 1618 | if (m_rtc_index == 15) | |
| 1619 | { | |
| 1620 | //disable timer and clear second counter | |
| 1621 | if ((data & 1) && !(m_rtc_ram[15] & 1)) | |
| 1622 | { | |
| 1623 | spc7110_update_time(0); | |
| 1624 | ||
| 1625 | //clear seconds | |
| 1626 | m_rtc_ram[0] = 0; | |
| 1627 | m_rtc_ram[1] = 0; | |
| 1628 | } | |
| 1629 | ||
| 1630 | //disable timer | |
| 1631 | if ((data & 2) && !(m_rtc_ram[15] & 2)) | |
| 1632 | spc7110_update_time(0); | |
| 1633 | } | |
| 1634 | ||
| 1635 | m_rtc_ram[m_rtc_index] = data & 15; | |
| 1636 | m_rtc_index = (m_rtc_index + 1) & 15; | |
| 1637 | break; | |
| 1638 | } | |
| 1639 | } | |
| 1640 | break; | |
| 1641 | } | |
| 1642 | } | |
| 1643 |
| Added: svn:eol-style + native Added: svn:mime-type + text/plain |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_SPC7110_H | |
| 2 | #define __SNS_SPC7110_H | |
| 3 | ||
| 4 | #include "machine/sns_slot.h" | |
| 5 | #include "machine/sns_rom21.h" | |
| 6 | ||
| 7 | ||
| 8 | enum RTC_State | |
| 9 | { | |
| 10 | RTCS_Inactive, | |
| 11 | RTCS_ModeSelect, | |
| 12 | RTCS_IndexSelect, | |
| 13 | RTCS_Write | |
| 14 | }; | |
| 15 | ||
| 16 | enum RTC_Mode | |
| 17 | { | |
| 18 | RTCM_Linear = 0x03, | |
| 19 | RTCM_Indexed = 0x0c | |
| 20 | }; | |
| 21 | ||
| 22 | class SPC7110_Decomp | |
| 23 | { | |
| 24 | public: | |
| 25 | SPC7110_Decomp(running_machine &machine); | |
| 26 | ||
| 27 | running_machine &machine() const { return m_machine; } | |
| 28 | ||
| 29 | void init(running_machine &machine, UINT8 *ROM, UINT32 len, UINT32 mode, UINT32 offset, UINT32 index); | |
| 30 | void reset(); | |
| 31 | ||
| 32 | UINT8 read(UINT8 *ROM, UINT32 len); | |
| 33 | void write(UINT8 data); | |
| 34 | void mode0(UINT8 init, UINT8 *ROM, UINT32 len); | |
| 35 | void mode1(UINT8 init, UINT8 *ROM, UINT32 len); | |
| 36 | void mode2(UINT8 init, UINT8 *ROM, UINT32 len); | |
| 37 | ||
| 38 | UINT8 dataread(UINT8 *ROM, UINT32 len); | |
| 39 | UINT8 probability(UINT32 n); | |
| 40 | UINT8 next_lps(UINT32 n); | |
| 41 | UINT8 next_mps(UINT32 n); | |
| 42 | UINT8 toggle_invert(UINT32 n); | |
| 43 | UINT32 morton_2x8(UINT32 data); | |
| 44 | UINT32 morton_4x8(UINT32 data); | |
| 45 | ||
| 46 | UINT32 m_decomp_mode; | |
| 47 | UINT32 m_decomp_offset; | |
| 48 | ||
| 49 | UINT8 *m_decomp_buffer; | |
| 50 | UINT32 m_decomp_buffer_rdoffset; | |
| 51 | UINT32 m_decomp_buffer_wroffset; | |
| 52 | UINT32 m_decomp_buffer_length; | |
| 53 | ||
| 54 | struct ContextState | |
| 55 | { | |
| 56 | UINT8 index; | |
| 57 | UINT8 invert; | |
| 58 | } m_context[32]; | |
| 59 | ||
| 60 | UINT32 m_morton16[2][256]; | |
| 61 | UINT32 m_morton32[4][256]; | |
| 62 | ||
| 63 | ||
| 64 | private: | |
| 65 | running_machine& m_machine; | |
| 66 | UINT32 m_rom_size; | |
| 67 | }; | |
| 68 | ||
| 69 | // ======================> sns_rom_spc7110_device | |
| 70 | ||
| 71 | class sns_rom_spc7110_device : public sns_rom21_device | |
| 72 | { | |
| 73 | public: | |
| 74 | // construction/destruction | |
| 75 | sns_rom_spc7110_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 76 | sns_rom_spc7110_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 77 | ||
| 78 | // device-level overrides | |
| 79 | virtual void device_start(); | |
| 80 | virtual void device_config_complete() { m_shortname = "sns_rom_spc7110"; } | |
| 81 | ||
| 82 | // reading and writing | |
| 83 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 84 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 85 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 86 | ||
| 87 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 88 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 89 | ||
| 90 | void spc7110_start(); | |
| 91 | UINT32 spc7110_datarom_addr(UINT32 addr, UINT32 len); | |
| 92 | UINT32 spc7110_data_pointer(); | |
| 93 | UINT32 spc7110_data_adjust(); | |
| 94 | UINT32 spc7110_data_increment(); | |
| 95 | void spc7110_set_data_pointer(UINT32 addr); | |
| 96 | void spc7110_set_data_adjust(UINT32 addr); | |
| 97 | void spc7110_update_time(UINT8 offset); | |
| 98 | ||
| 99 | ||
| 100 | //================== | |
| 101 | //decompression unit | |
| 102 | //================== | |
| 103 | UINT8 m_r4801; // compression table low | |
| 104 | UINT8 m_r4802; // compression table high | |
| 105 | UINT8 m_r4803; // compression table bank | |
| 106 | UINT8 m_r4804; // compression table index | |
| 107 | UINT8 m_r4805; // decompression buffer index low | |
| 108 | UINT8 m_r4806; // decompression buffer index high | |
| 109 | UINT8 m_r4807; // ??? | |
| 110 | UINT8 m_r4808; // ??? | |
| 111 | UINT8 m_r4809; // compression length low | |
| 112 | UINT8 m_r480a; // compression length high | |
| 113 | UINT8 m_r480b; // decompression control register | |
| 114 | UINT8 m_r480c; // decompression status | |
| 115 | ||
| 116 | SPC7110_Decomp* m_decomp; | |
| 117 | ||
| 118 | UINT8 m_r4811; // data pointer low | |
| 119 | UINT8 m_r4812; // data pointer high | |
| 120 | UINT8 m_r4813; // data pointer bank | |
| 121 | UINT8 m_r4814; // data adjust low | |
| 122 | UINT8 m_r4815; // data adjust high | |
| 123 | UINT8 m_r4816; // data increment low | |
| 124 | UINT8 m_r4817; // data increment high | |
| 125 | UINT8 m_r4818; // data port control register | |
| 126 | ||
| 127 | UINT8 m_r481x; | |
| 128 | ||
| 129 | UINT8 m_r4814_latch; | |
| 130 | UINT8 m_r4815_latch; | |
| 131 | ||
| 132 | //========= | |
| 133 | //math unit | |
| 134 | //========= | |
| 135 | UINT8 m_r4820; // 16-bit multiplicand B0, 32-bit dividend B0 | |
| 136 | UINT8 m_r4821; // 16-bit multiplicand B1, 32-bit dividend B1 | |
| 137 | UINT8 m_r4822; // 32-bit dividend B2 | |
| 138 | UINT8 m_r4823; // 32-bit dividend B3 | |
| 139 | UINT8 m_r4824; // 16-bit multiplier B0 | |
| 140 | UINT8 m_r4825; // 16-bit multiplier B1 | |
| 141 | UINT8 m_r4826; // 16-bit divisor B0 | |
| 142 | UINT8 m_r4827; // 16-bit divisor B1 | |
| 143 | UINT8 m_r4828; // 32-bit product B0, 32-bit quotient B0 | |
| 144 | UINT8 m_r4829; // 32-bit product B1, 32-bit quotient B1 | |
| 145 | UINT8 m_r482a; // 32-bit product B2, 32-bit quotient B2 | |
| 146 | UINT8 m_r482b; // 32-bit product B3, 32-bit quotient B3 | |
| 147 | UINT8 m_r482c; // 16-bit remainder B0 | |
| 148 | UINT8 m_r482d; // 16-bit remainder B1 | |
| 149 | UINT8 m_r482e; // math control register | |
| 150 | UINT8 m_r482f; // math status | |
| 151 | ||
| 152 | //=================== | |
| 153 | //memory mapping unit | |
| 154 | //=================== | |
| 155 | UINT8 m_r4830; // SRAM write enable | |
| 156 | UINT8 m_r4831; // $[d0-df]:[0000-ffff] mapping | |
| 157 | UINT8 m_r4832; // $[e0-ef]:[0000-ffff] mapping | |
| 158 | UINT8 m_r4833; // $[f0-ff]:[0000-ffff] mapping | |
| 159 | UINT8 m_r4834; // ??? | |
| 160 | ||
| 161 | UINT32 m_dx_offset; | |
| 162 | UINT32 m_ex_offset; | |
| 163 | UINT32 m_fx_offset; | |
| 164 | ||
| 165 | //==================== | |
| 166 | //real-time clock unit | |
| 167 | //==================== | |
| 168 | UINT8 m_r4840; // RTC latch | |
| 169 | UINT8 m_r4841; // RTC index/data port | |
| 170 | UINT8 m_r4842; // RTC status | |
| 171 | ||
| 172 | UINT32 m_rtc_state; | |
| 173 | UINT32 m_rtc_mode; | |
| 174 | UINT32 m_rtc_index; | |
| 175 | ||
| 176 | UINT64 m_rtc_offset; | |
| 177 | ||
| 178 | //this is now allocated in the main snes cart class, to allow saving to nvram | |
| 179 | //UINT8 m_rtc_ram[16]; // 0-12 secs, min, hrs, etc.; 13-14-15 control registers | |
| 180 | ||
| 181 | UINT8 m_ram[0x2000]; | |
| 182 | }; | |
| 183 | ||
| 184 | // ======================> sns_rom_spc7110_device | |
| 185 | ||
| 186 | class sns_rom_spc7110rtc_device : public sns_rom_spc7110_device | |
| 187 | { | |
| 188 | public: | |
| 189 | // construction/destruction | |
| 190 | sns_rom_spc7110rtc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 191 | ||
| 192 | // device-level overrides | |
| 193 | virtual void device_start(); | |
| 194 | virtual void device_config_complete() { m_shortname = "sns_rom_spc7110rtc"; } | |
| 195 | ||
| 196 | // reading and writing | |
| 197 | ||
| 198 | // we just use the spc7110 ones for the moment, pending the split of regs 0x4840-0x4842 (RTC) from the base add-on | |
| 199 | // virtual DECLARE_READ8_MEMBER(read_l); | |
| 200 | // virtual DECLARE_READ8_MEMBER(read_h); | |
| 201 | // virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 202 | ||
| 203 | // virtual DECLARE_READ8_MEMBER(chip_read); | |
| 204 | // virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 205 | }; | |
| 206 | ||
| 207 | // device type definition | |
| 208 | extern const device_type SNS_HIROM_SPC7110; | |
| 209 | extern const device_type SNS_HIROM_SPC7110_RTC; | |
| 210 | ||
| 211 | #endif |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | /*********************************************************************************************************** | |
| 2 | ||
| 3 | ||
| 4 | SNES cart emulation | |
| 5 | (through slot devices) | |
| 6 | ||
| 7 | ||
| 8 | ||
| 9 | ***********************************************************************************************************/ | |
| 10 | ||
| 11 | ||
| 12 | #include "emu.h" | |
| 13 | #include "machine/sns_slot.h" | |
| 14 | ||
| 15 | //************************************************************************** | |
| 16 | // GLOBAL VARIABLES | |
| 17 | //************************************************************************** | |
| 18 | ||
| 19 | const device_type SNS_CART_SLOT = &device_creator<sns_cart_slot_device>; | |
| 20 | const device_type SNS_SUFAMI_CART_SLOT = &device_creator<sns_sufami_cart_slot_device>; | |
| 21 | const device_type SNS_BSX_CART_SLOT = &device_creator<sns_bsx_cart_slot_device>; | |
| 22 | ||
| 23 | //************************************************************************** | |
| 24 | // SNES Cartridge Interface | |
| 25 | //************************************************************************** | |
| 26 | ||
| 27 | //------------------------------------------------- | |
| 28 | // device_sns_cart_interface - constructor | |
| 29 | //------------------------------------------------- | |
| 30 | ||
| 31 | device_sns_cart_interface::device_sns_cart_interface(const machine_config &mconfig, device_t &device) | |
| 32 | : device_slot_card_interface(mconfig, device), | |
| 33 | m_rom(NULL), | |
| 34 | m_nvram(NULL), | |
| 35 | m_bios(NULL), | |
| 36 | m_rtc_ram(NULL), | |
| 37 | m_rom_size(0), | |
| 38 | m_nvram_size(0), | |
| 39 | m_bios_size(0), | |
| 40 | m_rtc_ram_size(0) | |
| 41 | { | |
| 42 | } | |
| 43 | ||
| 44 | ||
| 45 | //------------------------------------------------- | |
| 46 | // ~device_sns_cart_interface - destructor | |
| 47 | //------------------------------------------------- | |
| 48 | ||
| 49 | device_sns_cart_interface::~device_sns_cart_interface() | |
| 50 | { | |
| 51 | } | |
| 52 | ||
| 53 | //------------------------------------------------- | |
| 54 | // rom_alloc - alloc the space for the cart | |
| 55 | //------------------------------------------------- | |
| 56 | ||
| 57 | void device_sns_cart_interface::rom_alloc(running_machine &machine, UINT32 size) | |
| 58 | { | |
| 59 | if (m_rom == NULL) | |
| 60 | { | |
| 61 | m_rom = auto_alloc_array_clear(machine, UINT8, size); | |
| 62 | m_rom_size = size; | |
| 63 | } | |
| 64 | } | |
| 65 | ||
| 66 | ||
| 67 | //------------------------------------------------- | |
| 68 | // nvram_alloc - alloc the space for the nvram | |
| 69 | //------------------------------------------------- | |
| 70 | ||
| 71 | void device_sns_cart_interface::nvram_alloc(running_machine &machine, UINT32 size) | |
| 72 | { | |
| 73 | if (m_nvram == NULL) | |
| 74 | { | |
| 75 | m_nvram = auto_alloc_array_clear(machine, UINT8, size); | |
| 76 | m_nvram_size = size; | |
| 77 | } | |
| 78 | } | |
| 79 | ||
| 80 | ||
| 81 | //------------------------------------------------- | |
| 82 | // rtc_ram_alloc - alloc the space for the rtc_ram | |
| 83 | // (needed to save it to NVRAM, will be removed | |
| 84 | // once the RTCs become devices and NVRAM gets | |
| 85 | // saved by the device itself) | |
| 86 | //------------------------------------------------- | |
| 87 | ||
| 88 | void device_sns_cart_interface::rtc_ram_alloc(running_machine &machine, UINT32 size) | |
| 89 | { | |
| 90 | if (m_rtc_ram == NULL) | |
| 91 | { | |
| 92 | m_rtc_ram = auto_alloc_array_clear(machine, UINT8, size); | |
| 93 | m_rtc_ram_size = size; | |
| 94 | } | |
| 95 | } | |
| 96 | ||
| 97 | ||
| 98 | //------------------------------------------------- | |
| 99 | // addon_bios_alloc - alloc the space for the | |
| 100 | // (optional) add-on CPU bios | |
| 101 | //------------------------------------------------- | |
| 102 | ||
| 103 | void device_sns_cart_interface::addon_bios_alloc(running_machine &machine, UINT32 size) | |
| 104 | { | |
| 105 | if (m_bios == NULL) | |
| 106 | { | |
| 107 | m_bios = auto_alloc_array_clear(machine, UINT8, size); | |
| 108 | m_bios_size = size; | |
| 109 | } | |
| 110 | } | |
| 111 | ||
| 112 | ||
| 113 | //------------------------------------------------- | |
| 114 | // rom_map_setup - setup map of rom banks in 32K | |
| 115 | // blocks, so to simplify ROM access | |
| 116 | //------------------------------------------------- | |
| 117 | ||
| 118 | void device_sns_cart_interface::rom_map_setup(UINT32 size) | |
| 119 | { | |
| 120 | int i; | |
| 121 | // setup the rom_bank_map array to faster ROM read | |
| 122 | for (i = 0; i < size / 0x8000; i++) | |
| 123 | rom_bank_map[i] = i; | |
| 124 | ||
| 125 | // fill up remaining blocks with mirrors | |
| 126 | while (i % 256) | |
| 127 | { | |
| 128 | int j = 0, repeat_banks; | |
| 129 | while ((i % (256 >> j)) && j < 8) | |
| 130 | j++; | |
| 131 | repeat_banks = i % (256 >> (j - 1)); | |
| 132 | for (int k = 0; k < repeat_banks; k++) | |
| 133 | rom_bank_map[i + k] = rom_bank_map[i + k - repeat_banks]; | |
| 134 | i += repeat_banks; | |
| 135 | } | |
| 136 | ||
| 137 | // check bank map! | |
| 138 | // for (i = 0; i < 256; i++) | |
| 139 | // { | |
| 140 | // printf("bank %3d = %3d\t", i, rom_bank_map[i]); | |
| 141 | // if ((i%8) == 7) | |
| 142 | // printf("\n"); | |
| 143 | // } | |
| 144 | } | |
| 145 | ||
| 146 | //************************************************************************** | |
| 147 | // LIVE DEVICE | |
| 148 | //************************************************************************** | |
| 149 | ||
| 150 | //------------------------------------------------- | |
| 151 | // base_sns_cart_slot_device - constructor | |
| 152 | //------------------------------------------------- | |
| 153 | base_sns_cart_slot_device::base_sns_cart_slot_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) : | |
| 154 | device_t(mconfig, type, name, tag, owner, clock), | |
| 155 | device_image_interface(mconfig, *this), | |
| 156 | device_slot_interface(mconfig, *this), | |
| 157 | m_type(SNES_MODE20) | |
| 158 | { | |
| 159 | } | |
| 160 | ||
| 161 | sns_cart_slot_device::sns_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : | |
| 162 | base_sns_cart_slot_device(mconfig, SNS_CART_SLOT, "SNES Cartridge Slot", tag, owner, clock) | |
| 163 | { | |
| 164 | } | |
| 165 | ||
| 166 | sns_sufami_cart_slot_device::sns_sufami_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : | |
| 167 | base_sns_cart_slot_device(mconfig, SNS_SUFAMI_CART_SLOT, "SNES Sufami Turbo Cartridge Slot", tag, owner, clock) | |
| 168 | { | |
| 169 | } | |
| 170 | ||
| 171 | sns_bsx_cart_slot_device::sns_bsx_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : | |
| 172 | base_sns_cart_slot_device(mconfig, SNS_BSX_CART_SLOT, "SNES BS-X Cartridge Slot", tag, owner, clock) | |
| 173 | { | |
| 174 | } | |
| 175 | ||
| 176 | //------------------------------------------------- | |
| 177 | // base_sns_cart_slot_device - destructor | |
| 178 | //------------------------------------------------- | |
| 179 | ||
| 180 | base_sns_cart_slot_device::~base_sns_cart_slot_device() | |
| 181 | { | |
| 182 | } | |
| 183 | ||
| 184 | //------------------------------------------------- | |
| 185 | // device_start - device-specific startup | |
| 186 | //------------------------------------------------- | |
| 187 | ||
| 188 | void base_sns_cart_slot_device::device_start() | |
| 189 | { | |
| 190 | m_cart = dynamic_cast<device_sns_cart_interface *>(get_card_device()); | |
| 191 | } | |
| 192 | ||
| 193 | //------------------------------------------------- | |
| 194 | // device_config_complete - perform any | |
| 195 | // operations now that the configuration is | |
| 196 | // complete | |
| 197 | //------------------------------------------------- | |
| 198 | ||
| 199 | void base_sns_cart_slot_device::device_config_complete() | |
| 200 | { | |
| 201 | // set brief and instance name | |
| 202 | update_names(); | |
| 203 | } | |
| 204 | ||
| 205 | ||
| 206 | //------------------------------------------------- | |
| 207 | // SNES PCB | |
| 208 | //------------------------------------------------- | |
| 209 | ||
| 210 | ||
| 211 | struct sns_slot | |
| 212 | { | |
| 213 | int pcb_id; | |
| 214 | const char *slot_option; | |
| 215 | }; | |
| 216 | ||
| 217 | // Here, we take the feature attribute from .xml (i.e. the PCB name) and we assign a unique ID to it | |
| 218 | static const sns_slot slot_list[] = | |
| 219 | { | |
| 220 | { SNES_MODE20, "lorom"}, | |
| 221 | { SNES_BSXLO, "lorom_bsx"}, | |
| 222 | { SNES_CX4, "lorom_cx4"}, | |
| 223 | { SNES_DSP, "lorom_dsp"}, | |
| 224 | { SNES_DSP4, "lorom_dsp4"}, | |
| 225 | { SNES_OBC1, "lorom_obc1"}, | |
| 226 | { SNES_SA1, "lorom_sa1"}, | |
| 227 | { SNES_SDD1, "lorom_sdd1"}, | |
| 228 | { SNES_SFX, "lorom_sfx"}, | |
| 229 | { SNES_Z80GB, "lorom_sgb"}, | |
| 230 | { SNES_ST010, "lorom_st010"}, | |
| 231 | { SNES_ST011, "lorom_st011"}, | |
| 232 | { SNES_ST018, "lorom_st018"}, | |
| 233 | { SNES_SUFAMITURBO, "lorom_sufami"}, | |
| 234 | { SNES_MODE21, "hirom"}, | |
| 235 | { SNES_DSP_MODE21, "hirom_dsp"}, | |
| 236 | { SNES_BSXHI, "hirom_bsx"}, | |
| 237 | { SNES_SPC7110, "hirom_spc7110"}, | |
| 238 | { SNES_SPC7110_RTC, "hirom_spcrtc"}, | |
| 239 | { SNES_SRTC, "hirom_srtc"}, | |
| 240 | { SNES_BSX, "bsxrom"}, | |
| 241 | // BS-X memory packs | |
| 242 | { SNES_BSMEMPAK, "bsmempak"}, | |
| 243 | // Sufami Turbo carts | |
| 244 | { SNES_STROM, "strom"}, | |
| 245 | // pirate carts | |
| 246 | { SNES_POKEMON, "lorom_poke"}, | |
| 247 | { SNES_BANANA, "lorom_paja"}, // wip | |
| 248 | { SNES_SOULBLAD, "lorom_sbld"} // wip | |
| 249 | }; | |
| 250 | ||
| 251 | static int sns_get_pcb_id(const char *slot) | |
| 252 | { | |
| 253 | for (int i = 0; i < ARRAY_LENGTH(slot_list); i++) | |
| 254 | { | |
| 255 | if (!mame_stricmp(slot_list[i].slot_option, slot)) | |
| 256 | return slot_list[i].pcb_id; | |
| 257 | } | |
| 258 | ||
| 259 | return 0; | |
| 260 | } | |
| 261 | ||
| 262 | static const char *sns_get_slot(int type) | |
| 263 | { | |
| 264 | for (int i = 0; i < ARRAY_LENGTH(slot_list); i++) | |
| 265 | { | |
| 266 | if (slot_list[i].pcb_id == type) | |
| 267 | return slot_list[i].slot_option; | |
| 268 | } | |
| 269 | ||
| 270 | return "lorom"; | |
| 271 | } | |
| 272 | ||
| 273 | ||
| 274 | /*------------------------------------------------- | |
| 275 | SRAM handling | |
| 276 | -------------------------------------------------*/ | |
| 277 | ||
| 278 | /************************************* | |
| 279 | * Helper functions | |
| 280 | *************************************/ | |
| 281 | ||
| 282 | ||
| 283 | /* Here we add a couple of cart utilities, to avoid duplicating the code in each DEVICE_IMAGE_LOAD */ | |
| 284 | UINT32 base_sns_cart_slot_device::snes_skip_header( UINT8 *ROM, UINT32 rom_size ) | |
| 285 | { | |
| 286 | UINT8 header[512]; | |
| 287 | UINT32 offset = 512; | |
| 288 | ||
| 289 | /* Check for a header (512 bytes) */ | |
| 290 | memcpy(header, ROM, 512); | |
| 291 | ||
| 292 | if ((header[8] == 0xaa) && (header[9] == 0xbb) && (header[10] == 0x04)) | |
| 293 | { | |
| 294 | /* Found an SWC identifier */ | |
| 295 | logerror("Found header (SWC) - Skipped\n"); | |
| 296 | } | |
| 297 | else if ((header[0] | (header[1] << 8)) == (((rom_size - 512) / 1024) / 8)) | |
| 298 | { | |
| 299 | /* Some headers have the rom size at the start, if this matches with the actual rom size, we probably have a header */ | |
| 300 | logerror("Found header (size) - Skipped\n"); | |
| 301 | } | |
| 302 | else if ((rom_size % 0x8000) == 512) | |
| 303 | { | |
| 304 | /* As a last check we'll see if there's exactly 512 bytes extra to this image. */ | |
| 305 | logerror("Found header (extra) - Skipped\n"); | |
| 306 | } | |
| 307 | else | |
| 308 | { | |
| 309 | /* No header found so go back to the start of the file */ | |
| 310 | logerror("No header found.\n"); | |
| 311 | offset = 0; | |
| 312 | } | |
| 313 | ||
| 314 | return offset; | |
| 315 | } | |
| 316 | ||
| 317 | ||
| 318 | /* This function assign a 'score' to data immediately after 'offset' to measure how valid they are | |
| 319 | as information block (to decide if the image is HiRom, LoRom, ExLoRom or ExHiRom) */ | |
| 320 | /* Code from bsnes, courtesy of byuu - http://byuu.org/ , based on previous code by Cowering */ | |
| 321 | static int snes_validate_infoblock( UINT8 *infoblock, UINT32 offset ) | |
| 322 | { | |
| 323 | int score = 0; | |
| 324 | UINT16 reset_vector = infoblock[offset + 0x3c] | (infoblock[offset + 0x3d] << 8); | |
| 325 | UINT16 checksum = infoblock[offset + 0x1e] | (infoblock[offset + 0x1f] << 8); | |
| 326 | UINT16 ichecksum = infoblock[offset + 0x1c] | (infoblock[offset + 0x1d] << 8); | |
| 327 | UINT8 reset_opcode = infoblock[(offset & ~0x7fff) | (reset_vector & 0x7fff)]; //first opcode executed upon reset | |
| 328 | UINT8 mapper = infoblock[offset + 0x15] & ~0x10; //mask off irrelevant FastROM-capable bit | |
| 329 | ||
| 330 | /* $00:[000-7fff] contains uninitialized RAM and MMIO. | |
| 331 | reset vector must point to ROM at $00:[8000-ffff] to be considered valid. */ | |
| 332 | if (reset_vector < 0x8000) | |
| 333 | return 0; | |
| 334 | ||
| 335 | /* some images duplicate the header in multiple locations, and others have completely | |
| 336 | invalid header information that cannot be relied upon. The code below will analyze | |
| 337 | the first opcode executed at the specified reset vector to determine the probability | |
| 338 | that this is the correct header. Score is assigned accordingly. */ | |
| 339 | ||
| 340 | /* most likely opcodes */ | |
| 341 | if (reset_opcode == 0x78 //sei | |
| 342 | || reset_opcode == 0x18 //clc (clc; xce) | |
| 343 | || reset_opcode == 0x38 //sec (sec; xce) | |
| 344 | || reset_opcode == 0x9c //stz $nnnn (stz $4200) | |
| 345 | || reset_opcode == 0x4c //jmp $nnnn | |
| 346 | || reset_opcode == 0x5c //jml $nnnnnn | |
| 347 | ) | |
| 348 | score += 8; | |
| 349 | ||
| 350 | /* plausible opcodes */ | |
| 351 | if (reset_opcode == 0xc2 //rep #$nn | |
| 352 | || reset_opcode == 0xe2 //sep #$nn | |
| 353 | || reset_opcode == 0xad //lda $nnnn | |
| 354 | || reset_opcode == 0xae //ldx $nnnn | |
| 355 | || reset_opcode == 0xac //ldy $nnnn | |
| 356 | || reset_opcode == 0xaf //lda $nnnnnn | |
| 357 | || reset_opcode == 0xa9 //lda #$nn | |
| 358 | || reset_opcode == 0xa2 //ldx #$nn | |
| 359 | || reset_opcode == 0xa0 //ldy #$nn | |
| 360 | || reset_opcode == 0x20 //jsr $nnnn | |
| 361 | || reset_opcode == 0x22 //jsl $nnnnnn | |
| 362 | ) | |
| 363 | score += 4; | |
| 364 | ||
| 365 | /* implausible opcodes */ | |
| 366 | if (reset_opcode == 0x40 //rti | |
| 367 | || reset_opcode == 0x60 //rts | |
| 368 | || reset_opcode == 0x6b //rtl | |
| 369 | || reset_opcode == 0xcd //cmp $nnnn | |
| 370 | || reset_opcode == 0xec //cpx $nnnn | |
| 371 | || reset_opcode == 0xcc //cpy $nnnn | |
| 372 | ) | |
| 373 | score -= 4; | |
| 374 | ||
| 375 | /* least likely opcodes */ | |
| 376 | if (reset_opcode == 0x00 //brk #$nn | |
| 377 | || reset_opcode == 0x02 //cop #$nn | |
| 378 | || reset_opcode == 0xdb //stp | |
| 379 | || reset_opcode == 0x42 //wdm | |
| 380 | || reset_opcode == 0xff //sbc $nnnnnn,x | |
| 381 | ) | |
| 382 | score -= 8; | |
| 383 | ||
| 384 | /* Sometimes, both the header and reset vector's first opcode will match ... | |
| 385 | fallback and rely on info validity in these cases to determine more likely header. */ | |
| 386 | ||
| 387 | /* a valid checksum is the biggest indicator of a valid header. */ | |
| 388 | if ((checksum + ichecksum) == 0xffff && (checksum != 0) && (ichecksum != 0)) | |
| 389 | score += 4; | |
| 390 | ||
| 391 | /* then there are the expected mapper values */ | |
| 392 | if (offset == 0x007fc0 && mapper == 0x20) // 0x20 is usually LoROM | |
| 393 | score += 2; | |
| 394 | ||
| 395 | if (offset == 0x00ffc0 && mapper == 0x21) // 0x21 is usually HiROM | |
| 396 | score += 2; | |
| 397 | ||
| 398 | if (offset == 0x007fc0 && mapper == 0x22) // 0x22 is usually ExLoROM | |
| 399 | score += 2; | |
| 400 | ||
| 401 | if (offset == 0x40ffc0 && mapper == 0x25) // 0x25 is usually ExHiROM | |
| 402 | score += 2; | |
| 403 | ||
| 404 | /* finally, there are valid values in the Company, Region etc. fields */ | |
| 405 | if (infoblock[offset + 0x1a] == 0x33) // Company field: 0x33 indicates extended header | |
| 406 | score += 2; | |
| 407 | ||
| 408 | if (infoblock[offset + 0x16] < 0x08) // ROM Type field | |
| 409 | score++; | |
| 410 | ||
| 411 | if (infoblock[offset + 0x17] < 0x10) // ROM Size field | |
| 412 | score++; | |
| 413 | ||
| 414 | if (infoblock[offset + 0x18] < 0x08) // SRAM Size field | |
| 415 | score++; | |
| 416 | ||
| 417 | if (infoblock[offset + 0x19] < 14) // Region field | |
| 418 | score++; | |
| 419 | ||
| 420 | /* do we still have a positive score? */ | |
| 421 | if (score < 0) | |
| 422 | score = 0; | |
| 423 | ||
| 424 | return score; | |
| 425 | } | |
| 426 | ||
| 427 | /* This determines if a cart is in Mode 20, 21, 22 or 25; sets state->m_cart[0].mode and | |
| 428 | state->m_cart[0].sram accordingly; and returns the offset of the internal header (needed to | |
| 429 | detect BSX and ST carts) */ | |
| 430 | static UINT32 snes_find_hilo_mode( UINT8 *buffer, UINT32 buf_len ) | |
| 431 | { | |
| 432 | UINT8 valid_mode20 = 0; | |
| 433 | UINT8 valid_mode21 = 0; | |
| 434 | UINT8 valid_mode25 = 0; | |
| 435 | UINT32 retvalue; | |
| 436 | ||
| 437 | /* Now to determine if this is a lo-ROM, a hi-ROM or an extended lo/hi-ROM */ | |
| 438 | if (buf_len > 0x007fc0) | |
| 439 | valid_mode20 = snes_validate_infoblock(buffer, 0x007fc0); | |
| 440 | if (buf_len > 0x00ffc0) | |
| 441 | valid_mode21 = snes_validate_infoblock(buffer, 0x00ffc0); | |
| 442 | if (buf_len > 0x40ffc0) | |
| 443 | valid_mode25 = snes_validate_infoblock(buffer, 0x40ffc0); | |
| 444 | ||
| 445 | /* Images larger than 32mbits are likely ExHiRom */ | |
| 446 | if (valid_mode25) | |
| 447 | valid_mode25 += 4; | |
| 448 | ||
| 449 | if ((valid_mode20 >= valid_mode21) && (valid_mode20 >= valid_mode25)) | |
| 450 | retvalue = 0x007fc0; | |
| 451 | else if (valid_mode21 >= valid_mode25) | |
| 452 | retvalue = 0x00ffc0; | |
| 453 | else | |
| 454 | retvalue = 0x40ffc0; | |
| 455 | ||
| 456 | logerror( "\t HiROM/LoROM id: %s (LoROM: %d , HiROM: %d, ExHiROM: %d)\n", | |
| 457 | (retvalue == 0x007fc0) ? "LoROM" : | |
| 458 | (retvalue == 0x00ffc0) ? "HiROM" : | |
| 459 | (retvalue == 0x40ffc0) ? "ExHiROM" : "Other", | |
| 460 | valid_mode20, valid_mode21, valid_mode25); | |
| 461 | ||
| 462 | return retvalue; | |
| 463 | } | |
| 464 | ||
| 465 | ||
| 466 | static int snes_find_addon_chip( UINT8 *buffer, UINT32 start_offs ) | |
| 467 | { | |
| 468 | /* Info mostly taken from http://snesemu.black-ship.net/misc/hardware/-from%20nsrt.edgeemu.com-chipinfo.htm */ | |
| 469 | switch (buffer[start_offs + 0x16]) | |
| 470 | { | |
| 471 | case 0x00: | |
| 472 | case 0x01: | |
| 473 | case 0x02: | |
| 474 | break; | |
| 475 | ||
| 476 | case 0x03: | |
| 477 | if (buffer[start_offs + 0x15] == 0x30) | |
| 478 | return SNES_DSP4; | |
| 479 | else | |
| 480 | return SNES_DSP; | |
| 481 | ||
| 482 | case 0x04: | |
| 483 | return SNES_DSP; | |
| 484 | ||
| 485 | case 0x05: | |
| 486 | // DSP2 can be detected by (buffer[start_offs + 0x15] == 0x20) | |
| 487 | // DSP3 is harder to detect, and one has to rely on the manufacturer (Bandai) | |
| 488 | // by checking (buffer[start_offs + 0x15] == 0x30) && (buffer[start_offs + 0x1a] == 0xb2) | |
| 489 | // in other cases is DSP1, but we do treat all these together... | |
| 490 | return SNES_DSP; | |
| 491 | ||
| 492 | case 0x13: // Mario Chip 1 | |
| 493 | case 0x14: // GSU-x | |
| 494 | case 0x15: // GSU-x | |
| 495 | case 0x1a: // GSU-1 (21 MHz at start) | |
| 496 | if (buffer[start_offs + 0x15] == 0x20) | |
| 497 | return SNES_SFX; | |
| 498 | break; | |
| 499 | ||
| 500 | case 0x25: | |
| 501 | return SNES_OBC1; | |
| 502 | ||
| 503 | case 0x32: // needed by a Sample game (according to ZSNES) | |
| 504 | case 0x34: | |
| 505 | case 0x35: | |
| 506 | if (buffer[start_offs + 0x15] == 0x23) | |
| 507 | return SNES_SA1; | |
| 508 | break; | |
| 509 | ||
| 510 | case 0x43: | |
| 511 | case 0x45: | |
| 512 | if (buffer[start_offs + 0x15] == 0x32) | |
| 513 | return SNES_SDD1; | |
| 514 | break; | |
| 515 | ||
| 516 | case 0x55: | |
| 517 | if (buffer[start_offs + 0x15] == 0x35) | |
| 518 | return SNES_SRTC; | |
| 519 | break; | |
| 520 | ||
| 521 | case 0xe3: | |
| 522 | return SNES_Z80GB; | |
| 523 | ||
| 524 | case 0xf3: | |
| 525 | return SNES_CX4; | |
| 526 | ||
| 527 | case 0xf5: | |
| 528 | if (buffer[start_offs + 0x15] == 0x30) | |
| 529 | return SNES_ST018; | |
| 530 | else if (buffer[start_offs + 0x15] == 0x3a) | |
| 531 | return SNES_SPC7110; | |
| 532 | break; | |
| 533 | ||
| 534 | case 0xf6: | |
| 535 | /* These Seta ST-01X chips have both 0x30 at 0xffd5, | |
| 536 | they only differ for the 'size' at 0xffd7 */ | |
| 537 | if (buffer[start_offs + 0x17] < 0x0a) | |
| 538 | return SNES_ST011; | |
| 539 | else | |
| 540 | return SNES_ST010; | |
| 541 | ||
| 542 | case 0xf9: | |
| 543 | if (buffer[start_offs + 0x15] == 0x3a) | |
| 544 | return SNES_SPC7110_RTC; | |
| 545 | break; | |
| 546 | ||
| 547 | default: | |
| 548 | break; | |
| 549 | } | |
| 550 | return -1; | |
| 551 | } | |
| 552 | ||
| 553 | ||
| 554 | /*------------------------------------------------- | |
| 555 | call load | |
| 556 | -------------------------------------------------*/ | |
| 557 | ||
| 558 | ||
| 559 | bool base_sns_cart_slot_device::call_load() | |
| 560 | { | |
| 561 | if (m_cart) | |
| 562 | { | |
| 563 | UINT8 *ROM; | |
| 564 | UINT32 len, offset = 0; | |
| 565 | const char *slot_name; | |
| 566 | ||
| 567 | /* Check for a header (512 bytes), and skip it if found */ | |
| 568 | if (software_entry() == NULL) | |
| 569 | { | |
| 570 | UINT32 tmplen = length(); | |
| 571 | UINT8 *tmpROM = global_alloc_array(UINT8, tmplen); | |
| 572 | offset = snes_skip_header(tmpROM, tmplen); | |
| 573 | fseek(offset, SEEK_SET); | |
| 574 | global_free(tmpROM); | |
| 575 | } | |
| 576 | ||
| 577 | len = (software_entry() == NULL) ? (length() - offset) : get_software_region_length("rom"); | |
| 578 | ||
| 579 | m_cart->rom_alloc(machine(), len); | |
| 580 | ROM = m_cart->get_rom_base(); | |
| 581 | if (software_entry() == NULL) | |
| 582 | fread(ROM, len); | |
| 583 | else | |
| 584 | memcpy(ROM, get_software_region("rom"), len); | |
| 585 | ||
| 586 | m_cart->rom_map_setup(len); | |
| 587 | ||
| 588 | // check for on-cart CPU bios | |
| 589 | if (software_entry() != NULL) | |
| 590 | { | |
| 591 | if (get_software_region("addon")) | |
| 592 | { | |
| 593 | m_cart->addon_bios_alloc(machine(), get_software_region_length("addon")); | |
| 594 | memcpy(m_cart->get_addon_bios_base(), get_software_region("addon"), get_software_region_length("addon")); | |
| 595 | } | |
| 596 | } | |
| 597 | ||
| 598 | // get pcb type | |
| 599 | if (software_entry() == NULL) | |
| 600 | m_type = get_cart_type(ROM, len); | |
| 601 | else | |
| 602 | { | |
| 603 | if ((slot_name = get_feature("slot")) == NULL) | |
| 604 | m_type = SNES_MODE20; | |
| 605 | else | |
| 606 | m_type = sns_get_pcb_id(slot_name); | |
| 607 | } | |
| 608 | ||
| 609 | ||
| 610 | setup_custom_mappers(); | |
| 611 | ||
| 612 | setup_nvram(); | |
| 613 | ||
| 614 | if (m_cart->get_nvram_size() || m_cart->get_rtc_ram_size()) | |
| 615 | { | |
| 616 | UINT32 tot_size = m_cart->get_nvram_size() + m_cart->get_rtc_ram_size(); | |
| 617 | UINT8 *temp_nvram = auto_alloc_array(machine(), UINT8, tot_size); | |
| 618 | battery_load(temp_nvram, tot_size, 0xff); | |
| 619 | if (m_cart->get_nvram_size()) | |
| 620 | memcpy(m_cart->get_nvram_base(), temp_nvram, m_cart->get_nvram_size()); | |
| 621 | if (m_cart->get_rtc_ram_size()) | |
| 622 | memcpy(m_cart->get_rtc_ram_base(), temp_nvram + m_cart->get_nvram_size(), m_cart->get_rtc_ram_size()); | |
| 623 | ||
| 624 | if (temp_nvram) | |
| 625 | auto_free(machine(), temp_nvram); | |
| 626 | } | |
| 627 | ||
| 628 | printf("Type %d\n", m_type); | |
| 629 | ||
| 630 | internal_header_logging(ROM, len); | |
| 631 | ||
| 632 | return IMAGE_INIT_PASS; | |
| 633 | } | |
| 634 | ||
| 635 | return IMAGE_INIT_PASS; | |
| 636 | } | |
| 637 | ||
| 638 | ||
| 639 | /*------------------------------------------------- | |
| 640 | call_unload | |
| 641 | -------------------------------------------------*/ | |
| 642 | ||
| 643 | void base_sns_cart_slot_device::call_unload() | |
| 644 | { | |
| 645 | if (m_cart) | |
| 646 | { | |
| 647 | if (m_cart->get_nvram_size() || m_cart->get_rtc_ram_size()) | |
| 648 | { | |
| 649 | UINT32 tot_size = m_cart->get_nvram_size() + m_cart->get_rtc_ram_size(); | |
| 650 | UINT8 *temp_nvram = auto_alloc_array(machine(), UINT8, tot_size); | |
| 651 | if (m_cart->get_nvram_size()) | |
| 652 | memcpy(temp_nvram, m_cart->get_nvram_base(), m_cart->get_nvram_size()); | |
| 653 | if (m_cart->get_rtc_ram_size()) | |
| 654 | memcpy(temp_nvram + m_cart->get_nvram_size(), m_cart->get_rtc_ram_base(), m_cart->get_rtc_ram_size()); | |
| 655 | ||
| 656 | battery_save(temp_nvram, tot_size); | |
| 657 | if (temp_nvram) | |
| 658 | auto_free(machine(), temp_nvram); | |
| 659 | } | |
| 660 | } | |
| 661 | } | |
| 662 | ||
| 663 | ||
| 664 | void base_sns_cart_slot_device::setup_custom_mappers() | |
| 665 | { | |
| 666 | // we have to eventually support pirate mappers here | |
| 667 | } | |
| 668 | ||
| 669 | void base_sns_cart_slot_device::setup_nvram() | |
| 670 | { | |
| 671 | UINT8 *ROM = (UINT8 *)m_cart->get_rom_base(); | |
| 672 | UINT32 size = 0; | |
| 673 | if (software_entry() == NULL) | |
| 674 | { | |
| 675 | int hilo_mode = snes_find_hilo_mode(ROM, m_cart->get_rom_size()); | |
| 676 | UINT8 sram_size = (m_type == SNES_SFX) ? (ROM[0x00ffbd] & 0x07) : (ROM[hilo_mode + 0x18] & 0x07); | |
| 677 | if (sram_size) | |
| 678 | { | |
| 679 | UINT32 max = (hilo_mode == 0x007fc0) ? 0x80000 : 0x20000; // MODE20 vs MODE21 | |
| 680 | size = 1024 << (ROM[0x00ffbd] & 0x07); | |
| 681 | if (size > max) | |
| 682 | size = max; | |
| 683 | } | |
| 684 | } | |
| 685 | else | |
| 686 | { | |
| 687 | if (get_software_region("nvram")) | |
| 688 | size = get_software_region_length("nvram"); | |
| 689 | } | |
| 690 | ||
| 691 | if (size) | |
| 692 | m_cart->nvram_alloc(machine(), size); | |
| 693 | ||
| 694 | if (m_type == SNES_STROM) | |
| 695 | m_cart->nvram_alloc(machine(), 0x20000); | |
| 696 | if (m_type == SNES_BSX) | |
| 697 | m_cart->nvram_alloc(machine(), 0x8000); | |
| 698 | ||
| 699 | // setup also RTC SRAM, when needed (to be removed when RTCs are converted to devices) | |
| 700 | if (m_type == SNES_SRTC) | |
| 701 | m_cart->rtc_ram_alloc(machine(), 13); | |
| 702 | if (m_type == SNES_SPC7110_RTC) | |
| 703 | m_cart->rtc_ram_alloc(machine(), 16); | |
| 704 | } | |
| 705 | ||
| 706 | ||
| 707 | ||
| 708 | /*------------------------------------------------- | |
| 709 | call softlist load | |
| 710 | -------------------------------------------------*/ | |
| 711 | ||
| 712 | bool base_sns_cart_slot_device::call_softlist_load(char *swlist, char *swname, rom_entry *start_entry) | |
| 713 | { | |
| 714 | load_software_part_region(this, swlist, swname, start_entry ); | |
| 715 | return TRUE; | |
| 716 | } | |
| 717 | ||
| 718 | int base_sns_cart_slot_device::get_cart_type(UINT8 *ROM, UINT32 len) | |
| 719 | { | |
| 720 | int type = 0; | |
| 721 | ||
| 722 | // First, look if the cart is HiROM or LoROM (and set snes_cart accordingly) | |
| 723 | int hilo_mode = snes_find_hilo_mode(ROM, len); | |
| 724 | ||
| 725 | switch (hilo_mode) | |
| 726 | { | |
| 727 | case 0x007fc0: // LoRom & ExLoRom | |
| 728 | type = SNES_MODE20; | |
| 729 | break; | |
| 730 | case 0x00ffc0: // HiRom | |
| 731 | case 0x40ffc0: // ExHiRom | |
| 732 | type = SNES_MODE21; | |
| 733 | break; | |
| 734 | default: | |
| 735 | break; | |
| 736 | } | |
| 737 | ||
| 738 | // detect Sufami Turbo... | |
| 739 | if (type == SNES_MODE20 && !memcmp(ROM, "BANDAI SFC-ADX", 14)) | |
| 740 | { | |
| 741 | if (!memcmp(ROM + 16, "SFC-ADX BACKUP", 14)) | |
| 742 | type = SNES_SUFAMITURBO; | |
| 743 | else | |
| 744 | type = SNES_STROM; | |
| 745 | } | |
| 746 | ||
| 747 | // detect BS-X Base Cart | |
| 748 | if (!memcmp(ROM + hilo_mode, "Satellaview BS-X ", 21)) | |
| 749 | type = SNES_BSX; | |
| 750 | // Detect BS-X Flash Cart | |
| 751 | if ((ROM[hilo_mode + 0x13] == 0x00 || ROM[hilo_mode + 0x13] == 0xff) && ROM[hilo_mode + 0x14] == 0x00) | |
| 752 | { | |
| 753 | UINT8 n15 = ROM[hilo_mode + 0x15]; | |
| 754 | if (n15 == 0x00 || n15 == 0x80 || n15 == 0x84 || n15 == 0x9c || n15 == 0xbc || n15 == 0xfc) | |
| 755 | { | |
| 756 | if (ROM[hilo_mode + 0x1a] == 0x33 || ROM[hilo_mode + 0x1a] == 0xff) | |
| 757 | type = SNES_BSMEMPAK; | |
| 758 | } | |
| 759 | } | |
| 760 | ||
| 761 | // check for add-on chips... | |
| 762 | if (len >= hilo_mode + 0x1a) | |
| 763 | { | |
| 764 | int addon = snes_find_addon_chip(ROM, hilo_mode); | |
| 765 | if (addon != -1) | |
| 766 | { | |
| 767 | if (type == SNES_MODE20 && addon == SNES_DSP) | |
| 768 | type = SNES_DSP; | |
| 769 | else if (type == SNES_MODE21 && addon == SNES_DSP) | |
| 770 | type = SNES_DSP_MODE21; | |
| 771 | else | |
| 772 | type = addon; | |
| 773 | } | |
| 774 | } | |
| 775 | // ...and turn them off if we are loading from fullpath a game which requires an add-on bios | |
| 776 | switch (type) | |
| 777 | { | |
| 778 | case SNES_DSP: | |
| 779 | case SNES_DSP4: | |
| 780 | case SNES_ST010: | |
| 781 | case SNES_ST011: | |
| 782 | case SNES_ST018: | |
| 783 | case SNES_CX4: | |
| 784 | printf("This type of cart requires the dump of on-cart CPU. You need to load it from softlist!\n"); | |
| 785 | type = SNES_MODE20; | |
| 786 | break; | |
| 787 | case SNES_DSP_MODE21: | |
| 788 | printf("This type of cart requires the dump of on-cart CPU. You need to load it from softlist!\n"); | |
| 789 | type = SNES_MODE21; | |
| 790 | break; | |
| 791 | } | |
| 792 | ||
| 793 | return type; | |
| 794 | } | |
| 795 | /*------------------------------------------------- | |
| 796 | get default card software | |
| 797 | -------------------------------------------------*/ | |
| 798 | ||
| 799 | const char * base_sns_cart_slot_device::get_default_card_software(const machine_config &config, emu_options &options) | |
| 800 | { | |
| 801 | const char *slot_string = "lorom"; | |
| 802 | bool fullpath = open_image_file(options); | |
| 803 | ||
| 804 | if (fullpath) | |
| 805 | { | |
| 806 | UINT32 len = core_fsize(m_file); | |
| 807 | UINT8 *ROM = global_alloc_array(UINT8, len); | |
| 808 | int type; | |
| 809 | ||
| 810 | core_fread(m_file, ROM, len); | |
| 811 | ||
| 812 | type = get_cart_type(ROM, len); | |
| 813 | slot_string = sns_get_slot(type); | |
| 814 | ||
| 815 | global_free(ROM); | |
| 816 | clear(); | |
| 817 | ||
| 818 | return slot_string; | |
| 819 | } | |
| 820 | ||
| 821 | return software_get_default_slot(config, options, this, "lorom"); | |
| 822 | } | |
| 823 | ||
| 824 | ||
| 825 | ||
| 826 | /*------------------------------------------------- | |
| 827 | read | |
| 828 | -------------------------------------------------*/ | |
| 829 | ||
| 830 | READ8_MEMBER(base_sns_cart_slot_device::read_l) | |
| 831 | { | |
| 832 | if (m_cart) | |
| 833 | return m_cart->read_l(space, offset); | |
| 834 | else | |
| 835 | return 0xff; | |
| 836 | } | |
| 837 | ||
| 838 | READ8_MEMBER(base_sns_cart_slot_device::read_h) | |
| 839 | { | |
| 840 | if (m_cart) | |
| 841 | return m_cart->read_h(space, offset); | |
| 842 | else | |
| 843 | return 0xff; | |
| 844 | } | |
| 845 | ||
| 846 | READ8_MEMBER(base_sns_cart_slot_device::chip_read) | |
| 847 | { | |
| 848 | if (m_cart) | |
| 849 | return m_cart->chip_read(space, offset); | |
| 850 | else | |
| 851 | return 0xff; | |
| 852 | } | |
| 853 | ||
| 854 | /*------------------------------------------------- | |
| 855 | write | |
| 856 | -------------------------------------------------*/ | |
| 857 | ||
| 858 | WRITE8_MEMBER(base_sns_cart_slot_device::write_l) | |
| 859 | { | |
| 860 | if (m_cart) | |
| 861 | m_cart->write_l(space, offset, data); | |
| 862 | } | |
| 863 | ||
| 864 | WRITE8_MEMBER(base_sns_cart_slot_device::write_h) | |
| 865 | { | |
| 866 | if (m_cart) | |
| 867 | m_cart->write_h(space, offset, data); | |
| 868 | } | |
| 869 | ||
| 870 | WRITE8_MEMBER(base_sns_cart_slot_device::chip_write) | |
| 871 | { | |
| 872 | if (m_cart) | |
| 873 | m_cart->chip_write(space, offset, data); | |
| 874 | } | |
| 875 | ||
| 876 | ||
| 877 | /*------------------------------------------------- | |
| 878 | Internal header logging | |
| 879 | -------------------------------------------------*/ | |
| 880 | ||
| 881 | /* We use this to convert the company_id in the header to int value to be passed in companies[] */ | |
| 882 | static int char_to_int_conv( char id ) | |
| 883 | { | |
| 884 | int value; | |
| 885 | ||
| 886 | if (id == '1') value = 0x01; | |
| 887 | else if (id == '2') value = 0x02; | |
| 888 | else if (id == '3') value = 0x03; | |
| 889 | else if (id == '4') value = 0x04; | |
| 890 | else if (id == '5') value = 0x05; | |
| 891 | else if (id == '6') value = 0x06; | |
| 892 | else if (id == '7') value = 0x07; | |
| 893 | else if (id == '8') value = 0x08; | |
| 894 | else if (id == '9') value = 0x09; | |
| 895 | else if (id == 'A') value = 0x0a; | |
| 896 | else if (id == 'B') value = 0x0b; | |
| 897 | else if (id == 'C') value = 0x0c; | |
| 898 | else if (id == 'D') value = 0x0d; | |
| 899 | else if (id == 'E') value = 0x0e; | |
| 900 | else if (id == 'F') value = 0x0f; | |
| 901 | else value = 0x00; | |
| 902 | ||
| 903 | return value; | |
| 904 | } | |
| 905 | ||
| 906 | #define UNK "UNKNOWN" | |
| 907 | ||
| 908 | void base_sns_cart_slot_device::internal_header_logging(UINT8 *ROM, UINT32 len) | |
| 909 | { | |
| 910 | static const char *const cart_types[] = | |
| 911 | { | |
| 912 | "ROM (LoROM)", | |
| 913 | "ROM (HiROM)", | |
| 914 | "ROM (ExLoROM)", | |
| 915 | "ROM (ExHiROM)", | |
| 916 | "ROM, CX4", | |
| 917 | "ROM, DSP-1,2,3 (LoROM)", | |
| 918 | "ROM, DSP-1 (HiROM)", | |
| 919 | "ROM, DSP-4", | |
| 920 | "ROM, OBC-1", | |
| 921 | "ROM, SA-1", | |
| 922 | "ROM, S-DD1", | |
| 923 | "ROM, Super FX / FX2", | |
| 924 | "ROM, SPC7110", | |
| 925 | "ROM, SPC7110, RTC", | |
| 926 | "ROM, S-RTC", | |
| 927 | "ROM, Seta ST-010", | |
| 928 | "ROM, Seta ST-011", | |
| 929 | "ROM, Seta ST-018", | |
| 930 | "ROM, Z80GB (Super Game Boy)", | |
| 931 | "ROM, BS-X Base cart", | |
| 932 | "ROM, BS-X compatible (LoROM)", | |
| 933 | "ROM, BS-X compatible (HiROM)", | |
| 934 | "BS-X memory pack", | |
| 935 | "ROM, Sufami Turbo", | |
| 936 | "Sufami Turbo cart", | |
| 937 | // pirate cart types which are not recognized from fullpath | |
| 938 | UNK, | |
| 939 | UNK, | |
| 940 | UNK | |
| 941 | }; | |
| 942 | ||
| 943 | /* Some known countries */ | |
| 944 | static const char *const countries[] = | |
| 945 | { | |
| 946 | /* 0*/ "Japan (NTSC)", "USA & Canada (NTSC)", "Europe, Oceania & Asia (PAL)", "Sweden (PAL)", | |
| 947 | /* 4*/ "Finland (PAL)", "Denmark (PAL)", "France (PAL)", "Holland (PAL)", | |
| 948 | /* 8*/ "Spain (PAL)", "Germany, Austria & Switzerland (PAL)", "Italy (PAL)", "Hong Kong & China (PAL)", | |
| 949 | /* c*/ "Indonesia (PAL)", "South Korea (NTSC)", UNK, UNK, | |
| 950 | }; | |
| 951 | ||
| 952 | /* Some known companies (integrations to the list from Snes9x) */ | |
| 953 | static const char *const companies[] = | |
| 954 | { | |
| 955 | /* 0*/ "Invalid", "Nintendo", "Ajinomoto", "Imagineer-Zoom", "Chris Gray Enterprises Inc.", "Zamuse", "Falcom", UNK, | |
| 956 | /* 8*/ "Capcom", "HOT-B", "Jaleco", "Coconuts", "Rage Software", "Micronet", "Technos", "Mebio Software", | |
| 957 | /*10*/ "SHOUEi System", "Starfish", "Gremlin Graphics", "Electronic Arts", "NCS / Masaya", "COBRA Team", "Human/Field", "KOEI", | |
| 958 | /*18*/ "Hudson Soft", "Game Village", "Yanoman", UNK, "Tecmo", UNK, "Open System", "Virgin Games", | |
| 959 | /*20*/ "KSS", "Sunsoft", "POW", "Micro World", UNK, UNK, "Enix", "Loriciel/Electro Brain", | |
| 960 | /*28*/ "Kemco", "Seta Co.,Ltd.", "Culture Brain", "Irem Japan", "Pal Soft", "Visit Co.,Ltd.", "INTEC Inc.", "System Sacom Corp.", | |
| 961 | /*30*/ "Viacom New Media", "Carrozzeria", "Dynamic", "Nintendo", "Magifact", "Hect", UNK, UNK, | |
| 962 | /*38*/ "Capcom Europe", "Accolade Europe", UNK, "Arcade Zone", "Empire Software", "Loriciel", "Gremlin Graphics", UNK, | |
| 963 | /*40*/ "Seika Corp.", "UBI Soft", UNK, UNK, "LifeFitness Exertainment", UNK, "System 3", "Spectrum Holobyte", | |
| 964 | /*48*/ UNK, "Irem", UNK, "Raya Systems/Sculptured Software", "Renovation Products", "Malibu Games/Black Pearl", UNK, "U.S. Gold", | |
| 965 | /*50*/ "Absolute Entertainment", "Acclaim", "Activision", "American Sammy", "GameTek", "Hi Tech Expressions", "LJN Toys", UNK, | |
| 966 | /*58*/ UNK, UNK, "Mindscape", "Romstar, Inc.", UNK, "Tradewest", UNK, "American Softworks Corp.", | |
| 967 | /*60*/ "Titus", "Virgin Interactive Entertainment", "Maxis", "Origin/FCI/Pony Canyon", UNK, UNK, UNK, "Ocean", | |
| 968 | /*68*/ UNK, "Electronic Arts", UNK, "Laser Beam", UNK, UNK, "Elite", "Electro Brain", | |
| 969 | /*70*/ "Infogrames", "Interplay", "LucasArts", "Parker Brothers", "Konami", "STORM", UNK, UNK, | |
| 970 | /*78*/ "THQ Software", "Accolade Inc.", "Triffix Entertainment", UNK, "Microprose", UNK, UNK, "Kemco", | |
| 971 | /*80*/ "Misawa", "Teichio", "Namco Ltd.", "Lozc", "Koei", UNK, "Tokuma Shoten Intermedia", "Tsukuda Original", | |
| 972 | /*88*/ "DATAM-Polystar", UNK, UNK, "Bullet-Proof Software", "Vic Tokai", UNK, "Character Soft", "I\'\'Max", | |
| 973 | /*90*/ "Takara", "CHUN Soft", "Video System Co., Ltd.", "BEC", UNK, "Varie", "Yonezawa / S'Pal Corp.", "Kaneco", | |
| 974 | /*98*/ UNK, "Pack in Video", "Nichibutsu", "TECMO", "Imagineer Co.", UNK, UNK, UNK, | |
| 975 | /*a0*/ "Telenet", "Hori", UNK, UNK, "Konami", "K.Amusement Leasing Co.", UNK, "Takara", | |
| 976 | /*a8*/ UNK, "Technos Jap.", "JVC", UNK, "Toei Animation", "Toho", UNK, "Namco Ltd.", | |
| 977 | /*b0*/ "Media Rings Corp.", "ASCII Co. Activison", "Bandai", UNK, "Enix America", UNK, "Halken", UNK, | |
| 978 | /*b8*/ UNK, UNK, "Culture Brain", "Sunsoft", "Toshiba EMI", "Sony Imagesoft", UNK, "Sammy", | |
| 979 | /*c0*/ "Taito", UNK, "Kemco", "Square", "Tokuma Soft", "Data East", "Tonkin House", UNK, | |
| 980 | /*c8*/ "KOEI", UNK, "Konami USA", "NTVIC", UNK, "Meldac", "Pony Canyon", "Sotsu Agency/Sunrise", | |
| 981 | /*d0*/ "Disco/Taito", "Sofel", "Quest Corp.", "Sigma", "Ask Kodansha Co., Ltd.", UNK, "Naxat", UNK, | |
| 982 | /*d8*/ "Capcom Co., Ltd.", "Banpresto", "Tomy", "Acclaim", UNK, "NCS", "Human Entertainment", "Altron", | |
| 983 | /*e0*/ "Jaleco", UNK, "Yutaka", UNK, "T&ESoft", "EPOCH Co.,Ltd.", UNK, "Athena", | |
| 984 | /*e8*/ "Asmik", "Natsume", "King Records", "Atlus", "Sony Music Entertainment", UNK, "IGS", UNK, | |
| 985 | /*f0*/ UNK, "Motown Software", "Left Field Entertainment", "Beam Software", "Tec Magik", UNK, UNK, UNK, | |
| 986 | /*f8*/ UNK, "Cybersoft", UNK, "Psygnosis", UNK, UNK, "Davidson", UNK, | |
| 987 | }; | |
| 988 | ||
| 989 | int hilo_mode = snes_find_hilo_mode(ROM, len); | |
| 990 | char title[21], rom_id[4], company_id[2]; | |
| 991 | int type = 0, company, addon, has_ram = 0, has_sram = 0; | |
| 992 | switch (hilo_mode) | |
| 993 | { | |
| 994 | case 0x007fc0: | |
| 995 | if ((ROM[0x007fd5] == 0x32) || (len > 0x401000)) | |
| 996 | type = SNES_MODE22; // ExLoRom | |
| 997 | else | |
| 998 | type = SNES_MODE20; // LoRom | |
| 999 | type = SNES_MODE20; // LoRom & ExLoRom | |
| 1000 | break; | |
| 1001 | case 0x00ffc0: | |
| 1002 | type = SNES_MODE21; // HiRom | |
| 1003 | break; | |
| 1004 | case 0x40ffc0: | |
| 1005 | type = SNES_MODE25; // ExHiRom | |
| 1006 | break; | |
| 1007 | default: | |
| 1008 | break; | |
| 1009 | } | |
| 1010 | ||
| 1011 | // detect Sufami Turbo... | |
| 1012 | if (type == SNES_MODE20 && !memcmp(ROM, "BANDAI SFC-ADX", 14)) | |
| 1013 | { | |
| 1014 | if (!memcmp(ROM + 16, "SFC-ADX BACKUP", 14)) | |
| 1015 | type = SNES_SUFAMITURBO; | |
| 1016 | else | |
| 1017 | type = SNES_STROM; | |
| 1018 | } | |
| 1019 | ||
| 1020 | // detect BS-X Base Cart | |
| 1021 | if (!memcmp(ROM + hilo_mode, "Satellaview BS-X ", 21)) | |
| 1022 | type = SNES_BSX; | |
| 1023 | // Detect BS-X Flash Cart | |
| 1024 | if ((ROM[hilo_mode + 0x13] == 0x00 || ROM[hilo_mode + 0x13] == 0xff) && ROM[hilo_mode + 0x14] == 0x00) | |
| 1025 | { | |
| 1026 | UINT8 n15 = ROM[hilo_mode + 0x15]; | |
| 1027 | if (n15 == 0x00 || n15 == 0x80 || n15 == 0x84 || n15 == 0x9c || n15 == 0xbc || n15 == 0xfc) | |
| 1028 | { | |
| 1029 | if (ROM[hilo_mode + 0x1a] == 0x33 || ROM[hilo_mode + 0x1a] == 0xff) | |
| 1030 | type = SNES_BSMEMPAK; | |
| 1031 | } | |
| 1032 | } | |
| 1033 | ||
| 1034 | addon = snes_find_addon_chip(ROM, hilo_mode); | |
| 1035 | if (addon != -1) | |
| 1036 | { | |
| 1037 | if (type == SNES_MODE20 && addon == SNES_DSP) | |
| 1038 | type = SNES_DSP; | |
| 1039 | else if (type == SNES_MODE21 && addon == SNES_DSP) | |
| 1040 | type = SNES_DSP_MODE21; | |
| 1041 | else | |
| 1042 | type = addon; | |
| 1043 | } | |
| 1044 | ||
| 1045 | /* Company */ | |
| 1046 | for (int i = 0; i < 2; i++) | |
| 1047 | company_id[i] = ROM[hilo_mode - 0x10 + i]; | |
| 1048 | company = (char_to_int_conv(company_id[0]) << 4) + char_to_int_conv(company_id[1]); | |
| 1049 | if (company == 0) | |
| 1050 | company = ROM[hilo_mode + 0x1a]; | |
| 1051 | ||
| 1052 | /* ROM ID */ | |
| 1053 | for(int i = 0; i < 4; i++ ) | |
| 1054 | rom_id[i] = ROM[hilo_mode - 0x0d + i]; | |
| 1055 | ||
| 1056 | /* Title */ | |
| 1057 | for(int i = 0; i < 21; i++ ) | |
| 1058 | title[i] = ROM[hilo_mode + i]; | |
| 1059 | ||
| 1060 | /* RAM */ | |
| 1061 | if (((ROM[hilo_mode + 0x16] & 0xf) == 1) || | |
| 1062 | ((ROM[hilo_mode + 0x16] & 0xf) == 2) || | |
| 1063 | ((ROM[hilo_mode + 0x16] & 0xf) == 4) || | |
| 1064 | ((ROM[hilo_mode + 0x16] & 0xf) == 5)) | |
| 1065 | has_ram = 1; | |
| 1066 | ||
| 1067 | /* SRAM */ | |
| 1068 | if (((ROM[hilo_mode + 0x16] & 0xf) == 2) || | |
| 1069 | ((ROM[hilo_mode + 0x16] & 0xf) == 5) || | |
| 1070 | ((ROM[hilo_mode + 0x16] & 0xf) == 6)) | |
| 1071 | has_sram = 1; | |
| 1072 | ||
| 1073 | logerror( "ROM DETAILS\n" ); | |
| 1074 | logerror( "===========\n\n" ); | |
| 1075 | logerror( "\tTotal blocks: 0x%x\n", len); | |
| 1076 | logerror( "\tROM bank size: %s \n", | |
| 1077 | (type == SNES_MODE20) ? "LoROM" : | |
| 1078 | (type == SNES_MODE21) ? "HiROM" : | |
| 1079 | (type == SNES_MODE22) ? "ExLoROM" : | |
| 1080 | (type == SNES_MODE25) ? "ExHiROM" : "Other (BSX or ST)" ); | |
| 1081 | logerror( "\tCompany: %s [%.2s]\n", companies[company], company_id ); | |
| 1082 | logerror( "\tROM ID: %.4s\n\n", rom_id ); | |
| 1083 | ||
| 1084 | logerror( "HEADER DETAILS\n" ); | |
| 1085 | logerror( "==============\n\n" ); | |
| 1086 | logerror( "\tName: %.21s\n", title ); | |
| 1087 | logerror( "\tSpeed: %s [%d]\n", (ROM[hilo_mode + 0x15] & 0xf0) ? "FastROM" : "SlowROM", (ROM[hilo_mode + 0x15] & 0xf0) >> 4); | |
| 1088 | logerror( "\tBank size: %s [%d]\n", (ROM[hilo_mode + 0x15] & 0xf) ? "HiROM" : "LoROM", ROM[hilo_mode + 0x15] & 0xf); | |
| 1089 | ||
| 1090 | logerror( "\tType: %s", cart_types[type]); | |
| 1091 | if (has_ram) | |
| 1092 | logerror( ", RAM"); | |
| 1093 | if (has_sram) | |
| 1094 | logerror( ", SRAM"); | |
| 1095 | logerror( " [%d]\n", ROM[hilo_mode + 0x16]); | |
| 1096 | ||
| 1097 | logerror( "\tSize: %d megabits [%d]\n", 1 << (ROM[hilo_mode + 0x17] - 7), ROM[hilo_mode + 0x17]); | |
| 1098 | logerror( "\tSRAM: %d kilobits [%d]\n", ROM[hilo_mode + 0x18] * 8, ROM[hilo_mode + 0x18] ); | |
| 1099 | logerror( "\tCountry: %s [%d]\n", countries[ROM[hilo_mode + 0x19]], ROM[hilo_mode + 0x19]); | |
| 1100 | logerror( "\tLicense: %s [%X]\n", companies[ROM[hilo_mode + 0x1a]], ROM[hilo_mode + 0x1a]); | |
| 1101 | logerror( "\tVersion: 1.%d\n", ROM[hilo_mode + 0x1b]); | |
| 1102 | logerror( "\tInv Checksum: %X %X\n", ROM[hilo_mode + 0x1d], ROM[hilo_mode + 0x1c]); | |
| 1103 | logerror( "\tChecksum: %X %X\n", ROM[hilo_mode + 0x1f], ROM[hilo_mode + 0x1e]); | |
| 1104 | logerror( "\tNMI Address: %2X%2Xh\n", ROM[hilo_mode + 0x2b], ROM[hilo_mode + 0x2a]); | |
| 1105 | logerror( "\tStart Address: %2X%2Xh\n\n", ROM[hilo_mode + 0x2d], ROM[hilo_mode + 0x2c]); | |
| 1106 | ||
| 1107 | logerror( "\tMode: %d\n", type); | |
| 1108 | } |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | #ifndef __SNS_SLOT_H | |
| 2 | #define __SNS_SLOT_H | |
| 3 | ||
| 4 | /*************************************************************************** | |
| 5 | TYPE DEFINITIONS | |
| 6 | ***************************************************************************/ | |
| 7 | ||
| 8 | ||
| 9 | /* PCB */ | |
| 10 | enum | |
| 11 | { | |
| 12 | SNES_MODE20 = 0, | |
| 13 | SNES_MODE21, | |
| 14 | SNES_MODE22, // ExLoROM - not used anymore in emulation (only to log info), will be removed | |
| 15 | SNES_MODE25, // ExHiROM - not used anymore in emulation (only to log info), will be removed | |
| 16 | SNES_CX4, | |
| 17 | SNES_DSP, | |
| 18 | SNES_DSP_MODE21, | |
| 19 | SNES_DSP4, | |
| 20 | SNES_OBC1, | |
| 21 | SNES_SA1, | |
| 22 | SNES_SDD1, | |
| 23 | SNES_SFX, | |
| 24 | SNES_SPC7110, | |
| 25 | SNES_SPC7110_RTC, | |
| 26 | SNES_SRTC, | |
| 27 | SNES_ST010, | |
| 28 | SNES_ST011, | |
| 29 | SNES_ST018, | |
| 30 | SNES_Z80GB, | |
| 31 | SNES_BSX, | |
| 32 | SNES_BSXLO, | |
| 33 | SNES_BSXHI, | |
| 34 | SNES_BSMEMPAK, | |
| 35 | SNES_SUFAMITURBO, | |
| 36 | SNES_STROM, | |
| 37 | // pirate carts | |
| 38 | SNES_POKEMON, | |
| 39 | SNES_BANANA, // wip | |
| 40 | SNES_SOULBLAD // wip | |
| 41 | }; | |
| 42 | ||
| 43 | ||
| 44 | // ======================> sns_cart_interface | |
| 45 | ||
| 46 | struct sns_cart_interface | |
| 47 | { | |
| 48 | }; | |
| 49 | ||
| 50 | ||
| 51 | // ======================> device_sns_cart_interface | |
| 52 | ||
| 53 | class device_sns_cart_interface : public device_slot_card_interface | |
| 54 | { | |
| 55 | public: | |
| 56 | // construction/destruction | |
| 57 | device_sns_cart_interface(const machine_config &mconfig, device_t &device); | |
| 58 | virtual ~device_sns_cart_interface(); | |
| 59 | ||
| 60 | // reading and writing | |
| 61 | virtual DECLARE_READ8_MEMBER(read_l) { return 0xff; } | |
| 62 | virtual DECLARE_READ8_MEMBER(read_h) { return 0xff; } | |
| 63 | virtual DECLARE_WRITE8_MEMBER(write_l) {} | |
| 64 | virtual DECLARE_WRITE8_MEMBER(write_h) {} | |
| 65 | virtual DECLARE_READ8_MEMBER(chip_read) { return 0xff; } | |
| 66 | virtual DECLARE_WRITE8_MEMBER(chip_write) {} | |
| 67 | ||
| 68 | virtual void rom_alloc(running_machine &machine, UINT32 size); | |
| 69 | virtual void nvram_alloc(running_machine &machine, UINT32 size); | |
| 70 | virtual void rtc_ram_alloc(running_machine &machine, UINT32 size); | |
| 71 | virtual void addon_bios_alloc(running_machine &machine, UINT32 size); | |
| 72 | virtual UINT8* get_rom_base() { return m_rom; }; | |
| 73 | virtual UINT8* get_nvram_base() { return m_nvram; }; | |
| 74 | virtual UINT8* get_addon_bios_base() { return m_bios; }; | |
| 75 | virtual UINT8* get_rtc_ram_base() { return m_rtc_ram; }; | |
| 76 | virtual UINT32 get_rom_size() { return m_rom_size; }; | |
| 77 | virtual UINT32 get_nvram_size() { return m_nvram_size; }; | |
| 78 | virtual UINT32 get_addon_bios_size() { return m_bios_size; }; | |
| 79 | virtual UINT32 get_rtc_ram_size() { return m_rtc_ram_size; }; | |
| 80 | ||
| 81 | virtual void rom_map_setup(UINT32 size); | |
| 82 | ||
| 83 | // internal state | |
| 84 | UINT8 *m_rom; | |
| 85 | UINT8 *m_nvram; | |
| 86 | UINT8 *m_bios; | |
| 87 | UINT8 *m_rtc_ram; // temp pointer to save RTC ram to nvram (will disappear when RTCs become devices) | |
| 88 | UINT32 m_rom_size; | |
| 89 | UINT32 m_nvram_size; | |
| 90 | UINT32 m_bios_size; | |
| 91 | UINT32 m_rtc_ram_size; // temp | |
| 92 | ||
| 93 | UINT8 rom_bank_map[256]; // 32K chunks of rom | |
| 94 | }; | |
| 95 | ||
| 96 | ||
| 97 | // ======================> base_sns_cart_slot_device | |
| 98 | ||
| 99 | class base_sns_cart_slot_device : public device_t, | |
| 100 | public sns_cart_interface, | |
| 101 | public device_image_interface, | |
| 102 | public device_slot_interface | |
| 103 | { | |
| 104 | public: | |
| 105 | // construction/destruction | |
| 106 | base_sns_cart_slot_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); | |
| 107 | virtual ~base_sns_cart_slot_device(); | |
| 108 | ||
| 109 | // device-level overrides | |
| 110 | virtual void device_start(); | |
| 111 | virtual void device_config_complete(); | |
| 112 | ||
| 113 | // image-level overrides | |
| 114 | virtual bool call_load(); | |
| 115 | virtual void call_unload(); | |
| 116 | virtual bool call_softlist_load(char *swlist, char *swname, rom_entry *start_entry); | |
| 117 | ||
| 118 | virtual int get_cart_type(UINT8 *ROM, UINT32 len); | |
| 119 | virtual UINT32 snes_skip_header(UINT8 *ROM, UINT32 snes_rom_size); | |
| 120 | virtual int get_type() { return m_type; } | |
| 121 | ||
| 122 | virtual void setup_custom_mappers(); | |
| 123 | virtual void setup_nvram(); | |
| 124 | ||
| 125 | virtual iodevice_t image_type() const { return IO_CARTSLOT; } | |
| 126 | virtual bool is_readable() const { return 1; } | |
| 127 | virtual bool is_writeable() const { return 0; } | |
| 128 | virtual bool is_creatable() const { return 0; } | |
| 129 | virtual bool must_be_loaded() const { return 1; } | |
| 130 | virtual bool is_reset_on_load() const { return 1; } | |
| 131 | virtual const option_guide *create_option_guide() const { return NULL; } | |
| 132 | ||
| 133 | // slot interface overrides | |
| 134 | virtual const char * get_default_card_software(const machine_config &config, emu_options &options); | |
| 135 | virtual void internal_header_logging(UINT8 *ROM, UINT32 len); | |
| 136 | ||
| 137 | // reading and writing | |
| 138 | virtual DECLARE_READ8_MEMBER(read_l); | |
| 139 | virtual DECLARE_READ8_MEMBER(read_h); | |
| 140 | virtual DECLARE_WRITE8_MEMBER(write_l); | |
| 141 | virtual DECLARE_WRITE8_MEMBER(write_h); | |
| 142 | virtual DECLARE_READ8_MEMBER(chip_read); | |
| 143 | virtual DECLARE_WRITE8_MEMBER(chip_write); | |
| 144 | ||
| 145 | // FIXME: | |
| 146 | // this should be private, but then there is some problem installing delegates in the driver... | |
| 147 | //private: | |
| 148 | ||
| 149 | device_sns_cart_interface* m_cart; | |
| 150 | ||
| 151 | int m_type; | |
| 152 | }; | |
| 153 | ||
| 154 | // ======================> sns_cart_slot_device | |
| 155 | ||
| 156 | class sns_cart_slot_device : public base_sns_cart_slot_device | |
| 157 | { | |
| 158 | public: | |
| 159 | // construction/destruction | |
| 160 | sns_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 161 | virtual const char *image_interface() const { return "snes_cart"; } | |
| 162 | virtual const char *file_extensions() const { return "sfc"; } | |
| 163 | }; | |
| 164 | ||
| 165 | // ======================> sns_sufami_cart_slot_device | |
| 166 | ||
| 167 | class sns_sufami_cart_slot_device : public base_sns_cart_slot_device | |
| 168 | { | |
| 169 | public: | |
| 170 | // construction/destruction | |
| 171 | sns_sufami_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 172 | virtual const char *image_interface() const { return "st_cart"; } | |
| 173 | virtual const char *file_extensions() const { return "st"; } | |
| 174 | virtual bool must_be_loaded() const { return 0; } | |
| 175 | }; | |
| 176 | ||
| 177 | // ======================> sns_sufami_cart_slot_device | |
| 178 | ||
| 179 | class sns_bsx_cart_slot_device : public base_sns_cart_slot_device | |
| 180 | { | |
| 181 | public: | |
| 182 | // construction/destruction | |
| 183 | sns_bsx_cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); | |
| 184 | virtual const char *image_interface() const { return "bspack"; } | |
| 185 | virtual const char *file_extensions() const { return "bs"; } | |
| 186 | virtual bool must_be_loaded() const { return 0; } | |
| 187 | }; | |
| 188 | ||
| 189 | ||
| 190 | ||
| 191 | ||
| 192 | // device type definition | |
| 193 | extern const device_type SNS_CART_SLOT; | |
| 194 | extern const device_type SNS_SUFAMI_CART_SLOT; | |
| 195 | extern const device_type SNS_BSX_CART_SLOT; | |
| 196 | ||
| 197 | ||
| 198 | /*************************************************************************** | |
| 199 | DEVICE CONFIGURATION MACROS | |
| 200 | ***************************************************************************/ | |
| 201 | ||
| 202 | #define MCFG_SNS_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot,_def_inp) \ | |
| 203 | MCFG_DEVICE_ADD(_tag, SNS_CART_SLOT, 0) \ | |
| 204 | MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, _def_inp, false) | |
| 205 | ||
| 206 | #define MCFG_SNS_SUFAMI_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot,_def_inp) \ | |
| 207 | MCFG_DEVICE_ADD(_tag, SNS_SUFAMI_CART_SLOT, 0) \ | |
| 208 | MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, _def_inp, false) | |
| 209 | ||
| 210 | #define MCFG_SNS_BSX_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot,_def_inp) \ | |
| 211 | MCFG_DEVICE_ADD(_tag, SNS_BSX_CART_SLOT, 0) \ | |
| 212 | MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, _def_inp, false) | |
| 213 | ||
| 214 | ||
| 215 | #endif |
| Added: svn:mime-type + text/plain Added: svn:eol-style + native |
| r0 | r21546 | |
|---|---|---|
| 1 | <?xml version="1.0"?> | |
| 2 | <!DOCTYPE softwarelist SYSTEM "softwarelist.dtd"> | |
| 3 | ||
| 4 | <softwarelist name="snes_bspack" description="Nintendo SNES Satellaview Memory Packs"> | |
| 5 | ||
| 6 | <!-- Memory packs sold w/games --> | |
| 7 | ||
| 8 | <software name="samegmcc" supported="no"> | |
| 9 | <description>Same Game - Chara Cassette (Jpn, BSROM)</description> | |
| 10 | <year>1996</year> | |
| 11 | <publisher>Hudson</publisher> | |
| 12 | <info name="serial" value="BSMC-ZS5J-JPN" /> | |
| 13 | <info name="release" value="19960301" /> | |
| 14 | <part name="cart" interface="bspack"> | |
| 15 | <feature name="pcb" value="BSMC-CR-01" /> | |
| 16 | <feature name="u1" value="U1 MASKROM" /> | |
| 17 | <feature name="cart_model" value="SHVC-031" /> | |
| 18 | ||
| 19 | <feature name="slot" value="bsmempak" /> | |
| 20 | <dataarea name="rom" size="524288"> | |
| 21 | <rom name="bsmc-zs5j-0.u1" size="524288" crc="4c3439c2" sha1="c974673e0365dadc54afcf8dd2e6b41b512c6fe7" offset="0x000000" /> | |
| 22 | </dataarea> | |
| 23 | </part> | |
| 24 | </software> | |
| 25 | ||
| 26 | <software name="samegmcd" supported="no"> | |
| 27 | <description>Same Game - Chara Data Shuu (Jpn, BSROM, Not for sale)</description> | |
| 28 | <year>1996</year> | |
| 29 | <publisher>Hudson</publisher> | |
| 30 | <part name="cart" interface="bspack"> | |
| 31 | ||
| 32 | <feature name="slot" value="bsmempak" /> | |
| 33 | <dataarea name="rom" size="524288"> | |
| 34 | <rom name="same game - chara data shuu (japan) (bsrom).bs" size="524288" crc="12a80829" sha1="ff3e6b558aaa9c36a35460ba61821e09aef50a9e" offset="0x000000" /> | |
| 35 | </dataarea> | |
| 36 | </part> | |
| 37 | </software> | |
| 38 | ||
| 39 | <software name="sdgunmap" supported="no"> | |
| 40 | <description>SD Gundam G Next - Unit & Map Collection (Jpn, BSROM)</description> | |
| 41 | <year>1996</year> | |
| 42 | <publisher>Bandai</publisher> | |
| 43 | <info name="serial" value="SHVC-039 ?" /> | |
| 44 | <info name="release" value="19960329" /> | |
| 45 | <info name="alt_title" value="SDガンダム ジーネクスト ユニット& マップコレクション" /> | |
| 46 | <part name="cart" interface="bspack"> | |
| 47 | ||
| 48 | <feature name="slot" value="bsmempak" /> | |
| 49 | <dataarea name="rom" size="524288"> | |
| 50 | <rom name="sd gundam g next - unit & map collection (japan) (bsrom).bs" size="524288" crc="60b1b7e0" sha1="81a75b1a19907e831b3b80d2067108a61c4bae40" offset="0x000000" /> | |
| 51 | </dataarea> | |
| 52 | </part> | |
| 53 | </software> | |
| 54 | ||
| 55 | ||
| 56 | ||
| 57 | <!-- BS-X Satellaview Memory packs with downloaded contents from broadcast --> | |
| 58 | ||
| 59 | <software name="bsdragon" supported="no"> | |
| 60 | <description>BS Dragon Quest I (Jpn)</description> | |
| 61 | <year>199?</year> | |
| 62 | <publisher><unknown></publisher> | |
| 63 | <part name="cart" interface="bspack"> | |
| 64 | ||
| 65 | <feature name="slot" value="bsmempak" /> | |
| 66 | <dataarea name="rom" size="1048576"> | |
| 67 | <rom name="bs dragon quest i (japan) [b].bs" size="1048576" crc="577f6d20" sha1="aed921ff60c7c01a80e7e8f2d24d6684465a941e" offset="0x000000" status="baddump" /> | |
| 68 | </dataarea> | |
| 69 | </part> | |
| 70 | </software> | |
| 71 | ||
| 72 | <software name="bszeld2" supported="no"> | |
| 73 | <description>BS Zelda no Densetsu Map 2 - Dai-4-wa (Jpn)</description> | |
| 74 | <year>199?</year> | |
| 75 | <publisher><unknown></publisher> | |
| 76 | <part name="cart" interface="bspack"> | |
| 77 | ||
| 78 | <feature name="slot" value="bsmempak" /> | |
| 79 | <dataarea name="rom" size="1048576"> | |
| 80 | <rom name="bs zelda no densetsu map 2 - dai-4-wa (japan) [b].bs" size="1048576" crc="670b51ca" sha1="4a53e22e2b01f55245112da5bdd24aed7a9f7c10" offset="0x000000" status="baddump" /> | |
| 81 | </dataarea> | |
| 82 | </part> | |
| 83 | </software> | |
| 84 | ||
| 85 | <software name="bsdandnu" supported="no"> | |
| 86 | <description>Dandan Belt Conveyor - Ukulele no Maki (Jpn)</description> | |
| 87 | <year>199?</year> | |
| 88 | <publisher><unknown></publisher> | |
| 89 | <part name="cart" interface="bspack"> | |
| 90 | ||
| 91 | <feature name="slot" value="bsmempak" /> | |
| 92 | <dataarea name="rom" size="1048576"> | |
| 93 | <rom name="dandan belt conveyor - ukulele no maki (japan) [b].bs" size="1048576" crc="10205b4b" sha1="da3c4c0bb0c36b7605a93fed9ff220e46d71f6d6" offset="0x000000" status="baddump" /> | |
| 94 | </dataarea> | |
| 95 | </part> | |
| 96 | </software> | |
| 97 | ||
| 98 | <software name="bs3jiw5g" supported="no"> | |
| 99 | <description>3-ji no Wide Shou - 5 Gatsugou (Jpn)</description> | |
| 100 | <year>199?</year> | |
| 101 | <publisher><unknown></publisher> | |
| 102 | <part name="cart" interface="bspack"> | |
| 103 | ||
| 104 | <feature name="slot" value="bsmempak" /> | |
| 105 | <dataarea name="rom" size="524288"> | |
| 106 | <rom name="3-ji no wide shou - 5 gatsugou (japan).bs" size="524288" crc="78ce2bf6" sha1="d9821b56e5837818875ef99734cd208aa368d23c" offset="0x000000" /> | |
| 107 | </dataarea> | |
| 108 | </part> | |
| 109 | </software> | |
| 110 | ||
| 111 | <software name="bs3jiw6g" supported="no"> | |
| 112 | <description>3-ji no Wide Shou - 6 Gatsugou (Jpn)</description> | |
| 113 | <year>199?</year> | |
| 114 | <publisher><unknown></publisher> | |
| 115 | <part name="cart" interface="bspack"> | |
| 116 | ||
| 117 | <feature name="slot" value="bsmempak" /> | |
| 118 | <dataarea name="rom" size="524288"> | |
| 119 | <rom name="3-ji no wide shou - 6 gatsugou (japan).bs" size="524288" crc="dbe754c6" sha1="8016d1d9db9af87d59edba7a4be39f46f7561253" offset="0x000000" /> | |
| 120 | </dataarea> | |
| 121 | </part> | |
| 122 | </software> | |
| 123 | ||
| 124 | <software name="bsalbody" supported="no"> | |
| 125 | <description>Albert Odyssey (Jpn, BS)</description> | |
| 126 | <year>199?</year> | |
| 127 | <publisher><unknown></publisher> | |
| 128 | <part name="cart" interface="bspack"> | |
| 129 | ||
| 130 | <feature name="slot" value="bsmempak" /> | |
| 131 | <dataarea name="rom" size="1048576"> | |
| 132 | <rom name="albert odyssey (japan).bs" size="1048576" crc="d5f6ad68" sha1="a1a682f723573254046a8af06b92fe408fc4207a" offset="0x000000" /> | |
| 133 | </dataarea> | |
| 134 | </part> | |
| 135 | </software> | |
| 136 | ||
| 137 | <software name="bsarkand" supported="no"> | |
| 138 | <description>Arkanoid - Doh It Again (Jpn, BS)</description> | |
| 139 | <year>199?</year> | |
| 140 | <publisher><unknown></publisher> | |
| 141 | <part name="cart" interface="bspack"> | |
| 142 | ||
| 143 | <feature name="slot" value="bsmempak" /> | |
| 144 | <dataarea name="rom" size="524288"> | |
| 145 | <rom name="arkanoid - doh it again (japan).bs" size="524288" crc="ded48e0a" sha1="699c4aa1045118cdc83a1cb88416f11732e69a11" offset="0x000000" /> | |
| 146 | </dataarea> | |
| 147 | </part> | |
| 148 | </software> | |
| 149 | ||
| 150 | <software name="bsbdas2" supported="no"> | |
| 151 | <description>B Dash - 2 Gatsugou (Jpn)</description> | |
| 152 | <year>199?</year> | |
| 153 | <publisher><unknown></publisher> | |
| 154 | <part name="cart" interface="bspack"> | |
| 155 | ||
| 156 | <feature name="slot" value="bsmempak" /> | |
| 157 | <dataarea name="rom" size="1048576"> | |
| 158 | <rom name="b dash - 2 gatsugou (japan).bs" size="1048576" crc="6b16f32b" sha1="60aaee780b290dd1b4ad9a339b00d76fb00f0ced" offset="0x000000" /> | |
| 159 | </dataarea> | |
| 160 | </part> | |
| 161 | </software> | |
| 162 | ||
| 163 | <software name="bsbdas3" supported="no"> | |
| 164 | <description>B Dash - 3 Gatsugou (Jpn)</description> | |
| 165 | <year>199?</year> | |
| 166 | <publisher><unknown></publisher> | |
| 167 | <part name="cart" interface="bspack"> | |
| 168 | ||
| 169 | <feature name="slot" value="bsmempak" /> | |
| 170 | <dataarea name="rom" size="1048576"> | |
| 171 | <rom name="b dash - 3 gatsugou (japan).bs" size="1048576" crc="f2630bed" sha1="be0f839f619cbd226f1499ef80fcb91ec950e74d" offset="0x000000" /> | |
| 172 | </dataarea> | |
| 173 | </part> | |
| 174 | </software> | |
| 175 | ||
| 176 | <software name="bsfzero4" supported="no"> | |
| 177 | <description>BS F-Zero Grand Prix - Ace League - Dai-4-shuu (Jpn)</description> | |
| 178 | <year>199?</year> | |
| 179 | <publisher><unknown></publisher> | |
| 180 | <part name="cart" interface="bspack"> | |
| 181 | ||
| 182 | <feature name="slot" value="bsmempak" /> | |
| 183 | <dataarea name="rom" size="1048576"> | |
| 184 | <rom name="bs f-zero grand prix - ace league - dai-4-shuu (japan).bs" size="1048576" crc="f57d28dc" sha1="2c29ebf2fece378fc4d1186d0b60fdb6db3beef0" offset="0x000000" /> | |
| 185 | </dataarea> | |
| 186 | </part> | |
| 187 | </software> | |
| 188 | ||
| 189 | <software name="bsfzero3" supported="no"> | |
| 190 | <description>BS F-Zero Grand Prix - King League - Dai-3-shuu (Jpn)</description> | |
| 191 | <year>199?</year> | |
| 192 | <publisher><unknown></publisher> | |
| 193 | <part name="cart" interface="bspack"> | |
| 194 | ||
| 195 | <feature name="slot" value="bsmempak" /> | |
| 196 | <dataarea name="rom" size="1048576"> | |
| 197 | <rom name="bs f-zero grand prix - king league - dai-3-shuu (japan).bs" size="1048576" crc="f75713db" sha1="72ce3866ce9b7edd856515b033a69ad6fa3d96ba" offset="0x000000" /> | |
| 198 | </dataarea> | |
| 199 | </part> | |
| 200 | </software> | |
| 201 | ||
| 202 | <software name="bsfzero1" supported="no"> | |
| 203 | <description>BS F-Zero Grand Prix - Knight League - Dai-1-shuu (Jpn)</description> | |
| 204 | <year>199?</year> | |
| 205 | <publisher><unknown></publisher> | |
| 206 | <part name="cart" interface="bspack"> | |
| 207 | ||
| 208 | <feature name="slot" value="bsmempak" /> | |
| 209 | <dataarea name="rom" size="1048576"> | |
| 210 | <rom name="bs f-zero grand prix - knight league - dai-1-shuu (japan).bs" size="1048576" crc="dbacf9f0" sha1="c5197d43eb637e537ad358f7b2aa01fb6acb774a" offset="0x000000" /> | |
| 211 | </dataarea> | |
| 212 | </part> | |
| 213 | </software> | |
| 214 | ||
| 215 | <software name="bsfzero2" supported="no"> | |
| 216 | <description>BS F-Zero Grand Prix - Queen League - Dai-2-shuu (Jpn)</description> | |
| 217 | <year>199?</year> | |
| 218 | <publisher><unknown></publisher> | |
| 219 | <part name="cart" interface="bspack"> | |
| 220 | ||
| 221 | <feature name="slot" value="bsmempak" /> | |
| 222 | <dataarea name="rom" size="1048576"> | |
| 223 | <rom name="bs f-zero grand prix - queen league - dai-2-shuu (japan).bs" size="1048576" crc="ee6c9473" sha1="15050b25916eb39caf16b5f4cc3e391693251580" offset="0x000000" /> | |
| 224 | </dataarea> | |
| 225 | </part> | |
| 226 | </software> | |
| 227 | ||
| 228 | <software name="bsfzgp2" supported="no"> | |
| 229 | <description>BS F-Zero Grand Prix 2 - Practice (Jpn)</description> | |
| 230 | <year>199?</year> | |
| 231 | <publisher><unknown></publisher> | |
| 232 | <part name="cart" interface="bspack"> | |
| 233 | ||
| 234 | <feature name="slot" value="bsmempak" /> | |
| 235 | <dataarea name="rom" size="1048576"> | |
| 236 | <rom name="bs f-zero grand prix 2 - practice (japan).bs" size="1048576" crc="c4808858" sha1="881ef90e6dca67895a6096db20c5cea13de13baa" offset="0x000000" /> | |
| 237 | </dataarea> | |
| 238 | </part> | |
| 239 | </software> | |
| 240 | ||
| 241 | <software name="bsfirem1" supported="no"> | |
| 242 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-1-wa - Palace Kanraku (Jpn, 0929)</description> | |
| 243 | <year>199?</year> | |
| 244 | <publisher><unknown></publisher> | |
| 245 | <part name="cart" interface="bspack"> | |
| 246 | ||
| 247 | <feature name="slot" value="bsmempak" /> | |
| 248 | <dataarea name="rom" size="1048576"> | |
| 249 | <rom name="bs fire emblem - akaneia senki hen - dai-1-wa - palace kanraku (r) (9-29).bs" size="1048576" crc="2bcdf855" sha1="da2c02ff04d454a183c9e07df5323adfe0961ce8" offset="0x000000" /> | |
| 250 | </dataarea> | |
| 251 | </part> | |
| 252 | </software> | |
| 253 | ||
| 254 | <software name="bsfirem1a" cloneof="bsfirem1" supported="no"> | |
| 255 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-1-wa - Palace Kanraku (Jpn, 0404)</description> | |
| 256 | <year>199?</year> | |
| 257 | <publisher><unknown></publisher> | |
| 258 | <part name="cart" interface="bspack"> | |
| 259 | ||
| 260 | <feature name="slot" value="bsmempak" /> | |
| 261 | <dataarea name="rom" size="1048576"> | |
| 262 | <rom name="bs fire emblem - akaneia senki hen - dai-1-wa - palace kanraku (japan).bs" size="1048576" crc="14915411" sha1="0b22231d4d4a18183d5b8ce90510efab6456ca3d" offset="0x000000" /> | |
| 263 | </dataarea> | |
| 264 | </part> | |
| 265 | </software> | |
| 266 | ||
| 267 | <software name="bsfirem2" supported="no"> | |
| 268 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-2-wa - Akai Ryuu Kishi (Jpn)</description> | |
| 269 | <year>199?</year> | |
| 270 | <publisher><unknown></publisher> | |
| 271 | <part name="cart" interface="bspack"> | |
| 272 | ||
| 273 | <feature name="slot" value="bsmempak" /> | |
| 274 | <dataarea name="rom" size="1048576"> | |
| 275 | <rom name="bs fire emblem - akaneia senki hen - dai-2-wa - akai ryuu kishi (japan).bs" size="1048576" crc="bb73aadf" sha1="e400fe6080809fd4909091f9af42ae5413b8415f" offset="0x000000" /> | |
| 276 | </dataarea> | |
| 277 | </part> | |
| 278 | </software> | |
| 279 | ||
| 280 | <software name="bsfirem3" supported="no"> | |
| 281 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-3-wa - Seigi no Touzokudan (Jpn)</description> | |
| 282 | <year>199?</year> | |
| 283 | <publisher><unknown></publisher> | |
| 284 | <part name="cart" interface="bspack"> | |
| 285 | ||
| 286 | <feature name="slot" value="bsmempak" /> | |
| 287 | <dataarea name="rom" size="1048576"> | |
| 288 | <rom name="bs fire emblem - akaneia senki hen - dai-3-wa - seigi no touzokudan (japan).bs" size="1048576" crc="4ac9d49c" sha1="5e0996433e0384d7d209a9e11a7671ff4dea9cf1" offset="0x000000" /> | |
| 289 | </dataarea> | |
| 290 | </part> | |
| 291 | </software> | |
| 292 | ||
| 293 | <software name="bsfirem4" supported="no"> | |
| 294 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-4-wa - Hajimari no Toki (Jpn)</description> | |
| 295 | <year>199?</year> | |
| 296 | <publisher><unknown></publisher> | |
| 297 | <part name="cart" interface="bspack"> | |
| 298 | ||
| 299 | <feature name="slot" value="bsmempak" /> | |
| 300 | <dataarea name="rom" size="1048576"> | |
| 301 | <rom name="bs fire emblem - akaneia senki hen - dai-4-wa - hajimari no toki (japan).bs" size="1048576" crc="0b4b6c1f" sha1="3b0568bb44e3ac728fe4723c6d2e2de1ee8f7bb4" offset="0x000000" /> | |
| 302 | </dataarea> | |
| 303 | </part> | |
| 304 | </software> | |
| 305 | ||
| 306 | <software name="bsfuurai" supported="no"> | |
| 307 | <description>BS Fuurai no Shiren - Surara o Sukue - Dai-2-shuu (Jpn)</description> | |
| 308 | <year>199?</year> | |
| 309 | <publisher><unknown></publisher> | |
| 310 | <part name="cart" interface="bspack"> | |
| 311 | ||
| 312 | <feature name="slot" value="bsmempak" /> | |
| 313 | <dataarea name="rom" size="1048576"> | |
| 314 | <rom name="bs fuurai no shiren - surara o sukue - dai-2-shuu (japan).bs" size="1048576" crc="882bf819" sha1="dfdd964e323e677fcc3e3807fff8c98ee3aca4b4" offset="0x000000" /> | |
| 315 | </dataarea> | |
| 316 | </part> | |
| 317 | </software> | |
| 318 | ||
| 319 | <software name="bscamp1" supported="no"> | |
| 320 | <description>BS Marvelous - Camp Arnold Course - Dai-1-shuu (Jpn)</description> | |
| 321 | <year>199?</year> | |
| 322 | <publisher><unknown></publisher> | |
| 323 | <part name="cart" interface="bspack"> | |
| 324 | ||
| 325 | <feature name="slot" value="bsmempak" /> | |
| 326 | <dataarea name="rom" size="1048576"> | |
| 327 | <rom name="bs marvelous - camp arnold course - dai-1-shuu (japan).bs" size="1048576" crc="6b90c767" sha1="8d15078191f7b7b49b7dda602207456a7caf3b12" offset="0x000000" /> | |
| 328 | </dataarea> | |
| 329 | </part> | |
| 330 | </software> | |
| 331 | ||
| 332 | <software name="bscamp2" supported="no"> | |
| 333 | <description>BS Marvelous - Camp Arnold Course - Dai-2-shuu (Jpn)</description> | |
| 334 | <year>199?</year> | |
| 335 | <publisher><unknown></publisher> | |
| 336 | <part name="cart" interface="bspack"> | |
| 337 | ||
| 338 | <feature name="slot" value="bsmempak" /> | |
| 339 | <dataarea name="rom" size="1048576"> | |
| 340 | <rom name="bs marvelous - camp arnold course - dai-2-shuu (japan).bs" size="1048576" crc="f5357704" sha1="fc3d84ad42ebda1f81ea5620f313675076b2f80b" offset="0x000000" /> | |
| 341 | </dataarea> | |
| 342 | </part> | |
| 343 | </software> | |
| 344 | ||
| 345 | <software name="bscamp3" supported="no"> | |
| 346 | <description>BS Marvelous - Camp Arnold Course - Dai-3-shuu (Jpn)</description> | |
| 347 | <year>199?</year> | |
| 348 | <publisher><unknown></publisher> | |
| 349 | <part name="cart" interface="bspack"> | |
| 350 | ||
| 351 | <feature name="slot" value="bsmempak" /> | |
| 352 | <dataarea name="rom" size="1048576"> | |
| 353 | <rom name="bs marvelous - camp arnold course - dai-3-shuu (japan).bs" size="1048576" crc="2b87dbaa" sha1="c89632aec2699e3adbb449b841ec7c582aac58b2" offset="0x000000" /> | |
| 354 | </dataarea> | |
| 355 | </part> | |
| 356 | </software> | |
| 357 | ||
| 358 | <software name="bscamp4" supported="no"> | |
| 359 | <description>BS Marvelous - Camp Arnold Course - Dai-4-shuu (Jpn)</description> | |
| 360 | <year>199?</year> | |
| 361 | <publisher><unknown></publisher> | |
| 362 | <part name="cart" interface="bspack"> | |
| 363 | ||
| 364 | <feature name="slot" value="bsmempak" /> | |
| 365 | <dataarea name="rom" size="1048576"> | |
| 366 | <rom name="bs marvelous - camp arnold course - dai-4-shuu (japan).bs" size="1048576" crc="6986937e" sha1="4a7336cd58e5da4256bb7ac64716bd9fac445be4" offset="0x000000" /> | |
| 367 | </dataarea> | |
| 368 | </part> | |
| 369 | </software> | |
| 370 | ||
| 371 | <software name="bstime1" supported="no"> | |
| 372 | <description>BS Marvelous - Time Athletic Course - Dai-1-shuu (Jpn)</description> | |
| 373 | <year>199?</year> | |
| 374 | <publisher><unknown></publisher> | |
| 375 | <part name="cart" interface="bspack"> | |
| 376 | ||
| 377 | <feature name="slot" value="bsmempak" /> | |
| 378 | <dataarea name="rom" size="1048576"> | |
| 379 | <rom name="bs marvelous - time athletic course - dai-1-shuu (japan).bs" size="1048576" crc="1639db9d" sha1="4d63a2457303bb55b5f647614c321881155dedaa" offset="0x000000" /> | |
| 380 | </dataarea> | |
| 381 | </part> | |
| 382 | </software> | |
| 383 | ||
| 384 | <software name="bstime2" supported="no"> | |
| 385 | <description>BS Marvelous - Time Athletic Course - Dai-2-shuu (Jpn)</description> | |
| 386 | <year>199?</year> | |
| 387 | <publisher><unknown></publisher> | |
| 388 | <part name="cart" interface="bspack"> | |
| 389 | ||
| 390 | <feature name="slot" value="bsmempak" /> | |
| 391 | <dataarea name="rom" size="1048576"> | |
| 392 | <rom name="bs marvelous - time athletic course - dai-2-shuu (japan).bs" size="1048576" crc="27d62709" sha1="f9347676f342a3d692f1af799ea0b7f84711e80b" offset="0x000000" /> | |
| 393 | </dataarea> | |
| 394 | </part> | |
| 395 | </software> | |
| 396 | ||
| 397 | <software name="bstime3" supported="no"> | |
| 398 | <description>BS Marvelous - Time Athletic Course - Dai-3-shuu (Jpn)</description> | |
| 399 | <year>199?</year> | |
| 400 | <publisher><unknown></publisher> | |
| 401 | <part name="cart" interface="bspack"> | |
| 402 | ||
| 403 | <feature name="slot" value="bsmempak" /> | |
| 404 | <dataarea name="rom" size="1048576"> | |
| 405 | <rom name="bs marvelous - time athletic course - dai-3-shuu (japan).bs" size="1048576" crc="5a88e3fb" sha1="6025b65a0aa2b0be7ee6e6b50b09a9295137d85a" offset="0x000000" /> | |
| 406 | </dataarea> | |
| 407 | </part> | |
| 408 | </software> | |
| 409 | ||
| 410 | <software name="bstime4" supported="no"> | |
| 411 | <description>BS Marvelous - Time Athletic Course - Dai-4-shuu (Jpn)</description> | |
| 412 | <year>199?</year> | |
| 413 | <publisher><unknown></publisher> | |
| 414 | <part name="cart" interface="bspack"> | |
| 415 | ||
| 416 | <feature name="slot" value="bsmempak" /> | |
| 417 | <dataarea name="rom" size="1048576"> | |
| 418 | <rom name="bs marvelous - time athletic course - dai-4-shuu (japan).bs" size="1048576" crc="fba7789e" sha1="374b3edc9e0b0d2438f4457481cbc8095a566cce" offset="0x000000" /> | |
| 419 | </dataarea> | |
| 420 | </part> | |
| 421 | </software> | |
| 422 | ||
| 423 | <software name="bsnichmt" supported="no"> | |
| 424 | <description>BS Nichibutsu Mahjong - Mahjong Taikai (Jpn)</description> | |
| 425 | <year>199?</year> | |
| 426 | <publisher><unknown></publisher> | |
| 427 | <part name="cart" interface="bspack"> | |
| 428 | ||
| 429 | <feature name="slot" value="bsmempak" /> | |
| 430 | <dataarea name="rom" size="1048576"> | |
| 431 | <rom name="bs nichibutsu mahjong - mahjong taikai (japan).bs" size="1048576" crc="f10028b1" sha1="9a46696609186336a4cdc380569f01e6af7050ec" offset="0x000000" /> | |
| 432 | </dataarea> | |
| 433 | </part> | |
| 434 | </software> | |
| 435 | ||
| 436 | <software name="bsnichic" supported="no"> | |
| 437 | <description>BS Nichibutsu Mahjong - Renshuu Mahjong - Ichimantou (Jpn)</description> | |
| 438 | <year>199?</year> | |
| 439 | <publisher><unknown></publisher> | |
| 440 | <part name="cart" interface="bspack"> | |
| 441 | ||
| 442 | <feature name="slot" value="bsmempak" /> | |
| 443 | <dataarea name="rom" size="1048576"> | |
| 444 | <rom name="bs nichibutsu mahjong - renshuu mahjong - ichimantou (japan).bs" size="1048576" crc="a0b0e5ca" sha1="67a6db29af61b94c1918daaa77022feca82bb4fe" offset="0x000000" /> | |
| 445 | </dataarea> | |
| 446 | </part> | |
| 447 | </software> | |
| 448 | ||
| 449 | <software name="bsnichni" supported="no"> | |
| 450 | <description>BS Nichibutsu Mahjong - Renshuu Mahjong - Nimantou (Jpn)</description> | |
| 451 | <year>199?</year> | |
| 452 | <publisher><unknown></publisher> | |
| 453 | <part name="cart" interface="bspack"> | |
| 454 | ||
| 455 | <feature name="slot" value="bsmempak" /> | |
| 456 | <dataarea name="rom" size="1048576"> | |
| 457 | <rom name="bs nichibutsu mahjong - renshuu mahjong - nimantou (japan).bs" size="1048576" crc="3cec7861" sha1="57e1a364268ef180ed517e13fea63ee89c607a18" offset="0x000000" /> | |
| 458 | </dataarea> | |
| 459 | </part> | |
| 460 | </software> | |
| 461 | ||
| 462 | <software name="bshp517" supported="no"> | |
| 463 | <description>BS Nintendo HP - 5-17 Gou (Jpn)</description> | |
| 464 | <year>199?</year> | |
| 465 | <publisher><unknown></publisher> | |
| 466 | <part name="cart" interface="bspack"> | |
| 467 | ||
| 468 | <feature name="slot" value="bsmempak" /> | |
| 469 | <dataarea name="rom" size="1048576"> | |
| 470 | <rom name="bs nintendo hp - 5-17 gou (japan).bs" size="1048576" crc="768f50f4" sha1="cb1c842f74eb3869e765feb196644708987ff051" offset="0x000000" /> | |
| 471 | </dataarea> | |
| 472 | </part> | |
| 473 | </software> | |
| 474 | ||
| 475 | <software name="bshp531" supported="no"> | |
| 476 | <description>BS Nintendo HP - 5-31 Gou (Jpn)</description> | |
| 477 | <year>199?</year> | |
| 478 | <publisher><unknown></publisher> | |
| 479 | <part name="cart" interface="bspack"> | |
| 480 | ||
| 481 | <feature name="slot" value="bsmempak" /> | |
| 482 | <dataarea name="rom" size="1048576"> | |
| 483 | <rom name="bs nintendo hp - 5-31 gou (japan).bs" size="1048576" crc="c9b05ce4" sha1="71642ccce9f133e4566c36b64e098b1db737ad0c" offset="0x000000" /> | |
| 484 | </dataarea> | |
| 485 | </part> | |
| 486 | </software> | |
| 487 | ||
| 488 | <software name="bsparlor" supported="no"> | |
| 489 | <description>BS Parlor! Parlor! - Dai-2-shuu (Jpn)</description> | |
| 490 | <year>199?</year> | |
| 491 | <publisher><unknown></publisher> | |
| 492 | <part name="cart" interface="bspack"> | |
| 493 | ||
| 494 | <feature name="slot" value="bsmempak" /> | |
| 495 | <dataarea name="rom" size="1048576"> | |
| 496 | <rom name="bs parlor! parlor! - dai-2-shuu (japan).bs" size="1048576" crc="3ed9a005" sha1="235499d1922646dde43c6aa93f595fc2fa09ed64" offset="0x000000" /> | |
| 497 | </dataarea> | |
| 498 | </part> | |
| 499 | </software> | |
| 500 | ||
| 501 | <software name="bsoniga1" supported="no"> | |
| 502 | <description>BS Shin Onigashima - Dai-1-wa - Kataribe no Koya (Jpn)</description> | |
| 503 | <year>199?</year> | |
| 504 | <publisher><unknown></publisher> | |
| 505 | <part name="cart" interface="bspack"> | |
| 506 | ||
| 507 | <feature name="slot" value="bsmempak" /> | |
| 508 | <dataarea name="rom" size="1048576"> | |
| 509 | <rom name="bs shin onigashima - dai-1-wa - kataribe no koya (japan).bs" size="1048576" crc="514eb6c8" sha1="a8c132c0c8323b740603b3b61bcb4082ce473e2a" offset="0x000000" /> | |
| 510 | </dataarea> | |
| 511 | </part> | |
| 512 | </software> | |
| 513 | ||
| 514 | <software name="bsoniga2" supported="no"> | |
| 515 | <description>BS Shin Onigashima - Dai-2-wa - Kataribe no Koya (Jpn)</description> | |
| 516 | <year>199?</year> | |
| 517 | <publisher><unknown></publisher> | |
| 518 | <part name="cart" interface="bspack"> | |
| 519 | ||
| 520 | <feature name="slot" value="bsmempak" /> | |
| 521 | <dataarea name="rom" size="1048576"> | |
| 522 | <rom name="bs shin onigashima - dai-2-wa - kataribe no koya (japan).bs" size="1048576" crc="67a5b7c4" sha1="05403e4829f8481b212864079286cac91d2b7761" offset="0x000000" /> | |
| 523 | </dataarea> | |
| 524 | </part> | |
| 525 | </software> | |
| 526 | ||
| 527 | <software name="bsoniga3" supported="no"> | |
| 528 | <description>BS Shin Onigashima - Dai-3-wa - Kataribe no Koya (Jpn)</description> | |
| 529 | <year>199?</year> | |
| 530 | <publisher><unknown></publisher> | |
| 531 | <part name="cart" interface="bspack"> | |
| 532 | ||
| 533 | <feature name="slot" value="bsmempak" /> | |
| 534 | <dataarea name="rom" size="1048576"> | |
| 535 | <rom name="bs shin onigashima - dai-3-wa - kataribe no koya (japan).bs" size="1048576" crc="abe60813" sha1="1ef184e69a7cb23d2062286cf71af186311393dd" offset="0x000000" /> | |
| 536 | </dataarea> | |
| 537 | </part> | |
| 538 | </software> | |
| 539 | ||
| 540 | <software name="bsoniga4" supported="no"> | |
| 541 | <description>BS Shin Onigashima - Dai-4-wa - Kataribe no Koya (Jpn)</description> | |
| 542 | <year>199?</year> | |
| 543 | <publisher><unknown></publisher> | |
| 544 | <part name="cart" interface="bspack"> | |
| 545 | ||
| 546 | <feature name="slot" value="bsmempak" /> | |
| 547 | <dataarea name="rom" size="1048576"> | |
| 548 | <rom name="bs shin onigashima - dai-4-wa - kataribe no koya (japan).bs" size="1048576" crc="f9ab3b92" sha1="93dd095f3e32e5749663ce5418cc6e194d46b281" offset="0x000000" /> | |
| 549 | </dataarea> | |
| 550 | </part> | |
| 551 | </software> | |
| 552 | ||
| 553 | <software name="bsstgiga" supported="no"> | |
| 554 | <description>BS St. Giga PG - 10 Gatsugou (Jpn)</description> | |
| 555 | <year>199?</year> | |
| 556 | <publisher><unknown></publisher> | |
| 557 | <part name="cart" interface="bspack"> | |
| 558 | ||
| 559 | <feature name="slot" value="bsmempak" /> | |
| 560 | <dataarea name="rom" size="1048576"> | |
| 561 | <rom name="bs st. giga pg - 10 gatsugou (japan).bs" size="1048576" crc="8dabd48a" sha1="572018f28976681013aad5428ebab00c4c9ec794" offset="0x000000" /> | |
| 562 | </dataarea> | |
| 563 | </part> | |
| 564 | </software> | |
| 565 | ||
| 566 | <software name="bssmcol" supported="no"> | |
| 567 | <description>BS Super Mario Collection - Dai-3-shuu (Jpn)</description> | |
| 568 | <year>199?</year> | |
| 569 | <publisher><unknown></publisher> | |
| 570 | <part name="cart" interface="bspack"> | |
| 571 | ||
| 572 | <feature name="slot" value="bsmempak" /> | |
| 573 | <dataarea name="rom" size="1048576"> | |
| 574 | <rom name="bs super mario collection - dai-3-shuu (japan).bs" size="1048576" crc="a40a3089" sha1="06c58882acf1e62e54cc0c51515448b40f057e6e" offset="0x000000" /> | |
| 575 | </dataarea> | |
| 576 | </part> | |
| 577 | </software> | |
| 578 | ||
| 579 | <software name="bssmusa1" supported="no"> | |
| 580 | <description>BS Super Mario USA - Power Challenge - Dai-1-kai (Jpn)</description> | |
| 581 | <year>199?</year> | |
| 582 | <publisher><unknown></publisher> | |
| 583 | <part name="cart" interface="bspack"> | |
| 584 | ||
| 585 | <feature name="slot" value="bsmempak" /> | |
| 586 | <dataarea name="rom" size="1048576"> | |
| 587 | <rom name="bs super mario usa - power challenge - dai-1-kai (japan).bs" size="1048576" crc="8f85a235" sha1="07d5d7f097b3999bb12cdcac40909a064bb69548" offset="0x000000" /> | |
| 588 | </dataarea> | |
| 589 | </part> | |
| 590 | </software> | |
| 591 | ||
| 592 | <software name="bssmusa2" supported="no"> | |
| 593 | <description>BS Super Mario USA - Power Challenge - Dai-2-kai (Jpn)</description> | |
| 594 | <year>199?</year> | |
| 595 | <publisher><unknown></publisher> | |
| 596 | <part name="cart" interface="bspack"> | |
| 597 | ||
| 598 | <feature name="slot" value="bsmempak" /> | |
| 599 | <dataarea name="rom" size="1048576"> | |
| 600 | <rom name="bs super mario usa - power challenge - dai-2-kai (japan).bs" size="1048576" crc="b967025a" sha1="ab1e8db79e207f136e58989a5c0302da25fb19e5" offset="0x000000" /> | |
| 601 | </dataarea> | |
| 602 | </part> | |
| 603 | </software> | |
| 604 | ||
| 605 | <software name="bssmusa3" supported="no"> | |
| 606 | <description>BS Super Mario USA - Power Challenge - Dai-3-kai (Jpn)</description> | |
| 607 | <year>199?</year> | |
| 608 | <publisher><unknown></publisher> | |
| 609 | <part name="cart" interface="bspack"> | |
| 610 | ||
| 611 | <feature name="slot" value="bsmempak" /> | |
| 612 | <dataarea name="rom" size="1048576"> | |
| 613 | <rom name="bs super mario usa - power challenge - dai-3-kai (japan).bs" size="1048576" crc="8b22a708" sha1="1c92e890f95b222c22d4bb8beb08124087c48641" offset="0x000000" /> | |
| 614 | </dataarea> | |
| 615 | </part> | |
| 616 | </software> | |
| 617 | ||
| 618 | <software name="bssmusa4" supported="no"> | |
| 619 | <description>BS Super Mario USA - Power Challenge - Dai-4-kai (Jpn)</description> | |
| 620 | <year>199?</year> | |
| 621 | <publisher><unknown></publisher> | |
| 622 | <part name="cart" interface="bspack"> | |
| 623 | ||
| 624 | <feature name="slot" value="bsmempak" /> | |
| 625 | <dataarea name="rom" size="1048576"> | |
| 626 | <rom name="bs super mario usa - power challenge - dai-4-kai (japan).bs" size="1048576" crc="ff1ded46" sha1="5f2f794c410dc7bf6d7600c9e79545a6739662d1" offset="0x000000" /> | |
| 627 | </dataarea> | |
| 628 | </part> | |
| 629 | </software> | |
| 630 | ||
| 631 | <software name="bstantch" supported="no"> | |
| 632 | <description>BS Tantei Club - Yuki ni Kieta Kako - Chuuhen (Jpn, 0620)</description> | |
| 633 | <year>199?</year> | |
| 634 | <publisher><unknown></publisher> | |
| 635 | <part name="cart" interface="bspack"> | |
| 636 | ||
| 637 | <feature name="slot" value="bsmempak" /> | |
| 638 | <dataarea name="rom" size="1048576"> | |
| 639 | <rom name="bs tantei club - yuki ni kieta kako - chuuhen (japan) (6-20).bs" size="1048576" crc="67568b74" sha1="e88c6f7c140c57d6388c18a4c2e9d241779800d1" offset="0x000000" /> | |
| 640 | </dataarea> | |
| 641 | </part> | |
| 642 | </software> | |
| 643 | ||
| 644 | <software name="bstantcha" cloneof="bstantch" supported="no"> | |
| 645 | <description>BS Tantei Club - Yuki ni Kieta Kako - Chuuhen (Jpn, 0614)</description> | |
| 646 | <year>199?</year> | |
| 647 | <publisher><unknown></publisher> | |
| 648 | <part name="cart" interface="bspack"> | |
| 649 | ||
| 650 | <feature name="slot" value="bsmempak" /> | |
| 651 | <dataarea name="rom" size="1048576"> | |
| 652 | <rom name="bs tantei club - yuki ni kieta kako - chuuhen (japan).bs" size="1048576" crc="7947abd1" sha1="db8cfcfe668ca1afb88fa8183227e154f2c421f0" offset="0x000000" /> | |
| 653 | </dataarea> | |
| 654 | </part> | |
| 655 | </software> | |
| 656 | ||
| 657 | <software name="bstantko" supported="no"> | |
| 658 | <description>BS Tantei Club - Yuki ni Kieta Kako - Kouhen (Jpn)</description> | |
| 659 | <year>199?</year> | |
| 660 | <publisher><unknown></publisher> | |
| 661 | <part name="cart" interface="bspack"> | |
| 662 | ||
| 663 | <feature name="slot" value="bsmempak" /> | |
| 664 | <dataarea name="rom" size="1048576"> | |
| 665 | <rom name="bs tantei club - yuki ni kieta kako - kouhen (japan).bs" size="1048576" crc="0cd818cf" sha1="f271b67a713b96e66cbad0461e752e27c22e6c61" offset="0x000000" /> | |
| 666 | </dataarea> | |
| 667 | </part> | |
| 668 | </software> | |
| 669 | ||
| 670 | <software name="bstantze" supported="no"> | |
| 671 | <description>BS Tantei Club - Yuki ni Kieta Kako - Zenpen (Jpn)</description> | |
| 672 | <year>199?</year> | |
| 673 | <publisher><unknown></publisher> | |
| 674 | <part name="cart" interface="bspack"> | |
| 675 | ||
| 676 | <feature name="slot" value="bsmempak" /> | |
| 677 | <dataarea name="rom" size="1048576"> | |
| 678 | <rom name="bs tantei club - yuki ni kieta kako - zenpen (japan).bs" size="1048576" crc="f26300c8" sha1="db0efaa48fa0b1ab1147791cca7a032e3ca113f5" offset="0x000000" /> | |
| 679 | </dataarea> | |
| 680 | </part> | |
| 681 | </software> | |
| 682 | ||
| 683 | <software name="bszelda" supported="no"> | |
| 684 | <description>BS Zelda no Densetsu - Dai-3-wa (Jpn)</description> | |
| 685 | <year>199?</year> | |
| 686 | <publisher><unknown></publisher> | |
| 687 | <part name="cart" interface="bspack"> | |
| 688 | ||
| 689 | <feature name="slot" value="bsmempak" /> | |
| 690 | <dataarea name="rom" size="1048576"> | |
| 691 | <rom name="bs zelda no densetsu - dai-3-wa (japan).bs" size="1048576" crc="ddc54398" sha1="4a2280a33785e89aecaa4141ac29f3dd1bdcf40c" offset="0x000000" /> | |
| 692 | </dataarea> | |
| 693 | </part> | |
| 694 | </software> | |
| 695 | ||
| 696 | <software name="bszeldk1" supported="no"> | |
| 697 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-1-wa (Jpn)</description> | |
| 698 | <year>199?</year> | |
| 699 | <publisher><unknown></publisher> | |
| 700 | <part name="cart" interface="bspack"> | |
| 701 | ||
| 702 | <feature name="slot" value="bsmempak" /> | |
| 703 | <dataarea name="rom" size="1048576"> | |
| 704 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-1-wa (japan).bs" size="1048576" crc="0d2b95a8" sha1="e784f04736f354a05a19a0e86efd8a1f40589aa4" offset="0x000000" /> | |
| 705 | </dataarea> | |
| 706 | </part> | |
| 707 | </software> | |
| 708 | ||
| 709 | <software name="bszeldk2" supported="no"> | |
| 710 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-2-wa (Jpn)</description> | |
| 711 | <year>199?</year> | |
| 712 | <publisher><unknown></publisher> | |
| 713 | <part name="cart" interface="bspack"> | |
| 714 | ||
| 715 | <feature name="slot" value="bsmempak" /> | |
| 716 | <dataarea name="rom" size="1048576"> | |
| 717 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-2-wa (japan).bs" size="1048576" crc="1b71a609" sha1="0877f63d8d096e7a35a5721ec1e4ce2cb86a7211" offset="0x000000" /> | |
| 718 | </dataarea> | |
| 719 | </part> | |
| 720 | </software> | |
| 721 | ||
| 722 | <software name="bszeldk3" supported="no"> | |
| 723 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-3-wa (Jpn)</description> | |
| 724 | <year>199?</year> | |
| 725 | <publisher><unknown></publisher> | |
| 726 | <part name="cart" interface="bspack"> | |
| 727 | ||
| 728 | <feature name="slot" value="bsmempak" /> | |
| 729 | <dataarea name="rom" size="1048576"> | |
| 730 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-3-wa (japan).bs" size="1048576" crc="c251d4fa" sha1="25efee5199c9da0805306edac3367d60253ea828" offset="0x000000" /> | |
| 731 | </dataarea> | |
| 732 | </part> | |
| 733 | </software> | |
| 734 | ||
| 735 | <software name="bszeldk4" supported="no"> | |
| 736 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-4-wa (Jpn)</description> | |
| 737 | <year>199?</year> | |
| 738 | <publisher><unknown></publisher> | |
| 739 | <part name="cart" interface="bspack"> | |
| 740 | ||
| 741 | <feature name="slot" value="bsmempak" /> | |
| 742 | <dataarea name="rom" size="1048576"> | |
| 743 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-4-wa (japan).bs" size="1048576" crc="8385bbf4" sha1="63c1110e32d4b3b2d6525919e10e50abcc7677a3" offset="0x000000" /> | |
| 744 | </dataarea> | |
| 745 | </part> | |
| 746 | </software> | |
| 747 | ||
| 748 | <software name="bscheap" supported="no"> | |
| 749 | <description>Cheap de Gorgeous Vol. 1 (Jpn)</description> | |
| 750 | <year>199?</year> | |
| 751 | <publisher><unknown></publisher> | |
| 752 | <part name="cart" interface="bspack"> | |
| 753 | ||
| 754 | <feature name="slot" value="bsmempak" /> | |
| 755 | <dataarea name="rom" size="1048576"> | |
| 756 | <rom name="cheap de gorgeous vol. 1 (japan).bs" size="1048576" crc="ee02126e" sha1="62e98832c90321ecd9ea7cb1c6dbb3c68d3e8ee0" offset="0x000000" /> | |
| 757 | </dataarea> | |
| 758 | </part> | |
| 759 | </software> | |
| 760 | ||
| 761 | <software name="bsctrigc" supported="no"> | |
| 762 | <description>Chrono Trigger - Character Zukan (Jpn)</description> | |
| 763 | <year>199?</year> | |
| 764 | <publisher><unknown></publisher> | |
| 765 | <part name="cart" interface="bspack"> | |
| 766 | ||
| 767 | <feature name="slot" value="bsmempak" /> | |
| 768 | <dataarea name="rom" size="1048576"> | |
| 769 | <rom name="chrono trigger - character zukan (japan).bs" size="1048576" crc="6d46f88b" sha1="602136761415a010b691299a8ab6f61c5efbf197" offset="0x000000" /> | |
| 770 | </dataarea> | |
| 771 | </part> | |
| 772 | </software> | |
| 773 | ||
| 774 | <software name="bsctrigj" supported="no"> | |
| 775 | <description>Chrono Trigger - Jet Bike Special (Jpn)</description> | |
| 776 | <year>199?</year> | |
| 777 | <publisher><unknown></publisher> | |
| 778 | <part name="cart" interface="bspack"> | |
| 779 | ||
| 780 | <feature name="slot" value="bsmempak" /> | |
| 781 | <dataarea name="rom" size="262144"> | |
| 782 | <rom name="chrono trigger - jet bike special (japan).bs" size="262144" crc="9dfb3014" sha1="1f916454d4a9cedbd66babe4bb9eebc446410335" offset="0x000000" /> | |
| 783 | </dataarea> | |
| 784 | </part> | |
| 785 | </software> | |
| 786 | ||
| 787 | <software name="bsctrigm" supported="no"> | |
| 788 | <description>Chrono Trigger - Music Library (Jpn)</description> | |
| 789 | <year>199?</year> | |
| 790 | <publisher><unknown></publisher> | |
| 791 | <part name="cart" interface="bspack"> | |
| 792 | ||
| 793 | <feature name="slot" value="bsmempak" /> | |
| 794 | <dataarea name="rom" size="524288"> | |
| 795 | <rom name="chrono trigger - music library (japan).bs" size="524288" crc="027b726b" sha1="a21e00ee5e13722e57abeac58df57f12aacfd63b" offset="0x000000" /> | |
| 796 | </dataarea> | |
| 797 | </part> | |
| 798 | </software> | |
| 799 | ||
| 800 | <software name="bscolum1" supported="no"> | |
| 801 | <description>Columbus no Tamagoyaki - Dai-1-kai (Jpn)</description> | |
| 802 | <year>199?</year> | |
| 803 | <publisher><unknown></publisher> | |
| 804 | <part name="cart" interface="bspack"> | |
| 805 | ||
| 806 | <feature name="slot" value="bsmempak" /> | |
| 807 | <dataarea name="rom" size="1048576"> | |
| 808 | <rom name="columbus no tamagoyaki - dai-1-kai (japan).bs" size="1048576" crc="2289c65f" sha1="a2c91755d52d5c5b230e665920e01b584934a27b" offset="0x000000" /> | |
| 809 | </dataarea> | |
| 810 | </part> | |
| 811 | </software> | |
| 812 | ||
| 813 | <software name="bscolum2" supported="no"> | |
| 814 | <description>Columbus no Tamagoyaki - Dai-2-kai (Jpn)</description> | |
| 815 | <year>199?</year> | |
| 816 | <publisher><unknown></publisher> | |
| 817 | <part name="cart" interface="bspack"> | |
| 818 | ||
| 819 | <feature name="slot" value="bsmempak" /> | |
| 820 | <dataarea name="rom" size="1048576"> | |
| 821 | <rom name="columbus no tamagoyaki - dai-2-kai (japan).bs" size="1048576" crc="ec69ee76" sha1="30569601d3f15a586547b18702b5cf54981d0e7d" offset="0x000000" /> | |
| 822 | </dataarea> | |
| 823 | </part> | |
| 824 | </software> | |
| 825 | ||
| 826 | <software name="bscolum3" supported="no"> | |
| 827 | <description>Columbus no Tamagoyaki - Dai-3-kai (Jpn)</description> | |
| 828 | <year>199?</year> | |
| 829 | <publisher><unknown></publisher> | |
| 830 | <part name="cart" interface="bspack"> | |
| 831 | ||
| 832 | <feature name="slot" value="bsmempak" /> | |
| 833 | <dataarea name="rom" size="1048576"> | |
| 834 | <rom name="columbus no tamagoyaki - dai-3-kai (japan).bs" size="1048576" crc="00d3a32b" sha1="43a29a10a21b26e495bab35000bfc695abcca83e" offset="0x000000" /> | |
| 835 | </dataarea> | |
| 836 | </part> | |
| 837 | </software> | |
| 838 | ||
| 839 | <software name="bscuonpa" supported="no"> | |
| 840 | <description>Cu-On-Pa SFC (Jpn, BS, xxxx0531)</description> | |
| 841 | <year>199?</year> | |
| 842 | <publisher><unknown></publisher> | |
| 843 | <part name="cart" interface="bspack"> | |
| 844 | ||
| 845 | <feature name="slot" value="bsmempak" /> | |
| 846 | <dataarea name="rom" size="1048576"> | |
| 847 | <rom name="cu-on-pa sfc (japan).bs" size="1048576" crc="5f31e1d8" sha1="b09b45a7c2cb4ab50b5c364bb989e90caa036629" offset="0x000000" /> | |
| 848 | </dataarea> | |
| 849 | </part> | |
| 850 | </software> | |
| 851 | ||
| 852 | <software name="bsdaibak" supported="no"> | |
| 853 | <description>Daibakushou Jinsei Gekijou (Jpn, BS)</description> | |
| 854 | <year>199?</year> | |
| 855 | <publisher><unknown></publisher> | |
| 856 | <part name="cart" interface="bspack"> | |
| 857 | ||
| 858 | <feature name="slot" value="bsmempak" /> | |
| 859 | <dataarea name="rom" size="1048576"> | |
| 860 | <rom name="daibakushou jinsei gekijou (japan).bs" size="1048576" crc="93c4df65" sha1="07a873bb6753694e9914a270b760f810efc04525" offset="0x000000" /> | |
| 861 | </dataarea> | |
| 862 | </part> | |
| 863 | </software> | |
| 864 | ||
| 865 | <software name="bsdandng" supported="no"> | |
| 866 | <description>Dandan Belt Conveyor - Gyuunyuu no Maki (Jpn)</description> | |
| 867 | <year>199?</year> | |
| 868 | <publisher><unknown></publisher> | |
| 869 | <part name="cart" interface="bspack"> | |
| 870 | ||
| 871 | <feature name="slot" value="bsmempak" /> | |
| 872 | <dataarea name="rom" size="1048576"> | |
| 873 | <rom name="dandan belt conveyor - gyuunyuu no maki (japan).bs" size="1048576" crc="380c8c79" sha1="343e5607d62d7962a04c090cd003495fc344deee" offset="0x000000" /> | |
| 874 | </dataarea> | |
| 875 | </part> | |
| 876 | </software> | |
| 877 | ||
| 878 | <software name="bsdigim1" supported="no"> | |
| 879 | <description>Digital Magazine Busters BS - 4-12 Gou (Jpn)</description> | |
| 880 | <year>199?</year> | |
| 881 | <publisher><unknown></publisher> | |
| 882 | <part name="cart" interface="bspack"> | |
| 883 | ||
| 884 | <feature name="slot" value="bsmempak" /> | |
| 885 | <dataarea name="rom" size="1048576"> | |
| 886 | <rom name="digital magazine busters bs - 4-12 gou (japan).bs" size="1048576" crc="1976866a" sha1="98bd19065df8b65268e61457acb306f96b531a7e" offset="0x000000" /> | |
| 887 | </dataarea> | |
| 888 | </part> | |
| 889 | </software> | |
| 890 | ||
| 891 | <software name="bsdigim2" supported="no"> | |
| 892 | <description>Digital Magazine Busters BS - 5-10 Gou (Jpn)</description> | |
| 893 | <year>199?</year> | |
| 894 | <publisher><unknown></publisher> | |
| 895 | <part name="cart" interface="bspack"> | |
| 896 | ||
| 897 | <feature name="slot" value="bsmempak" /> | |
| 898 | <dataarea name="rom" size="1048576"> | |
| 899 | <rom name="digital magazine busters bs - 5-10 gou (japan).bs" size="1048576" crc="3f3f4608" sha1="61f225571e547ca9ed6c523babe1476d5f0e3e68" offset="0x000000" /> | |
| 900 | </dataarea> | |
| 901 | </part> | |
| 902 | </software> | |
| 903 | ||
| 904 | <software name="bsdigim3" supported="no"> | |
| 905 | <description>Digital Magazine Busters BS - 5-24 Gou (Jpn)</description> | |
| 906 | <year>199?</year> | |
| 907 | <publisher><unknown></publisher> | |
| 908 | <part name="cart" interface="bspack"> | |
| 909 | ||
| 910 | <feature name="slot" value="bsmempak" /> | |
| 911 | <dataarea name="rom" size="1048576"> | |
| 912 | <rom name="digital magazine busters bs - 5-24 gou (japan).bs" size="1048576" crc="8e8f27e9" sha1="7161e77985a6c21edcf7a2ea319ef83054e9cf74" offset="0x000000" /> | |
| 913 | </dataarea> | |
| 914 | </part> | |
| 915 | </software> | |
| 916 | ||
| 917 | <software name="bsdigim4" supported="no"> | |
| 918 | <description>Digital Magazine Busters BS - 8-23 Gou (Jpn)</description> | |
| 919 | <year>199?</year> | |
| 920 | <publisher><unknown></publisher> | |
| 921 | <part name="cart" interface="bspack"> | |
| 922 | ||
| 923 | <feature name="slot" value="bsmempak" /> | |
| 924 | <dataarea name="rom" size="1048576"> | |
| 925 | <rom name="digital magazine busters bs - 8-23 gou (japan).bs" size="1048576" crc="6f7f6c5d" sha1="9c0b854ff8f63a548d5e694461444a1eae77a418" offset="0x000000" /> | |
| 926 | </dataarea> | |
| 927 | </part> | |
| 928 | </software> | |
| 929 | ||
| 930 | <software name="bsdorm2a" supported="no"> | |
| 931 | <description>Do-Re-Mi de Faa 2~! - 5-10 Gou (Jpn)</description> | |
| 932 | <year>199?</year> | |
| 933 | <publisher><unknown></publisher> | |
| 934 | <part name="cart" interface="bspack"> | |
| 935 | ||
| 936 | <feature name="slot" value="bsmempak" /> | |
| 937 | <dataarea name="rom" size="1048576"> | |
| 938 | <rom name="do-re-mi de faa 2~! - 5-10 gou (japan).bs" size="1048576" crc="25401316" sha1="1c25723597a55ab94cf7289cf36b6b8941a3d5ab" offset="0x000000" /> | |
| 939 | </dataarea> | |
| 940 | </part> | |
| 941 | </software> | |
| 942 | ||
| 943 | <software name="bsdorm2b" supported="no"> | |
| 944 | <description>Do-Re-Mi de Faa 2~! - 5-25 Gou (Jpn)</description> | |
| 945 | <year>199?</year> | |
| 946 | <publisher><unknown></publisher> | |
| 947 | <part name="cart" interface="bspack"> | |
| 948 | ||
| 949 | <feature name="slot" value="bsmempak" /> | |
| 950 | <dataarea name="rom" size="1048576"> | |
| 951 | <rom name="do-re-mi de faa 2~! - 5-25 gou (japan).bs" size="1048576" crc="f8b048f5" sha1="d9af942b657a0ab2fd9979a708e10f4c3e75fcab" offset="0x000000" /> | |
| 952 | </dataarea> | |
| 953 | </part> | |
| 954 | </software> | |
| 955 | ||
| 956 | <software name="bsdokapg" supported="no"> | |
| 957 | <description>Dokapon Gaiden - Honoo no Audition (Jpn, BS)</description> | |
| 958 | <year>199?</year> | |
| 959 | <publisher><unknown></publisher> | |
| 960 | <part name="cart" interface="bspack"> | |
| 961 | ||
| 962 | <feature name="slot" value="bsmempak" /> | |
| 963 | <dataarea name="rom" size="1048576"> | |
| 964 | <rom name="dokapon gaiden - honoo no audition (japan).bs" size="1048576" crc="09457f9e" sha1="cda1ae3c721ff0fd94f9b321becfbe90cb4c0910" offset="0x000000" /> | |
| 965 | </dataarea> | |
| 966 | </part> | |
| 967 | </software> | |
| 968 | ||
| 969 | <software name="bsdrmrio" supported="no"> | |
| 970 | <description>Dr. Mario (Jpn, BS)</description> | |
| 971 | <year>199?</year> | |
| 972 | <publisher><unknown></publisher> | |
| 973 | <part name="cart" interface="bspack"> | |
| 974 | ||
| 975 | <feature name="slot" value="bsmempak" /> | |
| 976 | <dataarea name="rom" size="1048576"> | |
| 977 | <rom name="dr. mario (japan).bs" size="1048576" crc="6ea452a4" sha1="9cf6c9b5c6d4e7c33bf040b058c9baf760bb44e9" offset="0x000000" /> | |
| 978 | </dataarea> | |
| 979 | </part> | |
| 980 | </software> | |
| 981 | ||
| 982 | <software name="bsdslayr" supported="no"> | |
| 983 | <description>Dragon Slayer - Eiyuu Densetsu (Jpn, BS)</description> | |
| 984 | <year>199?</year> | |
| 985 | <publisher><unknown></publisher> | |
| 986 | <part name="cart" interface="bspack"> | |
| 987 | ||
| 988 | <feature name="slot" value="bsmempak" /> | |
| 989 | <dataarea name="rom" size="1048576"> | |
| 990 | <rom name="dragon slayer - eiyuu densetsu (japan).bs" size="1048576" crc="a6fc28cb" sha1="b9fc80d0e9fc92594669dbbb0e1970b40c36b55f" offset="0x000000" /> | |
| 991 | </dataarea> | |
| 992 | </part> | |
| 993 | </software> | |
| 994 | ||
| 995 | <software name="dynamitr" supported="no"> | |
| 996 | <description>Dynami Tracer (Jpn)</description> | |
| 997 | <year>199?</year> | |
| 998 | <publisher><unknown></publisher> | |
| 999 | <part name="cart" interface="bspack"> | |
| 1000 | ||
| 1001 | <feature name="slot" value="bsmempak" /> | |
| 1002 | <dataarea name="rom" size="1048576"> | |
| 1003 | <rom name="dynami tracer (japan).bs" size="1048576" crc="41dae33c" sha1="2ff4bc75b88480a35f42db0a2468eb3f6f8e53e5" offset="0x000000" /> | |
| 1004 | </dataarea> | |
| 1005 | </part> | |
| 1006 | </software> | |
| 1007 | ||
| 1008 | <software name="bsexbik1" supported="no"> | |
| 1009 | <description>Excitebike - Bunbun Mario Battle - Stadium 1 (Jpn)</description> | |
| 1010 | <year>199?</year> | |
| 1011 | <publisher><unknown></publisher> | |
| 1012 | <part name="cart" interface="bspack"> | |
| 1013 | ||
| 1014 | <feature name="slot" value="bsmempak" /> | |
| 1015 | <dataarea name="rom" size="1048576"> | |
| 1016 | <rom name="excitebike - bunbun mario battle - stadium 1 (japan).bs" size="1048576" crc="cf37df6c" sha1="8cb5406e7c136ea8779f793f052c60cfcdfa024a" offset="0x000000" /> | |
| 1017 | </dataarea> | |
| 1018 | </part> | |
| 1019 | </software> | |
| 1020 | ||
| 1021 | <software name="bsexbik2" supported="no"> | |
| 1022 | <description>Excitebike - Bunbun Mario Battle - Stadium 2 (Jpn)</description> | |
| 1023 | <year>199?</year> | |
| 1024 | <publisher><unknown></publisher> | |
| 1025 | <part name="cart" interface="bspack"> | |
| 1026 | ||
| 1027 | <feature name="slot" value="bsmempak" /> | |
| 1028 | <dataarea name="rom" size="1048576"> | |
| 1029 | <rom name="excitebike - bunbun mario battle - stadium 2 (japan).bs" size="1048576" crc="3576a0a9" sha1="127a8e792f377c368f73ae002bc81f9aa464893b" offset="0x000000" /> | |
| 1030 | </dataarea> | |
| 1031 | </part> | |
| 1032 | </software> | |
| 1033 | ||
| 1034 | <software name="bsexbik3" supported="no"> | |
| 1035 | <description>Excitebike - Bunbun Mario Battle - Stadium 3 (Jpn, 19980111 - 19980117)</description> | |
| 1036 | <year>199?</year> | |
| 1037 | <publisher><unknown></publisher> | |
| 1038 | <part name="cart" interface="bspack"> | |
| 1039 | ||
| 1040 | <feature name="slot" value="bsmempak" /> | |
| 1041 | <dataarea name="rom" size="1048576"> | |
| 1042 | <rom name="excitebike - bunbun mario battle - stadium 3 (japan) (1998-01-11 - 1998-01-17).bs" size="1048576" crc="763c2ee4" sha1="7c0a2963d7767c254a132814eb9dcb00f148350e" offset="0x000000" /> | |
| 1043 | </dataarea> | |
| 1044 | </part> | |
| 1045 | </software> | |
| 1046 | ||
| 1047 | <software name="bsexbik3a" cloneof="bsexbik3" supported="no"> | |
| 1048 | <description>Excitebike - Bunbun Mario Battle - Stadium 3 (Jpn, xxxx0208)</description> | |
| 1049 | <year>199?</year> | |
| 1050 | <publisher><unknown></publisher> | |
| 1051 | <part name="cart" interface="bspack"> | |
| 1052 | ||
| 1053 | <feature name="slot" value="bsmempak" /> | |
| 1054 | <dataarea name="rom" size="1048576"> | |
| 1055 | <rom name="excitebike - bunbun mario battle - stadium 3 (japan) (xxxx-02-08).bs" size="1048576" crc="e5206656" sha1="23663ef5bc1b7098ab230856fa96ea18ff4ec4a7" offset="0x000000" /> | |
| 1056 | </dataarea> | |
| 1057 | </part> | |
| 1058 | </software> | |
| 1059 | ||
| 1060 | <software name="bsexbik4" supported="no"> | |
| 1061 | <description>Excitebike - Bunbun Mario Battle - Stadium 4 (Jpn)</description> | |
| 1062 | <year>199?</year> | |
| 1063 | <publisher><unknown></publisher> | |
| 1064 | <part name="cart" interface="bspack"> | |
| 1065 | ||
| 1066 | <feature name="slot" value="bsmempak" /> | |
| 1067 | <dataarea name="rom" size="1048576"> | |
| 1068 | <rom name="excitebike - bunbun mario battle - stadium 4 (japan).bs" size="1048576" crc="c9a77643" sha1="27a22ed0b6219c29bcf4a5475e2156607ebf4f1d" offset="0x000000" /> | |
| 1069 | </dataarea> | |
| 1070 | </part> | |
| 1071 | </software> | |
| 1072 | ||
| 1073 | <software name="bsfzero" supported="no"> | |
| 1074 | <description>F-Zero (Jpn, BS)</description> | |
| 1075 | <year>199?</year> | |
| 1076 | <publisher><unknown></publisher> | |
| 1077 | <part name="cart" interface="bspack"> | |
| 1078 | ||
| 1079 | <feature name="slot" value="bsmempak" /> | |
| 1080 | <dataarea name="rom" size="524288"> | |
| 1081 | <rom name="f-zero (japan).bs" size="524288" crc="6ff86710" sha1="b143f71aef36cb4a5634aa4a8cca6e1938e5355d" offset="0x000000" /> | |
| 1082 | </dataarea> | |
| 1083 | </part> | |
| 1084 | </software> | |
| 1085 | ||
| 1086 | <software name="fenek" supported="no"> | |
| 1087 | <description>Fenek - 6 Gatsugou (Jpn)</description> | |
| 1088 | <year>199?</year> | |
| 1089 | <publisher><unknown></publisher> | |
| 1090 | <part name="cart" interface="bspack"> | |
| 1091 | ||
| 1092 | <feature name="slot" value="bsmempak" /> | |
| 1093 | <dataarea name="rom" size="524288"> | |
| 1094 | <rom name="fenek - 6 gatsugou (japan).bs" size="524288" crc="5c26c3b2" sha1="f7e80add2fe9e6ccfda30cca64d6ed9ba14384ad" offset="0x000000" /> | |
| 1095 | </dataarea> | |
| 1096 | </part> | |
| 1097 | </software> | |
| 1098 | ||
| 1099 | <software name="bsfiremn" supported="no"> | |
| 1100 | <description>The Firemen (Jpn, BS)</description> | |
| 1101 | <year>199?</year> | |
| 1102 | <publisher><unknown></publisher> | |
| 1103 | <part name="cart" interface="bspack"> | |
| 1104 | ||
| 1105 | <feature name="slot" value="bsmempak" /> | |
| 1106 | <dataarea name="rom" size="1048576"> | |
| 1107 | <rom name="firemen, the (japan).bs" size="1048576" crc="927ba7c2" sha1="90f419d52667201097edc0928f0853f55ecf83cd" offset="0x000000" /> | |
| 1108 | </dataarea> | |
| 1109 | </part> | |
| 1110 | </software> | |
| 1111 | ||
| 1112 | <software name="bsfreud1" supported="no"> | |
| 1113 | <description>Freud no Chousenjou - Dai-1-gou (Jpn)</description> | |
| 1114 | <year>199?</year> | |
| 1115 | <publisher><unknown></publisher> | |
| 1116 | <part name="cart" interface="bspack"> | |
| 1117 | ||
| 1118 | <feature name="slot" value="bsmempak" /> | |
| 1119 | <dataarea name="rom" size="1048576"> | |
| 1120 | <rom name="freud no chousenjou - dai-1-gou (japan).bs" size="1048576" crc="8d78d0d7" sha1="08cdc6e6915baea5f8e4f5c393798e5364d8c5df" offset="0x000000" /> | |
| 1121 | </dataarea> | |
| 1122 | </part> | |
| 1123 | </software> | |
| 1124 | ||
| 1125 | <software name="bsfreud2" supported="no"> | |
| 1126 | <description>Freud no Chousenjou - Dai-2-gou (Jpn)</description> | |
| 1127 | <year>199?</year> | |
| 1128 | <publisher><unknown></publisher> | |
| 1129 | <part name="cart" interface="bspack"> | |
| 1130 | ||
| 1131 | <feature name="slot" value="bsmempak" /> | |
| 1132 | <dataarea name="rom" size="1048576"> | |
| 1133 | <rom name="freud no chousenjou - dai-2-gou (japan).bs" size="1048576" crc="c99282d6" sha1="d7da2c9c9520a5368d6d4ea2d99e645b7a0c391a" offset="0x000000" /> | |
| 1134 | </dataarea> | |
| 1135 | </part> | |
| 1136 | </software> | |
| 1137 | ||
| 1138 | <software name="bsfreud3" supported="no"> | |
| 1139 | <description>Freud no Chousenjou - Dai-3-gou (Jpn)</description> | |
| 1140 | <year>199?</year> | |
| 1141 | <publisher><unknown></publisher> | |
| 1142 | <part name="cart" interface="bspack"> | |
| 1143 | ||
| 1144 | <feature name="slot" value="bsmempak" /> | |
| 1145 | <dataarea name="rom" size="1048576"> | |
| 1146 | <rom name="freud no chousenjou - dai-3-gou (japan).bs" size="1048576" crc="f938ebc3" sha1="b867361b9e4655adfb7ad8853700c107de766924" offset="0x000000" /> | |
| 1147 | </dataarea> | |
| 1148 | </part> | |
| 1149 | </software> | |
| 1150 | ||
| 1151 | <software name="bsfreud4" supported="no"> | |
| 1152 | <description>Freud no Chousenjou - Dai-4-gou (Jpn)</description> | |
| 1153 | <year>199?</year> | |
| 1154 | <publisher><unknown></publisher> | |
| 1155 | <part name="cart" interface="bspack"> | |
| 1156 | ||
| 1157 | <feature name="slot" value="bsmempak" /> | |
| 1158 | <dataarea name="rom" size="1048576"> | |
| 1159 | <rom name="freud no chousenjou - dai-4-gou (japan).bs" size="1048576" crc="12e3a8ee" sha1="79d600d9548e376cc29fbfb5f1216d7c68e0c013" offset="0x000000" /> | |
| 1160 | </dataarea> | |
| 1161 | </part> | |
| 1162 | </software> | |
| 1163 | ||
| 1164 | <software name="bsfreud5" supported="no"> | |
| 1165 | <description>Freud no Chousenjou - Dai-5-gou (Jpn)</description> | |
| 1166 | <year>199?</year> | |
| 1167 | <publisher><unknown></publisher> | |
| 1168 | <part name="cart" interface="bspack"> | |
| 1169 | ||
| 1170 | <feature name="slot" value="bsmempak" /> | |
| 1171 | <dataarea name="rom" size="1048576"> | |
| 1172 | <rom name="freud no chousenjou - dai-5-gou (japan).bs" size="1048576" crc="4d0af6f3" sha1="6f6daf1946ec21140398b18cb1b5b320fcb558be" offset="0x000000" /> | |
| 1173 | </dataarea> | |
| 1174 | </part> | |
| 1175 | </software> | |
| 1176 | ||
| 1177 | <software name="bsfreud6" supported="no"> | |
| 1178 | <description>Freud no Chousenjou - Dai-6-gou (Jpn)</description> | |
| 1179 | <year>199?</year> | |
| 1180 | <publisher><unknown></publisher> | |
| 1181 | <part name="cart" interface="bspack"> | |
| 1182 | ||
| 1183 | <feature name="slot" value="bsmempak" /> | |
| 1184 | <dataarea name="rom" size="1048576"> | |
| 1185 | <rom name="freud no chousenjou - dai-6-gou (japan).bs" size="1048576" crc="167f3ab1" sha1="a4f6ccffd38c02354d746503150438a5b132379e" offset="0x000000" /> | |
| 1186 | </dataarea> | |
| 1187 | </part> | |
| 1188 | </software> | |
| 1189 | ||
| 1190 | <software name="bstora1" supported="no"> | |
| 1191 | <description>Game Tora no Taikoban - 5-17 Gou (Jpn)</description> | |
| 1192 | <year>199?</year> | |
| 1193 | <publisher><unknown></publisher> | |
| 1194 | <part name="cart" interface="bspack"> | |
| 1195 | ||
| 1196 | <feature name="slot" value="bsmempak" /> | |
| 1197 | <dataarea name="rom" size="524288"> | |
| 1198 | <rom name="game tora no taikoban - 5-17 gou (japan).bs" size="524288" crc="4cf3e14f" sha1="d9a3b68473e75d99ec84b95f421be0fefab1bfd7" offset="0x000000" /> | |
| 1199 | </dataarea> | |
| 1200 | </part> | |
| 1201 | </software> | |
| 1202 | ||
| 1203 | <software name="bstora2" supported="no"> | |
| 1204 | <description>Game Tora no Taikoban - 5-31 Gou (Jpn)</description> | |
| 1205 | <year>199?</year> | |
| 1206 | <publisher><unknown></publisher> | |
| 1207 | <part name="cart" interface="bspack"> | |
| 1208 | ||
| 1209 | <feature name="slot" value="bsmempak" /> | |
| 1210 | <dataarea name="rom" size="524288"> | |
| 1211 | <rom name="game tora no taikoban - 5-31 gou (japan).bs" size="524288" crc="393e9715" sha1="5d374621784c4a3e57008febf59564fd352630da" offset="0x000000" /> | |
| 1212 | </dataarea> | |
| 1213 | </part> | |
| 1214 | </software> | |
| 1215 | ||
| 1216 | <software name="bsgekkct" supported="no"> | |
| 1217 | <description>Gekkan Coin Toss - Deck 1 (Jpn)</description> | |
| 1218 | <year>199?</year> | |
| 1219 | <publisher><unknown></publisher> | |
| 1220 | <part name="cart" interface="bspack"> | |
| 1221 | ||
| 1222 | <feature name="slot" value="bsmempak" /> | |
| 1223 | <dataarea name="rom" size="1048576"> | |
| 1224 | <rom name="gekkan coin toss - deck 1 (japan).bs" size="1048576" crc="d2d7c3e5" sha1="75a9d2a75e66f73e5b25f4bed800d73f0e33f67e" offset="0x000000" /> | |
| 1225 | </dataarea> | |
| 1226 | </part> | |
| 1227 | </software> | |
| 1228 | ||
| 1229 | <software name="golfdais" supported="no"> | |
| 1230 | <description>Golf Daisuki! O.B. Club (Jpn)</description> | |
| 1231 | <year>199?</year> | |
| 1232 | <publisher><unknown></publisher> | |
| 1233 | <part name="cart" interface="bspack"> | |
| 1234 | ||
| 1235 | <feature name="slot" value="bsmempak" /> | |
| 1236 | <dataarea name="rom" size="1048576"> | |
| 1237 | <rom name="golf daisuki! o.b. club (japan).bs" size="1048576" crc="dc00efeb" sha1="e97c6c4a5e530815cb449b7aa5a8b1d156f850b7" offset="0x000000" /> | |
| 1238 | </dataarea> | |
| 1239 | </part> | |
| 1240 | </software> | |
| 1241 | ||
| 1242 | <software name="bsgoodp3" supported="no"> | |
| 1243 | <description>GoodsPress - 3 Gatsugou (Jpn)</description> | |
| 1244 | <year>199?</year> | |
| 1245 | <publisher><unknown></publisher> | |
| 1246 | <part name="cart" interface="bspack"> | |
| 1247 | ||
| 1248 | <feature name="slot" value="bsmempak" /> | |
| 1249 | <dataarea name="rom" size="1048576"> | |
| 1250 | <rom name="goodspress - 3 gatsugou (japan).bs" size="1048576" crc="e328adee" sha1="11228f9c890f64a844a1277d5c945683f08453ac" offset="0x000000" /> | |
| 1251 | </dataarea> | |
| 1252 | </part> | |
| 1253 | </software> | |
| 1254 | ||
| 1255 | <software name="bsgoodp6" supported="no"> | |
| 1256 | <description>GoodsPress - 6 Gatsugou (Jpn)</description> | |
| 1257 | <year>199?</year> | |
| 1258 | <publisher><unknown></publisher> | |
| 1259 | <part name="cart" interface="bspack"> | |
| 1260 | ||
| 1261 | <feature name="slot" value="bsmempak" /> | |
| 1262 | <dataarea name="rom" size="524288"> | |
| 1263 | <rom name="goodspress - 6 gatsugou (japan).bs" size="524288" crc="fba1273b" sha1="9e2620f76a2b68036140cd265c27b116daf7853a" offset="0x000000" /> | |
| 1264 | </dataarea> | |
| 1265 | </part> | |
| 1266 | </software> | |
| 1267 | ||
| 1268 | <software name="bsgoodp7" supported="no"> | |
| 1269 | <description>GoodsPress - 7 Gatsugou (Jpn)</description> | |
| 1270 | <year>199?</year> | |
| 1271 | <publisher><unknown></publisher> | |
| 1272 | <part name="cart" interface="bspack"> | |
| 1273 | ||
| 1274 | <feature name="slot" value="bsmempak" /> | |
| 1275 | <dataarea name="rom" size="1048576"> | |
| 1276 | <rom name="goodspress - 7 gatsugou (japan).bs" size="1048576" crc="83611a0c" sha1="ed401c2d6e77292567f9fc58570cc2ced4caf512" offset="0x000000" /> | |
| 1277 | </dataarea> | |
| 1278 | </part> | |
| 1279 | </software> | |
| 1280 | ||
| 1281 | <software name="bsgunjn" supported="no"> | |
| 1282 | <description>Heisei Gunjin Shougi (Jpn, BS)</description> | |
| 1283 | <year>199?</year> | |
| 1284 | <publisher><unknown></publisher> | |
| 1285 | <part name="cart" interface="bspack"> | |
| 1286 | ||
| 1287 | <feature name="slot" value="bsmempak" /> | |
| 1288 | <dataarea name="rom" size="524288"> | |
| 1289 | <rom name="heisei gunjin shougi (japan).bs" size="524288" crc="63f948db" sha1="dd3cff98cd69168f1a6c5dcef7940b6dc9172dd3" offset="0x000000" /> | |
| 1290 | </dataarea> | |
| 1291 | </part> | |
| 1292 | </software> | |
| 1293 | ||
| 1294 | <software name="bsikariy" supported="no"> | |
| 1295 | <description>Ikari no Yousai (Jpn, BS)</description> | |
| 1296 | <year>199?</year> | |
| 1297 | <publisher><unknown></publisher> | |
| 1298 | <part name="cart" interface="bspack"> | |
| 1299 | ||
| 1300 | <feature name="slot" value="bsmempak" /> | |
| 1301 | <dataarea name="rom" size="1048576"> | |
| 1302 | <rom name="ikari no yousai (japan).bs" size="1048576" crc="c69a81ea" sha1="f7123f96292398380f75b67c70c242fa58f21dd5" offset="0x000000" /> | |
| 1303 | </dataarea> | |
| 1304 | </part> | |
| 1305 | </software> | |
| 1306 | ||
| 1307 | <software name="shubibi0" supported="no"> | |
| 1308 | <description>Kaizou Choujin Shubibinman Zero (Jpn)</description> | |
| 1309 | <year>199?</year> | |
| 1310 | <publisher><unknown></publisher> | |
| 1311 | <part name="cart" interface="bspack"> | |
| 1312 | ||
| 1313 | <feature name="slot" value="bsmempak" /> | |
| 1314 | <dataarea name="rom" size="1048576"> | |
| 1315 | <rom name="kaizou chounin shubibinman zero (japan).bs" size="1048576" crc="5e5ba3f0" sha1="5b6a4d0740183703f35a349afb6088a8603d8966" offset="0x000000" /> | |
| 1316 | </dataarea> | |
| 1317 | </part> | |
| 1318 | </software> | |
| 1319 | ||
| 1320 | <software name="bskirbb" supported="no"> | |
| 1321 | <description>Kirby no Omochabako - Baseball (Jpn)</description> | |
| 1322 | <year>199?</year> | |
| 1323 | <publisher><unknown></publisher> | |
| 1324 | <part name="cart" interface="bspack"> | |
| 1325 | ||
| 1326 | <feature name="slot" value="bsmempak" /> | |
| 1327 | <dataarea name="rom" size="524288"> | |
| 1328 | <rom name="kirby no omochabako - baseball (japan).bs" size="524288" crc="7ac28567" sha1="2e3c7ed1a590847ab6e1a0ddfd430bc7cc7d79dd" offset="0x000000" /> | |
| 1329 | </dataarea> | |
| 1330 | </part> | |
| 1331 | </software> | |
| 1332 | ||
| 1333 | <software name="bskirgb" supported="no"> | |
| 1334 | <description>Kirby no Omochabako - Guruguru Ball (Jpn)</description> | |
| 1335 | <year>199?</year> | |
| 1336 | <publisher><unknown></publisher> | |
| 1337 | <part name="cart" interface="bspack"> | |
| 1338 | ||
| 1339 | <feature name="slot" value="bsmempak" /> | |
| 1340 | <dataarea name="rom" size="1048576"> | |
| 1341 | <rom name="kirby no omochabako - guruguru ball (japan).bs" size="1048576" crc="8247a684" sha1="e3b4b1b05edc6c5f6ad3ce4da002aa3fd6f26a6a" offset="0x000000" /> | |
| 1342 | </dataarea> | |
| 1343 | </part> | |
| 1344 | </software> | |
| 1345 | ||
| 1346 | <software name="bskirkuz" supported="no"> | |
| 1347 | <description>Kirby no Omochabako - Hoshi Kuzushi (Jpn)</description> | |
| 1348 | <year>199?</year> | |
| 1349 | <publisher><unknown></publisher> | |
| 1350 | <part name="cart" interface="bspack"> | |
| 1351 | ||
| 1352 | <feature name="slot" value="bsmempak" /> | |
| 1353 | <dataarea name="rom" size="1048576"> | |
| 1354 | <rom name="kirby no omochabako - hoshi kuzushi (japan).bs" size="1048576" crc="a78abd76" sha1="e1b259a29ab756ee3f333006d6eeb4fdbeb5f814" offset="0x000000" /> | |
| 1355 | </dataarea> | |
| 1356 | </part> | |
| 1357 | </software> | |
| 1358 | ||
| 1359 | <software name="bskirpin" supported="no"> | |
| 1360 | <description>Kirby no Omochabako - Pinball (Jpn)</description> | |
| 1361 | <year>199?</year> | |
| 1362 | <publisher><unknown></publisher> | |
| 1363 | <part name="cart" interface="bspack"> | |
| 1364 | ||
| 1365 | <feature name="slot" value="bsmempak" /> | |
| 1366 | <dataarea name="rom" size="524288"> | |
| 1367 | <rom name="kirby no omochabako - pinball (japan).bs" size="524288" crc="9d9bbd09" sha1="53faf45fd03937f663dd2e8047badb162922f896" offset="0x000000" /> | |
| 1368 | </dataarea> | |
| 1369 | </part> | |
| 1370 | </software> | |
| 1371 | ||
| 1372 | <software name="bskodom1" supported="no"> | |
| 1373 | <description>Kodomo Chousadan Mighty Pockets - ChoUSA 1 - Junk-ya Black no Ie (Jpn)</description> | |
| 1374 | <year>199?</year> | |
| 1375 | <publisher><unknown></publisher> | |
| 1376 | <part name="cart" interface="bspack"> | |
| 1377 | ||
| 1378 | <feature name="slot" value="bsmempak" /> | |
| 1379 | <dataarea name="rom" size="1048576"> | |
| 1380 | <rom name="kodomo chousadan mighty pockets - chousa 1 - junk-ya black no ie (japan).bs" size="1048576" crc="85ebb7cc" sha1="cc81070dd4c7b6a527eab5ecc65a1c1433eebe5f" offset="0x000000" /> | |
| 1381 | </dataarea> | |
| 1382 | </part> | |
| 1383 | </software> | |
| 1384 | ||
| 1385 | <software name="bskodom2" supported="no"> | |
| 1386 | <description>Kodomo Chousadan Mighty Pockets - ChoUSA 2 - Hanzai Toshi Big Apple (Jpn)</description> | |
| 1387 | <year>199?</year> | |
| 1388 | <publisher><unknown></publisher> | |
| 1389 | <part name="cart" interface="bspack"> | |
| 1390 | ||
| 1391 | <feature name="slot" value="bsmempak" /> | |
| 1392 | <dataarea name="rom" size="1048576"> | |
| 1393 | <rom name="kodomo chousadan mighty pockets - chousa 2 - hanzai toshi big apple (japan).bs" size="1048576" crc="188c9acb" sha1="408ac8d9c78dad14f109562fbd3149fe0114fc57" offset="0x000000" /> | |
| 1394 | </dataarea> | |
| 1395 | </part> | |
| 1396 | </software> | |
| 1397 | ||
| 1398 | <software name="bskodom3" supported="no"> | |
| 1399 | <description>Kodomo Chousadan Mighty Pockets - ChoUSA 3 - Kyakusen Queen Patra no Nazo (Jpn)</description> | |
| 1400 | <year>199?</year> | |
| 1401 | <publisher><unknown></publisher> | |
| 1402 | <part name="cart" interface="bspack"> | |
| 1403 | ||
| 1404 | <feature name="slot" value="bsmempak" /> | |
| 1405 | <dataarea name="rom" size="1048576"> | |
| 1406 | <rom name="kodomo chousadan mighty pockets - chousa 3 - kyakusen queen patra no nazo (japan).bs" size="1048576" crc="35634c30" sha1="fc222418dba4730ef5f49a6621f9b3addff8c6ad" offset="0x000000" /> | |
| 1407 | </dataarea> | |
| 1408 | </part> | |
| 1409 | </software> | |
| 1410 | ||
| 1411 | <software name="bskoiwab" supported="no"> | |
| 1412 | <description>Koi wa Balance - Tatoeba K-kun no Tabou na Ichinichi Hen (Jpn)</description> | |
| 1413 | <year>199?</year> | |
| 1414 | <publisher><unknown></publisher> | |
| 1415 | <part name="cart" interface="bspack"> | |
| 1416 | ||
| 1417 | <feature name="slot" value="bsmempak" /> | |
| 1418 | <dataarea name="rom" size="1048576"> | |
| 1419 | <rom name="koi wa balance - tatoeba k-kun no tabou na ichinichi hen (japan).bs" size="1048576" crc="d931df60" sha1="7c65ebc51b71f235710ee1935b84ea88236b8d48" offset="0x000000" /> | |
| 1420 | </dataarea> | |
| 1421 | </part> | |
| 1422 | </software> | |
| 1423 | ||
| 1424 | <software name="bsdoki" supported="no"> | |
| 1425 | <description>Konae-chan no Dokidoki Penguin Kazoku (Jpn)</description> | |
| 1426 | <year>199?</year> | |
| 1427 | <publisher><unknown></publisher> | |
| 1428 | <part name="cart" interface="bspack"> | |
| 1429 | ||
| 1430 | <feature name="slot" value="bsmempak" /> | |
| 1431 | <dataarea name="rom" size="262144"> | |
| 1432 | <rom name="konae-chan no dokidoki penguin kazoku (japan).bs" size="262144" crc="218b11f8" sha1="6193ad723ba3d2434bfe8fc70a593d1eabe821de" offset="0x000000" /> | |
| 1433 | </dataarea> | |
| 1434 | </part> | |
| 1435 | </software> | |
| 1436 | ||
| 1437 | <software name="bspachi1" supported="no"> | |
| 1438 | <description>Let's Pachinko Nante Gindama 1 (Jpn)</description> | |
| 1439 | <year>199?</year> | |
| 1440 | <publisher><unknown></publisher> | |
| 1441 | <part name="cart" interface="bspack"> | |
| 1442 | ||
| 1443 | <feature name="slot" value="bsmempak" /> | |
| 1444 | <dataarea name="rom" size="1048576"> | |
| 1445 | <rom name="let's pachinko nante gindama 1 (japan).bs" size="1048576" crc="330aad41" sha1="3b98b182ea492ac35264776829fe773cfa8fb937" offset="0x000000" /> | |
| 1446 | </dataarea> | |
| 1447 | </part> | |
| 1448 | </software> | |
| 1449 | ||
| 1450 | <software name="bspachi2" supported="no"> | |
| 1451 | <description>Let's Pachinko Nante Gindama 2 (Jpn)</description> | |
| 1452 | <year>199?</year> | |
| 1453 | <publisher><unknown></publisher> | |
| 1454 | <part name="cart" interface="bspack"> | |
| 1455 | ||
| 1456 | <feature name="slot" value="bsmempak" /> | |
| 1457 | <dataarea name="rom" size="1048576"> | |
| 1458 | <rom name="let's pachinko nante gindama 2 (japan).bs" size="1048576" crc="8561ad51" sha1="f979554674df78e0ff28ca6df183dab33a1793b3" offset="0x000000" /> | |
| 1459 | </dataarea> | |
| 1460 | </part> | |
| 1461 | </software> | |
| 1462 | ||
| 1463 | <software name="bspachi3" supported="no"> | |
| 1464 | <description>Let's Pachinko Nante Gindama 3 (Jpn)</description> | |
| 1465 | <year>199?</year> | |
| 1466 | <publisher><unknown></publisher> | |
| 1467 | <part name="cart" interface="bspack"> | |
| 1468 | ||
| 1469 | <feature name="slot" value="bsmempak" /> | |
| 1470 | <dataarea name="rom" size="1048576"> | |
| 1471 | <rom name="let's pachinko nante gindama 3 (japan).bs" size="1048576" crc="8f24b267" sha1="5f838668c7dc0092f3e6e92e9ea078c4b93fd1ab" offset="0x000000" /> | |
| 1472 | </dataarea> | |
| 1473 | </part> | |
| 1474 | </software> | |
| 1475 | ||
| 1476 | <software name="bspachi4" supported="no"> | |
| 1477 | <description>Let's Pachinko Nante Gindama 4 (Jpn, 0321)</description> | |
| 1478 | <year>199?</year> | |
| 1479 | <publisher><unknown></publisher> | |
| 1480 | <part name="cart" interface="bspack"> | |
| 1481 | ||
| 1482 | <feature name="slot" value="bsmempak" /> | |
| 1483 | <dataarea name="rom" size="1048576"> | |
| 1484 | <rom name="let's pachinko nante gindama 4 (japan).bs" size="1048576" crc="75bc56bd" sha1="82dcebfbfe6019f4dbf0fc1bebf168d3a33feb14" offset="0x000000" /> | |
| 1485 | </dataarea> | |
| 1486 | </part> | |
| 1487 | </software> | |
| 1488 | ||
| 1489 | <software name="bslordmn" supported="no"> | |
| 1490 | <description>Lord Monarch (Jpn, BS)</description> | |
| 1491 | <year>199?</year> | |
| 1492 | <publisher><unknown></publisher> | |
| 1493 | <part name="cart" interface="bspack"> | |
| 1494 | ||
| 1495 | <feature name="slot" value="bsmempak" /> | |
| 1496 | <dataarea name="rom" size="524288"> | |
| 1497 | <rom name="lord monarch (japan).bs" size="524288" crc="75e906fe" sha1="583a0bf064518a8f739653c3d09c21485dcb8c74" offset="0x000000" /> | |
| 1498 | </dataarea> | |
| 1499 | </part> | |
| 1500 | </software> | |
| 1501 | ||
| 1502 | <software name="bsmarpnt" supported="no"> | |
| 1503 | <description>Mario Paint - BS Ban (Jpn)</description> | |
| 1504 | <year>199?</year> | |
| 1505 | <publisher><unknown></publisher> | |
| 1506 | <part name="cart" interface="bspack"> | |
| 1507 | ||
| 1508 | <feature name="slot" value="bsmempak" /> | |
| 1509 | <dataarea name="rom" size="1048576"> | |
| 1510 | <rom name="mario paint - bs ban (japan).bs" size="1048576" crc="4049e234" sha1="3a74179a49e433b7f743b37e84faee96399306e7" offset="0x000000" /> | |
| 1511 | </dataarea> | |
| 1512 | </part> | |
| 1513 | </software> | |
| 1514 | ||
| 1515 | <software name="bsmarpny" supported="no"> | |
| 1516 | <description>Mario Paint - Yuushou Naizou Ban (Jpn)</description> | |
| 1517 | <year>199?</year> | |
| 1518 | <publisher><unknown></publisher> | |
| 1519 | <part name="cart" interface="bspack"> | |
| 1520 | ||
| 1521 | <feature name="slot" value="bsmempak" /> | |
| 1522 | <dataarea name="rom" size="1048576"> | |
| 1523 | <rom name="mario paint - yuushou naizou ban (japan).bs" size="1048576" crc="91cae9e2" sha1="5e8363db63c245fd7ed6f64b1a105dc808f9ce55" offset="0x000000" /> | |
| 1524 | </dataarea> | |
| 1525 | </part> | |
| 1526 | </software> | |
| 1527 | ||
| 1528 | <software name="bsninta2" supported="no"> | |
| 1529 | <description>Nintama Rantarou 2 (Jpn, BS)</description> | |
| 1530 | <year>199?</year> | |
| 1531 | <publisher><unknown></publisher> | |
| 1532 | <part name="cart" interface="bspack"> | |
| 1533 | ||
| 1534 | <feature name="slot" value="bsmempak" /> | |
| 1535 | <dataarea name="rom" size="1048576"> | |
| 1536 | <rom name="nintama rantarou 2 (japan).bs" size="1048576" crc="dc9db257" sha1="ac2d779fe97cd01419df0d6ac89443a01d0e7d0f" offset="0x000000" /> | |
| 1537 | </dataarea> | |
| 1538 | </part> | |
| 1539 | </software> | |
| 1540 | ||
| 1541 | <software name="npm107" supported="no"> | |
| 1542 | <description>Nintendo Power Magazine 107 (Jpn)</description> | |
| 1543 | <year>199?</year> | |
| 1544 | <publisher><unknown></publisher> | |
| 1545 | <part name="cart" interface="bspack"> | |
| 1546 | ||
| 1547 | <feature name="slot" value="bsmempak" /> | |
| 1548 | <dataarea name="rom" size="524288"> | |
| 1549 | <rom name="nintendo power magazine 107 (japan).bs" size="524288" crc="1622eb2d" sha1="dd8f214872a71da328c31a967765e27ad9f4239c" offset="0x000000" /> | |
| 1550 | </dataarea> | |
| 1551 | </part> | |
| 1552 | </software> | |
| 1553 | ||
| 1554 | <software name="bspanepn" supported="no"> | |
| 1555 | <description>Panel de Pon - Event '98 (Jpn, 0111)</description> | |
| 1556 | <year>199?</year> | |
| 1557 | <publisher><unknown></publisher> | |
| 1558 | <part name="cart" interface="bspack"> | |
| 1559 | ||
| 1560 | <feature name="slot" value="bsmempak" /> | |
| 1561 | <dataarea name="rom" size="1048576"> | |
| 1562 | <rom name="panel de pon - event '98 (japan).bs" size="1048576" crc="36b0cf6c" sha1="b59061561a3aeac13e46735582f29826e7310141" offset="0x000000" /> | |
| 1563 | </dataarea> | |
| 1564 | </part> | |
| 1565 | </software> | |
| 1566 | ||
| 1567 | <software name="pokekame" supported="no"> | |
| 1568 | <description>Pokekame Magazine (Jpn)</description> | |
| 1569 | <year>199?</year> | |
| 1570 | <publisher><unknown></publisher> | |
| 1571 | <part name="cart" interface="bspack"> | |
| 1572 | ||
| 1573 | <feature name="slot" value="bsmempak" /> | |
| 1574 | <dataarea name="rom" size="1048576"> | |
| 1575 | <rom name="pokekame magazine (japan).bs" size="1048576" crc="2a6c5ec6" sha1="35fc0d9789ef324dc27c5d041114631606862ca5" offset="0x000000" /> | |
| 1576 | </dataarea> | |
| 1577 | </part> | |
| 1578 | </software> | |
| 1579 | ||
| 1580 | <software name="radicald" supported="no"> | |
| 1581 | <description>Radical Dreamers - Nusume Nai Houseki (Jpn)</description> | |
| 1582 | <year>199?</year> | |
| 1583 | <publisher><unknown></publisher> | |
| 1584 | <part name="cart" interface="bspack"> | |
| 1585 | ||
| 1586 | <feature name="slot" value="bsmempak" /> | |
| 1587 | <dataarea name="rom" size="1048576"> | |
| 1588 | <rom name="radical dreamers - nusume nai houseki (japan).bs" size="1048576" crc="be3048b6" sha1="7d724ee3473d68c5fb856a0ffc9ba5d1fc17efa5" offset="0x000000" /> | |
| 1589 | </dataarea> | |
| 1590 | </part> | |
| 1591 | </software> | |
| 1592 | ||
| 1593 | <software name="bswalker" supported="no"> | |
| 1594 | <description>Satella Walker 2 - Sate Bou o Sukuidase! (Jpn)</description> | |
| 1595 | <year>199?</year> | |
| 1596 | <publisher><unknown></publisher> | |
| 1597 | <part name="cart" interface="bspack"> | |
| 1598 | ||
| 1599 | <feature name="slot" value="bsmempak" /> | |
| 1600 | <dataarea name="rom" size="1048576"> | |
| 1601 | <rom name="satella walker 2 - sate bou o sukuidase! (japan).bs" size="1048576" crc="7c8d211c" sha1="80bb866deb7141963e1ecf9b1f538ee0c28b11ed" offset="0x000000" /> | |
| 1602 | </dataarea> | |
| 1603 | </part> | |
| 1604 | </software> | |
| 1605 | ||
| 1606 | <software name="bsshangh" supported="no"> | |
| 1607 | <description>Shanghai - Banri no Choujou (Jpn, BS)</description> | |
| 1608 | <year>199?</year> | |
| 1609 | <publisher><unknown></publisher> | |
| 1610 | <part name="cart" interface="bspack"> | |
| 1611 | ||
| 1612 | <feature name="slot" value="bsmempak" /> | |
| 1613 | <dataarea name="rom" size="1048576"> | |
| 1614 | <rom name="shanghai - banri no choujou (japan).bs" size="1048576" crc="60017697" sha1="94c365cddfa62eea1a56fb7f0dbcd2ad6812ddc8" offset="0x000000" /> | |
| 1615 | </dataarea> | |
| 1616 | </part> | |
| 1617 | </software> | |
| 1618 | ||
| 1619 | <software name="bswappr1" supported="no"> | |
| 1620 | <description>Sousa Sentai Wappers - Mission 01 (Jpn)</description> | |
| 1621 | <year>199?</year> | |
| 1622 | <publisher><unknown></publisher> | |
| 1623 | <part name="cart" interface="bspack"> | |
| 1624 | ||
| 1625 | <feature name="slot" value="bsmempak" /> | |
| 1626 | <dataarea name="rom" size="1048576"> | |
| 1627 | <rom name="sousa sentai wappers - mission 01 (japan).bs" size="1048576" crc="fec3d721" sha1="a96f2321a9ecf0261bd04d5aa0f15cafbe9ec30f" offset="0x000000" /> | |
| 1628 | </dataarea> | |
| 1629 | </part> | |
| 1630 | </software> | |
| 1631 | ||
| 1632 | <software name="bswappr2" supported="no"> | |
| 1633 | <description>Sousa Sentai Wappers - Mission 02 (Jpn)</description> | |
| 1634 | <year>199?</year> | |
| 1635 | <publisher><unknown></publisher> | |
| 1636 | <part name="cart" interface="bspack"> | |
| 1637 | ||
| 1638 | <feature name="slot" value="bsmempak" /> | |
| 1639 | <dataarea name="rom" size="1048576"> | |
| 1640 | <rom name="sousa sentai wappers - mission 02 (japan).bs" size="1048576" crc="a619c58d" sha1="067fd06286e3fd363b17f39876dc9dd53418038e" offset="0x000000" /> | |
| 1641 | </dataarea> | |
| 1642 | </part> | |
| 1643 | </software> | |
| 1644 | ||
| 1645 | <software name="bswapprs" supported="no"> | |
| 1646 | <description>Sousa Sentai Wappers - Soushuuhen (Jpn)</description> | |
| 1647 | <year>199?</year> | |
| 1648 | <publisher><unknown></publisher> | |
| 1649 | <part name="cart" interface="bspack"> | |
| 1650 | ||
| 1651 | <feature name="slot" value="bsmempak" /> | |
| 1652 | <dataarea name="rom" size="1048576"> | |
| 1653 | <rom name="sousa sentai wappers - soushuuhen (japan).bs" size="1048576" crc="0b423023" sha1="9ae3ee6edea0c5b348b6195b301092da06f9b409" offset="0x000000" /> | |
| 1654 | </dataarea> | |
| 1655 | </part> | |
| 1656 | </software> | |
| 1657 | ||
| 1658 | <software name="steeshot" supported="no"> | |
| 1659 | <description>Special Tee Shot (Jpn)</description> | |
| 1660 | <year>199?</year> | |
| 1661 | <publisher><unknown></publisher> | |
| 1662 | <part name="cart" interface="bspack"> | |
| 1663 | ||
| 1664 | <feature name="slot" value="bsmempak" /> | |
| 1665 | <dataarea name="rom" size="1048576"> | |
| 1666 | <rom name="special tee shot (japan).bs" size="1048576" crc="2703f38e" sha1="8e7e08654a067c703c10d8a0858e2b55fac55170" offset="0x000000" /> | |
| 1667 | </dataarea> | |
| 1668 | </part> | |
| 1669 | </software> | |
| 1670 | ||
| 1671 | <software name="bssprigg" supported="no"> | |
| 1672 | <description>Spriggan Powered BS - Prelude (Jpn)</description> | |
| 1673 | <year>199?</year> | |
| 1674 | <publisher><unknown></publisher> | |
| 1675 | <part name="cart" interface="bspack"> | |
| 1676 | ||
| 1677 | <feature name="slot" value="bsmempak" /> | |
| 1678 | <dataarea name="rom" size="1048576"> | |
| 1679 | <rom name="spriggan powered bs - prelude (japan).bs" size="1048576" crc="29b7cf34" sha1="fcd0258debc13e2651a96684ae95cf3d2c7f172f" offset="0x000000" /> | |
| 1680 | </dataarea> | |
| 1681 | </part> | |
| 1682 | </software> | |
| 1683 | ||
| 1684 | <software name="bssupedf" supported="no"> | |
| 1685 | <description>Super E.D.F. (Jpn, BS)</description> | |
| 1686 | <year>199?</year> | |
| 1687 | <publisher><unknown></publisher> | |
| 1688 | <part name="cart" interface="bspack"> | |
| 1689 | ||
| 1690 | <feature name="slot" value="bsmempak" /> | |
| 1691 | <dataarea name="rom" size="1048576"> | |
| 1692 | <rom name="super e.d.f. (japan).bs" size="1048576" crc="f6aa6c8d" sha1="bd85da4175beef68bfff4dd39e979ecb23fc5c78" offset="0x000000" /> | |
| 1693 | </dataarea> | |
| 1694 | </part> | |
| 1695 | </software> | |
| 1696 | ||
| 1697 | <software name="bsfamwar" supported="no"> | |
| 1698 | <description>Super Famicom Wars - BS Ban - Tsukinowajima (Jpn)</description> | |
| 1699 | <year>199?</year> | |
| 1700 | <publisher><unknown></publisher> | |
| 1701 | <part name="cart" interface="bspack"> | |
| 1702 | ||
| 1703 | <feature name="slot" value="bsmempak" /> | |
| 1704 | <dataarea name="rom" size="1048576"> | |
| 1705 | <rom name="super famicom wars - bs ban - tsukinowajima (japan).bs" size="1048576" crc="00513e71" sha1="3cdd2685ac91be55fb16f41a671af6c81a61f26a" offset="0x000000" /> | |
| 1706 | </dataarea> | |
| 1707 | </part> | |
| 1708 | </software> | |
| 1709 | ||
| 1710 | <software name="bssuprmj" supported="no"> | |
| 1711 | <description>Super Mahjong Taikai (Jpn, BS)</description> | |
| 1712 | <year>199?</year> | |
| 1713 | <publisher><unknown></publisher> | |
| 1714 | <part name="cart" interface="bspack"> | |
| 1715 | ||
| 1716 | <feature name="slot" value="bsmempak" /> | |
| 1717 | <dataarea name="rom" size="524288"> | |
| 1718 | <rom name="super mahjong taikai (japan).bs" size="524288" crc="8eb00b71" sha1="36f73508f4c1e6d65f9b857edff03ce11312ffb4" offset="0x000000" /> | |
| 1719 | </dataarea> | |
| 1720 | </part> | |
| 1721 | </software> | |
| 1722 | ||
| 1723 | <software name="bssnazot" supported="no"> | |
| 1724 | <description>Super Nazo Puyo Tsuu - Rulue no Tetsuwan Hanjouki (Jpn, BS)</description> | |
| 1725 | <year>199?</year> | |
| 1726 | <publisher><unknown></publisher> | |
| 1727 | <info name="alt_title" value="す~ぱ~なぞぷよ通 ルルーの鉄腕繁 盛記" /> | |
| 1728 | <part name="cart" interface="bspack"> | |
| 1729 | ||
| 1730 | <feature name="slot" value="bsmempak" /> | |
| 1731 | <dataarea name="rom" size="1048576"> | |
| 1732 | <rom name="super nazo puyo tsuu - rulue no tetsuwan hanjouki (japan).bs" size="1048576" crc="295e6a5f" sha1="116262e008ce5416d48a6a9ffe6d353d3659e608" offset="0x000000" /> | |
| 1733 | </dataarea> | |
| 1734 | </part> | |
| 1735 | </software> | |
| 1736 | ||
| 1737 | <software name="bsninja" supported="no"> | |
| 1738 | <description>Super Ninja-kun (Jpn, BS)</description> | |
| 1739 | <year>199?</year> | |
| 1740 | <publisher><unknown></publisher> | |
| 1741 | <part name="cart" interface="bspack"> | |
| 1742 | ||
| 1743 | <feature name="slot" value="bsmempak" /> | |
| 1744 | <dataarea name="rom" size="1048576"> | |
| 1745 | <rom name="super ninja-kun (japan).bs" size="1048576" crc="bb06514e" sha1="fe69c4d4191387db3cc68d2492a633e3ad426bec" offset="0x000000" /> | |
| 1746 | </dataarea> | |
| 1747 | </part> | |
| 1748 | </software> | |
| 1749 | ||
| 1750 | <software name="bstsume" supported="no"> | |
| 1751 | <description>Super Tsumeshougi 1000 (Jpn, BS)</description> | |
| 1752 | <year>199?</year> | |
| 1753 | <publisher><unknown></publisher> | |
| 1754 | <part name="cart" interface="bspack"> | |
| 1755 | ||
| 1756 | <feature name="slot" value="bsmempak" /> | |
| 1757 | <dataarea name="rom" size="524288"> | |
| 1758 | <rom name="super tsumeshougi 1000 (japan).bs" size="524288" crc="6ba3738c" sha1="56adc0a17c82529787c616319145fbc055d1ec5e" offset="0x000000" /> | |
| 1759 | </dataarea> | |
| 1760 | </part> | |
| 1761 | </software> | |
| 1762 | ||
| 1763 | <software name="bsvolly2" supported="no"> | |
| 1764 | <description>Super Volley II (Jpn, BS)</description> | |
| 1765 | <year>199?</year> | |
| 1766 | <publisher><unknown></publisher> | |
| 1767 | <part name="cart" interface="bspack"> | |
| 1768 | ||
| 1769 | <feature name="slot" value="bsmempak" /> | |
| 1770 | <dataarea name="rom" size="1048576"> | |
| 1771 | <rom name="super volley ii (japan).bs" size="1048576" crc="515588a0" sha1="d293af5439b0d569a75e27aa9c0dcf03e561a31b" offset="0x000000" /> | |
| 1772 | </dataarea> | |
| 1773 | </part> | |
| 1774 | </software> | |
| 1775 | ||
| 1776 | <software name="bssutt98" supported="no"> | |
| 1777 | <description>Sutte Hakkun - 98 Event Version (Jpn)</description> | |
| 1778 | <year>199?</year> | |
| 1779 | <publisher><unknown></publisher> | |
| 1780 | <part name="cart" interface="bspack"> | |
| 1781 | ||
| 1782 | <feature name="slot" value="bsmempak" /> | |
| 1783 | <dataarea name="rom" size="1048576"> | |
| 1784 | <rom name="sutte hakkun - 98 event version (japan).bs" size="1048576" crc="948b7f8e" sha1="07d341a77a21b9bdda04cb0f0d0d29b7e0efb143" offset="0x000000" /> | |
| 1785 | </dataarea> | |
| 1786 | </part> | |
| 1787 | </software> | |
| 1788 | ||
| 1789 | <software name="bssuttv2" supported="no"> | |
| 1790 | <description>Sutte Hakkun - BS Version 2 (Jpn, xxxx0603)</description> | |
| 1791 | <year>199?</year> | |
| 1792 | <publisher><unknown></publisher> | |
| 1793 | <part name="cart" interface="bspack"> | |
| 1794 | ||
| 1795 | <feature name="slot" value="bsmempak" /> | |
| 1796 | <dataarea name="rom" size="1048576"> | |
| 1797 | <rom name="sutte hakkun - bs version 2 (japan) (xxxx-06-03).bs" size="1048576" crc="a387fe08" sha1="e7566cf5dd4cde20479c58e5b153507ef8c4d662" offset="0x000000" /> | |
| 1798 | </dataarea> | |
| 1799 | </part> | |
| 1800 | </software> | |
| 1801 | ||
| 1802 | <software name="bssuttv2a" cloneof="bssuttv2" supported="no"> | |
| 1803 | <description>Sutte Hakkun - BS Version 2 (Jpn, xxxx1008)</description> | |
| 1804 | <year>199?</year> | |
| 1805 | <publisher><unknown></publisher> | |
| 1806 | <part name="cart" interface="bspack"> | |
| 1807 | ||
| 1808 | <feature name="slot" value="bsmempak" /> | |
| 1809 | <dataarea name="rom" size="1048576"> | |
| 1810 | <rom name="sutte hakkun - bs version 2 (japan) (xxxx-10-08).bs" size="1048576" crc="a224c713" sha1="8926559a716edffed10609dbb5355f1951a0c1e7" offset="0x000000" /> | |
| 1811 | </dataarea> | |
| 1812 | </part> | |
| 1813 | </software> | |
| 1814 | ||
| 1815 | <software name="bssuttev" supported="no"> | |
| 1816 | <description>Sutte Hakkun - Event Version (Jpn)</description> | |
| 1817 | <year>199?</year> | |
| 1818 | <publisher><unknown></publisher> | |
| 1819 | <part name="cart" interface="bspack"> | |
| 1820 | ||
| 1821 | <feature name="slot" value="bsmempak" /> | |
| 1822 | <dataarea name="rom" size="1048576"> | |
| 1823 | <rom name="sutte hakkun - event version (japan).bs" size="1048576" crc="4f6c48d1" sha1="415804504016ae03a3830f62e3917d1d4b918651" offset="0x000000" /> | |
| 1824 | </dataarea> | |
| 1825 | </part> | |
| 1826 | </software> | |
| 1827 | ||
| 1828 | <software name="tconflix" supported="no"> | |
| 1829 | <description>Treasure Conflix (Jpn)</description> | |
| 1830 | <year>199?</year> | |
| 1831 | <publisher><unknown></publisher> | |
| 1832 | <part name="cart" interface="bspack"> | |
| 1833 | ||
| 1834 | <feature name="slot" value="bsmempak" /> | |
| 1835 | <dataarea name="rom" size="1048576"> | |
| 1836 | <rom name="treasure conflix (japan).bs" size="1048576" crc="57a070e2" sha1="eaeceb99fe7caedb01c2e137669cb05aefb60944" offset="0x000000" /> | |
| 1837 | </dataarea> | |
| 1838 | </part> | |
| 1839 | </software> | |
| 1840 | ||
| 1841 | <software name="bswaiwai" supported="no"> | |
| 1842 | <description>Waiwai Check - 3-7 Gou (Jpn)</description> | |
| 1843 | <year>199?</year> | |
| 1844 | <publisher><unknown></publisher> | |
| 1845 | <part name="cart" interface="bspack"> | |
| 1846 | ||
| 1847 | <feature name="slot" value="bsmempak" /> | |
| 1848 | <dataarea name="rom" size="1048576"> | |
| 1849 | <rom name="waiwai check - 3-7 gou (japan).bs" size="1048576" crc="34fb38cb" sha1="a10c55aee93144449bca432cb5318d8e096118bc" offset="0x000000" /> | |
| 1850 | </dataarea> | |
| 1851 | </part> | |
| 1852 | </software> | |
| 1853 | ||
| 1854 | <software name="bswario" supported="no"> | |
| 1855 | <description>Wario no Mori - Futatabi (Jpn)</description> | |
| 1856 | <year>199?</year> | |
| 1857 | <publisher><unknown></publisher> | |
| 1858 | <part name="cart" interface="bspack"> | |
| 1859 | ||
| 1860 | <feature name="slot" value="bsmempak" /> | |
| 1861 | <dataarea name="rom" size="1048576"> | |
| 1862 | <rom name="wario no mori - futatabi (japan).bs" size="1048576" crc="e80783e5" sha1="8bf9312013f62cf8631a80f3f532db461a5c0a14" offset="0x000000" /> | |
| 1863 | </dataarea> | |
| 1864 | </part> | |
| 1865 | </software> | |
| 1866 | ||
| 1867 | <software name="bswizrd5" supported="no"> | |
| 1868 | <description>Wizardry V - Saika no Chuushin (Jpn, BS)</description> | |
| 1869 | <year>199?</year> | |
| 1870 | <publisher><unknown></publisher> | |
| 1871 | <part name="cart" interface="bspack"> | |
| 1872 | ||
| 1873 | <feature name="slot" value="bsmempak" /> | |
| 1874 | <dataarea name="rom" size="1048576"> | |
| 1875 | <rom name="wizardry v - saika no chuushin (japan).bs" size="1048576" crc="49ef7aa9" sha1="9d4854c06fdfb7447496568cfbd1d7dda3183e32" offset="0x000000" /> | |
| 1876 | </dataarea> | |
| 1877 | </part> | |
| 1878 | </software> | |
| 1879 | ||
| 1880 | <software name="bsyoshi" supported="no"> | |
| 1881 | <description>Yoshi no Panepon - BS Ban (Jpn)</description> | |
| 1882 | <year>199?</year> | |
| 1883 | <publisher><unknown></publisher> | |
| 1884 | <part name="cart" interface="bspack"> | |
| 1885 | ||
| 1886 | <feature name="slot" value="bsmempak" /> | |
| 1887 | <dataarea name="rom" size="1048576"> | |
| 1888 | <rom name="yoshi no panepon - bs ban (japan) (en,ja).bs" size="1048576" crc="7a633bc6" sha1="d3bcea66a3fd1d6518c006cd906b3b8f898a2c74" offset="0x000000" /> | |
| 1889 | </dataarea> | |
| 1890 | </part> | |
| 1891 | </software> | |
| 1892 | ||
| 1893 | <software name="bsyung1" supported="no"> | |
| 1894 | <description>Yung Hakase no Shinsatsushitsu - Dai-1-gou (Jpn)</description> | |
| 1895 | <year>199?</year> | |
| 1896 | <publisher><unknown></publisher> | |
| 1897 | <part name="cart" interface="bspack"> | |
| 1898 | ||
| 1899 | <feature name="slot" value="bsmempak" /> | |
| 1900 | <dataarea name="rom" size="1048576"> | |
| 1901 | <rom name="yung hakase no shinsatsushitsu - dai-1-gou (japan).bs" size="1048576" crc="27326da6" sha1="db12d90bdfcca54b1641d3ebd298f2ba230c74cf" offset="0x000000" /> | |
| 1902 | </dataarea> | |
| 1903 | </part> | |
| 1904 | </software> | |
| 1905 | ||
| 1906 | <software name="bsyung2" supported="no"> | |
| 1907 | <description>Yung Hakase no Shinsatsushitsu - Dai-2-gou (Jpn)</description> | |
| 1908 | <year>199?</year> | |
| 1909 | <publisher><unknown></publisher> | |
| 1910 | <part name="cart" interface="bspack"> | |
| 1911 | ||
| 1912 | <feature name="slot" value="bsmempak" /> | |
| 1913 | <dataarea name="rom" size="1048576"> | |
| 1914 | <rom name="yung hakase no shinsatsushitsu - dai-2-gou (japan).bs" size="1048576" crc="66ea357f" sha1="b532b5bd160208e90753f2798366893a0e8b7c70" offset="0x000000" /> | |
| 1915 | </dataarea> | |
| 1916 | </part> | |
| 1917 | </software> | |
| 1918 | ||
| 1919 | <software name="bszelda3" supported="no"> | |
| 1920 | <description>Zelda no Densetsu - Kamigami no Triforce (Jpn, BS, 0528)</description> | |
| 1921 | <year>199?</year> | |
| 1922 | <publisher><unknown></publisher> | |
| 1923 | <part name="cart" interface="bspack"> | |
| 1924 | ||
| 1925 | <feature name="slot" value="bsmempak" /> | |
| 1926 | <dataarea name="rom" size="1048576"> | |
| 1927 | <rom name="zelda no densetsu - kamigami no triforce (japan).bs" size="1048576" crc="1e1cc639" sha1="5ecc217abfa1d8483002407cdaab3c7415f29c4f" offset="0x000000" /> | |
| 1928 | </dataarea> | |
| 1929 | </part> | |
| 1930 | </software> | |
| 1931 | ||
| 1932 | <software name="bszotto" supported="no"> | |
| 1933 | <description>Zootto Mahjong! - Event Version (Jpn)</description> | |
| 1934 | <year>199?</year> | |
| 1935 | <publisher><unknown></publisher> | |
| 1936 | <part name="cart" interface="bspack"> | |
| 1937 | ||
| 1938 | <feature name="slot" value="bsmempak" /> | |
| 1939 | <dataarea name="rom" size="1048576"> | |
| 1940 | <rom name="zootto mahjong! - event version (japan).bs" size="1048576" crc="7aca6cf0" sha1="2ee76761e023f0c51fbbf4797c175a7c752e788c" offset="0x000000" /> | |
| 1941 | </dataarea> | |
| 1942 | </part> | |
| 1943 | </software> | |
| 1944 | ||
| 1945 | <software name="bszottob" supported="no"> | |
| 1946 | <description>Zootto Mahjong! - Preview Ban (Jpn)</description> | |
| 1947 | <year>199?</year> | |
| 1948 | <publisher><unknown></publisher> | |
| 1949 | <part name="cart" interface="bspack"> | |
| 1950 | ||
| 1951 | <feature name="slot" value="bsmempak" /> | |
| 1952 | <dataarea name="rom" size="1048576"> | |
| 1953 | <rom name="zootto mahjong! - preview ban (japan).bs" size="1048576" crc="e8a0758d" sha1="8ec66c5dcda3392c27bc532a06d726783c3a1565" offset="0x000000" /> | |
| 1954 | </dataarea> | |
| 1955 | </part> | |
| 1956 | </software> | |
| 1957 | ||
| 1958 | <software name="bsaklive" supported="no"> | |
| 1959 | <!-- this game has a corrupted header, and requires to be patched in order to work --> | |
| 1960 | <description>AK LIVE Hit Gang (Jpn, BS)</description> | |
| 1961 | <year>199?</year> | |
| 1962 | <publisher><unknown></publisher> | |
| 1963 | <part name="cart" interface="bspack"> | |
| 1964 | ||
| 1965 | <feature name="slot" value="bsmempak" /> | |
| 1966 | <dataarea name="rom" size="524288"> | |
| 1967 | <rom name="ak live hit gang.bs" size="524288" crc="9905d4c3" sha1="bd742cbd788439e021cd101d935451ba34a8116e" offset="0x000000" /> | |
| 1968 | </dataarea> | |
| 1969 | </part> | |
| 1970 | </software> | |
| 1971 | ||
| 1972 | <software name="bsgamb19" supported="no"> | |
| 1973 | <description>Gambler Jikochuushinha 2 - Dorapon Quest (Jpn, BS, 1219)</description> | |
| 1974 | <year>199?</year> | |
| 1975 | <publisher><unknown></publisher> | |
| 1976 | <part name="cart" interface="bspack"> | |
| 1977 | ||
| 1978 | <feature name="slot" value="bsmempak" /> | |
| 1979 | <dataarea name="rom" size="1048576"> | |
| 1980 | <rom name="gambler jiko chuushinha 2 - dorapon quest (bs) (japan) (dec 19).bs" size="1048576" crc="11b8e93a" sha1="10ed890794c969654fccc8b15e92d4cef5d13382" offset="0x000000" /> | |
| 1981 | </dataarea> | |
| 1982 | </part> | |
| 1983 | </software> | |
| 1984 | ||
| 1985 | <software name="bsgamb20" supported="no"> | |
| 1986 | <description>Gambler Jikochuushinha 2 - Dorapon Quest (Jpn, BS, 1220)</description> | |
| 1987 | <year>199?</year> | |
| 1988 | <publisher><unknown></publisher> | |
| 1989 | <part name="cart" interface="bspack"> | |
| 1990 | ||
| 1991 | <feature name="slot" value="bsmempak" /> | |
| 1992 | <dataarea name="rom" size="1048576"> | |
| 1993 | <rom name="gambler jiko chuushinha 2 - dorapon quest (bs) (japan) (dec 20).bs" size="1048576" crc="f9e8a8ee" sha1="a4999b026cd05ae71b6f0a8ede1ce1bf86215d08" offset="0x000000" /> | |
| 1994 | </dataarea> | |
| 1995 | </part> | |
| 1996 | </software> | |
| 1997 | ||
| 1998 | <software name="bsbomb2" supported="no"> | |
| 1999 | <description>Super Bomberman 2 (Jpn, BS)</description> | |
| 2000 | <year>199?</year> | |
| 2001 | <publisher><unknown></publisher> | |
| 2002 | <part name="cart" interface="bspack"> | |
| 2003 | ||
| 2004 | <feature name="slot" value="bsmempak" /> | |
| 2005 | <dataarea name="rom" size="1048576"> | |
| 2006 | <rom name="super bomberman 2.bs" size="1048576" crc="095f2969" sha1="9fc6d3df4c35f1a1ee1e1c825ad76e07126c383a" offset="0x000000" /> | |
| 2007 | </dataarea> | |
| 2008 | </part> | |
| 2009 | </software> | |
| 2010 | ||
| 2011 | <software name="bssfpw" supported="no"> | |
| 2012 | <description>Super Fire Pro Wrestling (Jpn, BS)</description> | |
| 2013 | <year>199?</year> | |
| 2014 | <publisher><unknown></publisher> | |
| 2015 | <part name="cart" interface="bspack"> | |
| 2016 | ||
| 2017 | <feature name="slot" value="bsmempak" /> | |
| 2018 | <dataarea name="rom" size="1048576"> | |
| 2019 | <rom name="super fire pro wrestling.bs" size="1048576" crc="dfd7b14d" sha1="1ff3eb2cc71abd5a0f00f6ddae24f494273adf28" offset="0x000000" /> | |
| 2020 | </dataarea> | |
| 2021 | </part> | |
| 2022 | </software> | |
| 2023 | ||
| 2024 | <software name="bsnazo" supported="no"> | |
| 2025 | <description>Super Nazo Puyo - Rulue no Roux (Jpn, BS)</description> | |
| 2026 | <year>199?</year> | |
| 2027 | <publisher><unknown></publisher> | |
| 2028 | <part name="cart" interface="bspack"> | |
| 2029 | ||
| 2030 | <feature name="slot" value="bsmempak" /> | |
| 2031 | <dataarea name="rom" size="1048576"> | |
| 2032 | <rom name="super nazo puyo (bs) (japan).bs" size="1048576" crc="6b36b2af" sha1="a013f8453c7dbfd228d592340c08161f019d15bd" offset="0x000000" /> | |
| 2033 | </dataarea> | |
| 2034 | </part> | |
| 2035 | </software> | |
| 2036 | ||
| 2037 | <software name="bsbokud2" supported="no"> | |
| 2038 | <description>BS Bokujou Monogatari Dai-2-wa (Jpn, BS)</description> | |
| 2039 | <year>199?</year> | |
| 2040 | <publisher><unknown></publisher> | |
| 2041 | <part name="cart" interface="bspack"> | |
| 2042 | ||
| 2043 | <feature name="slot" value="bsmempak" /> | |
| 2044 | <dataarea name="rom" size="1048576"> | |
| 2045 | <rom name="bs bokujo monogatari da-2-wa (japan).bs" size="1048576" crc="0bf62746" sha1="2f15cf736d7370646cfbd825e6d66efa0e6deb04" offset="0x000000" /> | |
| 2046 | </dataarea> | |
| 2047 | </part> | |
| 2048 | </software> | |
| 2049 | ||
| 2050 | <software name="bsbokud4" supported="no"> | |
| 2051 | <description>BS Bokujou Monogatari Dai-4-wa (Jpn, BS)</description> | |
| 2052 | <year>199?</year> | |
| 2053 | <publisher><unknown></publisher> | |
| 2054 | <part name="cart" interface="bspack"> | |
| 2055 | ||
| 2056 | <feature name="slot" value="bsmempak" /> | |
| 2057 | <dataarea name="rom" size="1048576"> | |
| 2058 | <rom name="bs bokujo monogatari dai-4-wa (japan).bs" size="1048576" crc="f384b235" sha1="6011df3c53de919fcf2e6fd104d5ea1b7a0cb3d6" offset="0x000000" /> | |
| 2059 | </dataarea> | |
| 2060 | </part> | |
| 2061 | </software> | |
| 2062 | ||
| 2063 | <software name="bsboku" supported="no"> | |
| 2064 | <description>Bokujou Monogatari (Jpn, BS)</description> | |
| 2065 | <year>199?</year> | |
| 2066 | <publisher><unknown></publisher> | |
| 2067 | <part name="cart" interface="bspack"> | |
| 2068 | ||
| 2069 | <feature name="slot" value="bsmempak" /> | |
| 2070 | <dataarea name="rom" size="1048576"> | |
| 2071 | <rom name="bokujou monogatari.bs" size="1048576" crc="e2093836" sha1="97520f8ac8cb2c5b8175e9148741d2e0b477e08e" offset="0x000000" /> | |
| 2072 | </dataarea> | |
| 2073 | </part> | |
| 2074 | </software> | |
| 2075 | ||
| 2076 | <software name="bscasino" supported="no"> | |
| 2077 | <!-- this was dumped from a memory pack containing data for both games. split dumps are also available, but they seem to have issues --> | |
| 2078 | <description>Kouryaku Casino Bar Nichiyoubi (Jpn) & Game Tora no Ooana Special (Jpn, 0224)</description> | |
| 2079 | <year>199?</year> | |
| 2080 | <publisher><unknown></publisher> | |
| 2081 | <part name="cart" interface="bspack"> | |
| 2082 | ||
| 2083 | <feature name="slot" value="bsmempak" /> | |
| 2084 | <dataarea name="rom" size="1048576"> | |
| 2085 | <rom name="kouryaku casino bar roulette + game tora no ooana special 2-24.bs" size="1048576" crc="4b881535" sha1="ae574eae616f30accb2a000d6d480fac9845dbc2" offset="0x000000" /> | |
| 2086 | </dataarea> | |
| 2087 | </part> | |
| 2088 | </software> | |
| 2089 | ||
| 2090 | <!-- this game has a corrupted header, and requires to be patched in order to work --> | |
| 2091 | <software name="bstamopc" supported="no"> | |
| 2092 | <description>Tamori no Picross (Jpn, 0626)</description> | |
| 2093 | <year>199?</year> | |
| 2094 | <publisher><unknown></publisher> | |
| 2095 | <part name="cart" interface="bspack"> | |
| 2096 | ||
| 2097 | <feature name="slot" value="bsmempak" /> | |
| 2098 | <dataarea name="rom" size="1048576"> | |
| 2099 | <rom name="tamori_no_picross_6-26.bs" size="1048576" crc="c155ecc7" sha1="30260a38b1403c117274f89373094a00cfe0e952" offset="0x000000" /> | |
| 2100 | </dataarea> | |
| 2101 | </part> | |
| 2102 | </software> | |
| 2103 | ||
| 2104 | <software name="bstamopc1" cloneof="bstamopc" supported="no"> | |
| 2105 | <description>Tamori no Picross (Jpn, 0613)</description> | |
| 2106 | <year>199?</year> | |
| 2107 | <publisher><unknown></publisher> | |
| 2108 | <part name="cart" interface="bspack"> | |
| 2109 | ||
| 2110 | <feature name="slot" value="bsmempak" /> | |
| 2111 | <dataarea name="rom" size="1048576"> | |
| 2112 | <rom name="tamori_no_picross_6-13.bs" size="1048576" crc="bf6cab42" sha1="9573a7e1a2151b05302a9ea2e5b7f1ab1f195593" offset="0x000000" /> | |
| 2113 | </dataarea> | |
| 2114 | </part> | |
| 2115 | </software> | |
| 2116 | ||
| 2117 | <software name="bssndlov" supported="no"> | |
| 2118 | <description>BS Sound Journal for Lovers - Valentine Special Vol. 1 (Jpn)</description> | |
| 2119 | <year>199?</year> | |
| 2120 | <publisher><unknown></publisher> | |
| 2121 | <part name="cart" interface="bspack"> | |
| 2122 | ||
| 2123 | <feature name="slot" value="bsmempak" /> | |
| 2124 | <dataarea name="rom" size="1048576"> | |
| 2125 | <rom name="bs sound journal for lovers - valentine special vol. 1.bs" size="1048576" crc="0bb960c9" sha1="ca1020f1b2a5339669e36037a8ac3fa25701fd82" offset="0x000000" /> | |
| 2126 | </dataarea> | |
| 2127 | </part> | |
| 2128 | </software> | |
| 2129 | ||
| 2130 | <software name="bspachi4a" cloneof="bspachi4" supported="no"> | |
| 2131 | <description>Let's Pachinko Nante Gindama 4 (Jpn, 1124)</description> | |
| 2132 | <year>199?</year> | |
| 2133 | <publisher><unknown></publisher> | |
| 2134 | <part name="cart" interface="bspack"> | |
| 2135 | ||
| 2136 | <feature name="slot" value="bsmempak" /> | |
| 2137 | <dataarea name="rom" size="1048576"> | |
| 2138 | <rom name="lets pachinko nante gindama 4 (bs) (11-24).bs" size="1048576" crc="aa934596" sha1="5883b8e0e3409f78a1ae1d9e471ef4678cb23b88" offset="0x000000" /> | |
| 2139 | </dataarea> | |
| 2140 | </part> | |
| 2141 | </software> | |
| 2142 | ||
| 2143 | <software name="bspanepna" cloneof="bspanepn" supported="no"> | |
| 2144 | <description>Panel de Pon - Event '98 (Jpn, 1228)</description> | |
| 2145 | <year>199?</year> | |
| 2146 | <publisher><unknown></publisher> | |
| 2147 | <part name="cart" interface="bspack"> | |
| 2148 | ||
| 2149 | <feature name="slot" value="bsmempak" /> | |
| 2150 | <dataarea name="rom" size="1048576"> | |
| 2151 | <rom name="panel de pon '98 event version (bs) (12-28).bs" size="1048576" crc="720a850c" sha1="cfbefc41406679c8bc906da6ed9db16f46c6beff" offset="0x000000" /> | |
| 2152 | </dataarea> | |
| 2153 | </part> | |
| 2154 | </software> | |
| 2155 | ||
| 2156 | <software name="bszelda3a" cloneof="bszelda3" supported="no"> | |
| 2157 | <description>Zelda no Densetsu - Kamigami no Triforce (Jpn, BS, 1130, Locked)</description> | |
| 2158 | <year>199?</year> | |
| 2159 | <publisher><unknown></publisher> | |
| 2160 | <part name="cart" interface="bspack"> | |
| 2161 | ||
| 2162 | <feature name="slot" value="bsmempak" /> | |
| 2163 | <dataarea name="rom" size="1048576"> | |
| 2164 | <rom name="zelda no densetsu - kamigami no triforce (bs) (11-30).bs" size="1048576" crc="97a68e79" sha1="2453d475a26077be0b4c259325e90d2aa0a5a0f8" offset="0x000000" /> | |
| 2165 | </dataarea> | |
| 2166 | </part> | |
| 2167 | </software> | |
| 2168 | ||
| 2169 | <software name="bscuonpaa" cloneof="bscuonpa" supported="no"> | |
| 2170 | <description>Cu-On-Pa SFC (Jpn, BS, 0615)</description> | |
| 2171 | <year>199?</year> | |
| 2172 | <publisher><unknown></publisher> | |
| 2173 | <part name="cart" interface="bspack"> | |
| 2174 | ||
| 2175 | <feature name="slot" value="bsmempak" /> | |
| 2176 | <dataarea name="rom" size="1048576"> | |
| 2177 | <rom name="cu on pa (bs) (6-15).bs" size="1048576" crc="844fc3dc" sha1="f09dc86eccae64e54ab71cd051e9cdcd77edaeac" offset="0x000000" /> | |
| 2178 | </dataarea> | |
| 2179 | </part> | |
| 2180 | </software> | |
| 2181 | ||
| 2182 | <software name="bsfzgp2a" cloneof="bsfzgp2" supported="no"> | |
| 2183 | <description>BS F-Zero Grand Prix 2 - Practice (Jpn, Bad?)</description> | |
| 2184 | <year>199?</year> | |
| 2185 | <publisher><unknown></publisher> | |
| 2186 | <part name="cart" interface="bspack"> | |
| 2187 | ||
| 2188 | <feature name="slot" value="bsmempak" /> | |
| 2189 | <dataarea name="rom" size="1048576"> | |
| 2190 | <rom name="zero2.bs" size="1048576" crc="3d31659d" sha1="ee3aaf2975ab383768ab88cdb7d7beddf64ddc34" offset="0x000000" /> | |
| 2191 | </dataarea> | |
| 2192 | </part> | |
| 2193 | </software> | |
| 2194 | ||
| 2195 | <software name="bsyoshi1" cloneof="bsyoshi" supported="no"> | |
| 2196 | <description>Yoshi no Panepon - BS Ban (Jpn, 0102)</description> | |
| 2197 | <year>199?</year> | |
| 2198 | <publisher><unknown></publisher> | |
| 2199 | <part name="cart" interface="bspack"> | |
| 2200 | ||
| 2201 | <feature name="slot" value="bsmempak" /> | |
| 2202 | <dataarea name="rom" size="1048576"> | |
| 2203 | <rom name="yoshi no panepon - bs ban (bs) (1-2).bs" size="1048576" crc="6775b6ca" sha1="0e13049e2f0e5fd3e65d36bdad790e1312392476" offset="0x000000" /> | |
| 2204 | </dataarea> | |
| 2205 | </part> | |
| 2206 | </software> | |
| 2207 | ||
| 2208 | <software name="bsyoshi2" cloneof="bsyoshi" supported="no"> | |
| 2209 | <description>Yoshi no Panepon - BS Ban (Jpn, 0614)</description> | |
| 2210 | <year>199?</year> | |
| 2211 | <publisher><unknown></publisher> | |
| 2212 | <part name="cart" interface="bspack"> | |
| 2213 | ||
| 2214 | <feature name="slot" value="bsmempak" /> | |
| 2215 | <dataarea name="rom" size="1048576"> | |
| 2216 | <rom name="yoshi no panepon - bs ban (bs) (6-14).bs" size="1048576" crc="2b8deb64" sha1="29cf1a5b24e949e73409c3923549f2963901c971" offset="0x000000" /> | |
| 2217 | </dataarea> | |
| 2218 | </part> | |
| 2219 | </software> | |
| 2220 | ||
| 2221 | <software name="bsyoshi3" cloneof="bsyoshi" supported="no"> | |
| 2222 | <description>Yoshi no Panepon - BS Ban (Jpn, 0705)</description> | |
| 2223 | <year>199?</year> | |
| 2224 | <publisher><unknown></publisher> | |
| 2225 | <part name="cart" interface="bspack"> | |
| 2226 | ||
| 2227 | <feature name="slot" value="bsmempak" /> | |
| 2228 | <dataarea name="rom" size="1048576"> | |
| 2229 | <rom name="yoshi no panepon - bs ban (bs) (7-5).bs" size="1048576" crc="a35f7c27" sha1="f769165fd0ff2f885580f9f61ee55e9a29b1f6ea" offset="0x000000" /> | |
| 2230 | </dataarea> | |
| 2231 | </part> | |
| 2232 | </software> | |
| 2233 | ||
| 2234 | <software name="bssuttv2b" cloneof="bssuttv2" supported="no"> | |
| 2235 | <description>Sutte Hakkun - BS Version 2 (Jpn, 1019)</description> | |
| 2236 | <year>199?</year> | |
| 2237 | <publisher><unknown></publisher> | |
| 2238 | <part name="cart" interface="bspack"> | |
| 2239 | ||
| 2240 | <feature name="slot" value="bsmempak" /> | |
| 2241 | <dataarea name="rom" size="1048576"> | |
| 2242 | <rom name="sutte hakkun - bs version 2 (bs-d) (10-19).bs" size="1048576" crc="a01abfbd" sha1="cb6b47fedc1296bbae53a34a844d30c19d3ab883" offset="0x000000" /> | |
| 2243 | </dataarea> | |
| 2244 | </part> | |
| 2245 | </software> | |
| 2246 | ||
| 2247 | <software name="bssuttv2c" cloneof="bssuttv2" supported="no"> | |
| 2248 | <description>Sutte Hakkun - BS Version 2 (Jpn, 1125)</description> | |
| 2249 | <year>199?</year> | |
| 2250 | <publisher><unknown></publisher> | |
| 2251 | <part name="cart" interface="bspack"> | |
| 2252 | ||
| 2253 | <feature name="slot" value="bsmempak" /> | |
| 2254 | <dataarea name="rom" size="1048576"> | |
| 2255 | <rom name="sutte hakkun - bs version 2 (bs-d) (11-25).bs" size="1048576" crc="c2f2ad15" sha1="f9c3397cb9f047aa3278a6d082276ae080cdd447" offset="0x000000" /> | |
| 2256 | </dataarea> | |
| 2257 | </part> | |
| 2258 | </software> | |
| 2259 | ||
| 2260 | <software name="bskirkuza" cloneof="bskirkuz" supported="no"> | |
| 2261 | <description>Kirby no Omochabako - Hoshi Kuzushi (Jpn, 0226)</description> | |
| 2262 | <year>199?</year> | |
| 2263 | <publisher><unknown></publisher> | |
| 2264 | <part name="cart" interface="bspack"> | |
| 2265 | ||
| 2266 | <feature name="slot" value="bsmempak" /> | |
| 2267 | <dataarea name="rom" size="524288"> | |
| 2268 | <rom name="kirby no omochabako - hoshi kuzushi (bs) (2-26) (!).bs" size="524288" crc="3dbbd86a" sha1="b6cda98a2a6a7a6aa9a64aec7f346039a608b093" offset="0x000000" /> | |
| 2269 | </dataarea> | |
| 2270 | </part> | |
| 2271 | </software> | |
| 2272 | ||
| 2273 | <software name="bsbaku" supported="no"> | |
| 2274 | <description>Bakusho Mondai no Shirikon Chounaikai (Jpn, 0622)</description> | |
| 2275 | <year>199?</year> | |
| 2276 | <publisher><unknown></publisher> | |
| 2277 | <part name="cart" interface="bspack"> | |
| 2278 | ||
| 2279 | <feature name="slot" value="bsmempak" /> | |
| 2280 | <dataarea name="rom" size="1048576"> | |
| 2281 | <rom name="bakusho mondai no shirikon chounaikai 6-22.bs" size="1048576" crc="b86e7ab1" sha1="3cfa8bc8d6ec36e46d7a434b5e5fa835c90bc4f0" offset="0x000000" /> | |
| 2282 | </dataarea> | |
| 2283 | </part> | |
| 2284 | </software> | |
| 2285 | ||
| 2286 | <software name="bsyuki" supported="no"> | |
| 2287 | <description>BS Yuuki Nae no GE-MU no Tsubo (Jpn)</description> | |
| 2288 | <year>199?</year> | |
| 2289 | <publisher><unknown></publisher> | |
| 2290 | <part name="cart" interface="bspack"> | |
| 2291 | ||
| 2292 | <feature name="slot" value="bsmempak" /> | |
| 2293 | <dataarea name="rom" size="524288"> | |
| 2294 | <rom name="bs yuuki nae no ge-mu no tsubo (japan).bs" size="524288" crc="2c889959" sha1="ce70937945e84db5d5e0cf1d9bd622d2c69adff3" offset="0x000000" /> | |
| 2295 | </dataarea> | |
| 2296 | </part> | |
| 2297 | </software> | |
| 2298 | ||
| 2299 | <software name="bsactr" supported="no"> | |
| 2300 | <description>ActRaiser (Jpn, BS)</description> | |
| 2301 | <year>199?</year> | |
| 2302 | <publisher><unknown></publisher> | |
| 2303 | <part name="cart" interface="bspack"> | |
| 2304 | ||
| 2305 | <feature name="slot" value="bsmempak" /> | |
| 2306 | <dataarea name="rom" size="1048576"> | |
| 2307 | <rom name="actraiser (japan).bs" size="1048576" crc="b9a968ff" sha1="1d94b555e3a5a018dabf5fe2ea62ba73c2927a82" offset="0x000000" /> | |
| 2308 | </dataarea> | |
| 2309 | </part> | |
| 2310 | </software> | |
| 2311 | ||
| 2312 | <software name="bspuyo" supported="no"> | |
| 2313 | <description>Puyo Puyo Tsuu BS Ban (Jpn)</description> | |
| 2314 | <year>1995</year> | |
| 2315 | <publisher><unknown></publisher> | |
| 2316 | <part name="cart" interface="bspack"> | |
| 2317 | ||
| 2318 | <feature name="slot" value="bsmempak" /> | |
| 2319 | <dataarea name="rom" size="1048576"> | |
| 2320 | <rom name="puyob.bs" size="1048576" crc="e63ee3b1" sha1="2fa77c709294da3a0ae5a918a574b49302a0bf17" offset="0x000000" /> | |
| 2321 | </dataarea> | |
| 2322 | </part> | |
| 2323 | </software> | |
| 2324 | ||
| 2325 | <software name="bskklown" supported="no"> | |
| 2326 | <description>Kid Klown no Crazy Chase (Jpn, BS)</description> | |
| 2327 | <year>199?</year> | |
| 2328 | <publisher><unknown></publisher> | |
| 2329 | <part name="cart" interface="bspack"> | |
| 2330 | ||
| 2331 | <feature name="slot" value="bsmempak" /> | |
| 2332 | <dataarea name="rom" size="1048576"> | |
| 2333 | <rom name="kid klown no crazy chase.bs" size="1048576" crc="cd6aabee" sha1="b4ef639f09376a7880dcec6f23a03b08c0254b86" offset="0x000000" /> | |
| 2334 | </dataarea> | |
| 2335 | </part> | |
| 2336 | </software> | |
| 2337 | ||
| 2338 | <software name="bsfami" supported="no"> | |
| 2339 | <description>BS Famitsu Magazine Karara Ban 4/27 (Jpn)</description> | |
| 2340 | <year>199?</year> | |
| 2341 | <publisher><unknown></publisher> | |
| 2342 | <part name="cart" interface="bspack"> | |
| 2343 | ||
| 2344 | <feature name="slot" value="bsmempak" /> | |
| 2345 | <dataarea name="rom" size="524288"> | |
| 2346 | <rom name="weekly famitsu express 4-27.bs" size="524288" crc="d8bc7bea" sha1="57c14d389b216b01616caad704a998d7d03dc155" offset="0x000000" /> | |
| 2347 | </dataarea> | |
| 2348 | </part> | |
| 2349 | </software> | |
| 2350 | ||
| 2351 | <software name="bsdoki1" cloneof="bsdoki" supported="no"> | |
| 2352 | <description>Konae-chan no Dokidoki Penguin Kazoku (Jpn, Alt)</description> | |
| 2353 | <!-- same game as the other dump, but taken from a different broadcast in the same week --> | |
| 2354 | <year>199?</year> | |
| 2355 | <publisher><unknown></publisher> | |
| 2356 | <part name="cart" interface="bspack"> | |
| 2357 | ||
| 2358 | <feature name="slot" value="bsmempak" /> | |
| 2359 | <dataarea name="rom" size="262144"> | |
| 2360 | <rom name="bs konae chan no dokidoki pengin kazoku (japan) (alt).bs" size="262144" crc="33cb8a80" sha1="9c2500e5ab9c46cd32a6366fcb3df811888191b4" offset="0x000000" /> | |
| 2361 | </dataarea> | |
| 2362 | </part> | |
| 2363 | </software> | |
| 2364 | ||
| 2365 | <software name="bsjol1" supported="no"> | |
| 2366 | <description>Jewel Of Live (Jpn)</description> | |
| 2367 | <year>199?</year> | |
| 2368 | <publisher><unknown></publisher> | |
| 2369 | <part name="cart" interface="bspack"> | |
| 2370 | ||
| 2371 | <feature name="slot" value="bsmempak" /> | |
| 2372 | <dataarea name="rom" size="1048576"> | |
| 2373 | <rom name="jewel of live (rpg maker super dante).bs" size="1048576" crc="ce6a4d7f" sha1="18b18757c79b48d1472dba53e475edae73e867ae" offset="0x000000" /> | |
| 2374 | </dataarea> | |
| 2375 | </part> | |
| 2376 | </software> | |
| 2377 | ||
| 2378 | <software name="bsstrw12" supported="no"> | |
| 2379 | <description>Media Strawberry Volume 12 (Jpn)</description> | |
| 2380 | <year>199?</year> | |
| 2381 | <publisher><unknown></publisher> | |
| 2382 | <part name="cart" interface="bspack"> | |
| 2383 | ||
| 2384 | <feature name="slot" value="bsmempak" /> | |
| 2385 | <dataarea name="rom" size="524288"> | |
| 2386 | <rom name="media strawberry volume 12.bs" size="524288" crc="0836869e" sha1="a9c248668d9d51633a6da8a4846aea3e25c2d1a3" offset="0x000000" /> | |
| 2387 | </dataarea> | |
| 2388 | </part> | |
| 2389 | </software> | |
| 2390 | ||
| 2391 | <software name="bsdormf" supported="no"> | |
| 2392 | <description>Do-Re-Mi de Faa! Vol. 6 - 5/4 (Jpn)</description> | |
| 2393 | <year>199?</year> | |
| 2394 | <publisher><unknown></publisher> | |
| 2395 | <part name="cart" interface="bspack"> | |
| 2396 | ||
| 2397 | <feature name="slot" value="bsmempak" /> | |
| 2398 | <dataarea name="rom" size="524288"> | |
| 2399 | <rom name="do-re-mi de faa! vol. 6 - 5-4 (japan).bs" size="524288" crc="0849123e" sha1="13beba44f974c4b4139a6303b14c0a5239156a02" offset="0x000000" /> | |
| 2400 | </dataarea> | |
| 2401 | </part> | |
| 2402 | </software> | |
| 2403 | ||
| 2404 | <software name="bsrg97" supported="no"> | |
| 2405 | <description>BS Race Game 97MP (Jpn)</description> | |
| 2406 | <year>199?</year> | |
| 2407 | <publisher><unknown></publisher> | |
| 2408 | <part name="cart" interface="bspack"> | |
| 2409 | ||
| 2410 | <feature name="slot" value="bsmempak" /> | |
| 2411 | <dataarea name="rom" size="1048576"> | |
| 2412 | <rom name="bs race game 97mp (japan) (derby stallion 96?).bs" size="1048576" crc="1c19967c" sha1="9c1dfe24be936943a4b4a7902265942b0b70bf00" offset="0x000000" /> | |
| 2413 | </dataarea> | |
| 2414 | </part> | |
| 2415 | </software> | |
| 2416 | ||
| 2417 | <software name="bssgk4" supported="no"> | |
| 2418 | <description>Same Game Koma Editor 4 (Jpn, Data Pack?)</description> | |
| 2419 | <year>199?</year> | |
| 2420 | <publisher><unknown></publisher> | |
| 2421 | <part name="cart" interface="bspack"> | |
| 2422 | ||
| 2423 | <feature name="slot" value="bsmempak" /> | |
| 2424 | <dataarea name="rom" size="1048576"> | |
| 2425 | <rom name="same game koma editor 4 (data pack)(?).bs" size="1048576" crc="d8479c20" sha1="2160f0034c1474d05937d6fdb5af16f4b06bbc4e" offset="0x000000" /> | |
| 2426 | </dataarea> | |
| 2427 | </part> | |
| 2428 | </software> | |
| 2429 | ||
| 2430 | <software name="bssdgn2" cloneof="bssdgn1" supported="no"> | |
| 2431 | <description>BS SD Gundam G-Next (Jpn, Data?)</description> | |
| 2432 | <year>199?</year> | |
| 2433 | <publisher><unknown></publisher> | |
| 2434 | <part name="cart" interface="bspack"> | |
| 2435 | ||
| 2436 | <feature name="slot" value="bsmempak" /> | |
| 2437 | <dataarea name="rom" size="1048576"> | |
| 2438 | <rom name="sd gundam g-next (japan) (data).bs" size="1048576" crc="a94854ad" sha1="f2ec8f76782656134804b1e97c9f186d26da5d08" offset="0x000000" /> | |
| 2439 | </dataarea> | |
| 2440 | </part> | |
| 2441 | </software> | |
| 2442 | ||
| 2443 | <software name="bssdgn1" supported="no"> | |
| 2444 | <description>BS SD Gundam G-Next (Jpn, Data 0316)</description> | |
| 2445 | <year>199?</year> | |
| 2446 | <publisher><unknown></publisher> | |
| 2447 | <part name="cart" interface="bspack"> | |
| 2448 | ||
| 2449 | <feature name="slot" value="bsmempak" /> | |
| 2450 | <dataarea name="rom" size="1048576"> | |
| 2451 | <rom name="sd gundam g-next data (3-16) (dumped august 2010).bs" size="1048576" crc="2e2ef6c4" sha1="81d2dff2d9e248e00bc7a051e603290f56f20f91" offset="0x000000" /> | |
| 2452 | </dataarea> | |
| 2453 | </part> | |
| 2454 | </software> | |
| 2455 | ||
| 2456 | <software name="bsrpgtsd" supported="no"> | |
| 2457 | <description>BS RPG Tsukuru - Super Dante (Jpn)</description> | |
| 2458 | <year>199?</year> | |
| 2459 | <publisher><unknown></publisher> | |
| 2460 | <info name="alt_title" value="RPGツクールスーパーダンテ" /> | |
| 2461 | <part name="cart" interface="bspack"> | |
| 2462 | ||
| 2463 | <feature name="slot" value="bsmempak" /> | |
| 2464 | <dataarea name="rom" size="1048576"> | |
| 2465 | <rom name="rpg tsukuru - super dante.bs" size="1048576" crc="2e831a4d" sha1="1ea437e679549f76a362619657a0875d25d3a4ef" offset="0x000000" /> | |
| 2466 | </dataarea> | |
| 2467 | <dataarea name="nvram" size="32768"> | |
| 2468 | </dataarea> | |
| 2469 | </part> | |
| 2470 | </software> | |
| 2471 | ||
| 2472 | ||
| 2473 | <software name="bsrpgt1" supported="no"> | |
| 2474 | <description>BS RPG Tsukuru 2 Data</description> | |
| 2475 | <year>199?</year> | |
| 2476 | <publisher><unknown></publisher> | |
| 2477 | <part name="cart" interface="bspack"> | |
| 2478 | ||
| 2479 | <feature name="slot" value="bsmempak" /> | |
| 2480 | <dataarea name="rom" size="1048576"> | |
| 2481 | <rom name="[ikari] rpg tsukuru 2 data (2011-11-17).bs" size="1048576" crc="5561afd6" sha1="f312ff25789507ebbbb6bdc1c74131f91c20145b" offset="0x000000" /> | |
| 2482 | </dataarea> | |
| 2483 | </part> | |
| 2484 | </software> | |
| 2485 | ||
| 2486 | <software name="bsrpgt2" cloneof="bsrpgt1" supported="no"> | |
| 2487 | <description>BS RPG Tsukuru 2 Data (Overwritten Bokujo Data)</description> | |
| 2488 | <year>199?</year> | |
| 2489 | <publisher><unknown></publisher> | |
| 2490 | <part name="cart" interface="bspack"> | |
| 2491 | ||
| 2492 | <feature name="slot" value="bsmempak" /> | |
| 2493 | <dataarea name="rom" size="1048576"> | |
| 2494 | <rom name="rpg tsukuru 2 data (overwritten bokujo data).bs" size="1048576" crc="80ec9cc0" sha1="7ba6b26f0ec5309ed5ee14e1188891b554ca145e" offset="0x000000" /> | |
| 2495 | </dataarea> | |
| 2496 | </part> | |
| 2497 | </software> | |
| 2498 | ||
| 2499 | <software name="bsascii1" supported="no"> | |
| 2500 | <description>BS ASCII Data 1</description> | |
| 2501 | <year>199?</year> | |
| 2502 | <publisher><unknown></publisher> | |
| 2503 | <part name="cart" interface="bspack"> | |
| 2504 | ||
| 2505 | <feature name="slot" value="bsmempak" /> | |
| 2506 | <dataarea name="rom" size="1048576"> | |
| 2507 | <rom name="ascii data 1.bs" size="1048576" crc="148955f9" sha1="01fbab2a57d5e9ef9abc85202c3ef75031bd17ad" offset="0x000000" /> | |
| 2508 | </dataarea> | |
| 2509 | </part> | |
| 2510 | </software> | |
| 2511 | ||
| 2512 | <software name="bsascii2" cloneof="bsascii1" supported="no"> | |
| 2513 | <description>BS ASCII Data 2</description> | |
| 2514 | <year>199?</year> | |
| 2515 | <publisher><unknown></publisher> | |
| 2516 | <part name="cart" interface="bspack"> | |
| 2517 | ||
| 2518 | <feature name="slot" value="bsmempak" /> | |
| 2519 | <dataarea name="rom" size="1048576"> | |
| 2520 | <rom name="ascii data 2.bs" size="1048576" crc="bf7d57b0" sha1="f4064a38723bcd4999ff92c8202b3cc9ce3d8d03" offset="0x000000" /> | |
| 2521 | </dataarea> | |
| 2522 | </part> | |
| 2523 | </software> | |
| 2524 | ||
| 2525 | <software name="bsascii3" cloneof="bsascii1" supported="no"> | |
| 2526 | <description>BS ASCII Data 3</description> | |
| 2527 | <year>199?</year> | |
| 2528 | <publisher><unknown></publisher> | |
| 2529 | <part name="cart" interface="bspack"> | |
| 2530 | ||
| 2531 | <feature name="slot" value="bsmempak" /> | |
| 2532 | <dataarea name="rom" size="1048576"> | |
| 2533 | <rom name="ascii data 3.bs" size="1048576" crc="2ab43134" sha1="885c80f0e8582e6ae62bcc42ec6249f50c5b56da" offset="0x000000" /> | |
| 2534 | </dataarea> | |
| 2535 | </part> | |
| 2536 | </software> | |
| 2537 | ||
| 2538 | <software name="bsmachi" supported="no"> | |
| 2539 | <description>Machi Magazine</description> | |
| 2540 | <year>1995?</year> | |
| 2541 | <publisher><unknown></publisher> | |
| 2542 | <part name="cart" interface="bspack"> | |
| 2543 | ||
| 2544 | <feature name="slot" value="bsmempak" /> | |
| 2545 | <dataarea name="rom" size="1048576"> | |
| 2546 | <rom name="machi magazine (d).bs" size="1048576" crc="0e6c76e6" sha1="ca291cb350f69660ebc054906d05408ffef75b8d" offset="0x000000" /> | |
| 2547 | </dataarea> | |
| 2548 | </part> | |
| 2549 | </software> | |
| 2550 | ||
| 2551 | <software name="bsmachih" cloneof="bsmachi" supported="no"> | |
| 2552 | <description>Machi Magazine (Hacked)</description> | |
| 2553 | <year>1995?</year> | |
| 2554 | <publisher><unknown></publisher> | |
| 2555 | <part name="cart" interface="bspack"> | |
| 2556 | ||
| 2557 | <feature name="slot" value="bsmempak" /> | |
| 2558 | <dataarea name="rom" size="262144"> | |
| 2559 | <rom name="machi magazine (header fix prepatched).bs" size="262144" crc="eda14445" sha1="f351b8593e587e7a264dd60cdf3713598289f5b5" offset="0x000000" /> | |
| 2560 | </dataarea> | |
| 2561 | </part> | |
| 2562 | </software> | |
| 2563 | ||
| 2564 | <software name="bswaiwaia" cloneof="bswaiwai" supported="no"> | |
| 2565 | <description>WaiWai Check 3-21 Saihousou + WaiWai Kids 3-16</description> | |
| 2566 | <year>199?</year> | |
| 2567 | <publisher><unknown></publisher> | |
| 2568 | <part name="cart" interface="bspack"> | |
| 2569 | ||
| 2570 | <feature name="slot" value="bsmempak" /> | |
| 2571 | <dataarea name="rom" size="1048576"> | |
| 2572 | <rom name="waiwai check 3-21 saihousou + waiwai kids 3-16.bs" size="1048576" crc="17239e91" sha1="fe67f40912e7c4d290eeb175a2bd2122bfa3ae8c" offset="0x000000" /> | |
| 2573 | </dataarea> | |
| 2574 | </part> | |
| 2575 | </software> | |
| 2576 | ||
| 2577 | <!-- Find out what next BS images are... --> | |
| 2578 | <software name="bskan3" supported="no"> | |
| 2579 | <description>Kanaderu Convert 3 (Jpn)</description> | |
| 2580 | <year>199?</year> | |
| 2581 | <publisher><unknown></publisher> | |
| 2582 | <part name="cart" interface="bspack"> | |
| 2583 | ||
| 2584 | <feature name="slot" value="bsmempak" /> | |
| 2585 | <dataarea name="rom" size="1048576"> | |
| 2586 | <rom name="kandu convert3.bs" size="1048576" crc="cf34fc63" sha1="7dd73150a5426aa1a3db202b3348069e064a09ea" offset="0x000000" /> | |
| 2587 | </dataarea> | |
| 2588 | </part> | |
| 2589 | </software> | |
| 2590 | ||
| 2591 | <software name="bskan3c" supported="no"> | |
| 2592 | <description>Kanaderu Convert 3c (Jpn)</description> | |
| 2593 | <year>199?</year> | |
| 2594 | <publisher><unknown></publisher> | |
| 2595 | <part name="cart" interface="bspack"> | |
| 2596 | ||
| 2597 | <feature name="slot" value="bsmempak" /> | |
| 2598 | <dataarea name="rom" size="1048576"> | |
| 2599 | <rom name="kandu convert3c.bs" size="65536" crc="942960c2" sha1="ed482b950224dac0a0e60c267da23fbfe651da36" offset="0x000000" /> | |
| 2600 | </dataarea> | |
| 2601 | </part> | |
| 2602 | </software> | |
| 2603 | ||
| 2604 | <software name="bskan4" supported="no"> | |
| 2605 | <description>Kanaderu Convert 4 (Jpn)</description> | |
| 2606 | <year>199?</year> | |
| 2607 | <publisher><unknown></publisher> | |
| 2608 | <part name="cart" interface="bspack"> | |
| 2609 | ||
| 2610 | <feature name="slot" value="bsmempak" /> | |
| 2611 | <dataarea name="rom" size="1048576"> | |
| 2612 | <rom name="kandu convert4.bs" size="1048576" crc="f4320a56" sha1="472b55f33a1765c6295466365de052caa7d870c8" offset="0x000000" /> | |
| 2613 | </dataarea> | |
| 2614 | </part> | |
| 2615 | </software> | |
| 2616 | ||
| 2617 | <software name="bskanrpg" supported="no"> | |
| 2618 | <description>Kanaderu Convert RPG Maker Data (Jpn)</description> | |
| 2619 | <year>199?</year> | |
| 2620 | <publisher><unknown></publisher> | |
| 2621 | <part name="cart" interface="bspack"> | |
| 2622 | ||
| 2623 | <feature name="slot" value="bsmempak" /> | |
| 2624 | <dataarea name="rom" size="1048576"> | |
| 2625 | <rom name="kandu convert rpg maker data.bs" size="1048576" crc="654657c0" sha1="4b945ba2602791a155511bcacc1eff8c88166991" offset="0x000000" /> | |
| 2626 | </dataarea> | |
| 2627 | </part> | |
| 2628 | </software> | |
| 2629 | ||
| 2630 | <software name="bssnt4" supported="no"> | |
| 2631 | <description>Sound Novel Tsukuru 4 (Jpn)</description> | |
| 2632 | <year>199?</year> | |
| 2633 | <publisher><unknown></publisher> | |
| 2634 | <part name="cart" interface="bspack"> | |
| 2635 | ||
| 2636 | <feature name="slot" value="bsmempak" /> | |
| 2637 | <dataarea name="rom" size="1048576"> | |
| 2638 | <rom name="sound novel 4.bs" size="1048576" crc="97539bca" sha1="09b7c79431a115109322242eca9ccdefb88a37a3" offset="0x000000" /> | |
| 2639 | </dataarea> | |
| 2640 | </part> | |
| 2641 | </software> | |
| 2642 | ||
| 2643 | <software name="bssnt4h" supported="no"> | |
| 2644 | <description>Sound Novel Tsukuru 4h (Jpn)</description> | |
| 2645 | <year>199?</year> | |
| 2646 | <publisher><unknown></publisher> | |
| 2647 | <part name="cart" interface="bspack"> | |
| 2648 | ||
| 2649 | <feature name="slot" value="bsmempak" /> | |
| 2650 | <dataarea name="rom" size="1048576"> | |
| 2651 | <rom name="sound novel 4h.bs" size="131072" crc="be335a19" sha1="23ccbb01a99f90527bc5c20345d1a5ea969ac044" offset="0x000000" /> | |
| 2652 | </dataarea> | |
| 2653 | </part> | |
| 2654 | </software> | |
| 2655 | ||
| 2656 | <software name="bssbm"> | |
| 2657 | <description>Sonic Blast Man (Jpn, BS)</description> | |
| 2658 | <year>199?</year> | |
| 2659 | <publisher><unknown></publisher> | |
| 2660 | <part name="cart" interface="bspack"> | |
| 2661 | ||
| 2662 | <feature name="slot" value="lorom" /> | |
| 2663 | <dataarea name="rom" size="1048576"> | |
| 2664 | <rom name="sonic blastman (bs).bs" size="1048576" crc="86bb53e5" sha1="e8411f5e0ea2b2922416710c9b463023fe1e5f39" offset="0x000000" /> | |
| 2665 | </dataarea> | |
| 2666 | </part> | |
| 2667 | </software> | |
| 2668 | ||
| 2669 | <software name="tablgmbs"> | |
| 2670 | <description>Table Game Daishuugou!! (Jpn, BS)</description> | |
| 2671 | <year>199?</year> | |
| 2672 | <publisher><unknown></publisher> | |
| 2673 | <part name="cart" interface="bspack"> | |
| 2674 | ||
| 2675 | <feature name="slot" value="hirom" /> | |
| 2676 | <dataarea name="rom" size="1048576"> | |
| 2677 | <rom name="table game daisyugo (bs).bs" size="1048576" crc="47e3047e" sha1="00ddbd9471f9b22b927a2361c672d7e4081fb69d" offset="0x000000" /> | |
| 2678 | </dataarea> | |
| 2679 | </part> | |
| 2680 | </software> | |
| 2681 | ||
| 2682 | <software name="bsshangha" cloneof="bsshangh" supported="no"> | |
| 2683 | <description>Shanghai - Banri no Choujou (Jpn, BS, Alt)</description> | |
| 2684 | <year>199?</year> | |
| 2685 | <publisher><unknown></publisher> | |
| 2686 | <part name="cart" interface="bspack"> | |
| 2687 | ||
| 2688 | <feature name="slot" value="bsmempak" /> | |
| 2689 | <dataarea name="rom" size="1048576"> | |
| 2690 | <rom name="shanghai - banri no choujou (bs).bs" size="1048576" crc="5c95f21c" sha1="82a238519f92dc3174dd3226a1243c69d7f03528" offset="0x000000" /> | |
| 2691 | </dataarea> | |
| 2692 | </part> | |
| 2693 | </software> | |
| 2694 | ||
| 2695 | <software name="bsgalb5" supported="no"> | |
| 2696 | <description>Gal Kan Bazooka Dai-5-Kan (Jpn)</description> | |
| 2697 | <year>199?</year> | |
| 2698 | <publisher><unknown></publisher> | |
| 2699 | <part name="cart" interface="bspack"> | |
| 2700 | ||
| 2701 | <feature name="slot" value="bsmempak" /> | |
| 2702 | <dataarea name="rom" size="1048576"> | |
| 2703 | <rom name="gal kan bazooka dai-5-kan.bs" size="1048576" crc="38762b6b" sha1="382154ea2304618a2f61f57b022ec6c65617348d" offset="0x000000" /> | |
| 2704 | </dataarea> | |
| 2705 | </part> | |
| 2706 | </software> | |
| 2707 | ||
| 2708 | <software name="bssates4" supported="no"> | |
| 2709 | <description>Satesupo DX Dai-4-Gou (Jpn)</description> | |
| 2710 | <year>199?</year> | |
| 2711 | <publisher><unknown></publisher> | |
| 2712 | <part name="cart" interface="bspack"> | |
| 2713 | ||
| 2714 | <feature name="slot" value="bsmempak" /> | |
| 2715 | <dataarea name="rom" size="1048576"> | |
| 2716 | <rom name="satesupo dx dai-4-gou.bs" size="1048576" crc="8ada2ba7" sha1="6923096cc33296af8e7ce7978457e39a36035fee" offset="0x000000" /> | |
| 2717 | </dataarea> | |
| 2718 | </part> | |
| 2719 | </software> | |
| 2720 | ||
| 2721 | <software name="bsdezamn" supported="no"> | |
| 2722 | <description>Dezaemon BSX Version - BS-X Shooting (Jpn)</description> | |
| 2723 | <year>199?</year> | |
| 2724 | <publisher><unknown></publisher> | |
| 2725 | <part name="cart" interface="bspack"> | |
| 2726 | ||
| 2727 | <feature name="slot" value="bsmempak" /> | |
| 2728 | <dataarea name="rom" size="1048576"> | |
| 2729 | <rom name="dezaemon bsx version - bs-x shooting.bs" size="1048576" crc="5a9be5a8" sha1="e52d59e800c17c678711a681d3308f0804c238e0" offset="0x000000" /> | |
| 2730 | </dataarea> | |
| 2731 | </part> | |
| 2732 | </software> | |
| 2733 | ||
| 2734 | <software name="shubibi0a" cloneof="shubibi0" supported="no"> | |
| 2735 | <description>Kaizou Choujin Shubibinman Zero (Jpn, Locked)</description> | |
| 2736 | <year>199?</year> | |
| 2737 | <publisher><unknown></publisher> | |
| 2738 | <part name="cart" interface="bspack"> | |
| 2739 | ||
| 2740 | <feature name="slot" value="bsmempak" /> | |
| 2741 | <dataarea name="rom" size="1048576"> | |
| 2742 | <rom name="kaizou choujin shubibinman zero (l).bs" size="1048576" crc="26a4f6c3" sha1="dd084021a7e2afd939fee3b6426778f6e5c2f333" offset="0x000000" /> | |
| 2743 | </dataarea> | |
| 2744 | </part> | |
| 2745 | </software> | |
| 2746 | ||
| 2747 | <software name="bsbomb" supported="no"> | |
| 2748 | <description>Super Bomberman (Jpn, BS, Locked)</description> | |
| 2749 | <year>199?</year> | |
| 2750 | <publisher><unknown></publisher> | |
| 2751 | <part name="cart" interface="bspack"> | |
| 2752 | ||
| 2753 | <feature name="slot" value="bsmempak" /> | |
| 2754 | <dataarea name="rom" size="1048576"> | |
| 2755 | <rom name="super bomberman.bs" size="1048576" crc="9ea79162" sha1="1dcea52ea7e358c9d8b628b6f7f352c8e96daa61" offset="0x000000" /> | |
| 2756 | </dataarea> | |
| 2757 | </part> | |
| 2758 | </software> | |
| 2759 | ||
| 2760 | <software name="bsbtour4" supported="no"> | |
| 2761 | <description>Bass Tournament 4 (Jpn, BS, Incomplete Data)</description> | |
| 2762 | <year>199?</year> | |
| 2763 | <publisher><unknown></publisher> | |
| 2764 | <part name="cart" interface="bspack"> | |
| 2765 | ||
| 2766 | <feature name="slot" value="bsmempak" /> | |
| 2767 | <dataarea name="rom" size="1048576"> | |
| 2768 | <rom name="bass tournament 4 (incomplete).bs" size="1048576" crc="ccefbd30" sha1="413ee71e3301a958c6998f907460ec95cd20b666" offset="0x000000" status="baddump" /> | |
| 2769 | </dataarea> | |
| 2770 | </part> | |
| 2771 | </software> | |
| 2772 | ||
| 2773 | <software name="bsmonop2" supported="no"> | |
| 2774 | <description>BS Monopoly Red Cup (Jpn)</description> | |
| 2775 | <year>199?</year> | |
| 2776 | <publisher><unknown></publisher> | |
| 2777 | <part name="cart" interface="bspack"> | |
| 2778 | ||
| 2779 | <feature name="slot" value="bsmempak" /> | |
| 2780 | <dataarea name="rom" size="1048576"> | |
| 2781 | <rom name="monopoly 2 bs - red cup.bs" size="1048576" crc="9b0a441c" sha1="9ee4160c3d6ffb0e5e3889dc442e9d3263a11c1e" offset="0x000000" status="baddump" /> | |
| 2782 | </dataarea> | |
| 2783 | </part> | |
| 2784 | </software> | |
| 2785 | ||
| 2786 | <software name="bsmonop3" supported="no"> | |
| 2787 | <description>BS Monopoly Yellow Cup (Jpn)</description> | |
| 2788 | <year>199?</year> | |
| 2789 | <publisher><unknown></publisher> | |
| 2790 | <part name="cart" interface="bspack"> | |
| 2791 | ||
| 2792 | <feature name="slot" value="bsmempak" /> | |
| 2793 | <dataarea name="rom" size="1048576"> | |
| 2794 | <rom name="monopoly 2 bs - yellow cup.bs" size="1048576" crc="ed1108b5" sha1="11616e85ec1d7b3c31272f2076e56dfc97e4f3e4" offset="0x000000" status="baddump" /> | |
| 2795 | </dataarea> | |
| 2796 | </part> | |
| 2797 | </software> | |
| 2798 | ||
| 2799 | <software name="bslemmin" supported="no"> | |
| 2800 | <description>Lemmings (Jpn, BS)</description> | |
| 2801 | <year>199?</year> | |
| 2802 | <publisher><unknown></publisher> | |
| 2803 | <part name="cart" interface="bspack"> | |
| 2804 | ||
| 2805 | <feature name="slot" value="bsmempak" /> | |
| 2806 | <dataarea name="rom" size="1048576"> | |
| 2807 | <rom name="lemmings (bs).bs" size="1048576" crc="25e19b04" sha1="16d31b379d3aa212b9b0d2235b41e85c35aad7bc" offset="0x000000" status="baddump" /> | |
| 2808 | </dataarea> | |
| 2809 | </part> | |
| 2810 | </software> | |
| 2811 | ||
| 2812 | <software name="bsdokap4" supported="no"> | |
| 2813 | <description>Kessen! Dokapon Oukoku IV - Densetsu no Yuusha-tachi (Jpn, BS)</description> | |
| 2814 | <year>199?</year> | |
| 2815 | <publisher><unknown></publisher> | |
| 2816 | <part name="cart" interface="bspack"> | |
| 2817 | ||
| 2818 | <feature name="slot" value="bsmempak" /> | |
| 2819 | <dataarea name="rom" size="1048576"> | |
| 2820 | <rom name="kessen! dokapon oukoku iv - densetsu no yuusha-tachi (bs).bs" size="1048576" crc="e6a2e0d8" sha1="a40d9dedeff858fca2a549fadb2cbe7f0a84fc44" offset="0x000000" status="baddump" /> | |
| 2821 | </dataarea> | |
| 2822 | </part> | |
| 2823 | </software> | |
| 2824 | ||
| 2825 | <software name="bsmaria" supported="no"> | |
| 2826 | <description>Maria - Part 1 (Jpn, BS)</description> | |
| 2827 | <year>199?</year> | |
| 2828 | <publisher><unknown></publisher> | |
| 2829 | <part name="cart" interface="bspack"> | |
| 2830 | ||
| 2831 | <feature name="slot" value="bsmempak" /> | |
| 2832 | <dataarea name="rom" size="1048576"> | |
| 2833 | <rom name="maria - part 1 (bs).bs" size="1048576" crc="c406562f" sha1="52eadd827bdba497bc2b0dc10ccfec4abebc8c0f" offset="0x000000" status="baddump" /> | |
| 2834 | </dataarea> | |
| 2835 | </part> | |
| 2836 | </software> | |
| 2837 | ||
| 2838 | <software name="bsssold" supported="no"> | |
| 2839 | <description>Star Soldier - 2 Minute (Jpn, BS)</description> | |
| 2840 | <year>199?</year> | |
| 2841 | <publisher><unknown></publisher> | |
| 2842 | <part name="cart" interface="bspack"> | |
| 2843 | ||
| 2844 | <feature name="slot" value="bsmempak" /> | |
| 2845 | <dataarea name="rom" size="1048576"> | |
| 2846 | <rom name="star soldier 2mins (b).bs" size="1048576" crc="c79c1b8d" sha1="fd81383fbf4fee2cb528e2336c346112f44933c9" offset="0x000000" status="baddump" /> | |
| 2847 | </dataarea> | |
| 2848 | </part> | |
| 2849 | </software> | |
| 2850 | ||
| 2851 | <software name="bsswalk2" supported="no"> | |
| 2852 | <description>BS Satellawalker 2 Dai-ichi-wa (Jpn)</description> | |
| 2853 | <year>199?</year> | |
| 2854 | <publisher><unknown></publisher> | |
| 2855 | <part name="cart" interface="bspack"> | |
| 2856 | ||
| 2857 | <feature name="slot" value="bsmempak" /> | |
| 2858 | <dataarea name="rom" size="1048576"> | |
| 2859 | <rom name="satella2_1.bs" size="1048576" crc="5ea2b6bb" sha1="3a46898cdbbb414bc6462effd4419a2a471be807" offset="0x000000" status="baddump" /> | |
| 2860 | </dataarea> | |
| 2861 | </part> | |
| 2862 | </software> | |
| 2863 | ||
| 2864 | <software name="bscasin2" supported="no"> | |
| 2865 | <!-- this was dumped from a memory pack containing data for both games. --> | |
| 2866 | <description>Kouryaku Casino Bar - Suiyoubi & Kinyoubi (Jpn, BS)</description> | |
| 2867 | <year>199?</year> | |
| 2868 | <publisher><unknown></publisher> | |
| 2869 | <part name="cart" interface="bspack"> | |
| 2870 | ||
| 2871 | <feature name="slot" value="bsmempak" /> | |
| 2872 | <dataarea name="rom" size="1048576"> | |
| 2873 | <rom name="kouryaku casino bar double pack.bs" size="1048576" crc="390c560f" sha1="ede3dfe2d30452644c75c8648a95b539def19fd2" offset="0x000000" status="baddump" /> | |
| 2874 | </dataarea> | |
| 2875 | </part> | |
| 2876 | </software> | |
| 2877 | ||
| 2878 | ||
| 2879 | <!-- BS Unknow packs, to be sorted out once we emulate this properly! --> | |
| 2880 | ||
| 2881 | <!-- This pack returns a 'Error 41' message on a real unit, and it does not work further --> | |
| 2882 | <software name="bsunk01" supported="no"> | |
| 2883 | <description>BS Unknown Memory Pack 01 (Jpn)</description> | |
| 2884 | <year>199?</year> | |
| 2885 | <publisher><unknown></publisher> | |
| 2886 | <part name="cart" interface="bspack"> | |
| 2887 | ||
| 2888 | <feature name="slot" value="bsmempak" /> | |
| 2889 | <dataarea name="rom" size="1048576"> | |
| 2890 | <rom name="asdf.bs" size="1048576" crc="ff0bab5d" sha1="98106965b02c41f1be7289acb408581de3d82a52" offset="0x000000" /> | |
| 2891 | </dataarea> | |
| 2892 | </part> | |
| 2893 | </software> | |
| 2894 | ||
| 2895 | <!-- These packs were released as an "Assorted set of data packs, which seem to be RPG Tsukuru and Sound Novel Tsukuru data" --> | |
| 2896 | <software name="bsunk02" supported="no"> | |
| 2897 | <description>BS Unknown Memory Pack 02 (Jpn, ASCII MUSIC TOOL1995.11.02 V1.0)</description> | |
| 2898 | <year>199?</year> | |
| 2899 | <publisher><unknown></publisher> | |
| 2900 | <part name="cart" interface="bspack"> | |
| 2901 | ||
| 2902 | <feature name="slot" value="bsmempak" /> | |
| 2903 | <dataarea name="rom" size="65536"> | |
| 2904 | <rom name="ascii music tool1995.11.02 v1.0.bs" size="65536" crc="ee250acb" sha1="9cabc99c9c5bbbe192d401127ddb69dc14fcf35a" offset="0x000000" /> | |
| 2905 | </dataarea> | |
| 2906 | </part> | |
| 2907 | </software> | |
| 2908 | ||
| 2909 | <software name="bsunk03" supported="no"> | |
| 2910 | <description>BS Unknown Memory Pack 03 (Jpn, KANADERU CONVERT 1)</description> | |
| 2911 | <year>199?</year> | |
| 2912 | <publisher><unknown></publisher> | |
| 2913 | <part name="cart" interface="bspack"> | |
| 2914 | ||
| 2915 | <feature name="slot" value="bsmempak" /> | |
| 2916 | <dataarea name="rom" size="262144"> | |
| 2917 | <rom name="kanaderu convert 1.bs" size="262144" crc="0fe1b6a4" sha1="ae04f366ffa9bc5409b9231023f3049c50255a0b" offset="0x000000" /> | |
| 2918 | </dataarea> | |
| 2919 | </part> | |
| 2920 | </software> | |
| 2921 | ||
| 2922 | <software name="bsunk04" supported="no"> | |
| 2923 | <description>BS Unknown Memory Pack 04 (Jpn, KANADERU CONVERT 2)</description> | |
| 2924 | <year>199?</year> | |
| 2925 | <publisher><unknown></publisher> | |
| 2926 | <part name="cart" interface="bspack"> | |
| 2927 | ||
| 2928 | <feature name="slot" value="bsmempak" /> | |
| 2929 | <dataarea name="rom" size="131072"> | |
| 2930 | <rom name="kanaderu convert 2.bs" size="131072" crc="4a5ffa76" sha1="5a0e2b4f6dd5ccb2c4bcfa51bfacf905da0d6bd4" offset="0x000000" /> | |
| 2931 | </dataarea> | |
| 2932 | </part> | |
| 2933 | </software> | |
| 2934 | ||
| 2935 | <software name="bsunk05" supported="no"> | |
| 2936 | <description>BS Unknown Memory Pack 05 (Jpn, KANADERU CONVERT 5)</description> | |
| 2937 | <year>199?</year> | |
| 2938 | <publisher><unknown></publisher> | |
| 2939 | <part name="cart" interface="bspack"> | |
| 2940 | ||
| 2941 | <feature name="slot" value="bsmempak" /> | |
| 2942 | <dataarea name="rom" size="262144"> | |
| 2943 | <rom name="kanaderu convert 5.bs" size="262144" crc="a502aa9d" sha1="39b41cac1bd60f276cafb719939917129260a82d" offset="0x000000" /> | |
| 2944 | </dataarea> | |
| 2945 | </part> | |
| 2946 | </software> | |
| 2947 | ||
| 2948 | <software name="bsunk06" supported="no"> | |
| 2949 | <description>BS Unknown Memory Pack 06 (Jpn, RPG DATA 01)</description> | |
| 2950 | <year>199?</year> | |
| 2951 | <publisher><unknown></publisher> | |
| 2952 | <part name="cart" interface="bspack"> | |
| 2953 | ||
| 2954 | <feature name="slot" value="bsmempak" /> | |
| 2955 | <dataarea name="rom" size="131072"> | |
| 2956 | <rom name="rpg data 01.bs" size="131072" crc="7c9a8066" sha1="e40b2712aae8e9a7bd5f99873ef9f3a0821e79cd" offset="0x000000" /> | |
| 2957 | </dataarea> | |
| 2958 | </part> | |
| 2959 | </software> | |
| 2960 | ||
| 2961 | <software name="bsunk07" supported="no"> | |
| 2962 | <description>BS Unknown Memory Pack 07 (Jpn, RPG DATA 01 a)</description> | |
| 2963 | <year>199?</year> | |
| 2964 | <publisher><unknown></publisher> | |
| 2965 | <part name="cart" interface="bspack"> | |
| 2966 | ||
| 2967 | <feature name="slot" value="bsmempak" /> | |
| 2968 | <dataarea name="rom" size="131072"> | |
| 2969 | <rom name="rpg data 01 a.bs" size="131072" crc="dcfeef74" sha1="d9ec72de332e90fe794d9d53f5c7ece7e55ff281" offset="0x000000" /> | |
| 2970 | </dataarea> | |
| 2971 | </part> | |
| 2972 | </software> | |
| 2973 | ||
| 2974 | <software name="bsunk08" supported="no"> | |
| 2975 | <description>BS Unknown Memory Pack 08 (Jpn, RPG DATA 02)</description> | |
| 2976 | <year>199?</year> | |
| 2977 | <publisher><unknown></publisher> | |
| 2978 | <part name="cart" interface="bspack"> | |
| 2979 | ||
| 2980 | <feature name="slot" value="bsmempak" /> | |
| 2981 | <dataarea name="rom" size="262144"> | |
| 2982 | <rom name="rpg data 02.bs" size="262144" crc="0cdc896b" sha1="9242f1cd7d2b08457ad2a434180bc54ce113f4d2" offset="0x000000" /> | |
| 2983 | </dataarea> | |
| 2984 | </part> | |
| 2985 | </software> | |
| 2986 | ||
| 2987 | <software name="bsunk09" supported="no"> | |
| 2988 | <description>BS Unknown Memory Pack 09 (Jpn, RPG DATA 02 b)</description> | |
| 2989 | <year>199?</year> | |
| 2990 | <publisher><unknown></publisher> | |
| 2991 | <part name="cart" interface="bspack"> | |
| 2992 | ||
| 2993 | <feature name="slot" value="bsmempak" /> | |
| 2994 | <dataarea name="rom" size="131072"> | |
| 2995 | <rom name="rpg data 02 b.bs" size="131072" crc="b5abf7d5" sha1="ba7f004a07fed15521cacb980bcdd36dae9ae21a" offset="0x000000" /> | |
| 2996 | </dataarea> | |
| 2997 | </part> | |
| 2998 | </software> | |
| 2999 | ||
| 3000 | <software name="bsunk10" supported="no"> | |
| 3001 | <description>BS Unknown Memory Pack 10 (Jpn, RPG DATA 03 Judas Priest)</description> | |
| 3002 | <year>199?</year> | |
| 3003 | <publisher><unknown></publisher> | |
| 3004 | <part name="cart" interface="bspack"> | |
| 3005 | ||
| 3006 | <feature name="slot" value="bsmempak" /> | |
| 3007 | <dataarea name="rom" size="131072"> | |
| 3008 | <rom name="rpg data 03 judas priest.bs" size="131072" crc="a00a6450" sha1="5c1dc43900c76042db10d49a1e3ae6a8dc8f7672" offset="0x000000" /> | |
| 3009 | </dataarea> | |
| 3010 | </part> | |
| 3011 | </software> | |
| 3012 | ||
| 3013 | <software name="bsunk11" supported="no"> | |
| 3014 | <description>BS Unknown Memory Pack 11 (Jpn, SOUND NOVEL 1)</description> | |
| 3015 | <year>199?</year> | |
| 3016 | <publisher><unknown></publisher> | |
| 3017 | <part name="cart" interface="bspack"> | |
| 3018 | ||
| 3019 | <feature name="slot" value="bsmempak" /> | |
| 3020 | <dataarea name="rom" size="131072"> | |
| 3021 | <rom name="sound novel 1.bs" size="131072" crc="cab837e0" sha1="2254ac8d4c919ade22eadae630b1b82c228a2c82" offset="0x000000" /> | |
| 3022 | </dataarea> | |
| 3023 | </part> | |
| 3024 | </software> | |
| 3025 | ||
| 3026 | <software name="bsunk12" supported="no"> | |
| 3027 | <description>BS Unknown Memory Pack 12 (Jpn, SOUND NOVEL 1 a)</description> | |
| 3028 | <year>199?</year> | |
| 3029 | <publisher><unknown></publisher> | |
| 3030 | <part name="cart" interface="bspack"> | |
| 3031 | ||
| 3032 | <feature name="slot" value="bsmempak" /> | |
| 3033 | <dataarea name="rom" size="131072"> | |
| 3034 | <rom name="sound novel 1 a.bs" size="131072" crc="c7657cd1" sha1="106843f2528869b75918156f5079353236e5278d" offset="0x000000" /> | |
| 3035 | </dataarea> | |
| 3036 | </part> | |
| 3037 | </software> | |
| 3038 | ||
| 3039 | <software name="bsunk13" supported="no"> | |
| 3040 | <description>BS Unknown Memory Pack 13 (Jpn, SOUND NOVEL 2)</description> | |
| 3041 | <year>199?</year> | |
| 3042 | <publisher><unknown></publisher> | |
| 3043 | <part name="cart" interface="bspack"> | |
| 3044 | ||
| 3045 | <feature name="slot" value="bsmempak" /> | |
| 3046 | <dataarea name="rom" size="131072"> | |
| 3047 | <rom name="sound novel 2.bs" size="131072" crc="05f3faef" sha1="6162f262c25f3a45f07297db6eb3f08dd11ed8e1" offset="0x000000" /> | |
| 3048 | </dataarea> | |
| 3049 | </part> | |
| 3050 | </software> | |
| 3051 | ||
| 3052 | <software name="bsunk14" supported="no"> | |
| 3053 | <description>BS Unknown Memory Pack 14 (Jpn, SOUND NOVEL 3)</description> | |
| 3054 | <year>199?</year> | |
| 3055 | <publisher><unknown></publisher> | |
| 3056 | <part name="cart" interface="bspack"> | |
| 3057 | ||
| 3058 | <feature name="slot" value="bsmempak" /> | |
| 3059 | <dataarea name="rom" size="131072"> | |
| 3060 | <rom name="sound novel 3.bs" size="131072" crc="c1bc6475" sha1="cb675b6f9df9917cce34ce59d2d645d48d50c188" offset="0x000000" /> | |
| 3061 | </dataarea> | |
| 3062 | </part> | |
| 3063 | </software> | |
| 3064 | ||
| 3065 | <software name="bsunk15" supported="no"> | |
| 3066 | <description>BS Unknown Memory Pack 15 (Jpn, SOUND NOVEL 3 a)</description> | |
| 3067 | <year>199?</year> | |
| 3068 | <publisher><unknown></publisher> | |
| 3069 | <part name="cart" interface="bspack"> | |
| 3070 | ||
| 3071 | <feature name="slot" value="bsmempak" /> | |
| 3072 | <dataarea name="rom" size="131072"> | |
| 3073 | <rom name="sound novel 3 a.bs" size="131072" crc="93516da4" sha1="3ba52325c030b629cd9773a707b83f515600add9" offset="0x000000" /> | |
| 3074 | </dataarea> | |
| 3075 | </part> | |
| 3076 | </software> | |
| 3077 | ||
| 3078 | <software name="bsunk16" supported="no"> | |
| 3079 | <description>BS Unknown Memory Pack 16 (Jpn, SOUND NOVEL 4)</description> | |
| 3080 | <year>199?</year> | |
| 3081 | <publisher><unknown></publisher> | |
| 3082 | <part name="cart" interface="bspack"> | |
| 3083 | ||
| 3084 | <feature name="slot" value="bsmempak" /> | |
| 3085 | <dataarea name="rom" size="131072"> | |
| 3086 | <rom name="sound novel 4.bs" size="131072" crc="4f823052" sha1="5478c8f3e84b5ee0680a99435288f1e4311982a4" offset="0x000000" /> | |
| 3087 | </dataarea> | |
| 3088 | </part> | |
| 3089 | </software> | |
| 3090 | ||
| 3091 | <software name="bsunk17" supported="no"> | |
| 3092 | <description>BS Unknown Memory Pack 17 (Jpn, SOUND NOVEL 4 a)</description> | |
| 3093 | <year>199?</year> | |
| 3094 | <publisher><unknown></publisher> | |
| 3095 | <part name="cart" interface="bspack"> | |
| 3096 | ||
| 3097 | <feature name="slot" value="bsmempak" /> | |
| 3098 | <dataarea name="rom" size="131072"> | |
| 3099 | <rom name="sound novel 4 a.bs" size="131072" crc="7426f308" sha1="1254626439c10cf474a74b02d9f501a3aefb2c84" offset="0x000000" /> | |
| 3100 | </dataarea> | |
| 3101 | </part> | |
| 3102 | </software> | |
| 3103 | ||
| 3104 | <software name="bsunk18" supported="no"> | |
| 3105 | <description>BS Unknown Memory Pack 18 (Jpn, SOUND NOVEL 5)</description> | |
| 3106 | <year>199?</year> | |
| 3107 | <publisher><unknown></publisher> | |
| 3108 | <part name="cart" interface="bspack"> | |
| 3109 | ||
| 3110 | <feature name="slot" value="bsmempak" /> | |
| 3111 | <dataarea name="rom" size="131072"> | |
| 3112 | <rom name="sound novel 5.bs" size="131072" crc="3955eb83" sha1="6d785d32410ec1acc2efeffe4717e26c1221d2ed" offset="0x000000" /> | |
| 3113 | </dataarea> | |
| 3114 | </part> | |
| 3115 | </software> | |
| 3116 | ||
| 3117 | <software name="bsunk19" supported="no"> | |
| 3118 | <description>BS Unknown Memory Pack 19 (Jpn, SOUND NOVEL 6)</description> | |
| 3119 | <year>199?</year> | |
| 3120 | <publisher><unknown></publisher> | |
| 3121 | <part name="cart" interface="bspack"> | |
| 3122 | ||
| 3123 | <feature name="slot" value="bsmempak" /> | |
| 3124 | <dataarea name="rom" size="131072"> | |
| 3125 | <rom name="sound novel 6.bs" size="131072" crc="d9ee913a" sha1="ab6e28dd1e2542f974160e571abb9181e4767edc" offset="0x000000" /> | |
| 3126 | </dataarea> | |
| 3127 | </part> | |
| 3128 | </software> | |
| 3129 | ||
| 3130 | <software name="bsunk20" supported="no"> | |
| 3131 | <description>BS Unknown Memory Pack 20 (Jpn, SOUND NOVEL 7)</description> | |
| 3132 | <year>199?</year> | |
| 3133 | <publisher><unknown></publisher> | |
| 3134 | <part name="cart" interface="bspack"> | |
| 3135 | ||
| 3136 | <feature name="slot" value="bsmempak" /> | |
| 3137 | <dataarea name="rom" size="131072"> | |
| 3138 | <rom name="sound novel 7.bs" size="131072" crc="c7d0b4df" sha1="d426c22704f2ea96ec9ec95af72f8959e7df27ca" offset="0x000000" /> | |
| 3139 | </dataarea> | |
| 3140 | </part> | |
| 3141 | </software> | |
| 3142 | ||
| 3143 | <!-- This packs was dumped by ChronoMoogle and Ikari, but it does not work. Investigate if it contains corrupted or deleted data --> | |
| 3144 | <software name="bsunk21" supported="no"> | |
| 3145 | <description>BS Unknown Memory Pack 21 (Jpn, ASCII MUSIC DATA, Bad?)</description> | |
| 3146 | <year>199?</year> | |
| 3147 | <publisher><unknown></publisher> | |
| 3148 | <part name="cart" interface="bspack"> | |
| 3149 | ||
| 3150 | <feature name="slot" value="bsmempak" /> | |
| 3151 | <dataarea name="rom" size="1048576"> | |
| 3152 | <rom name="unknown music data (bad?).bs" size="1048576" crc="f96d9d29" sha1="48980784d21f2e9568d18bb326af033fa1e33889" offset="0x000000" /> | |
| 3153 | </dataarea> | |
| 3154 | </part> | |
| 3155 | </software> | |
| 3156 | ||
| 3157 | <!-- This packs was dumped by Ikari and has blank data banks. --> | |
| 3158 | <software name="bsunk22" supported="no"> | |
| 3159 | <description>BS Unknown Memory Pack 22 (Jpn, RPG Tsukuru Data Bad?)</description> | |
| 3160 | <year>199?</year> | |
| 3161 | <publisher><unknown></publisher> | |
| 3162 | <part name="cart" interface="bspack"> | |
| 3163 | ||
| 3164 | <feature name="slot" value="bsmempak" /> | |
| 3165 | <dataarea name="rom" size="1048576"> | |
| 3166 | <rom name="unknown - every other bank erased.bs" size="1048576" crc="5738ad34" sha1="f41ad479353dbbf7136af678faf7b0b8d96876d8" offset="0x000000" /> | |
| 3167 | </dataarea> | |
| 3168 | </part> | |
| 3169 | </software> | |
| 3170 | ||
| 3171 | <software name="bsspuyor" supported="no"> | |
| 3172 | <description>Super Puyo Puyo Tsuu Remix (Jpn, BS)</description> | |
| 3173 | <year>199?</year> | |
| 3174 | <publisher><unknown></publisher> | |
| 3175 | <info name="alt_title" value="す~ぱ~ぷよぷよ通リミックス" /> | |
| 3176 | <part name="cart" interface="bspack"> | |
| 3177 | ||
| 3178 | <feature name="slot" value="bsmempak" /> | |
| 3179 | <dataarea name="rom" size="1048576"> | |
| 3180 | <rom name="super puyo puyo tsuu remix (japan) [b].bs" size="1048576" crc="5fc1fd18" sha1="a33d7dd85c0b79865c6c77a6b49694b67614488e" offset="0x000000" status="baddump" /> | |
| 3181 | </dataarea> | |
| 3182 | </part> | |
| 3183 | </software> | |
| 3184 | ||
| 3185 | </softwarelist> |
| Added: svn:eol-style + native Added: svn:mime-type + text/xml |
| r0 | r21546 | |
|---|---|---|
| 1 | <?xml version="1.0"?> | |
| 2 | <!DOCTYPE softwarelist SYSTEM "softwarelist.dtd"> | |
| 3 | ||
| 4 | <softwarelist name="snes_strom" description="Nintendo SNES - Sufami Turbo cartridges"> | |
| 5 | ||
| 6 | <software name="stbattlu" supported="no"> | |
| 7 | <description>SD Ultra Battle - Ultraman Densetsu (Jpn)</description> | |
| 8 | <year>1996</year> | |
| 9 | <publisher>Bandai</publisher> | |
| 10 | <info name="serial" value="SFT-0101-JPN" /> | |
| 11 | <info name="release" value="19960628" /> | |
| 12 | <info name="alt_title" value="SDウルトラバトル ウルトラマン伝 説" /> | |
| 13 | <part name="cart" interface="st_cart"> | |
| 14 | ||
| 15 | <feature name="slot" value="strom" /> | |
| 16 | <dataarea name="rom" size="524288"> | |
| 17 | <rom name="sd ultra battle - ultraman densetsu (japan).st" size="524288" crc="04939d14" sha1="5527fcc136ff0c0ef53a1c9c2756d4a27afa1526" offset="0x000000" /> | |
| 18 | </dataarea> | |
| 19 | </part> | |
| 20 | </software> | |
| 21 | ||
| 22 | <software name="stbattl7" supported="no"> | |
| 23 | <description>SD Ultra Battle - Seven Densetsu (Jpn)</description> | |
| 24 | <year>1996</year> | |
| 25 | <publisher>Bandai</publisher> | |
| 26 | <info name="serial" value="SFT-0102-JPN" /> | |
| 27 | <info name="release" value="19960628" /> | |
| 28 | <info name="alt_title" value="SDウルトラバトル セブン伝説" /> | |
| 29 | <part name="cart" interface="st_cart"> | |
| 30 | ||
| 31 | <feature name="slot" value="strom" /> | |
| 32 | <dataarea name="rom" size="524288"> | |
| 33 | <rom name="sd ultra battle - seven densetsu (japan).st" size="524288" crc="43ad5a45" sha1="bfe85a6e6e8c24584ed5983dbf56048c4c8f2287" offset="0x000000" /> | |
| 34 | </dataarea> | |
| 35 | </part> | |
| 36 | </software> | |
| 37 | ||
| 38 | <software name="stpoipoi" supported="no"> | |
| 39 | <description>Poi Poi Ninja World (Jpn)</description> | |
| 40 | <year>1996</year> | |
| 41 | <publisher>Bandai</publisher> | |
| 42 | <info name="serial" value="SFT-0103-JPN" /> | |
| 43 | <info name="release" value="19960628" /> | |
| 44 | <info name="alt_title" value="ぽいぽい忍者ワールト" /> | |
| 45 | <part name="cart" interface="st_cart"> | |
| 46 | ||
| 47 | <feature name="slot" value="strom" /> | |
| 48 | <dataarea name="rom" size="524288"> | |
| 49 | <rom name="poi poi ninja world (japan).st" size="524288" crc="32b2b3dd" sha1="ae7421b87a9f4cc7c189680dfbb39453905aa5e6" offset="0x000000" /> | |
| 50 | </dataarea> | |
| 51 | </part> | |
| 52 | </software> | |
| 53 | ||
| 54 | <software name="stsdguni" supported="no"> | |
| 55 | <description>SD Gundam Generation - Ichinen Sensouki (Jpn)</description> | |
| 56 | <year>1996</year> | |
| 57 | <publisher>Bandai</publisher> | |
| 58 | <info name="serial" value="SFT-0104-JPN" /> | |
| 59 | <info name="release" value="19960726" /> | |
| 60 | <info name="alt_title" value="SDガンダムジェネレーション一年戦争記" /> | |
| 61 | <part name="cart" interface="st_cart"> | |
| 62 | ||
| 63 | <feature name="slot" value="strom" /> | |
| 64 | <dataarea name="rom" size="524288"> | |
| 65 | <rom name="sd gundam generation - ichinen sensouki (japan).st" size="524288" crc="afd74dcb" sha1="adc7716a4b081aba5cde3525881c51ee6d600396" offset="0x000000" /> | |
| 66 | </dataarea> | |
| 67 | </part> | |
| 68 | </software> | |
| 69 | ||
| 70 | <software name="stsdgung" supported="no"> | |
| 71 | <description>SD Gundam Generation - Gryps Senki (Jpn)</description> | |
| 72 | <year>1996</year> | |
| 73 | <publisher>Bandai</publisher> | |
| 74 | <info name="serial" value="SFT-0105-JPN" /> | |
| 75 | <info name="release" value="19960726" /> | |
| 76 | <info name="alt_title" value="SDガンダムジェネレーション グリプス戦記" /> | |
| 77 | <part name="cart" interface="st_cart"> | |
| 78 | ||
| 79 | <feature name="slot" value="strom" /> | |
| 80 | <dataarea name="rom" size="524288"> | |
| 81 | <rom name="sd gundam generation - gryps senki (japan).st" size="524288" crc="48ecae44" sha1="f280004dd92b70b1bf4518e054b4181a9bbba245" offset="0x000000" /> | |
| 82 | </dataarea> | |
| 83 | </part> | |
| 84 | </software> | |
| 85 | ||
| 86 | <software name="stgegege" supported="no"> | |
| 87 | <description>GeGeGe no Kitarou - Youkai Donjara (Jpn)</description> | |
| 88 | <year>1996</year> | |
| 89 | <publisher>Bandai</publisher> | |
| 90 | <info name="serial" value="SFT-0106-JPN" /> | |
| 91 | <info name="release" value="19960719" /> | |
| 92 | <info name="alt_title" value="ゲゲゲの鬼太郎 妖怪ドンジャラ" /> | |
| 93 | <part name="cart" interface="st_cart"> | |
| 94 | ||
| 95 | <feature name="slot" value="strom" /> | |
| 96 | <dataarea name="rom" size="524288"> | |
| 97 | <rom name="gegege no kitarou - youkai donjara (japan).st" size="524288" crc="4296500d" sha1="965b2582b13ee361eca93937b1b093049bc8d958" offset="0x000000" /> | |
| 98 | </dataarea> | |
| 99 | </part> | |
| 100 | </software> | |
| 101 | ||
| 102 | <software name="stsdguna" supported="no"> | |
| 103 | <description>SD Gundam Generation - Axis Senki (Jpn)</description> | |
| 104 | <year>1996</year> | |
| 105 | <publisher>Bandai</publisher> | |
| 106 | <info name="serial" value="SFT-0107-JPN" /> | |
| 107 | <info name="release" value="19960823" /> | |
| 108 | <info name="alt_title" value="SDガンダムジェネレーション アクシズ戦記" /> | |
| 109 | <part name="cart" interface="st_cart"> | |
| 110 | ||
| 111 | <feature name="slot" value="strom" /> | |
| 112 | <dataarea name="rom" size="524288"> | |
| 113 | <rom name="sd gundam generation - axis senki (japan).st" size="524288" crc="72b4235f" sha1="6f5be110a606f34bb797a30c1f07b84b2ff38425" offset="0x000000" /> | |
| 114 | </dataarea> | |
| 115 | </part> | |
| 116 | </software> | |
| 117 | ||
| 118 | <software name="stsdgunb" supported="no"> | |
| 119 | <description>SD Gundam Generation - Babylonia Kenkoku Senki (Jpn)</description> | |
| 120 | <year>1996</year> | |
| 121 | <publisher>Bandai</publisher> | |
| 122 | <info name="serial" value="SFT-0108-JPN" /> | |
| 123 | <info name="release" value="19960823" /> | |
| 124 | <info name="alt_title" value="SDガンダムジェネレーション バヒロニア建国戦記" /> | |
| 125 | <part name="cart" interface="st_cart"> | |
| 126 | ||
| 127 | <feature name="slot" value="strom" /> | |
| 128 | <dataarea name="rom" size="524288"> | |
| 129 | <rom name="sd gundam generation - babylonia kenkoku senki (japan).st" size="524288" crc="792d884c" sha1="f18f680b981077cfa025161cfe6c9594b6d18078" offset="0x000000" /> | |
| 130 | </dataarea> | |
| 131 | </part> | |
| 132 | </software> | |
| 133 | ||
| 134 | <software name="stcarrng" supported="no"> | |
| 135 | <description>Gekisou Sentai Carranger - Zenkai! Racer Senshi (Jpn)</description> | |
| 136 | <year>1996</year> | |
| 137 | <publisher>Bandai</publisher> | |
| 138 | <info name="serial" value="SFT-0109-JPN" /> | |
| 139 | <info name="release" value="19960823" /> | |
| 140 | <info name="alt_title" value="激走戦隊カーレンジャー 全開!レー サー戦士" /> | |
| 141 | <part name="cart" interface="st_cart"> | |
| 142 | ||
| 143 | <feature name="slot" value="strom" /> | |
| 144 | <dataarea name="rom" size="524288"> | |
| 145 | <rom name="gekisou sentai carranger - zenkai! racer senshi (japan).st" size="524288" crc="14c66fca" sha1="50b9d6ebf0e3f4b9dad5d0660d6c834820cbe391" offset="0x000000" /> | |
| 146 | </dataarea> | |
| 147 | </part> | |
| 148 | </software> | |
| 149 | ||
| 150 | <software name="stsdgunz" supported="no"> | |
| 151 | <description>SD Gundam Generation - Zanscare Senki (Jpn)</description> | |
| 152 | <year>1996</year> | |
| 153 | <publisher>Bandai</publisher> | |
| 154 | <info name="serial" value="SFT-0110-JPN" /> | |
| 155 | <info name="release" value="19960927" /> | |
| 156 | <info name="alt_title" value="SDガンダムジェネレーション ザン スカール戦記" /> | |
| 157 | <part name="cart" interface="st_cart"> | |
| 158 | ||
| 159 | <feature name="slot" value="strom" /> | |
| 160 | <dataarea name="rom" size="524288"> | |
| 161 | <rom name="sd gundam generation - zanscare senki (japan).st" size="524288" crc="efd3a865" sha1="d0ebe3cfcc76ec275151c3b9392fc2ff5d3b50da" offset="0x000000" /> | |
| 162 | </dataarea> | |
| 163 | </part> | |
| 164 | </software> | |
| 165 | ||
| 166 | <software name="stsdgunc" supported="no"> | |
| 167 | <description>SD Gundam Generation - Colony Kakutouki (Jpn)</description> | |
| 168 | <year>1996</year> | |
| 169 | <publisher>Bandai</publisher> | |
| 170 | <info name="serial" value="SFT-0111-JPN" /> | |
| 171 | <info name="release" value="19960927" /> | |
| 172 | <info name="alt_title" value="SDガンダムジェネレーション コロ ニー格闘記" /> | |
| 173 | <part name="cart" interface="st_cart"> | |
| 174 | ||
| 175 | <feature name="slot" value="strom" /> | |
| 176 | <dataarea name="rom" size="524288"> | |
| 177 | <rom name="sd gundam generation - colony kakutouki (japan).st" size="524288" crc="c5dfa8fd" sha1="0a335ef645d058c2da5389ad622c62d0bffce944" offset="0x000000" /> | |
| 178 | </dataarea> | |
| 179 | </part> | |
| 180 | </software> | |
| 181 | ||
| 182 | <software name="sailrfp2" supported="no"> | |
| 183 | <description>Bishoujo Senshi Sailormoon Sailorstars - Fuwafuwa Panic 2 (Jpn)</description> | |
| 184 | <year>1996</year> | |
| 185 | <publisher>Bandai</publisher> | |
| 186 | <info name="serial" value="SFT-0112-JPN" /> | |
| 187 | <info name="release" value="19960927" /> | |
| 188 | <info name="alt_title" value="美少女戦士セーラームーン セー ラースターズ ~ふわふわパニック2" /> | |
| 189 | <part name="cart" interface="st_cart"> | |
| 190 | ||
| 191 | <feature name="slot" value="strom" /> | |
| 192 | <dataarea name="rom" size="1048576"> | |
| 193 | <rom name="bishoujo senshi sailormoon sailorstars - fuwafuwa panic 2 (japan).st" size="1048576" crc="bb5c4238" sha1="f72ea67468cf34360042bdd7974fd588a2407566" offset="0x000000" /> | |
| 194 | </dataarea> | |
| 195 | </part> | |
| 196 | </software> | |
| 197 | ||
| 198 | <software name="stcrayon" supported="no"> | |
| 199 | <description>Crayon Shin-chan - Nagagutsu Dobon!! (Jpn)</description> | |
| 200 | <year>1996</year> | |
| 201 | <publisher>Bandai</publisher> | |
| 202 | <info name="serial" value="SFT-0113-JPN" /> | |
| 203 | <info name="release" value="19960927" /> | |
| 204 | <info name="alt_title" value="クレヨンしんちゃん 長ぐつどぼ ん!!" /> | |
| 205 | <part name="cart" interface="st_cart"> | |
| 206 | ||
| 207 | <feature name="slot" value="strom" /> | |
| 208 | <dataarea name="rom" size="524288"> | |
| 209 | <rom name="crayon shin-chan - nagagutsu dobon!! (japan).st" size="524288" crc="8eb753f3" sha1="98a99807a958c1175a2b257166d7b08b2be6d442" offset="0x000000" /> | |
| 210 | </dataarea> | |
| 211 | </part> | |
| 212 | </software> | |
| 213 | ||
| 214 | </softwarelist> |
| Added: svn:mime-type + text/xml Added: svn:eol-style + native |
| r21545 | r21546 | |
|---|---|---|
| 607 | 607 | <feature name="lockout" value="" /> |
| 608 | 608 | <feature name="battery" value="BATT CR2032" /> |
| 609 | 609 | <feature name="cart_model" value="no shell" /> |
| 610 | ||
| 611 | <feature name="slot" value="lorom" /> | |
| 610 | 612 | <dataarea name="rom" size="1572864"> |
| 611 | 613 | <rom name="shoot 1 kss.u1" size="524288" crc="71306e06" sha1="253ec028d68a85209dc3e5846a2a2f5b582fed7b" offset="0x000000" /> |
| 612 | 614 | <rom name="shoot 2 kss.u2" size="524288" crc="d07e1be3" sha1="7a58acb027ca15c1054e58f43156c2d99f62d16c" offset="0x080000" /> |
| r21545 | r21546 | |
| 625 | 627 | <year>1995</year> |
| 626 | 628 | <publisher>Psygnosis</publisher> <!-- cancelled --> |
| 627 | 629 | <part name="cart" interface="snes_cart"> |
| 630 | ||
| 631 | <feature name="slot" value="lorom" /> | |
| 628 | 632 | <dataarea name="rom" size="1048576"> |
| 629 | 633 | <rom name="binary" size="1048576" crc="6a53c658" sha1="95640a8ecff7a5380c71fd2a4915f22341870769" offset="0x000000" /> |
| 630 | 634 | </dataarea> |
| r21545 | r21546 | |
| 646 | 650 | <feature name="lockout" value="D411 (BB)" /> |
| 647 | 651 | <feature name="battery" value="BATT CR2032" /> |
| 648 | 652 | <feature name="cart_model" value="no shell" /> |
| 653 | ||
| 654 | <feature name="slot" value="lorom" /> | |
| 649 | 655 | <dataarea name="rom" size="1048576"> |
| 650 | 656 | <rom name="metal jack atlus 0 7-30.u1" size="524288" crc="1cba94f3" sha1="85019950ec4a1cf7719b824a9690a6d3ecb79957" offset="0x000000" /> |
| 651 | 657 | <rom name="metal jack atlus 1 7-30.u2" size="524288" crc="b484c566" sha1="c19a6aa6f6a427fef8d0188127efa28abeb76a0f" offset="0x080000" /> |
| r21545 | r21546 | |
| 674 | 680 | <feature name="lockout" value="" /> |
| 675 | 681 | <feature name="battery" value="BATT CR2032" /> |
| 676 | 682 | <feature name="cart_model" value="unknown" /> |
| 683 | ||
| 684 | <feature name="slot" value="lorom" /> | |
| 677 | 685 | <dataarea name="rom" size="1048576"> |
| 678 | 686 | <rom name="batman.u1" size="524288" crc="11603d9b" sha1="301813f85e039b28ac1c36700c0f6018bae3e4c6" offset="0x000000" /> |
| 679 | 687 | <rom name="batman.u2" size="524288" crc="16866f1c" sha1="30983787df55605ad9bf1468901ce41fc165362a" offset="0x080000" /> |
| r21545 | r21546 | |
| 696 | 704 | <feature name="lockout" value="" /> |
| 697 | 705 | <feature name="battery" value="BATT CR2032" /> <!-- empty socket --> |
| 698 | 706 | <feature name="cart_model" value="n/a" /> <!-- standard japanese prototype cart --> |
| 707 | ||
| 708 | <feature name="slot" value="lorom" /> | |
| 699 | 709 | <dataarea name="rom" size="1048576"> |
| 700 | 710 | <rom name="ep9245650.u1" size="524288" crc="b61d48c6" sha1="429a55692e16e839b4591af696e8392b62182e5a" offset="0x000000" /> |
| 701 | 711 | <rom name="ep9245629.u2" size="524288" crc="9e376929" sha1="6b3393f00a7b7e97d4ca297073fee6585d59086a" offset="0x080000" /> |
| r21545 | r21546 | |
| 720 | 730 | <feature name="lockout" value="" /> |
| 721 | 731 | <feature name="battery" value="BATT CR2032" /> |
| 722 | 732 | <feature name="cart_model" value="no shell" /> |
| 733 | ||
| 734 | <feature name="slot" value="lorom" /> | |
| 723 | 735 | <dataarea name="rom" size="1048576"> |
| 724 | 736 | <rom name="battle blaze.u1" size="524288" crc="63ee861c" sha1="ddd0ecfa4592528290462afcb46c2d437770df33" offset="0x000000" /> |
| 725 | 737 | <rom name="u2" size="524288" crc="9881b12e" sha1="03457d0a49798925bdbef0ad9730c02aecca0872" offset="0x080000" /> |
| r21545 | r21546 | |
| 747 | 759 | <feature name="lockout" value="" /> |
| 748 | 760 | <feature name="battery" value="BATT CR2032" /> |
| 749 | 761 | <feature name="cart_model" value="no shell" /> |
| 762 | ||
| 763 | <feature name="slot" value="lorom" /> | |
| 750 | 764 | <dataarea name="rom" size="524288"> |
| 751 | 765 | <rom name="b2sn0819.bin snes beethoven 2nd 9-13-93.u1" size="524288" crc="fb5747ac" sha1="905ec7c58cac4137a01bff5cef2fa19435c0c6bc" offset="0x000000" /> |
| 752 | 766 | </dataarea> |
| r21545 | r21546 | |
| 823 | 837 | <feature name="dipswitch" value="DSW1" /> <!-- (.'.''.'.) --> |
| 824 | 838 | <feature name="battery" value="BATT1 CR2032" /> |
| 825 | 839 | <feature name="cart_model" value="no shell" /> |
| 840 | ||
| 841 | <feature name="slot" value="hirom" /> | |
| 826 | 842 | <dataarea name="rom" size="3145728"> |
| 827 | 843 | <rom name="u1" size="524288" crc="b9d3da76" sha1="f94724c8da33ba8ce534a827ef1c46af12373662" offset="0x000000" /> |
| 828 | 844 | <rom name="u2" size="524288" crc="6056d09f" sha1="8647eeb2a4ac336ccd881a6deb774b3a179ea8da" offset="0x080000" /> |
| r21545 | r21546 | |
| 854 | 870 | <feature name="lockout" value="" /> |
| 855 | 871 | <feature name="battery" value="BATT CR2032" /> |
| 856 | 872 | <feature name="cart_model" value="no shell" /> |
| 873 | ||
| 874 | <feature name="slot" value="lorom" /> | |
| 857 | 875 | <dataarea name="rom" size="1572864"> |
| 858 | 876 | <rom name="j0 1-5.u1" size="524288" crc="dbfaaae8" sha1="42886d50280b196257c5e18c665babfc3e989855" offset="0x000000" /> |
| 859 | 877 | <rom name="j1 1-5.u2" size="524288" crc="ba2b0b56" sha1="75574bcd9960afe5e92c18fb062f2e19b8cfd890" offset="0x080000" /> |
| r21545 | r21546 | |
| 881 | 899 | <feature name="lockout" value="" /> |
| 882 | 900 | <feature name="battery" value="BATT CR2032" /> |
| 883 | 901 | <feature name="cart_model" value="no shell" /> |
| 902 | ||
| 903 | <feature name="slot" value="hirom" /> | |
| 884 | 904 | <dataarea name="rom" size="2097152"> |
| 885 | 905 | <rom name="rom0 cs 00b1.u1" size="524288" crc="e876dcf5" sha1="b0bdb8fef5f77656bb4506f70a8d093e658d0faf" offset="0x000000" /> |
| 886 | 906 | <rom name="rom1 cs ac7b.u2" size="524288" crc="264b4eac" sha1="668784b87718cc2a9a0486ac98afb0efa68d8830" offset="0x080000" /> |
| r21545 | r21546 | |
| 910 | 930 | <feature name="lockout" value="" /> |
| 911 | 931 | <feature name="battery" value="BATT CR2032" /> |
| 912 | 932 | <feature name="cart_model" value="unknown" /> |
| 933 | ||
| 934 | <feature name="slot" value="lorom" /> | |
| 913 | 935 | <dataarea name="rom" size="2097152"> |
| 914 | 936 | <rom name="rom 0 dracula x.u1" size="524288" crc="8d5b91cf" sha1="461a68ba9f3caa9d16e7b6ceb64bbb8dae76862c" offset="0x000000" /> |
| 915 | 937 | <rom name="u2" size="524288" crc="5696e603" sha1="4f67f802eee6cf37da676bc518bf844639476f00" offset="0x080000" /> |
| r21545 | r21546 | |
| 945 | 967 | <feature name="dipswitch" value="DSW1" /> <!-- (...''.'.) --> |
| 946 | 968 | <feature name="battery" value="BATT1 CR2032" /> |
| 947 | 969 | <feature name="cart_model" value="no shell" /> |
| 970 | ||
| 971 | <feature name="slot" value="hirom" /> | |
| 948 | 972 | <dataarea name="rom" size="3145728"> |
| 949 | 973 | <rom name="u1" size="524288" crc="baf6c40f" sha1="e19aa6f680cda0719aefe3b6ee6384a28f4c87a4" offset="0x000000" /> |
| 950 | 974 | <rom name="u2" size="524288" crc="bfbb774b" sha1="b2513a39af1821271276bb1afe5830865b7e6f40" offset="0x080000" /> |
| r21545 | r21546 | |
| 1007 | 1031 | <feature name="lockout" value="" /> |
| 1008 | 1032 | <feature name="battery" value="BATT CR2032" /> |
| 1009 | 1033 | <feature name="cart_model" value="unknown" /> |
| 1034 | ||
| 1035 | <feature name="slot" value="hirom" /> | |
| 1010 | 1036 | <dataarea name="rom" size="2097152"> |
| 1011 | 1037 | <rom name="u1" size="524288" crc="94cca476" sha1="130009b46c7d1cf0a2b87e13dadd44df2bd1c6c6" offset="0x000000" /> |
| 1012 | 1038 | <rom name="u2" size="524288" crc="0d1a83bd" sha1="402ab3d703c9196c3484b919ee186e6abb59da8b" offset="0x080000" /> |
| r21545 | r21546 | |
| 1032 | 1058 | <feature name="battery" value="BATT CR2032" /> |
| 1033 | 1059 | <feature name="cart_model" value="SNS-006" /> |
| 1034 | 1060 | <feature name="cart_back_label" value="" /> |
| 1061 | ||
| 1062 | <feature name="slot" value="hirom" /> | |
| 1035 | 1063 | <dataarea name="rom" size="4194304"> |
| 1036 | 1064 | <rom name="sns-8e-0.u1" size="4194304" crc="0e204fbd" sha1="05bca9d1097a148d8808028b8d75553dd8b7b972" offset="0x000000" /> |
| 1037 | 1065 | </dataarea> |
| r21545 | r21546 | |
| 1059 | 1087 | <feature name="lockout" value="" /> |
| 1060 | 1088 | <feature name="battery" value="BATT CR2032" /> |
| 1061 | 1089 | <feature name="cart_model" value="n/a" /> |
| 1090 | ||
| 1091 | <feature name="slot" value="lorom" /> | |
| 1062 | 1092 | <dataarea name="rom" size="2097152"> |
| 1063 | 1093 | <rom name="speedworld.u1" size="524288" crc="09f7affd" sha1="2f68308fa44a85ff401f35f4add9997febd495fa" offset="0x000000" /> |
| 1064 | 1094 | <rom name="1.u2" size="524288" crc="3c5a39e5" sha1="cd091df4bccf264d79d0378a8cf8f03683f57b69" offset="0x080000" /> |
| r21545 | r21546 | |
| 1086 | 1116 | <feature name="lockout" value="" /> |
| 1087 | 1117 | <feature name="battery" value="BATT CR2032" /> |
| 1088 | 1118 | <feature name="cart_model" value="no shell" /> |
| 1119 | ||
| 1120 | <feature name="slot" value="lorom" /> | |
| 1089 | 1121 | <dataarea name="rom" size="2097152"> |
| 1090 | 1122 | <rom name="1.u1" size="524288" crc="477dea6b" sha1="4aed8ad09219f4b7f249c65ea3b94c4b42b7cd1a" offset="0x000000" /> |
| 1091 | 1123 | <rom name="2.u2" size="524288" crc="b724fc0c" sha1="c7102eb39bea8858114a2b77d26f93056bd7058a" offset="0x080000" /> |
| r21545 | r21546 | |
| 1110 | 1142 | <feature name="lockout" value="" /> |
| 1111 | 1143 | <feature name="battery" value="BATT CR2032" /> |
| 1112 | 1144 | <feature name="cart_model" value="no shell" /> |
| 1145 | ||
| 1146 | <feature name="slot" value="lorom" /> | |
| 1113 | 1147 | <dataarea name="rom" size="524288"> |
| 1114 | 1148 | <rom name="u1" size="524288" crc="92582b67" sha1="b221b2668662a5894d4311ada5c8e5082407b5f8" offset="0x000000" /> |
| 1115 | 1149 | </dataarea> |
| r21545 | r21546 | |
| 1143 | 1177 | <feature name="dipswitch" value="DSW1" /> <!-- (''.''.'.) --> |
| 1144 | 1178 | <feature name="battery" value="BATT1 CR2032" /> |
| 1145 | 1179 | <feature name="cart_model" value="no shell" /> |
| 1180 | ||
| 1181 | <feature name="slot" value="hirom" /> | |
| 1146 | 1182 | <dataarea name="rom" size="3145728"> |
| 1147 | 1183 | <rom name="0.u1" size="524288" crc="470e9188" sha1="7272cd3225f67c454ddbd977050e09ef4a1314af" offset="0x000000" /> |
| 1148 | 1184 | <rom name="1.u2" size="524288" crc="13001d97" sha1="67430feb3677e1ebb82f3dc105ca8b6c0058ad96" offset="0x080000" /> |
| r21545 | r21546 | |
| 1175 | 1211 | <feature name="lockout" value="" /> |
| 1176 | 1212 | <feature name="battery" value="BATT CR2032" /> |
| 1177 | 1213 | <feature name="cart_model" value="unknown" /> |
| 1214 | ||
| 1215 | <feature name="slot" value="lorom" /> | |
| 1178 | 1216 | <dataarea name="rom" size="1048576"> |
| 1179 | 1217 | <rom name="firemen r0 d0c2.u1" size="524288" crc="ea1bc97a" sha1="2f895eab52eec641322c02fba8ab02e3e69d4a94" offset="0x000000" /> |
| 1180 | 1218 | <rom name="firemen r1 2dca.u2" size="524288" crc="05b651bf" sha1="57350966d9b16f187a11539f2bbd13a1097569d2" offset="0x080000" /> |
| r21545 | r21546 | |
| 1200 | 1238 | <feature name="lockout" value="" /> |
| 1201 | 1239 | <feature name="battery" value="BATT CR2032" /> |
| 1202 | 1240 | <feature name="cart_model" value="unknown" /> |
| 1241 | ||
| 1242 | <feature name="slot" value="lorom" /> | |
| 1203 | 1243 | <dataarea name="rom" size="2097152"> |
| 1204 | 1244 | <rom name="ftr 1-16 1.u1" size="524288" crc="f6bc8b79" sha1="8201412af4cde8a3f70272dc5e840ee646ab0ae0" offset="0x000000" /> |
| 1205 | 1245 | <rom name="ftr 1-16 2.u2" size="524288" crc="fa8c1cbb" sha1="a61f070dba074a2228c404bad836ff348e3fb325" offset="0x080000" /> |
| r21545 | r21546 | |
| 1229 | 1269 | <feature name="lockout" value="" /> |
| 1230 | 1270 | <feature name="battery" value="BATT CR2032" /> |
| 1231 | 1271 | <feature name="cart_model" value="unknown" /> |
| 1272 | ||
| 1273 | <feature name="slot" value="lorom" /> | |
| 1232 | 1274 | <dataarea name="rom" size="2097152"> |
| 1233 | 1275 | <rom name="fire team rogue 1.u1" size="524288" crc="07948a08" sha1="79ef02793e50b5fdfa33ac40d4f2fa6493dc911a" offset="0x000000" /> |
| 1234 | 1276 | <rom name="2.u2" size="524288" crc="f4e3c286" sha1="d72aeb1c2c424cd59d0d7c0615c6316b5f3ec838" offset="0x080000" /> |
| r21545 | r21546 | |
| 1255 | 1297 | <feature name="lockout" value="" /> |
| 1256 | 1298 | <feature name="battery" value="BATT CR2032" /> |
| 1257 | 1299 | <feature name="cart_model" value="unknown" /> |
| 1300 | ||
| 1301 | <feature name="slot" value="lorom" /> | |
| 1258 | 1302 | <dataarea name="rom" size="1048576"> |
| 1259 | 1303 | <rom name="u1" size="524288" crc="cb15c33d" sha1="927d5eac1f3ea7656c34499ad9f0c49f38bfb9a5" offset="0x000000" /> |
| 1260 | 1304 | <rom name="u2" size="524288" crc="af5d863a" sha1="e09b988dbb46549ada62e97f6c9d4e13d7ac9cbd" offset="0x080000" /> |
| r21545 | r21546 | |
| 1280 | 1324 | <feature name="lockout" value="" /> |
| 1281 | 1325 | <feature name="battery" value="BATT CR2032" /> |
| 1282 | 1326 | <feature name="cart_model" value="SNS-006" /> |
| 1327 | ||
| 1328 | <feature name="slot" value="lorom" /> | |
| 1283 | 1329 | <dataarea name="rom" size="524288"> |
| 1284 | 1330 | <rom name="gft-m 0.u1" size="524288" crc="4aafa462" sha1="b38560d091801db5e833d17393fe1df1398909b6" offset="0x000000" /> |
| 1285 | 1331 | </dataarea> |
| r21545 | r21546 | |
| 1305 | 1351 | <feature name="lockout" value="" /> |
| 1306 | 1352 | <feature name="battery" value="BATT CR2032" /> |
| 1307 | 1353 | <feature name="cart_model" value="no shell" /> |
| 1354 | ||
| 1355 | <feature name="slot" value="lorom" /> | |
| 1308 | 1356 | <dataarea name="rom" size="2097152"> |
| 1309 | 1357 | <rom name="u1" size="524288" crc="2ebad0a2" sha1="ddf6ce07444e113993cc6a86565b44c5f86022f2" offset="0x000000" /> |
| 1310 | 1358 | <rom name="u2" size="524288" crc="69f229ce" sha1="92501741812bff49b3c96df1994b593698ae987c" offset="0x080000" /> |
| r21545 | r21546 | |
| 1325 | 1373 | <feature name="u2" value="U2 CIC" /> |
| 1326 | 1374 | <feature name="lockout" value="" /> |
| 1327 | 1375 | <feature name="cart_model" value="SNS-006" /> |
| 1376 | ||
| 1377 | <feature name="slot" value="lorom" /> | |
| 1328 | 1378 | <dataarea name="rom" size="524288"> |
| 1329 | 1379 | <rom name="u1" size="524288" crc="e76979ce" sha1="e0c31970b286f07b15e4a8b14e70460be1c073c2" offset="0x000000" /> |
| 1330 | 1380 | </dataarea> |
| r21545 | r21546 | |
| 1352 | 1402 | <feature name="battery" value="BATT CR2032" /> |
| 1353 | 1403 | <feature name="cart_model" value="SHVC-006" /> |
| 1354 | 1404 | <feature name="cart_back_label" value="920214" /> |
| 1405 | ||
| 1406 | <feature name="slot" value="lorom" /> | |
| 1355 | 1407 | <dataarea name="rom" size="2097152"> |
| 1356 | 1408 | <rom name="u1" size="524288" crc="24c41de0" sha1="89a9300db61a6591a1bd7cb2b77df807a6036346" offset="0x000000" /> |
| 1357 | 1409 | <rom name="u2" size="524288" crc="e13dd74a" sha1="c1998e65c6bcd123d3974ab8cd2ea80a72127e66" offset="0x080000" /> |
| r21545 | r21546 | |
| 1377 | 1429 | <feature name="lockout" value="" /> |
| 1378 | 1430 | <feature name="battery" value="BATT CR2032" /> |
| 1379 | 1431 | <feature name="cart_model" value="unknown" /> |
| 1432 | ||
| 1433 | <feature name="slot" value="lorom" /> | |
| 1380 | 1434 | <dataarea name="rom" size="1048576"> |
| 1381 | 1435 | <rom name="u1" size="524288" crc="16422c65" sha1="c33d78fc59991c42fece46805607edf451db6758" offset="0x000000" /> |
| 1382 | 1436 | <rom name="major title.u2" size="524288" crc="5df60f2c" sha1="a5ba90cae1afe2a773490c31474a354e3362e57f" offset="0x080000" /> |
| r21545 | r21546 | |
| 1407 | 1461 | <feature name="lockout" value="" /> |
| 1408 | 1462 | <feature name="battery" value="BATT CR2032" /> |
| 1409 | 1463 | <feature name="cart_model" value="no shell" /> |
| 1464 | ||
| 1465 | <feature name="slot" value="lorom" /> | |
| 1410 | 1466 | <dataarea name="rom" size="1572864"> |
| 1411 | 1467 | <rom name="shvc i2 rom 0 9274.u1" size="524288" crc="c404d2ab" sha1="6f7dd51fbc0a859dea22955444c3b656227c7715" offset="0x000000" /> |
| 1412 | 1468 | <rom name="shvc i2 rom 1 c253.u2" size="524288" crc="7137adaf" sha1="4367da5f942a2bf6e46294d2b82aef7a8d647b34" offset="0x080000" /> |
| r21545 | r21546 | |
| 1458 | 1514 | <feature name="u2" value="U2 CIC" /> |
| 1459 | 1515 | <feature name="lockout" value="" /> |
| 1460 | 1516 | <feature name="cart_model" value="no shell" /> |
| 1517 | ||
| 1518 | <feature name="slot" value="lorom" /> | |
| 1461 | 1519 | <dataarea name="rom" size="524288"> |
| 1462 | 1520 | <rom name="jeff's shoot'em up.u1" size="524288" crc="1b2087e6" sha1="b4239dc2be8b2b8d82e2700e395c2c1311b5da5c" offset="0x000000" /> |
| 1463 | 1521 | </dataarea> |
| r21545 | r21546 | |
| 1489 | 1547 | <feature name="dipswitch" value="DSW1" /> <!-- (''..'..') --> |
| 1490 | 1548 | <feature name="battery" value="BATT1 CR2032" /> |
| 1491 | 1549 | <feature name="cart_model" value="no shell" /> |
| 1550 | ||
| 1551 | <feature name="slot" value="lorom" /> | |
| 1492 | 1552 | <dataarea name="rom" size="2621440"> |
| 1493 | 1553 | <rom name="u1" size="524288" crc="de7ab3cb" sha1="586902a51edcb7a64d660461ed4910d9d8a63a8c" offset="0x000000" /> |
| 1494 | 1554 | <rom name="u2" size="524288" crc="077b7cdc" sha1="b599de8ac1eeeb4dc7b781af6df2990cfa314609" offset="0x080000" /> |
| r21545 | r21546 | |
| 1519 | 1579 | <feature name="lockout" value="" /> |
| 1520 | 1580 | <feature name="battery" value="BATT CR2032" /> |
| 1521 | 1581 | <feature name="cart_model" value="SNS-006" /> |
| 1582 | ||
| 1583 | <feature name="slot" value="lorom" /> | |
| 1522 | 1584 | <dataarea name="rom" size="1048576"> |
| 1523 | 1585 | <rom name="zelda iii ver 03 code zl prg 0 179e.u1" size="524288" crc="977bd6d9" sha1="9701257e4fb7ef59d9d9bbbee56821b0e2d865e2" offset="0x000000" /> |
| 1524 | 1586 | <rom name="zelda iii ver 03 code zl prg 1.u2" size="524288" crc="8ea732c1" sha1="50a6beb486e805e4e8f91424e35ab11dad65acd2" offset="0x080000" /> |
| r21545 | r21546 | |
| 1545 | 1607 | <feature name="lockout" value="" /> |
| 1546 | 1608 | <feature name="battery" value="BATT CR2032" /> |
| 1547 | 1609 | <feature name="cart_model" value="SHVC-006" /> |
| 1610 | ||
| 1611 | <feature name="slot" value="lorom" /> | |
| 1548 | 1612 | <dataarea name="rom" size="1048576"> |
| 1549 | 1613 | <rom name="u1" size="524288" crc="59059d83" sha1="7ced82ff061dd5a7ee9e35b67fba068b78754120" offset="0x000000" /> |
| 1550 | 1614 | </dataarea> |
| r21545 | r21546 | |
| 1560 | 1624 | <year>1996</year> |
| 1561 | 1625 | <publisher>Capcom</publisher> |
| 1562 | 1626 | <part name="cart" interface="snes_cart"> |
| 1627 | ||
| 1628 | <feature name="slot" value="hirom" /> | |
| 1563 | 1629 | <dataarea name="rom" size="2097152"> |
| 1564 | 1630 | <rom name="marvel super heroes - war of the gems (usa) (beta).sfc" size="2097152" crc="e86cfe8f" sha1="a5f38340c110d96b9d9622ca1fb1de81936c5ef4" offset="0x000000" /> |
| 1565 | 1631 | </dataarea> |
| r21545 | r21546 | |
| 1585 | 1651 | <feature name="lockout" value="" /> |
| 1586 | 1652 | <feature name="battery" value="BATT CR2032" /> |
| 1587 | 1653 | <feature name="cart_model" value="no shell" /> |
| 1654 | ||
| 1655 | <feature name="slot" value="hirom" /> | |
| 1588 | 1656 | <dataarea name="rom" size="2097152"> |
| 1589 | 1657 | <rom name="rom 0.u1" size="524288" crc="8742aa77" sha1="60e7a83620efacfef9821f13c83679fa2413fdd2" offset="0x000000" /> |
| 1590 | 1658 | <rom name="rom 1.u2" size="524288" crc="25eec90a" sha1="2bedac3c3dde6780389a98750ac05ca1ee41caf5" offset="0x080000" /> |
| r21545 | r21546 | |
| 1612 | 1680 | <feature name="ic7" value="IC7 27C1001" /> |
| 1613 | 1681 | <feature name="oscillator" value="OSC1 20MHz" /> |
| 1614 | 1682 | <feature name="cart_model" value="no shell" /> |
| 1683 | ||
| 1684 | <feature name="slot" value="lorom_cx4" /> | |
| 1615 | 1685 | <dataarea name="rom" size="2097152"> |
| 1616 | 1686 | <rom name="snes ar3e ver. 00 rom 0 1f1a h.u1" size="524288" crc="cadbaec0" sha1="4b0d52f29a8e810eddd620f37f4327b5e01622d4" offset="0x000000" /> |
| 1617 | 1687 | <rom name="snes ar3e ver. 00 rom 1 632a h.u2" size="524288" crc="521eeff1" sha1="6f9aa429b7ada119aeeec2e3a33bdd131ea8bc0b" offset="0x080000" /> |
| 1618 | 1688 | <rom name="snes ar3e ver. 00 rom 2 69d3 h.u3" size="524288" crc="0d6c5d18" sha1="52b4c9a5b2757d1e5f4bfb80c562a1ab1d3f90e7" offset="0x100000" /> |
| 1619 | 1689 | <rom name="snes ar3e ver. 00 rom 3 543e h.u4" size="524288" crc="616750f2" sha1="833784d28e3af761c216a59d000dcba842712276" offset="0x180000" /> |
| 1620 | 1690 | </dataarea> |
| 1691 | <dataarea name="addon" size="3072"> | |
| 1692 | <rom name="cx4.ic2" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 1693 | </dataarea> | |
| 1621 | 1694 | </part> |
| 1622 | 1695 | </software> |
| 1623 | 1696 | |
| r21545 | r21546 | |
| 1672 | 1745 | <feature name="dipswitch" value="DSW1" /> |
| 1673 | 1746 | <feature name="battery" value="BATT1 CR2032" /> |
| 1674 | 1747 | <feature name="cart_model" value="no shell" /> |
| 1748 | ||
| 1749 | <feature name="slot" value="hirom" /> | |
| 1675 | 1750 | <dataarea name="rom" size="4194304"> |
| 1676 | 1751 | <rom name="mk3 snes 7-13 0.u1" size="524288" crc="6df60c89" sha1="b320ad416036b64abbea499598746988d0071bad" offset="0x000000" /> |
| 1677 | 1752 | <rom name="1.u2" size="524288" crc="b91e68d5" sha1="1542ed8b0bc41258636ff7182070ed5855b959ff" offset="0x080000" /> |
| r21545 | r21546 | |
| 1712 | 1787 | <feature name="dipswitch" value="DSW1" /> <!-- to be confirmed --> |
| 1713 | 1788 | <feature name="battery" value="BATT1 CR2032" /> <!-- to be confirmed --> |
| 1714 | 1789 | <feature name="cart_model" value="no shell" /> |
| 1790 | ||
| 1791 | <feature name="slot" value="lorom" /> | |
| 1715 | 1792 | <dataarea name="rom" size="2097152"> |
| 1716 | 1793 | <rom name="u1" size="524288" crc="da05a113" sha1="4adac4799ee54db5348c075b75025bbaed722322" offset="0x000000" /> <!-- unreadable chip name --> |
| 1717 | 1794 | <rom name="u2" size="524288" crc="61d1dc94" sha1="f62548c25fb1890891ac12f3bbb061b6542baefc" offset="0x080000" /> <!-- unreadable chip name --> |
| r21545 | r21546 | |
| 1739 | 1816 | <feature name="lockout" value="" /> |
| 1740 | 1817 | <feature name="battery" value="BATT CR2032" /> |
| 1741 | 1818 | <feature name="cart_model" value="no shell" /> |
| 1819 | ||
| 1820 | <feature name="slot" value="lorom" /> | |
| 1742 | 1821 | <dataarea name="rom" size="1572864"> |
| 1743 | 1822 | <rom name="u1" size="524288" crc="aa96066d" sha1="c5231d573e8ae20b5c71272e4b5daf3ed93ff511" offset="0x000000" /> |
| 1744 | 1823 | <rom name="u2" size="524288" crc="be507476" sha1="336549d9b35908cdb43b21bdfc4df0eee6a4d76b" offset="0x080000" /> |
| r21545 | r21546 | |
| 1802 | 1881 | <feature name="lockout" value="" /> |
| 1803 | 1882 | <feature name="battery" value="BATT CR2032" /> |
| 1804 | 1883 | <feature name="cart_model" value="no shell" /> |
| 1884 | ||
| 1885 | <feature name="slot" value="lorom" /> | |
| 1805 | 1886 | <dataarea name="rom" size="2097152"> |
| 1806 | 1887 | <rom name="nba 1.u1" size="524288" crc="a32eeb5f" sha1="e944f4fa29f8f39d5ebbd55c7b8bb7dc070568eb" offset="0x000000" /> |
| 1807 | 1888 | <rom name="nba 2.u2" size="524288" crc="c0ca8c3c" sha1="af5caa1b0254f6b42e4f7f3ba07d0af904017e3c" offset="0x080000" /> |
| r21545 | r21546 | |
| 1830 | 1911 | <feature name="lockout" value="" /> |
| 1831 | 1912 | <feature name="battery" value="BATT CR2032" /> |
| 1832 | 1913 | <feature name="cart_model" value="no shell" /> |
| 1914 | ||
| 1915 | <feature name="slot" value="lorom" /> | |
| 1833 | 1916 | <dataarea name="rom" size="2097152"> |
| 1834 | 1917 | <rom name="x.u1" size="524288" crc="3722c69e" sha1="b47dd6fd29ed4d9182351d0c60af148a6368ff80" offset="0x000000" /> |
| 1835 | 1918 | <rom name="x.u2" size="524288" crc="058cc4a9" sha1="343ab1f064641b3aa573ace82284a63fe21f4f9a" offset="0x080000" /> |
| r21545 | r21546 | |
| 1898 | 1981 | <feature name="lockout" value="" /> |
| 1899 | 1982 | <feature name="battery" value="BATT CR2032" /> |
| 1900 | 1983 | <feature name="cart_model" value="unknown" /> |
| 1984 | ||
| 1985 | <feature name="slot" value="lorom" /> | |
| 1901 | 1986 | <dataarea name="rom" size="1048576"> |
| 1902 | 1987 | <rom name="night mare busters 0.u1" size="524288" crc="95866d44" sha1="9fffe95a62650915d353f7f3d1eda59e20aa0739" offset="0x000000" /> |
| 1903 | 1988 | <rom name="night mare busters 1.u2" size="524288" crc="a10feef7" sha1="91506f43f8babbd7ac9ec07d41b43dfd504dc3e3" offset="0x080000" /> |
| r21545 | r21546 | |
| 1925 | 2010 | <feature name="lockout" value="" /> |
| 1926 | 2011 | <feature name="battery" value="BATT CR2032" /> |
| 1927 | 2012 | <feature name="cart_model" value="no shell" /> |
| 2013 | ||
| 2014 | <feature name="slot" value="lorom" /> | |
| 1928 | 2015 | <dataarea name="rom" size="2097152"> |
| 1929 | 2016 | <rom name="u1" size="524288" crc="640ed42e" sha1="dec7fcccbc1886e19dddf2c2d7fb18ac8bd2d303" offset="0x000000" /> |
| 1930 | 2017 | <rom name="u2" size="524288" crc="cd83aa26" sha1="079670a1d5b9dad150972efd88cb65cc4378a0c1" offset="0x080000" /> |
| r21545 | r21546 | |
| 1935 | 2022 | </software> |
| 1936 | 2023 | |
| 1937 | 2024 | <!-- |
| 1938 | <software name="pilotwinp" cloneof="pilotwin"> | |
| 1939 | <!- - Van Halen - -> | |
| 1940 | <description>Pilotwings (Jpn, Prototype 19901025)</description> | |
| 1941 | <year>1990</year> | |
| 1942 | <publisher>Nintendo</publisher> | |
| 1943 | <info name="serial" value="SHVC-PW" /> | |
| 1944 | <info name="release" value="" /> | |
| 1945 | <info name="alt_title" value="パイロットウイングス" /> | |
| 1946 | <part name="cart" interface="snes_cart"> | |
| 1947 | <feature name="enhancement" value="DSP1" /> | |
| 1948 | <feature name="pcb" value="SHVC-2Q0N-X1" /> | |
| 1949 | <feature name="u1" value="U1 EPROM" /> | |
| 1950 | <feature name="u2" value="U2 EPROM" /> <!- - emtpy slot - -> | |
| 1951 | <feature name="u3" value="U3" /> <!- - EPL16P8B - -> | |
| 1952 | <feature name="u4" value="U4 DRAM" /> <!- - emtpy slot - -> | |
| 1953 | <feature name="u3" value="U5" /> <!- - 2/10/2 FLY DSP (D77P25D) - -> | |
| 1954 | <feature name="u4" value="U6" /> <!- - 74HCU04 - -> | |
| 1955 | <feature name="u5" value="U7" /> <!- - CIC - -> | |
| 1956 | <feature name="cart_model" value="n/a" /> <!- - similar to SHVC-006 - -> | |
| 1957 | <feature name="cart_back_label" value="n/a" /> | |
| 1958 | <dataarea name="rom" size="524288"> | |
| 1959 | <rom name="90-10-25 nes pw" size="524288" crc="" sha1="" offset="0x000000" /> | |
| 1960 | </dataarea> | |
| 1961 | </part> | |
| 1962 | </software> | |
| 2025 | <software name="pilotwinp" cloneof="pilotwin"> | |
| 2026 | <!- - Van Halen - -> | |
| 2027 | <description>Pilotwings (Jpn, Prototype 19901025)</description> | |
| 2028 | <year>1990</year> | |
| 2029 | <publisher>Nintendo</publisher> | |
| 2030 | <part name="cart" interface="snes_cart"> | |
| 2031 | <feature name="enhancement" value="DSP1" /> | |
| 2032 | <feature name="pcb" value="SHVC-2Q0N-X1" /> | |
| 2033 | <feature name="u1" value="U1 EPROM" /> | |
| 2034 | <feature name="u2" value="U2 EPROM" /> <!- - emtpy slot - -> | |
| 2035 | <feature name="u3" value="U3" /> <!- - EPL16P8B - -> | |
| 2036 | <feature name="u4" value="U4 DRAM" /> <!- - emtpy slot - -> | |
| 2037 | <feature name="u5" value="U5" /> <!- - 2/10/2 FLY DSP (D77P25D) - -> | |
| 2038 | <feature name="u6" value="U6" /> <!- - 74HCU04 - -> | |
| 2039 | <feature name="u7" value="U7" /> <!- - CIC - -> | |
| 2040 | <feature name="cart_model" value="n/a" /> <!- - similar to SHVC-006 - -> | |
| 2041 | <feature name="cart_back_label" value="n/a" /> | |
| 2042 | ||
| 2043 | <feature name="slot" value="lorom_dsp" /> | |
| 2044 | <dataarea name="rom" size="524288"> | |
| 2045 | <rom name="90-10-25 nes pw" size="524288" crc="" sha1="" offset="0x000000" /> | |
| 2046 | </dataarea> | |
| 2047 | <dataarea name="addon" size="10240"> | |
| 2048 | <rom name="dsp1.u5" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 2049 | </dataarea> | |
| 2050 | </part> | |
| 2051 | </software> | |
| 1963 | 2052 | --> |
| 1964 | 2053 | |
| 1965 | 2054 | <software name="piratedwup" cloneof="piratedw"> |
| r21545 | r21546 | |
| 1978 | 2067 | <feature name="lockout" value="" /> |
| 1979 | 2068 | <feature name="battery" value="BATT CR2032" /> |
| 1980 | 2069 | <feature name="cart_model" value="no shell" /> |
| 2070 | ||
| 2071 | <feature name="slot" value="lorom" /> | |
| 1981 | 2072 | <dataarea name="rom" size="1048576"> |
| 1982 | 2073 | <rom name="u1" size="524288" crc="68873f58" sha1="5a696a96e3182cafde41ba4f79b5cdbbbc057c1f" offset="0x000000" /> |
| 1983 | 2074 | <rom name="pirates of the dark water.u2" size="524288" crc="af410348" sha1="929af6308d9abf2fd3539facc778dd326e096d37" offset="0x080000" /> |
| r21545 | r21546 | |
| 2003 | 2094 | <feature name="lockout" value="" /> |
| 2004 | 2095 | <feature name="battery" value="BATT CR2032" /> |
| 2005 | 2096 | <feature name="cart_model" value="no shell" /> |
| 2097 | ||
| 2098 | <feature name="slot" value="lorom" /> | |
| 2006 | 2099 | <dataarea name="rom" size="524288"> |
| 2007 | 2100 | <rom name="rpm 08-14-91 0563.u1" size="524288" crc="c739d55d" sha1="b0771c2e3c19869f29677f356c4f0592cdf427d6" offset="0x000000" /> |
| 2008 | 2101 | </dataarea> |
| r21545 | r21546 | |
| 2017 | 2110 | <year>1994</year> |
| 2018 | 2111 | <publisher>Bonsai Entertainment Corporation</publisher> <!-- cancelled --> |
| 2019 | 2112 | <part name="cart" interface="snes_cart"> |
| 2113 | ||
| 2114 | <feature name="slot" value="lorom" /> | |
| 2020 | 2115 | <dataarea name="rom" size="1048576"> |
| 2021 | 2116 | <rom name="binary" size="1048576" crc="3f0343a7" sha1="c19109d5187a716d0543b5cd59033c225defb6b4" offset="0x000000" /> |
| 2022 | 2117 | </dataarea> |
| r21545 | r21546 | |
| 2041 | 2136 | <feature name="lockout" value="" /> |
| 2042 | 2137 | <feature name="battery" value="BATT CR2032" /> |
| 2043 | 2138 | <feature name="cart_model" value="unknown" /> |
| 2139 | ||
| 2140 | <feature name="slot" value="lorom" /> | |
| 2044 | 2141 | <dataarea name="rom" size="2097152"> |
| 2045 | 2142 | <rom name="u1" size="524288" crc="884fd9db" sha1="c789f2266550f1c01a581379d377474dce728818" offset="0x000000" /> |
| 2046 | 2143 | <rom name="u2" size="524288" crc="b712fe58" sha1="dc986f743f34781aa24b25155e3affb96a999df9" offset="0x080000" /> |
| r21545 | r21546 | |
| 2068 | 2165 | <feature name="lockout" value="" /> |
| 2069 | 2166 | <feature name="battery" value="BATT CR2032" /> |
| 2070 | 2167 | <feature name="cart_model" value="unknown" /> |
| 2168 | ||
| 2169 | <feature name="slot" value="lorom" /> | |
| 2071 | 2170 | <dataarea name="rom" size="2097152"> |
| 2072 | 2171 | <rom name="rhi-0.u1" size="524288" crc="36520c40" sha1="99c648a220c3dbfcf5fda481c140eb96ae07ff71" offset="0x000000" /> |
| 2073 | 2172 | <rom name="rhi-1.u2" size="524288" crc="17d8475f" sha1="e78e18d00f9134620ab7090d8a6e5e7592255f76" offset="0x080000" /> |
| r21545 | r21546 | |
| 2091 | 2190 | <feature name="u2" value="" /> <!-- ROM --> |
| 2092 | 2191 | <feature name="u3" value="" /> <!-- 74LS139 --> |
| 2093 | 2192 | <feature name="u4" value="" /> <!-- CIC --> |
| 2193 | ||
| 2194 | <feature name="slot" value="lorom" /> | |
| 2094 | 2195 | <dataarea name="rom" size="1048576"> |
| 2095 | 2196 | <rom name="rock n'roll snes rom 0.u1" size="524288" crc="81356abc" sha1="88e5558511c9845b75c41c6a4a5c2a46a7782541" offset="0x000000" /> |
| 2096 | 2197 | <rom name="rom 1 snes rock 'n roll racing.u2" size="524288" crc="70b01122" sha1="08b18b2af54d8db938f0add6d0780e4fda512431" offset="0x080000" /> |
| r21545 | r21546 | |
| 2123 | 2224 | <feature name="dipswitch" value="DSW1" /> |
| 2124 | 2225 | <feature name="battery" value="BATT1 CR2032" /> |
| 2125 | 2226 | <feature name="cart_model" value="no shell" /> |
| 2227 | ||
| 2228 | <feature name="slot" value="hirom" /> | |
| 2126 | 2229 | <dataarea name="rom" size="2097152"> |
| 2127 | 2230 | <rom name="sj07 ir (94-11-11) 6501 0.u1" size="524288" crc="20549b6c" sha1="1da64f1820e0a413e02c38176679c72823d2936d" offset="0x000000" /> |
| 2128 | 2231 | <rom name="sj07 ir (94-11-11) 5d2b 1.u2" size="524288" crc="123267f6" sha1="5aa50699f40e8aafd966ff008a9558cc4d081a2e" offset="0x080000" /> |
| r21545 | r21546 | |
| 2152 | 2255 | <feature name="lockout" value="" /> |
| 2153 | 2256 | <feature name="battery" value="BATT CR2032" /> |
| 2154 | 2257 | <feature name="cart_model" value="no shell" /> |
| 2258 | ||
| 2259 | <feature name="slot" value="lorom" /> | |
| 2155 | 2260 | <dataarea name="rom" size="2097152"> |
| 2156 | 2261 | <rom name="u1" size="524288" crc="653461d5" sha1="ea85dfcce82edb4d0742abab199430b7dee1413a" offset="0x000000" /> |
| 2157 | 2262 | <rom name="u2" size="524288" crc="28af74b5" sha1="5f94e3faea8151df1585f8e1fb5a3abd67a200b5" offset="0x080000" /> |
| r21545 | r21546 | |
| 2183 | 2288 | <feature name="dipswitch" value="" /> <!-- unnamed, 6 switches --> |
| 2184 | 2289 | <feature name="battery" value="BT1 CR2032" /> <!-- empty socket --> |
| 2185 | 2290 | <feature name="cart_model" value="no shell" /> |
| 2291 | ||
| 2292 | <feature name="slot" value="lorom_sa1" /> | |
| 2186 | 2293 | <dataarea name="rom" size="2097152"> |
| 2187 | 2294 | <rom name="u1" size="524288" crc="a71c183f" sha1="9b77b41807f3fb1038e64248b429caecab8caba7" offset="0x000000" /> |
| 2188 | 2295 | <rom name="u2" size="524288" crc="3ec0e423" sha1="f2597412102a644633ab8a1fa7d5f05b92a927d8" offset="0x080000" /> |
| r21545 | r21546 | |
| 2205 | 2312 | <feature name="u2" value="U2 CIC" /> |
| 2206 | 2313 | <feature name="lockout" value="" /> |
| 2207 | 2314 | <feature name="cart_model" value="no shell" /> |
| 2315 | ||
| 2316 | <feature name="slot" value="lorom" /> | |
| 2208 | 2317 | <dataarea name="rom" size="524288"> |
| 2209 | 2318 | <rom name="shooter demo.u1" size="262144" crc="f4aa6642" sha1="5631c3199b96dfd387562a586e4ceb1595cd3d6e" offset="0x000000" /> |
| 2210 | 2319 | </dataarea> |
| r21545 | r21546 | |
| 2256 | 2365 | <feature name="lockout" value="" /> |
| 2257 | 2366 | <feature name="battery" value="BATT CR2032" /> |
| 2258 | 2367 | <feature name="cart_model" value="no shell" /> |
| 2368 | ||
| 2369 | <feature name="slot" value="lorom" /> | |
| 2259 | 2370 | <dataarea name="rom" size="1048576"> |
| 2260 | 2371 | <rom name="u1" size="524288" crc="88a1b7d5" sha1="f0bf2258ee6653bafe2d106e15d4a98be7ee80f2" offset="0x000000" /> |
| 2261 | 2372 | <rom name="u2" size="524288" crc="d0a6bf51" sha1="811bde6a959c1f4f79938f4b8ec3acd3b4b95938" offset="0x080000" /> |
| r21545 | r21546 | |
| 2280 | 2391 | <feature name="u5" value="U5 CIC(F411)" /> |
| 2281 | 2392 | <feature name="battery" value="none" /> |
| 2282 | 2393 | <feature name="cart_model" value="unknown" /> <!-- similar to SHVC-006 --> |
| 2394 | ||
| 2395 | <feature name="slot" value="lorom_sfx" /> | |
| 2283 | 2396 | <dataarea name="rom" size="1048576"> |
| 2284 | 2397 | <rom name="921222 pm2355 sns fo ver. 02 f6b9.u1" size="1048576" crc="0bae0941" sha1="1f5355534ccfaf26ae6c8f055f3e4768f9d72a7e" offset="0x000000" /> |
| 2285 | 2398 | </dataarea> |
| r21545 | r21546 | |
| 2307 | 2420 | <!-- end of epoxy version --> |
| 2308 | 2421 | <feature name="cart_model" value="SNS-006" /> |
| 2309 | 2422 | <feature name="cart_back_label" value="" /> |
| 2423 | ||
| 2424 | <feature name="slot" value="lorom_sfx" /> | |
| 2310 | 2425 | <dataarea name="rom" size="1048576"> |
| 2311 | 2426 | <rom name="sns-fu-0.u1" size="1048576" crc="cd1f04b8" sha1="2ba5f446dcb56d1164e28b337ae7b4833278b6d9" offset="0x000000" /> |
| 2312 | 2427 | </dataarea> |
| r21545 | r21546 | |
| 2340 | 2455 | <feature name="dipswitch" value="DSW1" /> <!-- (''..'.'.) --> |
| 2341 | 2456 | <feature name="battery" value="BATT1 CR2032" /> |
| 2342 | 2457 | <feature name="cart_model" value="no shell" /> |
| 2458 | ||
| 2459 | <feature name="slot" value="lorom" /> | |
| 2343 | 2460 | <dataarea name="rom" size="2097152"> |
| 2344 | 2461 | <rom name="ss1.u1" size="524288" crc="0f943938" sha1="5665d95c107ed35bda6bcbfd2e65042e329434a7" offset="0x000000" /> |
| 2345 | 2462 | <rom name="ss2.u2" size="524288" crc="839f1efb" sha1="45566b127fd9c295cf2bc363b25e58877fab3071" offset="0x080000" /> |
| r21545 | r21546 | |
| 2372 | 2489 | <feature name="lockout" value="" /> |
| 2373 | 2490 | <feature name="battery" value="BT1" /> |
| 2374 | 2491 | <feature name="cart_model" value="n/a" /> <!-- similar to SNSP-006 --> |
| 2492 | ||
| 2493 | <feature name="slot" value="lorom_sfx" /> | |
| 2375 | 2494 | <dataarea name="rom" size="1048576"> |
| 2376 | 2495 | <rom name="snsp p-cq.u1" size="1048576" crc="24935769" sha1="de21be64fde447d9c6a2f1b063d2f2e0d4034ca0" offset="0x000000" /> |
| 2377 | 2496 | </dataarea> |
| r21545 | r21546 | |
| 2425 | 2544 | <feature name="lockout" value="" /> |
| 2426 | 2545 | <feature name="battery" value="BATT CR2032" /> |
| 2427 | 2546 | <feature name="cart_model" value="no shell" /> |
| 2547 | ||
| 2548 | <feature name="slot" value="lorom" /> | |
| 2428 | 2549 | <dataarea name="rom" size="524288"> |
| 2429 | 2550 | <rom name="u1" size="524288" crc="3c3c2562" sha1="013c053a287a22d065cb06360139c82cd5e76cab" offset="0x000000" /> |
| 2430 | 2551 | </dataarea> |
| r21545 | r21546 | |
| 2452 | 2573 | <feature name="lockout" value="" /> |
| 2453 | 2574 | <feature name="battery" value="BATT CR2032" /> |
| 2454 | 2575 | <feature name="cart_model" value="no shell" /> |
| 2576 | ||
| 2577 | <feature name="slot" value="lorom" /> | |
| 2455 | 2578 | <dataarea name="rom" size="2097152"> |
| 2456 | 2579 | <rom name="scw2 rom0.u1" size="524288" crc="6e229eb9" sha1="eb6249dc2e5e31a8a2722abaf1fdf03962d9bbc8" offset="0x000000" /> |
| 2457 | 2580 | <rom name="scw2 rom1.u2" size="524288" crc="7fc5c30a" sha1="8375149b3ec0dcea8fb835dda180d007b7ff9fbb" offset="0x080000" /> |
| r21545 | r21546 | |
| 2479 | 2602 | <feature name="lockout" value="" /> |
| 2480 | 2603 | <feature name="battery" value="BATT CR2032" /> |
| 2481 | 2604 | <feature name="cart_model" value="no shell" /> |
| 2605 | ||
| 2606 | <feature name="slot" value="lorom" /> | |
| 2482 | 2607 | <dataarea name="rom" size="2097152"> |
| 2483 | 2608 | <rom name="driftout rom-1 usa 05-18-95 c234.u1" size="524288" crc="2dc7f2d9" sha1="9d3084d684fc9fb00dea1c78464608aed7a8ff5d" offset="0x000000" /> |
| 2484 | 2609 | <rom name="driftout rom-2 usa 05-18-95 fe18.u2" size="524288" crc="6f9c1e99" sha1="6e8848a7aaac8bace38cb7f56be750beb786c949" offset="0x080000" /> |
| r21545 | r21546 | |
| 2511 | 2636 | <feature name="lockout" value="" /> |
| 2512 | 2637 | <feature name="battery" value="BATT CR2032" /> |
| 2513 | 2638 | <feature name="cart_model" value="SHVC-006" /> |
| 2639 | ||
| 2640 | <feature name="slot" value="hirom" /> | |
| 2514 | 2641 | <dataarea name="rom" size="1572864"> |
| 2515 | 2642 | <rom name="u1" size="524288" crc="a4928a6b" sha1="2f6080f67a99136809c37d231d94c92b6ccef702" offset="0x000000" /> |
| 2516 | 2643 | <rom name="u2" size="524288" crc="1651559d" sha1="1c4a070ce4cac9768f304c474e06ecb6b3e6b50a" offset="0x080000" /> |
| r21545 | r21546 | |
| 2539 | 2666 | <feature name="lockout" value="" /> |
| 2540 | 2667 | <feature name="battery" value="BATT CR2032" /> |
| 2541 | 2668 | <feature name="cart_model" value="n/a" /> <!-- similar to SHVC-006 --> |
| 2669 | ||
| 2670 | <feature name="slot" value="lorom" /> | |
| 2542 | 2671 | <dataarea name="rom" size="1572864"> |
| 2543 | 2672 | <rom name="u1" size="524288" crc="dc30dbbf" sha1="8b29b80cca07dddc73d1d839a88d1c5158ff41b9" offset="0x000000" /> |
| 2544 | 2673 | <rom name="u2" size="524288" crc="aa37fb03" sha1="768e070f4fd1fad29d50fbb3ee5912cfbe14cf14" offset="0x080000" /> |
| r21545 | r21546 | |
| 2570 | 2699 | <feature name="lockout" value="" /> |
| 2571 | 2700 | <feature name="battery" value="BATT CR2032" /> |
| 2572 | 2701 | <feature name="cart_model" value="SNS-006" /> |
| 2702 | ||
| 2703 | <feature name="slot" value="lorom" /> | |
| 2573 | 2704 | <dataarea name="rom" size="2097152"> |
| 2574 | 2705 | <rom name="sns-4m-0 rom1.u1" size="524288" crc="4dd005b3" sha1="9e04968c6980e0705cee2d7360fb85e50f43ebfc" offset="0x000000" /> |
| 2575 | 2706 | <rom name="sns-4m-0 rom2.u2" size="524288" crc="f70564a1" sha1="6e0559fa959936a6c8fc7a85f398639bd723c0c4" offset="0x080000" /> |
| r21545 | r21546 | |
| 2603 | 2734 | <feature name="battery" value="BATT CR2032" /> |
| 2604 | 2735 | <feature name="cart_model" value="n/a" /> <!- - similar to SHVC-006 - -> |
| 2605 | 2736 | <feature name="cart_back_label" value="n/a" /> |
| 2737 | ||
| 2738 | <feature name="slot" value="hirom_dsp" /> | |
| 2606 | 2739 | <dataarea name="rom" size="524288"> |
| 2607 | 2740 | <rom name="kart.u1" size="524288" crc="" sha1="" offset="0x000000" /> |
| 2608 | 2741 | </dataarea> |
| 2742 | <dataarea name="addon" size="10240"> | |
| 2743 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 2744 | </dataarea> | |
| 2609 | 2745 | <dataarea name="nvram" size="32768"> |
| 2610 | 2746 | </dataarea> |
| 2611 | 2747 | </part> |
| r21545 | r21546 | |
| 2636 | 2772 | <feature name="battery" value="BATT CR2032" /> |
| 2637 | 2773 | <feature name="cart_model" value="n/a" /> |
| 2638 | 2774 | <feature name="cart_back_label" value="n/a" /> |
| 2775 | ||
| 2776 | <feature name="slot" value="hirom_dsp" /> | |
| 2639 | 2777 | <dataarea name="rom" size="524288"> |
| 2640 | 2778 | <rom name="super mario kart.u1" size="524288" crc="cd80db86" sha1="47e103d8398cf5b7cbb42b95df3a3c270691163b" offset="0x000000" /> |
| 2641 | 2779 | </dataarea> |
| 2780 | <dataarea name="addon" size="10240"> | |
| 2781 | <rom name="dsp1.u4" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 2782 | </dataarea> | |
| 2642 | 2783 | <dataarea name="nvram" size="2048"> |
| 2643 | 2784 | </dataarea> |
| 2644 | 2785 | </part> |
| r21545 | r21546 | |
| 2675 | 2816 | <feature name="dipswitch" value="SW3" /> |
| 2676 | 2817 | <feature name="battery" value="BT1" /> |
| 2677 | 2818 | <feature name="cart_model" value="n/a" /> |
| 2819 | ||
| 2820 | <feature name="slot" value="lorom_sfx" /> | |
| 2678 | 2821 | <dataarea name="rom" size="2097152"> |
| 2679 | 2822 | <rom name="sns-p yi 0.u1" size="524288" crc="7581f685" sha1="8e16f2ae29d0b2ba709a2d4fe401daa09e2f9d60" offset="0x000000" /> |
| 2680 | 2823 | <rom name="sns-p yi 1.u2" size="524288" crc="b64aaba4" sha1="c25aebc384f3ee2867b84a57826e762a08aa8e5e" offset="0x080000" /> |
| r21545 | r21546 | |
| 2730 | 2873 | <feature name="lockout" value="" /> |
| 2731 | 2874 | <feature name="battery" value="BATT CR2032" /> |
| 2732 | 2875 | <feature name="cart_model" value="unknown" /> |
| 2876 | ||
| 2877 | <feature name="slot" value="lorom" /> | |
| 2733 | 2878 | <dataarea name="rom" size="1048576"> |
| 2734 | 2879 | <rom name="star wars snes 1.u1" size="524288" crc="ebf30c6f" sha1="3930b6b0498307de0dc2490e6422e551aec71913" offset="0x000000" /> |
| 2735 | 2880 | <rom name="star wars snes 2.u2" size="524288" crc="d43cf27f" sha1="2adf9e02d14a000b9d03262127356c2a0cb4ef1f" offset="0x080000" /> |
| r21545 | r21546 | |
| 2772 | 2917 | <year>1993</year> |
| 2773 | 2918 | <publisher>Visual Concepts</publisher> <!-- cancelled --> |
| 2774 | 2919 | <part name="cart" interface="snes_cart"> |
| 2920 | ||
| 2921 | <feature name="slot" value="hirom" /> | |
| 2775 | 2922 | <dataarea name="rom" size="524288"> |
| 2776 | 2923 | <rom name="sylvester and tweety (proto dec 15th 1993).sfc" size="524288" crc="3127c85b" sha1="b9f6d52a625f508fbd681b0c7ca72e26516094f3" offset="0x000000" /> |
| 2777 | 2924 | </dataarea> |
| r21545 | r21546 | |
| 2783 | 2930 | <year>1993</year> |
| 2784 | 2931 | <publisher>Visual Concepts</publisher> <!-- cancelled --> |
| 2785 | 2932 | <part name="cart" interface="snes_cart"> |
| 2933 | ||
| 2934 | <feature name="slot" value="hirom" /> | |
| 2786 | 2935 | <dataarea name="rom" size="524288"> |
| 2787 | 2936 | <rom name="sylvester and tweety (proto oct 11th 1993).sfc" size="524288" crc="cbe02df3" sha1="ebf556057c1951a70ed036f915e96aff7846321a" offset="0x000000" /> |
| 2788 | 2937 | </dataarea> |
| r21545 | r21546 | |
| 2804 | 2953 | <feature name="lockout" value="" /> |
| 2805 | 2954 | <feature name="battery" value="BATT CR2032" /> |
| 2806 | 2955 | <feature name="cart_model" value="SNS-006" /> |
| 2956 | ||
| 2957 | <feature name="slot" value="lorom" /> | |
| 2807 | 2958 | <dataarea name="rom" size="1048576"> |
| 2808 | 2959 | <rom name="snba 10-26 rm0 chk sum 878a.u1" size="524288" crc="9b121bab" sha1="331d29bc4ea722a442b0bedaf6fb9a87b68d1c6c" offset="0x000000" /> |
| 2809 | 2960 | <rom name="snba 10-26 rm1 chk sum 73de.u2" size="524288" crc="01625ba3" sha1="c241c20a450f1f955385c4e73c682959894389b7" offset="0x080000" /> |
| r21545 | r21546 | |
| 2828 | 2979 | <feature name="lockout" value="" /> |
| 2829 | 2980 | <feature name="battery" value="BATT CR2032" /> <!-- empty socket --> |
| 2830 | 2981 | <feature name="cart_model" value="SNS-006" /> |
| 2982 | ||
| 2983 | <feature name="slot" value="lorom" /> | |
| 2831 | 2984 | <dataarea name="rom" size="1048576"> |
| 2832 | 2985 | <rom name="rg 007l.u1" size="524288" crc="228e9e34" sha1="31c913860fa175218929906d3566852fe044cbf5" offset="0x000000" /> |
| 2833 | 2986 | <rom name="rg 007h.u2" size="524288" crc="0554c358" sha1="462adc5bd27fc3114ffdfec9e93b6893a81a5b4a" offset="0x080000" /> |
| r21545 | r21546 | |
| 2848 | 3001 | <feature name="lockout" value="" /> |
| 2849 | 3002 | <feature name="cart_model" value="n/a" /> <!-- similar to SNS-006 --> |
| 2850 | 3003 | <feature name="cart_back_label" value="n/a" /> <!-- no back sticker --> |
| 3004 | ||
| 3005 | <feature name="slot" value="lorom" /> | |
| 2851 | 3006 | <dataarea name="rom" size="524288"> |
| 2852 | 3007 | <rom name="burn-in w acc 24814 r.d.u1" size="524288" crc="7bc95444" sha1="c0bd7ec6a96740320d655c386e47af9631646766" offset="0x000000" /> |
| 2853 | 3008 | </dataarea> |
| r21545 | r21546 | |
| 2869 | 3024 | <feature name="lockout" value="" /> |
| 2870 | 3025 | <feature name="battery" value="BATT CR2032" /> <!-- empty socket --> |
| 2871 | 3026 | <feature name="cart_model" value="SNS-006" /> |
| 3027 | ||
| 3028 | <feature name="slot" value="lorom" /> | |
| 2872 | 3029 | <dataarea name="rom" size="524288"> |
| 2873 | 3030 | <rom name="u1" size="524288" crc="5f2ab21d" sha1="b0ef4e1c0dbf5f70bb699d5696925e78dbd9d00e" offset="0x000000" /> |
| 2874 | 3031 | </dataarea> |
| r21545 | r21546 | |
| 2923 | 3080 | <feature name="lockout" value="" /> |
| 2924 | 3081 | <feature name="battery" value="BATT CR2032" /> |
| 2925 | 3082 | <feature name="cart_model" value="no shell" /> |
| 3083 | ||
| 3084 | <feature name="slot" value="lorom" /> | |
| 2926 | 3085 | <dataarea name="rom" size="1048576"> |
| 2927 | 3086 | <rom name="wild guns.u1" size="524288" crc="112b8b6f" sha1="44e97d42d0dc42a507885e06e9812093beae7ebc" offset="0x000000" /> |
| 2928 | 3087 | <rom name="u2" size="524288" crc="268ca9a2" sha1="9a52b30afd999e089aac1e2806d7f049c75204a1" offset="0x080000" /> |
| r21545 | r21546 | |
| 2944 | 3103 | <feature name="u5" value="U5 CIC" /> |
| 2945 | 3104 | <feature name="lockout" value="" /> |
| 2946 | 3105 | <feature name="battery" value="BATT CR2032" /> |
| 3106 | ||
| 3107 | <feature name="slot" value="lorom" /> | |
| 2947 | 3108 | <dataarea name="rom" size="524288"> |
| 2948 | 3109 | <rom name="yoshi's cookie 1-19-93.u1" size="524288" crc="fbdfcdab" sha1="094af3a0739521ec524aea713080b77809d04769" offset="0x000000" /> |
| 2949 | 3110 | </dataarea> |
| r21545 | r21546 | |
| 2970 | 3131 | <feature name="lockout" value="" /> |
| 2971 | 3132 | <feature name="battery" value="BATT CR2032" /> |
| 2972 | 3133 | <feature name="cart_model" value="unknown" /> |
| 3134 | ||
| 3135 | <feature name="slot" value="hirom" /> | |
| 2973 | 3136 | <dataarea name="rom" size="524288"> |
| 2974 | 3137 | <rom name="u1" size="524288" crc="3758068a" sha1="eb271d8dc7f2ec04cddf1dd9cc7e24e51563d547" offset="0x000000" /> |
| 2975 | 3138 | </dataarea> |
| r21545 | r21546 | |
| 2995 | 3158 | <year>1993</year> |
| 2996 | 3159 | <publisher>Wolf Team</publisher> <!-- cancelled --> |
| 2997 | 3160 | <part name="cart" interface="snes_cart"> |
| 3161 | ||
| 3162 | <feature name="slot" value="lorom" /> | |
| 2998 | 3163 | <dataarea name="rom" size="1572864"> |
| 2999 | 3164 | <rom name="arcus odyssey (usa) (proto).sfc" size="1572864" crc="184ef398" sha1="1748c5df2cbcf2e1cc3720b6cb1206c0e966ec95" offset="0x000000" /> |
| 3000 | 3165 | </dataarea> |
| r21545 | r21546 | |
| 3010 | 3175 | <year>199?</year> |
| 3011 | 3176 | <publisher>Software Creations</publisher> <!-- cancelled --> |
| 3012 | 3177 | <part name="cart" interface="snes_cart"> |
| 3178 | ||
| 3179 | <feature name="slot" value="lorom" /> | |
| 3013 | 3180 | <dataarea name="rom" size="524288"> |
| 3014 | 3181 | <rom name="batman (usa) (proto).sfc" size="524288" crc="4a345ef1" sha1="a7b01823e7d7065463266678cc07a98f8649b21e" offset="0x000000" /> |
| 3015 | 3182 | </dataarea> |
| r21545 | r21546 | |
| 3026 | 3193 | <publisher>Hi-Tech Expressions</publisher> <!-- cancelled? --> |
| 3027 | 3194 | <info name="serial" value="SNS-ABWE-USA" /> <!-- based on header --> |
| 3028 | 3195 | <part name="cart" interface="snes_cart"> |
| 3196 | ||
| 3197 | <feature name="slot" value="lorom" /> | |
| 3029 | 3198 | <dataarea name="rom" size="1048576"> |
| 3030 | 3199 | <rom name="bobby's world (usa) (proto).sfc" size="1048576" crc="18bbee33" sha1="93e740d37750e1f464b545dfb569b9d51c3473e4" offset="0x000000" /> |
| 3031 | 3200 | </dataarea> |
| r21545 | r21546 | |
| 3039 | 3208 | <year>1993</year> |
| 3040 | 3209 | <publisher>Accolade</publisher> |
| 3041 | 3210 | <part name="cart" interface="snes_cart"> |
| 3211 | ||
| 3212 | <feature name="slot" value="lorom" /> | |
| 3042 | 3213 | <dataarea name="rom" size="2097152"> |
| 3043 | 3214 | <rom name="bubsy in claws encounters of the furred kind (usa) (beta).sfc" size="2097152" crc="3f3a7180" sha1="6354cc73672d6c8ada94218c873d10844f616465" offset="0x000000" /> |
| 3044 | 3215 | </dataarea> |
| r21545 | r21546 | |
| 3051 | 3222 | <year>1993</year> |
| 3052 | 3223 | <publisher>Accolade</publisher> |
| 3053 | 3224 | <part name="cart" interface="snes_cart"> |
| 3225 | ||
| 3226 | <feature name="slot" value="lorom" /> | |
| 3054 | 3227 | <dataarea name="rom" size="2097152"> |
| 3055 | 3228 | <rom name="bubsy (prototype).sfc" size="2097152" crc="49da572f" sha1="ffd0d78ce7e7489cb8a3870d64662e8f51debabd" offset="0x000000" /> |
| 3056 | 3229 | </dataarea> |
| r21545 | r21546 | |
| 3063 | 3236 | <year>1993</year> |
| 3064 | 3237 | <publisher>Naxat Soft</publisher> |
| 3065 | 3238 | <part name="cart" interface="snes_cart"> |
| 3239 | ||
| 3240 | <feature name="slot" value="lorom" /> | |
| 3066 | 3241 | <dataarea name="rom" size="1048576"> |
| 3067 | 3242 | <rom name="chou makai taisen! dorabocchan (japan) (beta) (1992-12-21).sfc" size="1048576" crc="0c34d7b5" sha1="68c77c52e5d91c379a897ce4048922e15ac9b9ed" offset="0x000000" /> |
| 3068 | 3243 | </dataarea> |
| r21545 | r21546 | |
| 3077 | 3252 | <year>1993</year> |
| 3078 | 3253 | <publisher>Konami</publisher> |
| 3079 | 3254 | <part name="cart" interface="snes_cart"> |
| 3255 | ||
| 3256 | <feature name="slot" value="lorom" /> | |
| 3080 | 3257 | <dataarea name="rom" size="1048576"> |
| 3081 | 3258 | <rom name="cybernator (usa) (beta).sfc" size="1048576" crc="aca397e8" sha1="acc2b4c01e97b72a83fbb3f4db1bb2e4535ad864" offset="0x000000" /> |
| 3082 | 3259 | </dataarea> |
| r21545 | r21546 | |
| 3101 | 3278 | <feature name="lockout" value="" /> |
| 3102 | 3279 | <feature name="battery" value="BATT CR2032" /> |
| 3103 | 3280 | <feature name="cart_model" value="no shell" /> |
| 3281 | ||
| 3282 | <feature name="slot" value="hirom" /> | |
| 3104 | 3283 | <dataarea name="rom" size="1572864"> |
| 3105 | 3284 | <rom name="u1" size="524288" crc="216825e3" sha1="9067843ef43bbdd1c5a2f13e3e70707c5f8913bd" offset="0x000000" /> |
| 3106 | 3285 | <rom name="u2" size="524288" crc="8c19ea99" sha1="11f721a0d74d9a9455ebe8270150c7a8308cfd52" offset="0x080000" /> |
| r21545 | r21546 | |
| 3115 | 3294 | <year>1994</year> |
| 3116 | 3295 | <publisher>Capcom</publisher> |
| 3117 | 3296 | <part name="cart" interface="snes_cart"> |
| 3297 | ||
| 3298 | <feature name="slot" value="lorom" /> | |
| 3118 | 3299 | <dataarea name="rom" size="2097152"> |
| 3119 | 3300 | <rom name="demon's blazon - makaimura monshou hen (japan) (sample).sfc" size="2097152" crc="d5bae4ff" sha1="170b51497678ee4f33c94e2bb9bc728f68c31823" offset="0x000000" /> |
| 3120 | 3301 | </dataarea> |
| r21545 | r21546 | |
| 3127 | 3308 | <year>1993</year> |
| 3128 | 3309 | <publisher>Malibu Interactive</publisher> <!-- cancelled --> |
| 3129 | 3310 | <part name="cart" interface="snes_cart"> |
| 3311 | ||
| 3312 | <feature name="slot" value="lorom" /> | |
| 3130 | 3313 | <dataarea name="rom" size="524288"> |
| 3131 | 3314 | <rom name="firearm (beta).sfc" size="524288" crc="9aa13682" sha1="22d140eafbad07c8ce71a89ce586cdbcc82d30e8" offset="0x000000" /> |
| 3132 | 3315 | </dataarea> |
| r21545 | r21546 | |
| 3139 | 3322 | <year>1993</year> |
| 3140 | 3323 | <publisher>Kemco</publisher> |
| 3141 | 3324 | <part name="cart" interface="snes_cart"> |
| 3325 | ||
| 3326 | <feature name="slot" value="lorom" /> | |
| 3142 | 3327 | <dataarea name="rom" size="524288"> |
| 3143 | 3328 | <rom name="first samurai (europe) (beta).sfc" size="524288" crc="9b855ed0" sha1="93f142fb27f778576a8e0ccc06e8fef60eaf637b" offset="0x000000" /> |
| 3144 | 3329 | </dataarea> |
| r21545 | r21546 | |
| 3152 | 3337 | <publisher>Taito</publisher> |
| 3153 | 3338 | <part name="cart" interface="snes_cart"> |
| 3154 | 3339 | <feature name="cart_model" value="SNS-006" /> |
| 3340 | ||
| 3341 | <feature name="slot" value="lorom" /> | |
| 3155 | 3342 | <dataarea name="rom" size="1048576"> |
| 3156 | 3343 | <rom name="flintstones, the - the treasure of sierra madrock (proto).sfc" size="1048576" crc="bfc15ed9" sha1="379212d62a273fe335726518dd0691b95155cee9" offset="0x000000" /> |
| 3157 | 3344 | </dataarea> |
| r21545 | r21546 | |
| 3168 | 3355 | <!--info name="alt_title" value="RS035 がんばれゴエモン3 広報宣伝室用 SAMPLE 94 10 24 0079" /--> <!-- this is the cartridge label --> |
| 3169 | 3356 | <sharedfeat name="compatibility" value="NTSC"/> |
| 3170 | 3357 | <part name="cart" interface="snes_cart"> |
| 3358 | ||
| 3359 | <feature name="slot" value="lorom" /> | |
| 3171 | 3360 | <dataarea name="rom" size="2097152"> |
| 3172 | 3361 | <rom name="ganbare goemon 3 - shishi juurokubee no karakuri manjigatame (japan) (beta).sfc" size="2097152" crc="9a1aea39" sha1="1154c54e14895f0dbd2f872123f3f73696e2599d" offset="0x000000" /> |
| 3173 | 3362 | </dataarea> |
| r21545 | r21546 | |
| 3192 | 3381 | <feature name="lockout" value="" /> |
| 3193 | 3382 | <feature name="battery" value="BATT CR2032" /> |
| 3194 | 3383 | <feature name="cart_model" value="no shell" /> |
| 3384 | ||
| 3385 | <feature name="slot" value="lorom" /> | |
| 3195 | 3386 | <dataarea name="rom" size="1048576"> |
| 3196 | 3387 | <rom name="ganba 3 11-19 u0.u1" size="524288" crc="43dd8512" sha1="5c40b2033297361f0ea76d574c5326bd9f77c46b" offset="0x000000" /> |
| 3197 | 3388 | <rom name="ganba 3 11-19 u1.u2" size="524288" crc="18629091" sha1="4ff8003483b27feec839ee79563c3c8870973055" offset="0x080000" /> |
| r21545 | r21546 | |
| 3207 | 3398 | <year>1994</year> |
| 3208 | 3399 | <publisher>Game Freak</publisher> <!-- cancelled --> |
| 3209 | 3400 | <part name="cart" interface="snes_cart"> |
| 3401 | ||
| 3402 | <feature name="slot" value="hirom" /> | |
| 3210 | 3403 | <dataarea name="rom" size="1572864"> |
| 3211 | 3404 | <rom name="jelly boy 2 (japan) (proto).sfc" size="1572864" crc="f3a6c574" sha1="7e00ec9f839e794af834d89826e2810f315af9d6" offset="0x000000" /> |
| 3212 | 3405 | </dataarea> |
| r21545 | r21546 | |
| 3223 | 3416 | <publisher>Bandai</publisher> |
| 3224 | 3417 | <info name="alt_title" value="マジンガーZ" /> |
| 3225 | 3418 | <part name="cart" interface="snes_cart"> |
| 3419 | ||
| 3420 | <feature name="slot" value="lorom" /> | |
| 3226 | 3421 | <dataarea name="rom" size="1048576"> |
| 3227 | 3422 | <rom name="mazinger z (japan) [b].sfc" size="1048576" crc="ca42e604" sha1="c35ae7ad817c71eb2cab783c2b6a215e6c0ec53c" offset="0x000000" /> |
| 3228 | 3423 | </dataarea> |
| r21545 | r21546 | |
| 3236 | 3431 | <year>1993</year> |
| 3237 | 3432 | <publisher>Virgin Games</publisher> <!-- cancelled --> |
| 3238 | 3433 | <part name="cart" interface="snes_cart"> |
| 3434 | ||
| 3435 | <feature name="slot" value="lorom" /> | |
| 3239 | 3436 | <dataarea name="rom" size="2097152"> |
| 3240 | 3437 | <rom name="mick & mack as the global gladiators (usa) (proto) [b].sfc" size="2097152" crc="240442ea" sha1="920adcfce57ec5e882a39a95e616053a438ce91a" offset="0x000000" status="baddump" /> |
| 3241 | 3438 | </dataarea> |
| r21545 | r21546 | |
| 3250 | 3447 | <publisher>Hi-Tech Expressions</publisher> <!-- cancelled --> |
| 3251 | 3448 | <info name="serial" value="SNS-AMPE-USA" /> <!-- based on header --> |
| 3252 | 3449 | <part name="cart" interface="snes_cart"> |
| 3450 | ||
| 3451 | <feature name="slot" value="hirom" /> | |
| 3253 | 3452 | <dataarea name="rom" size="1048576"> |
| 3254 | 3453 | <rom name="mickey's playtown adventure - a day of discovery! (usa) (proto).sfc" size="1048576" crc="53524952" sha1="4c3cf0fe8f4b662414660977d913c0372ee7fe0e" offset="0x000000" /> |
| 3255 | 3454 | </dataarea> |
| r21545 | r21546 | |
| 3262 | 3461 | <year>1994</year> |
| 3263 | 3462 | <publisher>Compedia</publisher> <!-- cancelled --> |
| 3264 | 3463 | <part name="cart" interface="snes_cart"> |
| 3464 | ||
| 3465 | <feature name="slot" value="lorom" /> | |
| 3265 | 3466 | <dataarea name="rom" size="524288"> |
| 3266 | 3467 | <rom name="mr. bloopy - saves the world (usa) (proto) (1994-06-21 level 11-g).sfc" size="524288" crc="93f78934" sha1="3eb3a4f9a3e6b86375798689be894b7301afb98a" offset="0x000000" /> |
| 3267 | 3468 | </dataarea> |
| r21545 | r21546 | |
| 3274 | 3475 | <year>1994</year> |
| 3275 | 3476 | <publisher>Compedia</publisher> <!-- cancelled --> |
| 3276 | 3477 | <part name="cart" interface="snes_cart"> |
| 3478 | ||
| 3479 | <feature name="slot" value="lorom" /> | |
| 3277 | 3480 | <dataarea name="rom" size="1048576"> |
| 3278 | 3481 | <rom name="mr. bloopy - saves the world (usa) (proto) (1994-06-21 levels 000).sfc" size="1048576" crc="6574cea6" sha1="f1269527bceaf044e7c5f634ca61c0162b8b33f7" offset="0x000000" /> |
| 3279 | 3482 | </dataarea> |
| r21545 | r21546 | |
| 3286 | 3489 | <year>1994</year> |
| 3287 | 3490 | <publisher>Compedia</publisher> <!-- cancelled --> |
| 3288 | 3491 | <part name="cart" interface="snes_cart"> |
| 3492 | ||
| 3493 | <feature name="slot" value="lorom" /> | |
| 3289 | 3494 | <dataarea name="rom" size="524288"> |
| 3290 | 3495 | <rom name="mr. bloopy - saves the world (usa) (proto) (1994-06-22 levels-b).sfc" size="524288" crc="63885a43" sha1="1bcc44acd6297806ad3239eb416be5217ac1a43c" offset="0x000000" /> |
| 3291 | 3496 | </dataarea> |
| r21545 | r21546 | |
| 3298 | 3503 | <year>1993</year> |
| 3299 | 3504 | <publisher>Park Place Productions</publisher> <!-- cancelled --> |
| 3300 | 3505 | <part name="cart" interface="snes_cart"> |
| 3506 | ||
| 3507 | <feature name="slot" value="lorom" /> | |
| 3301 | 3508 | <dataarea name="rom" size="2097152"> |
| 3302 | 3509 | <rom name="muhammad ali heavyweight boxing (usa) (proto).sfc" size="2097152" crc="02972591" sha1="cfcc8d804ab6c97c14dcddc452994e76e6ef4458" offset="0x000000" /> |
| 3303 | 3510 | </dataarea> |
| r21545 | r21546 | |
| 3310 | 3517 | <year>1995</year> |
| 3311 | 3518 | <publisher>Acclaim Entertainment</publisher> |
| 3312 | 3519 | <part name="cart" interface="snes_cart"> |
| 3520 | ||
| 3521 | <feature name="slot" value="lorom" /> | |
| 3313 | 3522 | <dataarea name="rom" size="3145728"> |
| 3314 | 3523 | <rom name="nfl quarterback club 96 (usa) (beta).sfc" size="3145728" crc="b87abc7e" sha1="b13d6e5f98c7340d71ddf6855a81438200c958c0" offset="0x000000" /> |
| 3315 | 3524 | </dataarea> |
| r21545 | r21546 | |
| 3336 | 3545 | <feature name="lockout" value="" /> |
| 3337 | 3546 | <feature name="battery" value="BATT CR2032" /> |
| 3338 | 3547 | <feature name="cart_model" value="n/a" /> <!-- similar to SHVC-006 --> |
| 3548 | ||
| 3549 | <feature name="slot" value="lorom" /> | |
| 3339 | 3550 | <dataarea name="rom" size="1572864"> |
| 3340 | 3551 | <rom name="u1" size="524288" crc="8e95b72f" sha1="0fc6359ef462bfae0389ee3552d75ac41fb1df80" offset="0x000000" /> |
| 3341 | 3552 | <rom name="u2" size="524288" crc="8fc77187" sha1="d02bb52ee5d020a145df4627b83bf2cd6a1224e0" offset="0x080000" /> |
| r21545 | r21546 | |
| 3350 | 3561 | <year>1994</year> |
| 3351 | 3562 | <publisher>Fox Interactive</publisher> |
| 3352 | 3563 | <part name="cart" interface="snes_cart"> |
| 3564 | ||
| 3565 | <feature name="slot" value="lorom" /> | |
| 3353 | 3566 | <dataarea name="rom" size="2097152"> |
| 3354 | 3567 | <rom name="acc-page.1.fixed" size="1048576" crc="82231961" sha1="7c5be4a19ebf29cc49437318927071ccb471abe5" offset="0x000000" status="baddump" /> |
| 3355 | 3568 | <rom name="acc-page.2" size="1048576" crc="e25d4ef8" sha1="14a18954004a7967ea7fdb1a9368ec819d40bcca" offset="0x100000" /> |
| r21545 | r21546 | |
| 3365 | 3578 | <year>1994</year> |
| 3366 | 3579 | <publisher>Fox Interactive</publisher> |
| 3367 | 3580 | <part name="cart" interface="snes_cart"> |
| 3581 | ||
| 3582 | <feature name="slot" value="lorom" /> | |
| 3368 | 3583 | <dataarea name="rom" size="2097152"> |
| 3369 | 3584 | <rom name="acc-pmf.1" size="1048576" crc="1678f3f6" sha1="561d7031a3d397277aea3ecbb2e7b19864a6b74b" offset="0x000000" /> |
| 3370 | 3585 | <rom name="acc-pmf.2" size="1048576" crc="e755b0e5" sha1="b78fe0f83b5147813788edaf5bb15ddd421b4593" offset="0x100000" /> |
| r21545 | r21546 | |
| 3391 | 3606 | <feature name="lockout" value="" /> |
| 3392 | 3607 | <feature name="battery" value="BATT CR2032" /> |
| 3393 | 3608 | <feature name="cart_model" value="no shell" /> |
| 3609 | ||
| 3610 | <feature name="slot" value="lorom" /> | |
| 3394 | 3611 | <dataarea name="rom" size="2097152"> |
| 3395 | 3612 | <rom name="u1" size="524288" crc="c7cdd98e" sha1="be4a6d636cf70945f6978ae2ab035066f21bc929" offset="0x000000" /> |
| 3396 | 3613 | <rom name="u2" size="524288" crc="71aeff7a" sha1="9a3f2dcdffc24fb020362848f1af46d0e57940db" offset="0x080000" /> |
| r21545 | r21546 | |
| 3420 | 3637 | <feature name="lockout" value="" /> |
| 3421 | 3638 | <feature name="battery" value="BT1" /> |
| 3422 | 3639 | <feature name="cart_model" value="unknown" /> |
| 3640 | ||
| 3641 | <feature name="slot" value="lorom_sfx" /> | |
| 3423 | 3642 | <dataarea name="rom" size="524288"> |
| 3424 | 3643 | <rom name="powerslide sfx 12-4-94 rn 0010.u1" size="524288" crc="65ce3729" sha1="30115db2558060d9293684f3d5810d063a0c710e" offset="0x000000" /> |
| 3425 | 3644 | </dataarea> |
| r21545 | r21546 | |
| 3436 | 3655 | <year>1994</year> |
| 3437 | 3656 | <publisher>Malibu Interactive</publisher> <!-- cancelled --> |
| 3438 | 3657 | <part name="cart" interface="snes_cart"> |
| 3658 | ||
| 3659 | <feature name="slot" value="lorom" /> | |
| 3439 | 3660 | <dataarea name="rom" size="2097152"> |
| 3440 | 3661 | <rom name="prime (usa) (proto).sfc" size="2097152" crc="62abcc5c" sha1="6d07079727b1be1ffe1532accd37a2c01b1a12df" offset="0x000000" /> |
| 3441 | 3662 | </dataarea> |
| r21545 | r21546 | |
| 3447 | 3668 | <year>199?</year> |
| 3448 | 3669 | <publisher>Ocean</publisher> <!-- cancelled --> |
| 3449 | 3670 | <part name="cart" interface="snes_cart"> |
| 3671 | ||
| 3672 | <feature name="slot" value="lorom" /> | |
| 3450 | 3673 | <dataarea name="rom" size="2097152"> |
| 3451 | 3674 | <rom name="shadow, the (usa) (proto) (alt 1).sfc" size="2097152" crc="36894cc3" sha1="077f485295cdb91c4496d70f6aa2a478fe4d160f" offset="0x000000" /> |
| 3452 | 3675 | </dataarea> |
| r21545 | r21546 | |
| 3458 | 3681 | <year>199?</year> |
| 3459 | 3682 | <publisher>Ocean</publisher> <!-- cancelled --> |
| 3460 | 3683 | <part name="cart" interface="snes_cart"> |
| 3684 | ||
| 3685 | <feature name="slot" value="lorom" /> | |
| 3461 | 3686 | <dataarea name="rom" size="2097152"> |
| 3462 | 3687 | <rom name="shadow, the (usa) (proto).sfc" size="2097152" crc="13380511" sha1="130618b7eb2449f564152ff0583353612babd483" offset="0x000000" /> |
| 3463 | 3688 | </dataarea> |
| r21545 | r21546 | |
| 3470 | 3695 | <year>1993</year> |
| 3471 | 3696 | <publisher>Epic / Sony Records</publisher> |
| 3472 | 3697 | <part name="cart" interface="snes_cart"> |
| 3698 | ||
| 3699 | <feature name="slot" value="lorom" /> | |
| 3473 | 3700 | <dataarea name="rom" size="1048576"> |
| 3474 | 3701 | <rom name="solstice ii (japan) (beta) (1993-03-03).sfc" size="1048576" crc="37c2ec0c" sha1="a20974aeb0b3d23e13313ceca0831b1e00d34cb1" offset="0x000000" /> |
| 3475 | 3702 | </dataarea> |
| r21545 | r21546 | |
| 3485 | 3712 | <publisher>Ybarra Productions</publisher> <!-- cancelled --> |
| 3486 | 3713 | <info name="serial" value="SNS-C5-USA" /> |
| 3487 | 3714 | <part name="cart" interface="snes_cart"> |
| 3715 | ||
| 3716 | <feature name="slot" value="lorom" /> | |
| 3488 | 3717 | <dataarea name="rom" size="1048576"> |
| 3489 | 3718 | <rom name="spellcraft (usa) (proto).sfc" size="1048576" crc="3daea8a1" sha1="fe4dcca5c3cb2e721f4dbf971cc06fe10f78e629" offset="0x000000" /> |
| 3490 | 3719 | </dataarea> |
| r21545 | r21546 | |
| 3505 | 3734 | <feature name="u5" value="U5 CIC" /> |
| 3506 | 3735 | <feature name="lockout" value="" /> |
| 3507 | 3736 | --> |
| 3737 | ||
| 3738 | <feature name="slot" value="lorom" /> | |
| 3508 | 3739 | <dataarea name="rom" size="524288"> |
| 3509 | 3740 | <rom name="u1" size="524288" crc="855907a3" sha1="e90c70ab42e8cf59a6edd4678378ec41f0052ba2" offset="0x000000" /> |
| 3510 | 3741 | </dataarea> |
| r21545 | r21546 | |
| 3517 | 3748 | <year>199?</year> |
| 3518 | 3749 | <publisher>Infogrames</publisher> <!-- cancelled --> |
| 3519 | 3750 | <part name="cart" interface="snes_cart"> |
| 3751 | ||
| 3752 | <feature name="slot" value="lorom" /> | |
| 3520 | 3753 | <dataarea name="rom" size="524288"> |
| 3521 | 3754 | <rom name="super full metal (europe) (it,sv) (proto).sfc" size="524288" crc="32a810a6" sha1="f93250b2914c7550a0607c2197ee39f5834cebab" offset="0x000000" /> |
| 3522 | 3755 | </dataarea> |
| r21545 | r21546 | |
| 3529 | 3762 | <year>1992</year> |
| 3530 | 3763 | <publisher>IGS</publisher> <!-- cancelled --> |
| 3531 | 3764 | <part name="cart" interface="snes_cart"> |
| 3765 | ||
| 3766 | <feature name="slot" value="lorom" /> | |
| 3532 | 3767 | <dataarea name="rom" size="1048576"> |
| 3533 | 3768 | <rom name="super shadow of the beast (usa) (proto).sfc" size="1048576" crc="beadfd61" sha1="463fc84a163e1946190aa9683f518dc4e1bf0b97" offset="0x000000" /> |
| 3534 | 3769 | </dataarea> |
| r21545 | r21546 | |
| 3542 | 3777 | <year>1993</year> |
| 3543 | 3778 | <publisher>Visual Concepts</publisher> <!-- cancelled --> |
| 3544 | 3779 | <part name="cart" interface="snes_cart"> |
| 3780 | ||
| 3781 | <feature name="slot" value="hirom" /> | |
| 3545 | 3782 | <dataarea name="rom" size="2097152"> |
| 3546 | 3783 | <rom name="sylvester and tweety (usa) (proto).sfc" size="2097152" crc="8556f5a2" sha1="34fc79d0545a84754cf0fe11a8276f67fe6eea97" offset="0x000000" /> |
| 3547 | 3784 | </dataarea> |
| r21545 | r21546 | |
| 3554 | 3791 | <year>1994</year> |
| 3555 | 3792 | <publisher>Microprose</publisher> <!-- cancelled --> |
| 3556 | 3793 | <part name="cart" interface="snes_cart"> |
| 3794 | ||
| 3795 | <feature name="slot" value="lorom" /> | |
| 3557 | 3796 | <dataarea name="rom" size="1048576"> |
| 3558 | 3797 | <rom name="tinhead (europe) (proto).sfc" size="1048576" crc="1e079ac0" sha1="0f5b3db4919f49d905f539f6128b03ccebab20cf" offset="0x000000" /> |
| 3559 | 3798 | </dataarea> |
| r21545 | r21546 | |
| 3566 | 3805 | <year>1992</year> |
| 3567 | 3806 | <publisher>Carolco</publisher> <!-- cancelled --> |
| 3568 | 3807 | <part name="cart" interface="snes_cart"> |
| 3808 | ||
| 3809 | <feature name="slot" value="lorom" /> | |
| 3569 | 3810 | <dataarea name="rom" size="524288"> |
| 3570 | 3811 | <rom name="universal soldier (usa) (proto).sfc" size="524288" crc="59180f1c" sha1="c4bc9dc1fa0ef7d0bb1ae4b846679f4e66daaceb" offset="0x000000" /> |
| 3571 | 3812 | </dataarea> |
| r21545 | r21546 | |
| 3578 | 3819 | <year>199?</year> |
| 3579 | 3820 | <publisher>Sunsoft</publisher> <!-- cancelled --> |
| 3580 | 3821 | <part name="cart" interface="snes_cart"> |
| 3822 | ||
| 3823 | <feature name="slot" value="lorom" /> | |
| 3581 | 3824 | <dataarea name="rom" size="2097152"> |
| 3582 | 3825 | <rom name="wile e coyote's revenge (europe) (proto).sfc" size="2097152" crc="b0e684cc" sha1="7c9de677b72d0737512ad63cb04c67fff8ea9918" offset="0x000000" /> |
| 3583 | 3826 | </dataarea> |
| r21545 | r21546 | |
| 3593 | 3836 | <info name="alt_title" value="ウィザップ!~暗黒の王" /> |
| 3594 | 3837 | <sharedfeat name="compatibility" value="NTSC"/> |
| 3595 | 3838 | <part name="cart" interface="snes_cart"> |
| 3839 | ||
| 3840 | <feature name="slot" value="hirom" /> | |
| 3596 | 3841 | <dataarea name="rom" size="2097152"> |
| 3597 | 3842 | <rom name="wizap! - ankoku no ou (japan) (beta) (45768).sfc" size="2097152" crc="fd4da80c" sha1="ca10c92533951f47ecd2fc869c134a30d0be4db9" offset="0x000000" /> |
| 3598 | 3843 | <!-- rom name="wizap! - ankoku no ou (japan) (beta) (45768) [h1].sfc" size="2097152" crc="2cbc2f72" sha1="d0450f09729844188a0a17a2fb9fc365dd0484cc" offset="0x000000" /--> |
| r21545 | r21546 | |
| 3632 | 3877 | - Street Fighter EX Plus Alpha |
| 3633 | 3878 | - X-Men vs. Street Fighter |
| 3634 | 3879 | |
| 3635 | Device B: the game program checks for the expected values after writing to this device and refuses to work if they don`t match up, | |
| 3636 | a byte-sized constant value is written to $88:xxxx (or mirror thereof), then read back a byte from $80:xxxx (again, mirrored to some other places), | |
| 3880 | Device B: the game program checks for the expected values after writing to this device and refuses to work if they don`t match up, | |
| 3881 | a byte-sized constant value is written to $88:xxxx (or mirror thereof), then read back a byte from $80:xxxx (again, mirrored to some other places), | |
| 3637 | 3882 | - Soul Blade |
| 3638 | 3883 | |
| 3639 | Device C: the game program checks for the expected values after writing to this device and refuses to work if they don`t match up, | |
| 3640 | it seems to contain some kind of microcontroller and expects write sequences | |
| 3884 | Device C: the game program checks for the expected values after writing to this device and refuses to work if they don`t match up, | |
| 3885 | it seems to contain some kind of microcontroller and expects write sequences | |
| 3641 | 3886 | details of the algorithm unknown at this time, all the values the game needs were bruteforced |
| 3642 | 3887 | - Tekken 2 |
| 3643 | 3888 | --> |
| 3644 | 3889 | |
| 3645 | <software name="aladdi2k" supported="no"> | |
| 3890 | <software name="aladdi2k"> | |
| 3891 | <!-- Protection notes: write latch byte to 88xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx --> | |
| 3646 | 3892 | <!-- single cartridge source: d4s --> |
| 3647 | 3893 | <description>Aladdin 2000 (Bra, Mega Drive Bootleg)</description> |
| 3648 | 3894 | <year>199?</year> |
| r21545 | r21546 | |
| 3650 | 3896 | <part name="cart" interface="snes_cart"> |
| 3651 | 3897 | <feature name="pcb" value="" /> <!-- epoxy board with surface mounted cic --> |
| 3652 | 3898 | <feature name="cart_model" value="SNS-006" /> |
| 3899 | ||
| 3900 | <feature name="slot" value="lorom_poke" /> | |
| 3653 | 3901 | <dataarea name="rom" size="2097152"> |
| 3654 | 3902 | <rom name="u1" size="2097152" crc="752a25d3" sha1="a8585b3e61c610af18a077dd1a2ea3d0aa25dda8" offset="0x000000" /> |
| 3655 | 3903 | </dataarea> |
| r21545 | r21546 | |
| 3662 | 3910 | <year>199?</year> |
| 3663 | 3911 | <publisher><unlicensed></publisher> |
| 3664 | 3912 | <part name="cart" interface="snes_cart"> |
| 3913 | ||
| 3914 | <feature name="slot" value="lorom" /> | |
| 3665 | 3915 | <dataarea name="rom" size="2097152"> |
| 3666 | 3916 | <rom name="aladdin 2000 (mega drive bootleg) (cracked).sfc" size="2097152" crc="a818cfd5" sha1="1de9a68980cac63346e3cda14a5aa0d6cea8b739" offset="0x000000" /> |
| 3667 | 3917 | </dataarea> |
| r21545 | r21546 | |
| 3674 | 3924 | <year>199?</year> |
| 3675 | 3925 | <publisher><unlicensed></publisher> |
| 3676 | 3926 | <part name="cart" interface="snes_cart"> |
| 3927 | ||
| 3928 | <feature name="slot" value="lorom" /> | |
| 3677 | 3929 | <dataarea name="rom" size="1048576"> |
| 3678 | 3930 | <rom name="bananas de pijamas (unl) [!].sfc" size="1048576" crc="52b0d84b" sha1="149e916dfd4058f8de97d7bc8f74d5e630853ffb" offset="0x000000" /> |
| 3679 | 3931 | </dataarea> |
| r21545 | r21546 | |
| 3686 | 3938 | <year>199?</year> |
| 3687 | 3939 | <publisher><unlicensed></publisher> |
| 3688 | 3940 | <part name="cart" interface="snes_cart"> |
| 3941 | ||
| 3942 | <feature name="slot" value="lorom" /> | |
| 3689 | 3943 | <dataarea name="rom" size="1048576"> |
| 3690 | 3944 | <rom name="bananas de pijamas (cracked).sfc" size="1048576" crc="4260d94e" sha1="9442b414b5238f207b2d02bc7ee0ff83541dbc16" offset="0x000000" /> |
| 3691 | 3945 | </dataarea> |
| r21545 | r21546 | |
| 3701 | 3955 | <part name="cart" interface="snes_cart"> |
| 3702 | 3956 | <feature name="pcb" value="890409C" /> <!-- epoxy board --> |
| 3703 | 3957 | <feature name="cart_model" value="SNS-006" /> |
| 3958 | ||
| 3959 | <feature name="slot" value="lorom" /> | |
| 3704 | 3960 | <dataarea name="rom" size="2097152"> |
| 3705 | 3961 | <rom name="u2" size="2097152" crc="014f0fcf" sha1="930ab53fded53a65824690b394d6e8c6565c083b" offset="0x000000" /> |
| 3706 | 3962 | </dataarea> |
| r21545 | r21546 | |
| 3713 | 3969 | <year>199?</year> |
| 3714 | 3970 | <publisher><unlicensed></publisher> |
| 3715 | 3971 | <part name="cart" interface="snes_cart"> |
| 3972 | ||
| 3973 | <feature name="slot" value="lorom" /> | |
| 3716 | 3974 | <dataarea name="rom" size="2097152"> |
| 3717 | 3975 | <rom name="a bug's life (cracked).sfc" size="2097152" crc="1683518d" sha1="b90bffd1f9ee459f3df57545916fb66e23de8a4d" offset="0x000000" /> |
| 3718 | 3976 | </dataarea> |
| r21545 | r21546 | |
| 3720 | 3978 | </software> |
| 3721 | 3979 | |
| 3722 | 3980 | <software name="digimon"> |
| 3981 | <!-- Protection notes: write latch byte to 88xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx --> | |
| 3723 | 3982 | <description>Digimon Adventure</description> |
| 3724 | 3983 | <year>199?</year> |
| 3725 | 3984 | <publisher><unlicensed></publisher> |
| 3726 | 3985 | <part name="cart" interface="snes_cart"> |
| 3986 | ||
| 3987 | <feature name="slot" value="lorom_poke" /> | |
| 3727 | 3988 | <dataarea name="rom" size="2097152"> |
| 3728 | 3989 | <rom name="digimon adventure.sfc" size="2097152" crc="4f660972" sha1="82a8406ba79971ac62d4e79971a4169c4461725e" offset="0x000000" /> |
| 3729 | 3990 | </dataarea> |
| r21545 | r21546 | |
| 3736 | 3997 | <year>199?</year> |
| 3737 | 3998 | <publisher><unlicensed></publisher> |
| 3738 | 3999 | <part name="cart" interface="snes_cart"> |
| 4000 | ||
| 4001 | <feature name="slot" value="lorom" /> | |
| 3739 | 4002 | <dataarea name="rom" size="2097152"> |
| 3740 | 4003 | <rom name="digimon adventure (cracked).sfc" size="2097152" crc="aea5e0ba" sha1="d00689883bbf5504996490088250a479647f94a3" offset="0x000000" /> |
| 3741 | 4004 | </dataarea> |
| r21545 | r21546 | |
| 3747 | 4010 | <year>199?</year> |
| 3748 | 4011 | <publisher><unlicensed></publisher> |
| 3749 | 4012 | <part name="cart" interface="snes_cart"> |
| 4013 | ||
| 4014 | <feature name="slot" value="lorom" /> | |
| 3750 | 4015 | <dataarea name="rom" size="2097152"> |
| 3751 | 4016 | <rom name="futebol brasileiro '96 (unl).sfc" size="2097152" crc="65545e88" sha1="4e09a35b9404eee49fe56b86d15e82feb004cd36" offset="0x000000" /> |
| 3752 | 4017 | </dataarea> |
| r21545 | r21546 | |
| 3759 | 4024 | <year>199?</year> |
| 3760 | 4025 | <publisher><unlicensed></publisher> |
| 3761 | 4026 | <part name="cart" interface="snes_cart"> |
| 4027 | ||
| 4028 | <feature name="slot" value="lorom" /> | |
| 3762 | 4029 | <dataarea name="rom" size="2097152"> |
| 3763 | 4030 | <rom name="futbol argentino '96 (unl) [!].sfc" size="2097152" crc="552737c1" sha1="a91310125846680dc95bc22e168a75ca5a13032f" offset="0x000000" status="baddump" /> |
| 3764 | 4031 | </dataarea> |
| 3765 | 4032 | </part> |
| 3766 | 4033 | </software> |
| 3767 | 4034 | |
| 3768 | <software name="kof2000" supported="no"> | |
| 4035 | <software name="kof2000"> | |
| 4036 | <!-- Protection notes: write latch byte to 88xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx --> | |
| 3769 | 4037 | <!-- single cartridge source: d4s --> |
| 3770 | 4038 | <description>The King of Fighters 2000 (Bra)</description> |
| 3771 | 4039 | <year>199?</year> |
| 3772 | 4040 | <publisher><unlicensed></publisher> |
| 3773 | 4041 | <part name="cart" interface="snes_cart"> |
| 4042 | ||
| 4043 | <feature name="slot" value="lorom_poke" /> | |
| 3774 | 4044 | <dataarea name="rom" size="3145728"> |
| 3775 | 4045 | <rom name="the king of fighters 2000 (brazil) (unl).sfc" size="3145728" crc="a7813943" sha1="7a7dc960d8c5946d249d715c9595257f65801db4" offset="0x000000" /> |
| 3776 | 4046 | </dataarea> |
| r21545 | r21546 | |
| 3783 | 4053 | <year>199?</year> |
| 3784 | 4054 | <publisher><unlicensed></publisher> |
| 3785 | 4055 | <part name="cart" interface="snes_cart"> |
| 4056 | ||
| 4057 | <feature name="slot" value="lorom" /> | |
| 3786 | 4058 | <dataarea name="rom" size="3145728"> |
| 3787 | 4059 | <rom name="the king of fighters 2000 (cracked).sfc" size="3145728" crc="ee339f08" sha1="ac7a8d84635240e1fe7e8ef4199db823c63b7d9a" offset="0x000000" /> |
| 3788 | 4060 | </dataarea> |
| 3789 | 4061 | </part> |
| 3790 | 4062 | </software> |
| 3791 | 4063 | |
| 3792 | <software name="pokemon" supported="no"> | |
| 4064 | <software name="pokemon"> | |
| 4065 | <!-- Protection notes: write latch byte to 88xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx --> | |
| 3793 | 4066 | <!-- single cartridge source: d4s --> |
| 3794 | 4067 | <description>Pocket Monster (Asia)</description> |
| 3795 | 4068 | <year>199?</year> |
| 3796 | 4069 | <publisher><unlicensed></publisher> |
| 3797 | 4070 | <part name="cart" interface="snes_cart"> |
| 4071 | ||
| 4072 | <feature name="slot" value="lorom_poke" /> | |
| 3798 | 4073 | <dataarea name="rom" size="2097152"> |
| 3799 | 4074 | <rom name="pocket monster (world) (unl).sfc" size="2097152" crc="892c6765" sha1="bf4ba0eea04c777c97a2d622d939597e7c0b340b" offset="0x000000" /> |
| 3800 | 4075 | </dataarea> |
| r21545 | r21546 | |
| 3807 | 4082 | <year>199?</year> |
| 3808 | 4083 | <publisher><unlicensed></publisher> |
| 3809 | 4084 | <part name="cart" interface="snes_cart"> |
| 4085 | ||
| 4086 | <feature name="slot" value="lorom" /> | |
| 3810 | 4087 | <dataarea name="rom" size="2097152"> |
| 3811 | 4088 | <rom name="pocket monster (world) (cracked alt).sfc" size="2097152" crc="53a72516" sha1="9fe9e5be596548576698c4c038343976db1f31d9" offset="0x000000" /> |
| 3812 | 4089 | </dataarea> |
| r21545 | r21546 | |
| 3814 | 4091 | </software> |
| 3815 | 4092 | |
| 3816 | 4093 | <software name="pokegs"> |
| 3817 | <description>Pokemon Gold Silver</description> | |
| 4094 | <!-- Protection notes: write latch byte to 80xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 90xxxx --> | |
| 4095 | <description>Pokemon Gold Silver (Asia)</description> | |
| 3818 | 4096 | <year>199?</year> |
| 3819 | 4097 | <publisher><unlicensed></publisher> |
| 3820 | 4098 | <part name="cart" interface="snes_cart"> |
| 4099 | ||
| 4100 | <feature name="slot" value="lorom_poke" /> | |
| 3821 | 4101 | <dataarea name="rom" size="2097152"> |
| 3822 | 4102 | <rom name="pokemon gold silver.sfc" size="2097152" crc="7c0b798d" sha1="40aef565230d70b833a73197adac73549b152f67" offset="0x000000" /> |
| 3823 | 4103 | </dataarea> |
| r21545 | r21546 | |
| 3826 | 4106 | |
| 3827 | 4107 | <!-- Notes: this is temporarily included for reference, until we fix emulation of the good dump --> |
| 3828 | 4108 | <software name="pokegsh" cloneof="pokegs"> |
| 3829 | <description>Pokemon Gold Silver (Cracked)</description> | |
| 4109 | <description>Pokemon Gold Silver (Asia, Cracked)</description> | |
| 3830 | 4110 | <year>199?</year> |
| 3831 | 4111 | <publisher><unlicensed></publisher> |
| 3832 | 4112 | <part name="cart" interface="snes_cart"> |
| 4113 | ||
| 4114 | <feature name="slot" value="lorom" /> | |
| 3833 | 4115 | <dataarea name="rom" size="2097152"> |
| 3834 | 4116 | <rom name="pokemon gold silver (cracked).sfc" size="2097152" crc="e6bafeee" sha1="9f5d1f64aa012f33f85f87a69f5d07f86dc2295c" offset="0x000000" /> |
| 3835 | 4117 | </dataarea> |
| 3836 | 4118 | </part> |
| 3837 | 4119 | </software> |
| 3838 | 4120 | |
| 3839 | <software name="pokestad" supported="no"> | |
| 4121 | <software name="pokestad"> | |
| 4122 | <!-- Protection notes: write latch byte to 88xxxx/98xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx/98xxxx --> | |
| 3840 | 4123 | <!-- single cartridge source: d4s --> |
| 3841 | 4124 | <description>Pokemon Stadium (Asia)</description> |
| 3842 | 4125 | <year>199?</year> |
| 3843 | 4126 | <publisher><unlicensed></publisher> |
| 3844 | 4127 | <part name="cart" interface="snes_cart"> |
| 4128 | ||
| 4129 | <feature name="slot" value="lorom_poke" /> | |
| 3845 | 4130 | <dataarea name="rom" size="2097152"> |
| 3846 | 4131 | <rom name="pokemon stadium (world) (unl).sfc" size="2097152" crc="f863c642" sha1="b4a015e2366bdd1ba62b33cf334383d54fb59ce7" offset="0x000000" /> |
| 3847 | 4132 | </dataarea> |
| r21545 | r21546 | |
| 3854 | 4139 | <year>199?</year> |
| 3855 | 4140 | <publisher><unlicensed></publisher> |
| 3856 | 4141 | <part name="cart" interface="snes_cart"> |
| 4142 | ||
| 4143 | <feature name="slot" value="lorom" /> | |
| 3857 | 4144 | <dataarea name="rom" size="2097152"> |
| 3858 | 4145 | <rom name="pokemon stadium (world, cracked) (unl).sfc" size="2097152" crc="a8142249" sha1="b9825faf488c2106d46c45ba10b0402a04cd1e4c" offset="0x000000" /> |
| 3859 | 4146 | </dataarea> |
| r21545 | r21546 | |
| 3865 | 4152 | <year>199?</year> |
| 3866 | 4153 | <publisher><unlicensed></publisher> |
| 3867 | 4154 | <part name="cart" interface="snes_cart"> |
| 4155 | ||
| 4156 | <feature name="slot" value="lorom" /> | |
| 3868 | 4157 | <dataarea name="rom" size="2097152"> |
| 3869 | 4158 | <rom name="ronaldinho soccer 97 (unl) [!].sfc" size="2097152" crc="d209fe59" sha1="7e9ff7dff0ff8e8d8e7ce448148a71a3fa103897" offset="0x000000" /> |
| 3870 | 4159 | </dataarea> |
| r21545 | r21546 | |
| 3876 | 4165 | <year>199?</year> |
| 3877 | 4166 | <publisher><unlicensed></publisher> |
| 3878 | 4167 | <part name="cart" interface="snes_cart"> |
| 4168 | ||
| 4169 | <feature name="slot" value="lorom" /> | |
| 3879 | 4170 | <dataarea name="rom" size="2097152"> |
| 3880 | 4171 | <rom name="ronaldinho soccer 98 (hack).sfc" size="2097152" crc="46c126af" sha1="e7e30a0b3ab7b5e9a0bf314d86827508edd11286" offset="0x000000" /> |
| 3881 | 4172 | </dataarea> |
| r21545 | r21546 | |
| 3887 | 4178 | <year>199?</year> |
| 3888 | 4179 | <publisher><unlicensed></publisher> |
| 3889 | 4180 | <part name="cart" interface="snes_cart"> |
| 4181 | ||
| 4182 | <feature name="slot" value="lorom" /> | |
| 3890 | 4183 | <dataarea name="rom" size="1048576"> |
| 3891 | 4184 | <rom name="sonic the hedgehog 4 (world) (unl) [b].sfc" size="1048576" crc="6b9c71a9" sha1="a227f032f138a78e4779a5cc87a37c9068d99019" offset="0x000000" status="baddump" /> |
| 3892 | 4185 | </dataarea> |
| r21545 | r21546 | |
| 3898 | 4191 | <year>199?</year> |
| 3899 | 4192 | <publisher><unlicensed></publisher> |
| 3900 | 4193 | <part name="cart" interface="snes_cart"> |
| 4194 | ||
| 4195 | <feature name="slot" value="lorom" /> | |
| 3901 | 4196 | <dataarea name="rom" size="1048576"> |
| 3902 | 4197 | <rom name="sonic the hedgehog (unl) [a1].sfc" size="1048576" crc="4543dd75" sha1="e7553ec4558fa96da1c8f5338aec547158776d8f" offset="0x000000" /> |
| 3903 | 4198 | </dataarea> |
| r21545 | r21546 | |
| 3914 | 4209 | <feature name="chip" value="not identified" /> <!-- 3 epoxy chips, no info printed --> |
| 3915 | 4210 | <feature name="cart_model" value="SNS-006" /> |
| 3916 | 4211 | <feature name="cart_back_label" value="n/a" /> |
| 4212 | ||
| 4213 | <feature name="slot" value="lorom" /> | |
| 3917 | 4214 | <dataarea name="rom" size="3145728"> |
| 3918 | 4215 | <rom name="soul blade (world) (unl).sfc" size="3145728" crc="c97d1d7b" sha1="f7501045b5326255f3bde0543eb0a541b62588a9" offset="0x000000" /> |
| 3919 | 4216 | </dataarea> |
| r21545 | r21546 | |
| 3926 | 4223 | <year>199?</year> |
| 3927 | 4224 | <publisher><unlicensed></publisher> |
| 3928 | 4225 | <part name="cart" interface="snes_cart"> |
| 4226 | ||
| 4227 | <feature name="slot" value="lorom" /> | |
| 3929 | 4228 | <dataarea name="rom" size="3145728"> |
| 3930 | 4229 | <rom name="soul blade (cracked).sfc" size="3145728" crc="2feefcc3" sha1="3d9cc86c8be01e8e6c93bdc3f056de50b0512214" offset="0x000000" /> |
| 3931 | 4230 | </dataarea> |
| r21545 | r21546 | |
| 3933 | 4232 | </software> |
| 3934 | 4233 | |
| 3935 | 4234 | <software name="souledge"> |
| 4235 | <!-- Protection notes: write latch byte to 88xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx --> | |
| 3936 | 4236 | <description>Soul Edge Vs Samurai (Asia)</description> |
| 3937 | 4237 | <year>199?</year> |
| 3938 | 4238 | <publisher><unlicensed></publisher> |
| 3939 | 4239 | <part name="cart" interface="snes_cart"> |
| 4240 | ||
| 4241 | <feature name="slot" value="lorom_poke" /> | |
| 3940 | 4242 | <dataarea name="rom" size="2097152"> |
| 3941 | 4243 | <rom name="soul edge vs samurai.sfc" size="2097152" crc="5e4ada04" sha1="fa48972ae8406b7ef17b3b0096bed6b858d36939" offset="0x000000" /> |
| 3942 | 4244 | </dataarea> |
| r21545 | r21546 | |
| 3949 | 4251 | <year>199?</year> |
| 3950 | 4252 | <publisher><unlicensed></publisher> |
| 3951 | 4253 | <part name="cart" interface="snes_cart"> |
| 4254 | ||
| 4255 | <feature name="slot" value="lorom" /> | |
| 3952 | 4256 | <dataarea name="rom" size="2097152"> |
| 3953 | 4257 | <rom name="soul edge vs samurai (cracked).sfc" size="2097152" crc="61abc296" sha1="0a7ec981306b58911e152d9dc17f8cd04896d532" offset="0x000000" /> |
| 3954 | 4258 | </dataarea> |
| r21545 | r21546 | |
| 3961 | 4265 | <year>199?</year> |
| 3962 | 4266 | <publisher><unlicensed></publisher> |
| 3963 | 4267 | <part name="cart" interface="snes_cart"> |
| 4268 | ||
| 4269 | <feature name="slot" value="lorom_poke" /> | |
| 3964 | 4270 | <dataarea name="rom" size="2097152"> |
| 3965 | 4271 | <rom name="street fighter ex plus alpha (world) (unl).sfc" size="2097152" crc="dad59b9f" sha1="22f864b4a8728f08513b979d2a960eb3083b2c83" offset="0x000000" /> |
| 3966 | 4272 | </dataarea> |
| r21545 | r21546 | |
| 3973 | 4279 | <year>199?</year> |
| 3974 | 4280 | <publisher><unlicensed></publisher> |
| 3975 | 4281 | <part name="cart" interface="snes_cart"> |
| 4282 | ||
| 4283 | <feature name="slot" value="lorom" /> | |
| 3976 | 4284 | <dataarea name="rom" size="2097152"> |
| 3977 | 4285 | <rom name="street fighter ex plus alpha (cracked).sfc" size="2097152" crc="bf3fa644" sha1="46c7604737c2a16d0cc85d96df431487e4ddb79f" offset="0x000000" /> |
| 3978 | 4286 | </dataarea> |
| r21545 | r21546 | |
| 3992 | 4300 | <feature name="u4" value="" /> <!-- CIC --> |
| 3993 | 4301 | <feature name="cart_model" value="n/a" /> <!-- similar to SHVC-006 --> |
| 3994 | 4302 | <feature name="cart_back_label" value="n/a" /> |
| 4303 | ||
| 4304 | <feature name="slot" value="lorom" /> | |
| 3995 | 4305 | <dataarea name="rom" size="2097152"> |
| 3996 | 4306 | <rom name="zf3103a.u1" size="1048576" crc="0a667f6f" sha1="0b58cf0d1fddb7adda096c9b701f291965b478fa" offset="0x000000" /> |
| 3997 | 4307 | <rom name="zf3103b.u2" size="1048576" crc="e94aa33b" sha1="0b25656e0bd0245d7f3816409fafb0122a0d325f" offset="0x100000" /> |
| r21545 | r21546 | |
| 4004 | 4314 | <year>199?</year> |
| 4005 | 4315 | <publisher><unlicensed></publisher> |
| 4006 | 4316 | <part name="cart" interface="snes_cart"> |
| 4317 | ||
| 4318 | <feature name="slot" value="lorom" /> | |
| 4007 | 4319 | <dataarea name="rom" size="2097152"> |
| 4008 | 4320 | <rom name="street fighter iii - super version 12 players (unl).sfc" size="2097152" crc="ddff8ce8" sha1="e111dc69b5eec494044d1159d359decf9b01cb6a" offset="0x000000" /> |
| 4009 | 4321 | </dataarea> |
| r21545 | r21546 | |
| 4017 | 4329 | <publisher><unlicensed></publisher> |
| 4018 | 4330 | <info name="alt_title" value="슈퍼20합" /> |
| 4019 | 4331 | <part name="cart" interface="snes_cart"> |
| 4332 | ||
| 4333 | <feature name="slot" value="lorom" /> | |
| 4020 | 4334 | <dataarea name="rom" size="1048576"> |
| 4021 | 4335 | <rom name="c20h.u1" size="1048576" crc="ac19b8f4" sha1="3a64c817ff3fc3819f2fd726868b6f27eb4523df" offset="0x000000" /> |
| 4022 | 4336 | </dataarea> |
| r21545 | r21546 | |
| 4029 | 4343 | <year>199?</year> |
| 4030 | 4344 | <publisher><unlicensed></publisher> |
| 4031 | 4345 | <part name="cart" interface="snes_cart"> |
| 4346 | ||
| 4347 | <feature name="slot" value="lorom" /> | |
| 4032 | 4348 | <dataarea name="rom" size="2097152"> |
| 4033 | 4349 | <rom name="tekken 2 (world) (unl).sfc" size="2097152" crc="066687ca" sha1="8aa2ee03fe40f289e30723a1c8cd4564481bdfdf" offset="0x000000" /> |
| 4034 | 4350 | </dataarea> |
| r21545 | r21546 | |
| 4041 | 4357 | <year>199?</year> |
| 4042 | 4358 | <publisher><unlicensed></publisher> |
| 4043 | 4359 | <part name="cart" interface="snes_cart"> |
| 4360 | ||
| 4361 | <feature name="slot" value="lorom" /> | |
| 4044 | 4362 | <dataarea name="rom" size="2097152"> |
| 4045 | 4363 | <rom name="tekken 2 (world, cracked) (unl).sfc" size="2097152" crc="5ba13729" sha1="ff60b9179154c5fe39b8ddc74724884fd3c8290c" offset="0x000000" /> |
| 4046 | 4364 | </dataarea> |
| r21545 | r21546 | |
| 4052 | 4370 | <year>199?</year> |
| 4053 | 4371 | <publisher><unlicensed></publisher> |
| 4054 | 4372 | <part name="cart" interface="snes_cart"> |
| 4373 | ||
| 4374 | <feature name="slot" value="lorom" /> | |
| 4055 | 4375 | <dataarea name="rom" size="2097152"> |
| 4056 | 4376 | <rom name="world cup france 98 (hack).sfc" size="2097152" crc="d0c34a45" sha1="3b299533799f3e5633a48ef8e0ee56346c6bd18b" offset="0x000000" /> |
| 4057 | 4377 | </dataarea> |
| 4058 | 4378 | </part> |
| 4059 | 4379 | </software> |
| 4060 | 4380 | |
| 4061 | <software name="xmensf" supported="no"> | |
| 4381 | <software name="xmensf"> | |
| 4382 | <!-- Protection notes: write latch byte to 88xxxx, then reads back BITSWAP8(latch,0,6,7,1,2,3,4,5) from 80xxxx --> | |
| 4062 | 4383 | <!-- single cartridge source: d4s --> |
| 4063 | 4384 | <description>X-Men vs. Street Fighter (Asia)</description> |
| 4064 | 4385 | <year>1996</year> |
| r21545 | r21546 | |
| 4068 | 4389 | <feature name="u1" value="" /> <!-- ROM --> |
| 4069 | 4390 | <feature name="u2" value="" /> <!-- CIC --> |
| 4070 | 4391 | <feature name="cart_model" value="n/a" /> <!-- similar to SHVC-006 --> |
| 4392 | ||
| 4393 | <feature name="slot" value="lorom_poke" /> | |
| 4071 | 4394 | <dataarea name="rom" size="2097152"> |
| 4072 | 4395 | <rom name="x-men.u1" size="2097152" crc="40242231" sha1="7ea216437c77e1ac20f9a00eb53b283d269aa15a" offset="0x000000" /> |
| 4073 | 4396 | </dataarea> |
| r21545 | r21546 | |
| 4080 | 4403 | <year>1996</year> |
| 4081 | 4404 | <publisher><unlicensed></publisher> |
| 4082 | 4405 | <part name="cart" interface="snes_cart"> |
| 4406 | ||
| 4407 | <feature name="slot" value="lorom" /> | |
| 4083 | 4408 | <dataarea name="rom" size="2097152"> |
| 4084 | 4409 | <rom name="x-men vs. street fighter (world, cracked) (unl).sfc" size="2097152" crc="7eedf7da" sha1="58909736b9c56933c2a8f5cae5c99cf6e3774b75" offset="0x000000" /> |
| 4085 | 4410 | </dataarea> |
| r21545 | r21546 | |
| 4105 | 4430 | <year>1995</year> |
| 4106 | 4431 | <publisher>Interplay</publisher> |
| 4107 | 4432 | <part name="cart" interface="snes_cart"> |
| 4433 | ||
| 4434 | <feature name="slot" value="hirom" /> | |
| 4108 | 4435 | <dataarea name="rom" size="3145728"> |
| 4109 | 4436 | <rom name="boogerman ver13 1.u1" size="524288" crc="601cbe5f" sha1="fe250a8acf5fbd366e15039cbb11be8c59883324" offset="0x000000" /> |
| 4110 | 4437 | <rom name="2.u2" size="524288" status="nodump" offset="0x080000" /> |
| r21545 | r21546 | |
| 4121 | 4448 | <year>1994</year> |
| 4122 | 4449 | <publisher>Extreme Entertainment Group</publisher> |
| 4123 | 4450 | <part name="cart" interface="snes_cart"> |
| 4451 | ||
| 4452 | <feature name="slot" value="lorom" /> | |
| 4124 | 4453 | <dataarea name="rom" size="524288"> |
| 4125 | 4454 | <rom name="choplifter iii - rescue & survive (usa) (beta) [b].sfc" size="524288" crc="3280c18f" sha1="8501570bfb32fe86f6cc7756eae23c49defe9974" offset="0x000000" status="baddump" /> |
| 4126 | 4455 | </dataarea> |
| r21545 | r21546 | |
| 4133 | 4462 | <year>1995</year> |
| 4134 | 4463 | <publisher>Interplay</publisher> |
| 4135 | 4464 | <part name="cart" interface="snes_cart"> |
| 4465 | ||
| 4466 | <feature name="slot" value="lorom" /> | |
| 4136 | 4467 | <dataarea name="rom" size="3145728"> |
| 4137 | 4468 | <rom name="clay 2 1995.u1" size="524288" crc="3998e4b9" sha1="a0b91861b4e67c290d6621f607560366d8ef7ec4" offset="0x000000" /> |
| 4138 | 4469 | <rom name="2.u2" size="524288" crc="19c4b39f" sha1="86df3dd37504dba24a84eac5bbf50ba26c84b194" offset="0x080000" /> |
| r21545 | r21546 | |
| 4184 | 4515 | <year>1993</year> |
| 4185 | 4516 | <publisher>Sculptured Software</publisher> |
| 4186 | 4517 | <part name="cart" interface="snes_cart"> |
| 4518 | ||
| 4519 | <feature name="slot" value="lorom" /> | |
| 4187 | 4520 | <dataarea name="rom" size="524288"> |
| 4188 | 4521 | <rom name="m.a.c.s. basic rifle marksmanship (usa) [b].sfc" size="524288" crc="b8491c98" sha1="81ca8f020755490fc98dbc283cea54cb91d3cbb6" offset="0x000000" status="baddump" /> |
| 4189 | 4522 | </dataarea> |
| r21545 | r21546 | |
| 4211 | 4544 | <feature name="lockout" value="" /> |
| 4212 | 4545 | <feature name="battery" value="BATT CR2032" /> |
| 4213 | 4546 | <feature name="cart_model" value="no shell" /> |
| 4547 | ||
| 4548 | <feature name="slot" value="lorom" /> | |
| 4214 | 4549 | <dataarea name="rom" size="2097152"> |
| 4215 | 4550 | <rom name="mario paint ver e-5 prg 0.u1" size="524288" crc="5fb99df0" sha1="1666ff7c2ecadcaf47c21f965f99e53411ddbae1" offset="0x000000" status="baddump" /> |
| 4216 | 4551 | <rom name="mario paint ver e-5 prg 1.u2" size="524288" crc="10878c55" sha1="06f96c0afdc7d3565e2a894c8e97891074ab7f66" offset="0x080000" status="baddump" /> |
| r21545 | r21546 | |
| 4226 | 4561 | <year>1993</year> |
| 4227 | 4562 | <publisher>Konami</publisher> |
| 4228 | 4563 | <part name="cart" interface="snes_cart"> |
| 4564 | ||
| 4565 | <feature name="slot" value="hirom" /> | |
| 4229 | 4566 | <dataarea name="rom" size="1048576"> |
| 4230 | 4567 | <rom name="pop'n twinbee (japan) (sample).sfc" size="1048576" crc="fdd56eb2" sha1="28a6524a4f48a4d48bdadee6e1fc1862dea0fe00" offset="0x000000" status="baddump" /> |
| 4231 | 4568 | </dataarea> |
| r21545 | r21546 | |
| 4237 | 4574 | <year>199?</year> |
| 4238 | 4575 | <publisher><unlicensed></publisher> |
| 4239 | 4576 | <part name="cart" interface="snes_cart"> |
| 4577 | ||
| 4578 | <feature name="slot" value="hirom" /> | |
| 4240 | 4579 | <dataarea name="rom" size="1048576"> |
| 4241 | 4580 | <rom name="sm choukyoushi hitomi (japan) (unl) [b].sfc" size="1048576" crc="d12d3529" sha1="886cd6721df35894d9933fe4d378383f2a18970b" offset="0x000000" status="baddump" /> |
| 4242 | 4581 | </dataarea> |
| r21545 | r21546 | |
| 4248 | 4587 | <year>199?</year> |
| 4249 | 4588 | <publisher><unlicensed></publisher> |
| 4250 | 4589 | <part name="cart" interface="snes_cart"> |
| 4590 | ||
| 4591 | <feature name="slot" value="lorom" /> | |
| 4251 | 4592 | <dataarea name="rom" size="524288"> |
| 4252 | 4593 | <rom name="sm choukyoushi hitomi - bangai hen (japan) (unl) [b].sfc" size="524288" crc="e7a659e0" sha1="f457b876bf1dd0b3ba323ae990b6e56567d7e29b" offset="0x000000" status="baddump" /> |
| 4253 | 4594 | </dataarea> |
| r21545 | r21546 | |
| 4259 | 4600 | <year>199?</year> |
| 4260 | 4601 | <publisher><unlicensed></publisher> |
| 4261 | 4602 | <part name="cart" interface="snes_cart"> |
| 4603 | ||
| 4604 | <feature name="slot" value="lorom" /> | |
| 4262 | 4605 | <dataarea name="rom" size="524288"> |
| 4263 | 4606 | <rom name="sm choukyoushi hitomi - bangai hen 2 - maki no love love panic (japan) (unl) [b].sfc" size="524288" crc="0504f733" sha1="02c5900462d9e320136445968ad116a33da932ca" offset="0x000000" status="baddump" /> |
| 4264 | 4607 | </dataarea> |
| r21545 | r21546 | |
| 4270 | 4613 | <year>199?</year> |
| 4271 | 4614 | <publisher><unlicensed></publisher> |
| 4272 | 4615 | <part name="cart" interface="snes_cart"> |
| 4616 | ||
| 4617 | <feature name="slot" value="lorom" /> | |
| 4273 | 4618 | <dataarea name="rom" size="524288"> |
| 4274 | 4619 | <rom name="sm choukyoushi hitomi - test version (japan) (unl) [b].sfc" size="524288" crc="1cfc5feb" sha1="e0e6f367ae7596557161d294550f851cc8d326d4" offset="0x000000" status="baddump" /> |
| 4275 | 4620 | </dataarea> |
| r21545 | r21546 | |
| 4281 | 4626 | <year>199?</year> |
| 4282 | 4627 | <publisher><unlicensed></publisher> |
| 4283 | 4628 | <part name="cart" interface="snes_cart"> |
| 4629 | ||
| 4630 | <feature name="slot" value="hirom" /> | |
| 4284 | 4631 | <dataarea name="rom" size="1048576"> |
| 4285 | 4632 | <rom name="sm choukyoushi hitomi vol. 2 (japan) (unl) [b].sfc" size="1048576" crc="4a55cfb8" sha1="1515018c597f6966c4c6fb566a8dd61ab58049d7" offset="0x000000" status="baddump" /> |
| 4286 | 4633 | </dataarea> |
| r21545 | r21546 | |
| 4292 | 4639 | <year>199?</year> |
| 4293 | 4640 | <publisher><unlicensed></publisher> |
| 4294 | 4641 | <part name="cart" interface="snes_cart"> |
| 4642 | ||
| 4643 | <feature name="slot" value="lorom" /> | |
| 4295 | 4644 | <dataarea name="rom" size="524288"> |
| 4296 | 4645 | <rom name="sm choukyoushi hitomi vol. 2 - trial version (japan) (unl) [b].sfc" size="524288" crc="29e1efbf" sha1="8814268822a211f46a5db15a78cc9353a8de5068" offset="0x000000" status="baddump" /> |
| 4297 | 4646 | </dataarea> |
| r21545 | r21546 | |
| 4303 | 4652 | <year>199?</year> |
| 4304 | 4653 | <publisher><unlicensed></publisher> |
| 4305 | 4654 | <part name="cart" interface="snes_cart"> |
| 4655 | ||
| 4656 | <feature name="slot" value="lorom" /> | |
| 4306 | 4657 | <dataarea name="rom" size="524288"> |
| 4307 | 4658 | <rom name="sm choukyoushi hitomi vol. 2 remix (japan) (unl) [b].sfc" size="524288" crc="4b280dfa" sha1="7b5534582954a94dd8d1d66e0ba382288aa48430" offset="0x000000" status="baddump" /> |
| 4308 | 4659 | </dataarea> |
| r21545 | r21546 | |
| 4314 | 4665 | <year>199?</year> |
| 4315 | 4666 | <publisher><unlicensed></publisher> |
| 4316 | 4667 | <part name="cart" interface="snes_cart"> |
| 4668 | ||
| 4669 | <feature name="slot" value="lorom" /> | |
| 4317 | 4670 | <dataarea name="rom" size="1048576"> |
| 4318 | 4671 | <rom name="sm choukyoushi hitomi vol. 3 (japan) (alt 1) (unl) [b].sfc" size="1048576" crc="92e6d22f" sha1="cfed5026f490dcd3a9848c5499d4f6f010bab880" offset="0x000000" status="baddump" /> |
| 4319 | 4672 | </dataarea> |
| r21545 | r21546 | |
| 4327 | 4680 | <year>199?</year> |
| 4328 | 4681 | <publisher><unlicensed></publisher> |
| 4329 | 4682 | <part name="cart" interface="snes_cart"> |
| 4683 | ||
| 4684 | <feature name="slot" value="lorom" /> | |
| 4330 | 4685 | <dataarea name="rom" size="1048576"> |
| 4331 | 4686 | <rom name="sm choukyoushi hitomi vol. 3 (japan) (unl) [b].sfc" size="1048576" crc="1156cac6" sha1="37d404b0c213053d32b9d778a1c99f8477837b42" offset="0x000000" status="baddump" /> |
| 4332 | 4687 | </dataarea> |
| r21545 | r21546 | |
| 4340 | 4695 | <year>199?</year> |
| 4341 | 4696 | <publisher><unlicensed></publisher> |
| 4342 | 4697 | <part name="cart" interface="snes_cart"> |
| 4698 | ||
| 4699 | <feature name="slot" value="lorom" /> | |
| 4343 | 4700 | <dataarea name="rom" size="524288"> |
| 4344 | 4701 | <rom name="sm choukyoushi hitomi vol. 3 - test version (japan) (unl) [b].sfc" size="524288" crc="b3be5f84" sha1="a0ad63ab4a262b728e0faa0e5749423cd6aa3d9c" offset="0x000000" status="baddump" /> |
| 4345 | 4702 | </dataarea> |
| r21545 | r21546 | |
| 4351 | 4708 | <year>1992</year> |
| 4352 | 4709 | <publisher>LJN</publisher> |
| 4353 | 4710 | <part name="cart" interface="snes_cart"> |
| 4711 | ||
| 4712 | <feature name="slot" value="lorom" /> | |
| 4354 | 4713 | <dataarea name="rom" size="1048576"> |
| 4355 | 4714 | <rom name="spider-man and the x-men in arcade's revenge (usa) (beta) [b].sfc" size="1048576" crc="6fd2cd8c" sha1="91d5da97339606c1350b69f07fb594564ced5ca2" offset="0x000000" status="baddump" /> |
| 4356 | 4715 | </dataarea> |
| r21545 | r21546 | |
| 4364 | 4723 | <info name="release" value="199502xx" /> |
| 4365 | 4724 | <sharedfeat name="compatibility" value="NTSC"/> |
| 4366 | 4725 | <part name="cart" interface="snes_cart"> |
| 4726 | ||
| 4727 | <feature name="slot" value="lorom" /> | |
| 4367 | 4728 | <dataarea name="rom" size="2097152"> |
| 4368 | 4729 | <rom name="super bases loaded 3 - license to steal (usa) (rev 1) [b].sfc" size="2097152" crc="24a5a70f" sha1="62436a4e463592bd36edb499c8ee45f26ef8c74f" offset="0x000000" status="baddump" /> |
| 4369 | 4730 | </dataarea> |
| r21545 | r21546 | |
| 4377 | 4738 | <year>1993</year> |
| 4378 | 4739 | <publisher>U.S. Gold</publisher> |
| 4379 | 4740 | <part name="cart" interface="snes_cart"> |
| 4741 | ||
| 4742 | <feature name="slot" value="lorom" /> | |
| 4380 | 4743 | <dataarea name="rom" size="1048576"> |
| 4381 | 4744 | <rom name="super putty (europe) (beta) [b].sfc" size="1048576" crc="2f2a86a0" sha1="ef5b47e82b7dfe7905538671d1d5f3b22f26db2d" offset="0x000000" status="baddump" /> |
| 4382 | 4745 | </dataarea> |
| 4383 | 4746 | </part> |
| 4384 | 4747 | </software> |
| 4385 | 4748 | |
| 4386 | <software name="bsspuyor" supported="no"> | |
| 4387 | <description>Super Puyo Puyo Tsuu Remix (Jpn, BS)</description> | |
| 4388 | <!-- BS --> | |
| 4389 | <year>199?</year> | |
| 4390 | <publisher><unknown></publisher> | |
| 4391 | <info name="alt_title" value="す~ぱ~ぷよぷよ通リミックス" /> | |
| 4392 | <part name="cart" interface="snes_cart"> | |
| 4393 | <dataarea name="rom" size="1048576"> | |
| 4394 | <rom name="super puyo puyo tsuu remix (japan) [b].bs" size="1048576" crc="5fc1fd18" sha1="a33d7dd85c0b79865c6c77a6b49694b67614488e" offset="0x000000" status="baddump" /> | |
| 4395 | </dataarea> | |
| 4396 | </part> | |
| 4397 | </software> | |
| 4398 | ||
| 4399 | 4749 | <software name="xterm2" supported="no"> |
| 4400 | 4750 | <description>Super X-Terminator 2 Sasuke (Jpn)</description> |
| 4401 | 4751 | <year>199?</year> |
| 4402 | 4752 | <publisher><unlicensed></publisher> |
| 4403 | 4753 | <part name="cart" interface="snes_cart"> |
| 4754 | ||
| 4755 | <feature name="slot" value="lorom" /> | |
| 4404 | 4756 | <dataarea name="rom" size="32768"> |
| 4405 | 4757 | <rom name="super x-terminator 2 sasuke (japan) (unl) [b].sfc" size="32768" crc="5f75ce9e" sha1="1ab01f930fbf516d6b5f38af2a0ebf46cdaa09b3" offset="0x000000" status="baddump" /> |
| 4406 | 4758 | </dataarea> |
| r21545 | r21546 | |
| 4419 | 4771 | <feature name="u3" value="" /> <!-- 74LS139 --> |
| 4420 | 4772 | <feature name="u4" value="" /> <!-- CIC --> |
| 4421 | 4773 | <feature name="cart_model" value="SHVC-006" /> |
| 4774 | ||
| 4775 | <feature name="slot" value="hirom" /> | |
| 4422 | 4776 | <dataarea name="rom" size="131072"> |
| 4423 | 4777 | <rom name="binary" size="131072" crc="ee4fca82" sha1="839f9fbb0d84bd0d43fda3c92bb1abf3e4ec0615" offset="0x000000" status="baddump" /> |
| 4424 | 4778 | <!-- rom name="syndicat rom 0 ntsc.u1" size="524288" crc="" sha1="" offset="0x000000" /--> |
| r21545 | r21546 | |
| 4444 | 4798 | <feature name="lockout" value="" /> |
| 4445 | 4799 | <feature name="battery" value="BATT CR2032" /> |
| 4446 | 4800 | <feature name="cart_model" value="no shell" /> |
| 4801 | ||
| 4802 | <feature name="slot" value="lorom" /> | |
| 4447 | 4803 | <dataarea name="rom" size="1048576"> |
| 4448 | 4804 | <rom name="tony meola rm0 22d4.u1" size="524288" crc="0d206b93" sha1="44d96aed93c9af3a894b95b3755c18be0cc64175" offset="0x000000" /> |
| 4449 | 4805 | <rom name="tony meola rm1 b3d6.u2" size="524288" crc="4be204b7" sha1="f96f4c0b2b48afd53cf7e07ed19bb3f531b661b3" offset="0x080000" status="baddump" /> |
| r21545 | r21546 | |
| 4481 | 4837 | <feature name="lockout" value="" /> |
| 4482 | 4838 | <feature name="cart_model" value="SNS-006" /> |
| 4483 | 4839 | <feature name="cart_back_label" value="" /> |
| 4840 | ||
| 4841 | <feature name="slot" value="hirom" /> | |
| 4484 | 4842 | <dataarea name="rom" size="1572864"> |
| 4485 | 4843 | <rom name="sns-sa-0 p0.u1" size="1048576" crc="4a2bae7c" sha1="5d360d2e937dce122f9c4fda2f5424404ec9e800" offset="0x000000" /> |
| 4486 | 4844 | <rom name="sns-sa-0 p1.u2" size="524288" crc="4414e29f" sha1="3cae3907afd208eb429f328541b6560503b85931" offset="0x100000" /> |
| r21545 | r21546 | |
| 4501 | 4859 | <feature name="lockout" value="D411A 9441 CB" /> |
| 4502 | 4860 | <feature name="cart_model" value="SNS-006" /> |
| 4503 | 4861 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 4862 | ||
| 4863 | <feature name="slot" value="lorom" /> | |
| 4504 | 4864 | <dataarea name="rom" size="2097152"> |
| 4505 | 4865 | <rom name="sns-a3ne-0.u1" size="2097152" crc="f2ee11f9" sha1="b619576a51a3968e243028a830a455d40cf92e78" offset="0x000000" /> |
| 4506 | 4866 | </dataarea> |
| r21545 | r21546 | |
| 4524 | 4884 | <feature name="battery" value="BATT CR2032" /> |
| 4525 | 4885 | <feature name="cart_model" value="SNS-006" /> |
| 4526 | 4886 | <feature name="cart_back_label" value="" /> |
| 4887 | ||
| 4888 | <feature name="slot" value="hirom" /> | |
| 4527 | 4889 | <dataarea name="rom" size="1572864"> |
| 4528 | 4890 | <rom name="sns-el-0 p0.u1" size="1048576" crc="fdd1c730" sha1="3d2f2162bc35f8ff269cbe565ac503085f8d668d" offset="0x000000" /> |
| 4529 | 4891 | <rom name="sns-el-0 p1.u2" size="524288" crc="19a96456" sha1="356c10393ce3c709a0b51a11a8651a51824940f8" offset="0x100000" /> |
| r21545 | r21546 | |
| 4549 | 4911 | <feature name="battery" value="BATT CR2032" /> |
| 4550 | 4912 | <feature name="cart_model" value="SNS-006" /> |
| 4551 | 4913 | <feature name="cart_back_label" value="" /> |
| 4914 | ||
| 4915 | <feature name="slot" value="lorom" /> | |
| 4552 | 4916 | <dataarea name="rom" size="1048576"> |
| 4553 | 4917 | <rom name="sns-4a-0.u1" size="1048576" crc="05c0da54" sha1="57122ef7a84fbe0355ecc7e0648e39f56854a5f6" offset="0x000000" /> |
| 4554 | 4918 | </dataarea> |
| r21545 | r21546 | |
| 4571 | 4935 | <feature name="lockout" value="D411B 9716 C" /> |
| 4572 | 4936 | <feature name="cart_model" value="SNS-006" /> |
| 4573 | 4937 | <feature name="cart_back_label" value="" /> |
| 4938 | ||
| 4939 | <feature name="slot" value="lorom" /> | |
| 4574 | 4940 | <dataarea name="rom" size="2097152"> |
| 4575 | 4941 | <rom name="sns-p-anne-0.u1" size="2097152" crc="27ff5ba1" sha1="7a4452f38c76a1faa50aec790e7e38b069b2471e" offset="0x000000" /> |
| 4576 | 4942 | </dataarea> |
| r21545 | r21546 | |
| 4595 | 4961 | <feature name="battery" value="BATT CR2032" /> |
| 4596 | 4962 | <feature name="cart_model" value="SNS-006" /> |
| 4597 | 4963 | <feature name="cart_back_label" value="" /> |
| 4964 | ||
| 4965 | <feature name="slot" value="lorom" /> | |
| 4598 | 4966 | <dataarea name="rom" size="1048576"> |
| 4599 | 4967 | <rom name="sns-n5-0.u1" size="1048576" crc="e0dc8ad7" sha1="8c6b2b1cd45cf486b64b0f544a34d2d1286c782f" offset="0x000000" /> |
| 4600 | 4968 | </dataarea> |
| r21545 | r21546 | |
| 4618 | 4986 | <feature name="battery" value="BATT CR2032" /> |
| 4619 | 4987 | <feature name="cart_model" value="SNSP-006" /> |
| 4620 | 4988 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 4989 | ||
| 4990 | <feature name="slot" value="lorom" /> | |
| 4621 | 4991 | <dataarea name="rom" size="1048576"> |
| 4622 | 4992 | <rom name="spal-acmp-0.u1" size="1048576" crc="aad3a72d" sha1="fe877f557aef095df37593b731a39afa56a2d762" offset="0x000000" /> |
| 4623 | 4993 | </dataarea> |
| r21545 | r21546 | |
| 4642 | 5012 | <feature name="battery" value="BATT CR2032" /> |
| 4643 | 5013 | <feature name="cart_model" value="SNS-006" /> |
| 4644 | 5014 | <feature name="cart_back_label" value="" /> |
| 5015 | ||
| 5016 | <feature name="slot" value="lorom" /> | |
| 4645 | 5017 | <dataarea name="rom" size="1048576"> |
| 4646 | 5018 | <rom name="sns-acme-0.u1" size="1048576" crc="0944a5c3" sha1="0c739de2095a9bd310bc19d28e7566faf894c543" offset="0x000000" /> |
| 4647 | 5019 | </dataarea> |
| r21545 | r21546 | |
| 4665 | 5037 | <feature name="battery" value="BATT CR2032" /> |
| 4666 | 5038 | <feature name="cart_model" value="SNSP-006" /> |
| 4667 | 5039 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 5040 | ||
| 5041 | <feature name="slot" value="lorom" /> | |
| 4668 | 5042 | <dataarea name="rom" size="1048576"> |
| 4669 | 5043 | <rom name="sfra-ar-0.u1" size="1048576" crc="a27e2664" sha1="2f913b33f8c2b4ea2ca18ac91f3ed08f02285227" offset="0x000000" /> |
| 4670 | 5044 | </dataarea> |
| r21545 | r21546 | |
| 4690 | 5064 | <feature name="battery" value="BATT CR2032" /> |
| 4691 | 5065 | <feature name="cart_model" value="SHVC-006" /> |
| 4692 | 5066 | <feature name="cart_back_label" value="901121" /> |
| 5067 | ||
| 5068 | <feature name="slot" value="lorom" /> | |
| 4693 | 5069 | <dataarea name="rom" size="1048576"> |
| 4694 | 5070 | <rom name="shvc-ar-0.u1" size="1048576" crc="bee9b30c" sha1="f031fc983a2eed4d69e223b256ece5f037fb5d5d" offset="0x000000" /> |
| 4695 | 5071 | </dataarea> |
| r21545 | r21546 | |
| 4714 | 5090 | <feature name="battery" value="BATT CR2032" /> |
| 4715 | 5091 | <feature name="cart_model" value="SNS-006" /> |
| 4716 | 5092 | <feature name="cart_back_label" value="" /> |
| 5093 | ||
| 5094 | <feature name="slot" value="lorom" /> | |
| 4717 | 5095 | <dataarea name="rom" size="1048576"> |
| 4718 | 5096 | <rom name="sns-ar-0.u1" size="1048576" crc="eac3358d" sha1="e8365852cc20178d42c93cd188a7ae9af45369d7" offset="0x000000" /> |
| 4719 | 5097 | </dataarea> |
| r21545 | r21546 | |
| 4738 | 5116 | <feature name="lockout" value="" /> |
| 4739 | 5117 | <feature name="cart_model" value="SHVC-006" /> |
| 4740 | 5118 | <feature name="cart_back_label" value="920214" /> |
| 5119 | ||
| 5120 | <feature name="slot" value="hirom" /> | |
| 4741 | 5121 | <dataarea name="rom" size="1572864"> |
| 4742 | 5122 | <rom name="shvc-a8-0 p0.u1" size="1048576" crc="9dd12bf8" sha1="54db43a5b184a9eb8dd14e45e76656e7d1356546" offset="0x000000" /> |
| 4743 | 5123 | <rom name="shvc-a8-0 p1.u2" size="524288" crc="e13c2afd" sha1="2ddbff9a7793c4f0e9c41d0536fde9983a5fc995" offset="0x100000" /> |
| r21545 | r21546 | |
| 4760 | 5140 | <feature name="lockout" value="D411A 9252 CA" /> |
| 4761 | 5141 | <feature name="cart_model" value="SNS-006" /> |
| 4762 | 5142 | <feature name="cart_back_label" value="" /> |
| 5143 | ||
| 5144 | <feature name="slot" value="hirom" /> | |
| 4763 | 5145 | <dataarea name="rom" size="1572864"> |
| 4764 | 5146 | <rom name="sns-a8-0 p0.u1" size="1048576" crc="ee6433a4" sha1="27f8b2b2eb4af110a1395ee986abe902ea7704e9" offset="0x000000" /> |
| 4765 | 5147 | <rom name="sns-a8-0 p1.u2" size="524288" crc="119dbba1" sha1="8fe91811f9e48557eed2c34965fcd6e46e48f8e5" offset="0x100000" /> |
| r21545 | r21546 | |
| 4779 | 5161 | <feature name="lockout" value="" /> |
| 4780 | 5162 | <feature name="cart_model" value="SNSP-006" /> |
| 4781 | 5163 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 5164 | ||
| 5165 | <feature name="slot" value="lorom" /> | |
| 4782 | 5166 | <dataarea name="rom" size="1048576"> |
| 4783 | 5167 | <rom name="spal-af-0.u1" size="1048576" crc="82497f19" sha1="bc67e9a2632f751472e9f91e7e8ed2046a043dac" offset="0x000000" /> |
| 4784 | 5168 | </dataarea> |
| r21545 | r21546 | |
| 4798 | 5182 | <feature name="lockout" value="D411 C152 05 BA" /> |
| 4799 | 5183 | <feature name="cart_model" value="SNS-006" /> |
| 4800 | 5184 | <feature name="cart_back_label" value="" /> |
| 5185 | ||
| 5186 | <feature name="slot" value="lorom" /> | |
| 4801 | 5187 | <dataarea name="rom" size="1048576"> |
| 4802 | 5188 | <rom name="sns-af-0.u1" size="1048576" crc="2e8034ab" sha1="3f6863985a8c6cfad71867c2349aa0ac79cb1274" offset="0x000000" /> |
| 4803 | 5189 | </dataarea> |
| r21545 | r21546 | |
| 4817 | 5203 | <feature name="lockout" value="D411A 9303 AA" /> |
| 4818 | 5204 | <feature name="cart_model" value="SNS-006" /> |
| 4819 | 5205 | <feature name="cart_back_label" value="" /> |
| 5206 | ||
| 5207 | <feature name="slot" value="lorom" /> | |
| 4820 | 5208 | <dataarea name="rom" size="1048576"> |
| 4821 | 5209 | <rom name="sns-ah-0.u1" size="1048576" crc="153a00a7" sha1="3419e8a5fef813bc0234169f9e8055444dc2049b" offset="0x000000" /> |
| 4822 | 5210 | </dataarea> |
| r21545 | r21546 | |
| 4845 | 5233 | <feature name="cart_model" value="SNS-006" /> |
| 4846 | 5234 | <feature name="cart_back_label" value="" /> |
| 4847 | 5235 | --> |
| 5236 | ||
| 5237 | <feature name="slot" value="lorom" /> | |
| 4848 | 5238 | <dataarea name="rom" size="2097152"> |
| 4849 | 5239 | <rom name="sns-vy-0.u1" size="2097152" crc="98b07db8" sha1="24848e53e32cc16a30acce48d40ce09c37b669c4" offset="0x000000" /> |
| 4850 | 5240 | </dataarea> |
| r21545 | r21546 | |
| 4865 | 5255 | <feature name="lockout" value="D411A 9421 CC" /> |
| 4866 | 5256 | <feature name="cart_model" value="SNS-006" /> |
| 4867 | 5257 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 5258 | ||
| 5259 | <feature name="slot" value="lorom" /> | |
| 4868 | 5260 | <dataarea name="rom" size="2097152"> |
| 4869 | 5261 | <rom name="sns-abte-0.u1" size="2097152" crc="b3ef81f5" sha1="5452c639c49906679cad640aaf60d7f4749f84d3" offset="0x000000" /> |
| 4870 | 5262 | </dataarea> |
| r21545 | r21546 | |
| 4885 | 5277 | <feature name="lockout" value="D411A 9344 CC" /> |
| 4886 | 5278 | <feature name="cart_model" value="SNS-006" /> |
| 4887 | 5279 | <feature name="cart_back_label" value="" /> |
| 5280 | ||
| 5281 | <feature name="slot" value="lorom" /> | |
| 4888 | 5282 | <dataarea name="rom" size="1048576"> |
| 4889 | 5283 | <rom name="sns-6f-0.u1" size="1048576" crc="cfab3bba" sha1="4b2334454a3be9c4c16b86b8eb4b0a352c67b780" offset="0x000000" /> |
| 4890 | 5284 | </dataarea> |
| r21545 | r21546 | |
| 4906 | 5300 | <feature name="lockout" value="D411A 9427 BA" /> |
| 4907 | 5301 | <feature name="cart_model" value="SNS-006" /> |
| 4908 | 5302 | <feature name="cart_back_label" value="" /> |
| 5303 | ||
| 5304 | <feature name="slot" value="lorom" /> | |
| 4909 | 5305 | <dataarea name="rom" size="1572864"> |
| 4910 | 5306 | <rom name="sns-yk-0 p0.u1" size="1048576" crc="c5309baa" sha1="9af770a79f96ccb89205439a9904cfc4b4b41235" offset="0x000000" /> |
| 4911 | 5307 | <rom name="sns-yk-0 p1.u2" size="524288" crc="f3299a08" sha1="fa21a0ce9e6206d2532decbb544234a19127193a" offset="0x100000" /> |
| r21545 | r21546 | |
| 4927 | 5323 | <feature name="lockout" value="D411A 9450 AA" /> |
| 4928 | 5324 | <feature name="cart_model" value="SNS-006" /> |
| 4929 | 5325 | <feature name="cart_back_label" value="" /> |
| 5326 | ||
| 5327 | <feature name="slot" value="lorom" /> | |
| 4930 | 5328 | <dataarea name="rom" size="1048576"> |
| 4931 | 5329 | <rom name="sns-amoe-0.u1" size="1048576" crc="6fc3c105" sha1="0d31e2650b5e1f9331f36810f3ae5561b9581511" offset="0x000000" /> |
| 4932 | 5330 | </dataarea> |
| r21545 | r21546 | |
| 4946 | 5344 | <feature name="lockout" value="D411A 9317 AA" /> |
| 4947 | 5345 | <feature name="cart_model" value="SNS-006" /> |
| 4948 | 5346 | <feature name="cart_back_label" value="" /> |
| 5347 | ||
| 5348 | <feature name="slot" value="lorom" /> | |
| 4949 | 5349 | <dataarea name="rom" size="1048576"> |
| 4950 | 5350 | <rom name="sns-rz-0.u1" size="1048576" crc="dc8f5734" sha1="a0ed3c23fc2c153ee3681c54eec300b3642bb3c9" offset="0x000000" /> |
| 4951 | 5351 | </dataarea> |
| r21545 | r21546 | |
| 4965 | 5365 | <feature name="lockout" value="D411A 9430 BA" /> |
| 4966 | 5366 | <feature name="cart_model" value="SNS-006" /> |
| 4967 | 5367 | <feature name="cart_back_label" value="" /> |
| 5368 | ||
| 5369 | <feature name="slot" value="lorom" /> | |
| 4968 | 5370 | <dataarea name="rom" size="1048576"> |
| 4969 | 5371 | <rom name="sns-y8-0.u1" size="1048576" crc="7448d45c" sha1="2f6950f1330709ea4de33995df6b9b9877ece587" offset="0x000000" /> |
| 4970 | 5372 | </dataarea> |
| r21545 | r21546 | |
| 4986 | 5388 | <feature name="lockout" value="D411A 9440 CB" /> |
| 4987 | 5389 | <feature name="cart_model" value="SNS-006" /> |
| 4988 | 5390 | <feature name="cart_back_label" value="" /> |
| 5391 | ||
| 5392 | <feature name="slot" value="lorom" /> | |
| 4989 | 5393 | <dataarea name="rom" size="1310720"> |
| 4990 | 5394 | <rom name="sns-aere-0 p0.u1" size="1048576" crc="a853a8e8" sha1="443ae6cd8353b47178dcff57bdb2af3853912190" offset="0x000000" /> |
| 4991 | 5395 | <rom name="sns-aere-0 p1.u2" size="262144" crc="304b825b" sha1="a6d8317274f876e8a7c65aa76a0b61cdb579b804" offset="0x100000" /> |
| r21545 | r21546 | |
| 5006 | 5410 | <feature name="lockout" value="D411A 9303 BA, D411A (CA)" /> <!-- Notes: D411A 9303 BA in -10 pcb, D411A (CA) in -20 pcb --> |
| 5007 | 5411 | <feature name="cart_model" value="SNS-006" /> |
| 5008 | 5412 | <feature name="cart_back_label" value="" /> |
| 5413 | ||
| 5414 | <feature name="slot" value="lorom" /> | |
| 5009 | 5415 | <dataarea name="rom" size="1048576"> |
| 5010 | 5416 | <rom name="sns-xb-0.u1" size="1048576" crc="919f23cb" sha1="4d7dc1c4dc0c0756412a83eb5e5c1ac104c67831" offset="0x000000" /> |
| 5011 | 5417 | </dataarea> |
| r21545 | r21546 | |
| 5024 | 5430 | <feature name="lockout" value="" /> |
| 5025 | 5431 | <feature name="cart_model" value="SNSP-006" /> |
| 5026 | 5432 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 5433 | ||
| 5434 | <feature name="slot" value="lorom" /> | |
| 5027 | 5435 | <dataarea name="rom" size="2097152"> |
| 5028 | 5436 | <rom name="spal-ae2p-0.u1" size="2097152" crc="242b8181" sha1="1597e2cfdfdb0ab4671c4f3549208a5b11d52a8a" offset="0x000000" /> |
| 5029 | 5437 | </dataarea> |
| r21545 | r21546 | |
| 5052 | 5460 | <feature name="cart_model" value="SNS-006" /> |
| 5053 | 5461 | <feature name="cart_back_label" value="" /> |
| 5054 | 5462 | --> |
| 5463 | ||
| 5464 | <feature name="slot" value="lorom" /> | |
| 5055 | 5465 | <dataarea name="rom" size="2097152"> |
| 5056 | 5466 | <rom name="sns-ae2e-0.u1" size="2097152" crc="8c05ed51" sha1="2ddbff8f227024806ca456c0ffe96def2713a9aa" offset="0x000000" /> |
| 5057 | 5467 | </dataarea> |
| r21545 | r21546 | |
| 5074 | 5484 | <feature name="battery" value="BATT CR2032" /> |
| 5075 | 5485 | <feature name="cart_model" value="SNS-006" /> |
| 5076 | 5486 | <feature name="cart_back_label" value="" /> |
| 5487 | ||
| 5488 | <feature name="slot" value="lorom" /> | |
| 5077 | 5489 | <dataarea name="rom" size="1048576"> |
| 5078 | 5490 | <rom name="sns-al-0.u1" size="1048576" crc="54302a46" sha1="1c472ff0f9bd4a50dc89c83d8fc91cdde23a3957" offset="0x000000" /> |
| 5079 | 5491 | </dataarea> |
| r21545 | r21546 | |
| 5098 | 5510 | <feature name="battery" value="BATT CR2032" /> |
| 5099 | 5511 | <feature name="cart_model" value="SNS-006" /> |
| 5100 | 5512 | <feature name="cart_back_label" value="" /> |
| 5513 | ||
| 5514 | <feature name="slot" value="lorom" /> | |
| 5101 | 5515 | <dataarea name="rom" size="1048576"> |
| 5102 | 5516 | <rom name="sns-ag-0.u1" size="1048576" crc="efafab12" sha1="f8d6fc5d3d2ea3b5d8f5440fc837fcf5b1c49686" offset="0x000000" /> |
| 5103 | 5517 | </dataarea> |
| r21545 | r21546 | |
| 5123 | 5537 | <feature name="battery" value="BATT CR2032" /> |
| 5124 | 5538 | <feature name="cart_model" value="SHVC-006" /> |
| 5125 | 5539 | <feature name="cart_back_label" value="920214" /> |
| 5540 | ||
| 5541 | <feature name="slot" value="lorom" /> | |
| 5126 | 5542 | <dataarea name="rom" size="2097152"> |
| 5127 | 5543 | <rom name="shvc-atgj-0.u1" size="2097152" crc="f953b79a" sha1="9cbae4303ee451a5e250a35ca77489d8b80978c8" offset="0x000000" /> |
| 5128 | 5544 | </dataarea> |
| r21545 | r21546 | |
| 5144 | 5560 | <feature name="lockout" value="D411B 9509 B" /> |
| 5145 | 5561 | <feature name="cart_model" value="SNS-006" /> |
| 5146 | 5562 | <feature name="cart_back_label" value="" /> |
| 5563 | ||
| 5564 | <feature name="slot" value="lorom" /> | |
| 5147 | 5565 | <dataarea name="rom" size="1048576"> |
| 5148 | 5566 | <rom name="sns-acce-0.u1" size="1048576" crc="6b452801" sha1="65f8142ddbce9c03b175d03ecfd304e8589227c1" offset="0x000000" /> |
| 5149 | 5567 | </dataarea> |
| r21545 | r21546 | |
| 5167 | 5585 | <feature name="battery" value="BATT CR2032" /> |
| 5168 | 5586 | <feature name="cart_model" value="SHVC-006" /> |
| 5169 | 5587 | <feature name="cart_back_label" value="920214" /> |
| 5588 | ||
| 5589 | <feature name="slot" value="lorom" /> | |
| 5170 | 5590 | <dataarea name="rom" size="1048576"> |
| 5171 | 5591 | <rom name="shvc-al-0.u1" size="1048576" crc="f6643226" sha1="beef4f80a8c3a3b844efc428e10034b587205a10" offset="0x000000" /> |
| 5172 | 5592 | </dataarea> |
| r21545 | r21546 | |
| 5192 | 5612 | <feature name="battery" value="BATT CR2032" /> |
| 5193 | 5613 | <feature name="cart_model" value="SHVC-006" /> |
| 5194 | 5614 | <feature name="cart_back_label" value="920214" /> |
| 5615 | ||
| 5616 | <feature name="slot" value="lorom" /> | |
| 5195 | 5617 | <dataarea name="rom" size="1048576"> |
| 5196 | 5618 | <rom name="shvc-ag-0.u1" size="1048576" crc="8d0b3c85" sha1="409be2392977e9d0fe53041dff8ea22f55af4810" offset="0x000000" /> |
| 5197 | 5619 | </dataarea> |
| r21545 | r21546 | |
| 5214 | 5636 | <feature name="lockout" value="" /> |
| 5215 | 5637 | <feature name="cart_model" value="SHVC-006" /> |
| 5216 | 5638 | <feature name="cart_back_label" value="901121" /> |
| 5639 | ||
| 5640 | <feature name="slot" value="lorom" /> | |
| 5217 | 5641 | <dataarea name="rom" size="1048576"> |
| 5218 | 5642 | <rom name="shvc-ad-0.u1" size="1048576" crc="eda59a2a" sha1="9df4028bc19ee63de884c26921135c721c882e34" offset="0x000000" /> |
| 5219 | 5643 | </dataarea> |
| r21545 | r21546 | |
| 5233 | 5657 | <feature name="lockout" value="D411A 9438 CA" /> |
| 5234 | 5658 | <feature name="cart_model" value="SNS-006" /> |
| 5235 | 5659 | <feature name="cart_back_label" value="" /> |
| 5660 | ||
| 5661 | <feature name="slot" value="lorom" /> | |
| 5236 | 5662 | <dataarea name="rom" size="1048576"> |
| 5237 | 5663 | <rom name="sns-auje-0.u1" size="1048576" crc="d0550624" sha1="0573c76efd98bf103f278365783a26c9cfd73bd3" offset="0x000000" /> |
| 5238 | 5664 | </dataarea> |
| r21545 | r21546 | |
| 5253 | 5679 | <feature name="lockout" value="" /> |
| 5254 | 5680 | <feature name="cart_model" value="SNSP-006" /> |
| 5255 | 5681 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 5682 | ||
| 5683 | <feature name="slot" value="lorom" /> | |
| 5256 | 5684 | <dataarea name="rom" size="1310720"> |
| 5257 | 5685 | <rom name="sfrg-rj-0 p0.u1" size="1048576" crc="6451214e" sha1="55ba29a95fa6bd963bb17792d5ecd75d1db17ace" offset="0x000000" /> |
| 5258 | 5686 | <rom name="sfrg-rj-0 p1.u2" size="262144" crc="9bfe69c4" sha1="de0c6d804209e7a0ddd428625ca7806b662e9af5" offset="0x100000" /> |
| r21545 | r21546 | |
| 5276 | 5704 | <feature name="lockout" value="" /> |
| 5277 | 5705 | <feature name="cart_model" value="SHVC-006" /> |
| 5278 | 5706 | <feature name="cart_back_label" value="920214" /> |
| 5707 | ||
| 5708 | <feature name="slot" value="lorom" /> | |
| 5279 | 5709 | <dataarea name="rom" size="1310720"> |
| 5280 | 5710 | <rom name="shvc-rj-0 p0.u1" size="1048576" crc="fd7e656a" sha1="d93b54c0d2162e8f1297695f11d16d778dfd07b2" offset="0x000000" /> |
| 5281 | 5711 | <rom name="shvc-rj-0 p1.u2" size="262144" crc="f4579469" sha1="093eb2fa388bb981a017a491dd6c12f73a859f59" offset="0x100000" /> |
| r21545 | r21546 | |
| 5304 | 5734 | <feature name="cart_model" value="SNS-006" /> |
| 5305 | 5735 | <feature name="cart_back_label" value="SNS-USA/CAN-1-M" /> |
| 5306 | 5736 | --> |
| 5737 | ||
| 5738 | <feature name="slot" value="lorom" /> | |
| 5307 | 5739 | <dataarea name="rom" size="2097152"> |
| 5308 | 5740 | <rom name="sns-p-rj-0.u1" size="2097152" crc="e90e3640" sha1="4a49b90418702bb322b9526fc9ff387a5850032f" offset="0x000000" /> |
| 5309 | 5741 | </dataarea> |
| r21545 | r21546 | |
| 5325 | 5757 | <feature name="lockout" value="" /> |
| 5326 | 5758 | <feature name="cart_model" value="SNS-006" /> |
| 5327 | 5759 | <feature name="cart_back_label" value="" /> |
| 5760 | ||
| 5761 | <feature name="slot" value="lorom" /> | |
| 5328 | 5762 | <dataarea name="rom" size="1310720"> |
| 5329 | 5763 | <rom name="sns-rj-0 p0.u1" size="1048576" crc="a9b31442" sha1="c78f8594c905fd367e09b36e6e28e0dbffc98d24" offset="0x000000" /> |
| 5330 | 5764 | <rom name="sns-rj-0 p1.u2" size="262144" crc="7a00e3e0" sha1="2d2f29c0088a25e8c17bf6595dafaaa90cf27ee4" offset="0x100000" /> |
| r21545 | r21546 | |
| 5349 | 5783 | <feature name="battery" value="BATT CR2032" /> |
| 5350 | 5784 | <feature name="cart_model" value="SHVC-006" /> |
| 5351 | 5785 | <feature name="cart_back_label" value="920214" /> |
| 5786 | ||
| 5787 | <feature name="slot" value="lorom" /> | |
| 5352 | 5788 | <dataarea name="rom" size="1048576"> |
| 5353 | 5789 | <rom name="shvc-ao-0.u1" size="1048576" crc="46ca01a9" sha1="525ac489230002e2e9294846154d962ef9a2b941" offset="0x000000" /> |
| 5354 | 5790 | </dataarea> |
| r21545 | r21546 | |
| 5374 | 5810 | <feature name="battery" value="BATT CR2032" /> |
| 5375 | 5811 | <feature name="cart_model" value="SHVC-006" /> |
| 5376 | 5812 | <feature name="cart_back_label" value="920214" /> |
| 5813 | ||
| 5814 | <feature name="slot" value="hirom" /> | |
| 5377 | 5815 | <dataarea name="rom" size="2097152"> |
| 5378 | 5816 | <rom name="shvc-ao2j-0.u1" size="2097152" crc="1b6add7b" sha1="b3b78710000d467dc0304efa0245d2cf7ae23d88" offset="0x000000" /> |
| 5379 | 5817 | </dataarea> |
| r21545 | r21546 | |
| 5396 | 5834 | <feature name="lockout" value="" /> |
| 5397 | 5835 | <feature name="cart_model" value="SHVC-006" /> |
| 5398 | 5836 | <feature name="cart_back_label" value="920214" /> |
| 5837 | ||
| 5838 | <feature name="slot" value="lorom" /> | |
| 5399 | 5839 | <dataarea name="rom" size="1048576"> |
| 5400 | 5840 | <rom name="shvc-lx-0.u1" size="1048576" crc="870427d0" sha1="dac852ea9ff3141de5dc6377307b16811f607008" offset="0x000000" /> |
| 5401 | 5841 | </dataarea> |
| r21545 | r21546 | |
| 5414 | 5854 | <feature name="lockout" value="" /> |
| 5415 | 5855 | <feature name="cart_model" value="SNSP-006" /> |
| 5416 | 5856 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 5857 | ||
| 5858 | <feature name="slot" value="lorom" /> | |
| 5417 | 5859 | <dataarea name="rom" size="1048576"> |
| 5418 | 5860 | <rom name="spal-a3-0.u1" size="1048576" crc="378613b0" sha1="4d20445c4c366edf98c62df944e60c52f5c88c5d" offset="0x000000" /> |
| 5419 | 5861 | </dataarea> |
| r21545 | r21546 | |
| 5433 | 5875 | <feature name="lockout" value="D411A 9316 BA" /> |
| 5434 | 5876 | <feature name="cart_model" value="SNS-006" /> |
| 5435 | 5877 | <feature name="cart_back_label" value="" /> |
| 5878 | ||
| 5879 | <feature name="slot" value="lorom" /> | |
| 5436 | 5880 | <dataarea name="rom" size="1048576"> |
| 5437 | 5881 | <rom name="sns-a3-0.u1" size="1048576" crc="98e2ac15" sha1="7c29a915c28c534c8a67a940e86d8346958f4fa1" offset="0x000000" /> |
| 5438 | 5882 | </dataarea> |
| r21545 | r21546 | |
| 5454 | 5898 | <feature name="lockout" value="D411A 9313 CA" /> |
| 5455 | 5899 | <feature name="cart_model" value="SNS-006" /> |
| 5456 | 5900 | <feature name="cart_back_label" value="" /> |
| 5901 | ||
| 5902 | <feature name="slot" value="lorom" /> | |
| 5457 | 5903 | <dataarea name="rom" size="1048576"> |
| 5458 | 5904 | <rom name="sns-ap-0 p0.u1" size="524288" crc="1bf12fd6" sha1="a4ce00d19d656409299339ac9de148c392817ae1" offset="0x000000" /> |
| 5459 | 5905 | <rom name="sns-ap-0 p1.u2" size="524288" crc="0409272a" sha1="489680bd2c9a549c7b10f7b316491c04b7a2a34b" offset="0x080000" /> |
| r21545 | r21546 | |
| 5474 | 5920 | <feature name="lockout" value="D411A 9313 CA" /> |
| 5475 | 5921 | <feature name="cart_model" value="SNS-006" /> |
| 5476 | 5922 | <feature name="cart_back_label" value="" /> |
| 5923 | ||
| 5924 | <feature name="slot" value="lorom" /> | |
| 5477 | 5925 | <dataarea name="rom" size="1048576"> |
| 5478 | 5926 | <rom name="sns-aa-0.u1" size="1048576" crc="76b151fd" sha1="a3b280f9acae932c03dd5177c6a671040575a05f" offset="0x000000" /> |
| 5479 | 5927 | </dataarea> |
| r21545 | r21546 | |
| 5492 | 5940 | <feature name="lockout" value="" /> |
| 5493 | 5941 | <feature name="cart_model" value="SNSP-006" /> |
| 5494 | 5942 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 5943 | ||
| 5944 | <feature name="slot" value="hirom" /> | |
| 5495 | 5945 | <dataarea name="rom" size="1048576"> |
| 5496 | 5946 | <rom name="spal-9w-0.u1" size="1048576" crc="080ac1b5" sha1="30558dce9cacf9aabbeef7cf14055a04d787cc09" offset="0x000000" /> |
| 5497 | 5947 | </dataarea> |
| r21545 | r21546 | |
| 5511 | 5961 | <feature name="lockout" value="D411A 9427 BA" /> |
| 5512 | 5962 | <feature name="cart_model" value="SNS-006" /> |
| 5513 | 5963 | <feature name="cart_back_label" value="" /> |
| 5964 | ||
| 5965 | <feature name="slot" value="hirom" /> | |
| 5514 | 5966 | <dataarea name="rom" size="1048576"> |
| 5515 | 5967 | <rom name="sns-9w-0.u1" size="1048576" crc="eea38aed" sha1="572254aebc4dcf3f65aa0c8f9b7cf6836bb9a294" offset="0x000000" /> |
| 5516 | 5968 | </dataarea> |
| r21545 | r21546 | |
| 5530 | 5982 | <feature name="lockout" value="D411A 9353 CB" /> |
| 5531 | 5983 | <feature name="cart_model" value="SNS-006" /> |
| 5532 | 5984 | <feature name="cart_back_label" value="" /> |
| 5985 | ||
| 5986 | <feature name="slot" value="lorom" /> | |
| 5533 | 5987 | <dataarea name="rom" size="524288"> |
| 5534 | 5988 | <rom name="sns-7a-0.u1" size="524288" crc="d1ae87be" sha1="aecc2eefe059a5914095506cecaef52ccef27862" offset="0x000000" /> |
| 5535 | 5989 | </dataarea> |
| r21545 | r21546 | |
| 5550 | 6004 | <feature name="lockout" value="D411B 9835 C" /> |
| 5551 | 6005 | <feature name="cart_model" value="SNS-006" /> |
| 5552 | 6006 | <feature name="cart_back_label" value="" /> |
| 6007 | ||
| 6008 | <feature name="slot" value="lorom" /> | |
| 5553 | 6009 | <dataarea name="rom" size="1048576"> |
| 5554 | 6010 | <rom name="sns-p-ance-0.u1" size="1048576" crc="cf0f14d2" sha1="edc84730448268ecf1271681bc789feef89eca38" offset="0x000000" /> |
| 5555 | 6011 | </dataarea> |
| r21545 | r21546 | |
| 5568 | 6024 | <feature name="lockout" value="" /> |
| 5569 | 6025 | <feature name="cart_model" value="SNSP-006" /> |
| 5570 | 6026 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 6027 | ||
| 6028 | <feature name="slot" value="lorom" /> | |
| 5571 | 6029 | <dataarea name="rom" size="1048576"> |
| 5572 | 6030 | <rom name="spal-tw-0.u1" size="1048576" crc="83b40af2" sha1="09fad9da1e65717ed2bddc2f4dfad31e35976daf" offset="0x000000" /> |
| 5573 | 6031 | </dataarea> |
| r21545 | r21546 | |
| 5592 | 6050 | <feature name="battery" value="BATT CR2032" /> |
| 5593 | 6051 | <feature name="cart_model" value="SHVC-006" /> |
| 5594 | 6052 | <feature name="cart_back_label" value="920214" /> |
| 6053 | ||
| 6054 | <feature name="slot" value="lorom" /> | |
| 5595 | 6055 | <dataarea name="rom" size="1572864"> |
| 5596 | 6056 | <rom name="shvc-a3kj-0 p0.u1" size="1048576" crc="228d829c" sha1="6ed46bf8fae84d798296beddc5b1539d134627e7" offset="0x000000" /> |
| 5597 | 6057 | <rom name="shvc-a3kj-0 p1.u2" size="524288" crc="fd5d995a" sha1="cf8a81f32542d6d5f0ff16c1e0d80606603240ae" offset="0x100000" /> |
| r21545 | r21546 | |
| 5615 | 6075 | <feature name="lockout" value="" /> |
| 5616 | 6076 | <feature name="cart_model" value="SHVC-006" /> |
| 5617 | 6077 | <feature name="cart_back_label" value="" /> |
| 6078 | ||
| 6079 | <feature name="slot" value="lorom" /> | |
| 5618 | 6080 | <dataarea name="rom" size="2097152"> |
| 5619 | 6081 | <rom name="shvc-7x-0.u1" size="2097152" crc="c0e62c02" sha1="c331838c774b14a01a81d0d057af658e2a0feefb" offset="0x000000" /> |
| 5620 | 6082 | </dataarea> |
| r21545 | r21546 | |
| 5638 | 6100 | <feature name="battery" value="BATT CR2032" /> |
| 5639 | 6101 | <feature name="cart_model" value="SHVC-006" /> |
| 5640 | 6102 | <feature name="cart_back_label" value="920214" /> |
| 6103 | ||
| 6104 | <feature name="slot" value="lorom" /> | |
| 5641 | 6105 | <dataarea name="rom" size="1048576"> |
| 5642 | 6106 | <rom name="shvc-aq-0.u1" size="1048576" crc="4ca1696f" sha1="cb95d1bfd57e0a226fc7322a572032a6d4a149bf" offset="0x000000" /> |
| 5643 | 6107 | </dataarea> |
| r21545 | r21546 | |
| 5659 | 6123 | <feature name="lockout" value="D411B 9725 C" /> |
| 5660 | 6124 | <feature name="cart_model" value="SNS-006" /> |
| 5661 | 6125 | <feature name="cart_back_label" value="" /> |
| 6126 | ||
| 6127 | <feature name="slot" value="lorom" /> | |
| 5662 | 6128 | <dataarea name="rom" size="524288"> |
| 5663 | 6129 | <!-- Notes: There is no revision suffix in this ROM --> |
| 5664 | 6130 | <rom name="sns-aw7e.u1" size="524288" crc="02394f36" sha1="5ed17711300ab1c82791931e910620d2497fc0cf" offset="0x000000" /> |
| r21545 | r21546 | |
| 5682 | 6148 | <feature name="battery" value="BATT CR2032" /> |
| 5683 | 6149 | <feature name="cart_model" value="SNS-006" /> |
| 5684 | 6150 | <feature name="cart_back_label" value="" /> |
| 6151 | ||
| 6152 | <feature name="slot" value="lorom" /> | |
| 5685 | 6153 | <dataarea name="rom" size="1048576"> |
| 5686 | 6154 | <rom name="sns-rf-0.u1" size="1048576" crc="c891b297" sha1="35d04611f815672d02104e174624f9610994b0b5" offset="0x000000" /> |
| 5687 | 6155 | </dataarea> |
| r21545 | r21546 | |
| 5704 | 6172 | <feature name="lockout" value="D411B 9530 C" /> |
| 5705 | 6173 | <feature name="cart_model" value="SNS-006" /> |
| 5706 | 6174 | <feature name="cart_back_label" value="" /> |
| 6175 | ||
| 6176 | <feature name="slot" value="lorom" /> | |
| 5707 | 6177 | <dataarea name="rom" size="1048576"> |
| 5708 | 6178 | <rom name="sns-a9-0.u1" size="1048576" crc="51a5f489" sha1="941750d25912967084672df1fb8310e35e4ee23f" offset="0x000000" /> |
| 5709 | 6179 | </dataarea> |
| r21545 | r21546 | |
| 5724 | 6194 | <feature name="lockout" value="" /> |
| 5725 | 6195 | <feature name="cart_model" value="SHVC-006" /> |
| 5726 | 6196 | <feature name="cart_back_label" value="901121" /> |
| 6197 | ||
| 6198 | <feature name="slot" value="lorom" /> | |
| 5727 | 6199 | <dataarea name="rom" size="1048576"> |
| 5728 | 6200 | <rom name="shvc-e8-0.u1" size="1048576" crc="06388f71" sha1="57c2c8458bc5c1be40a4a6829fb3f4c70ee4cec5" offset="0x000000" /> |
| 5729 | 6201 | </dataarea> |
| r21545 | r21546 | |
| 5748 | 6220 | <feature name="battery" value="BATT CR2032" /> |
| 5749 | 6221 | <feature name="cart_model" value="SHVC-006" /> |
| 5750 | 6222 | <feature name="cart_back_label" value="920214" /> |
| 6223 | ||
| 6224 | <feature name="slot" value="lorom" /> | |
| 5751 | 6225 | <dataarea name="rom" size="2097152"> |
| 5752 | 6226 | <rom name="shvc-yj-0.u1" size="2097152" crc="395bade3" sha1="af4960f2eec19ea7910a268bf8fad266518dbcfa" offset="0x000000" /> |
| 5753 | 6227 | </dataarea> |
| r21545 | r21546 | |
| 5770 | 6244 | <feature name="lockout" value="" /> |
| 5771 | 6245 | <feature name="cart_model" value="SHVC-006" /> |
| 5772 | 6246 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 6247 | ||
| 6248 | <feature name="slot" value="lorom" /> | |
| 5773 | 6249 | <dataarea name="rom" size="524288"> |
| 5774 | 6250 | <rom name="shvc-a6-0.u1" size="524288" crc="7a8bbafa" sha1="03f839819a253eed9a928d8d7cc80fcc245ab23d" offset="0x000000" /> |
| 5775 | 6251 | </dataarea> |
| r21545 | r21546 | |
| 5789 | 6265 | <feature name="lockout" value="D411B 9735 C" /> |
| 5790 | 6266 | <feature name="cart_model" value="SNS-006" /> |
| 5791 | 6267 | <feature name="cart_back_label" value="" /> |
| 6268 | ||
| 6269 | <feature name="slot" value="lorom" /> | |
| 5792 | 6270 | <dataarea name="rom" size="524288"> |
| 5793 | 6271 | <rom name="sns-a6-0.u1" size="524288" crc="b50503a0" sha1="6b08e8fa5c17aa3b435bf611aae7db0abb0a878e" offset="0x000000" /> |
| 5794 | 6272 | </dataarea> |
| r21545 | r21546 | |
| 5809 | 6287 | <feature name="lockout" value="D411A 9346 BA" /> |
| 5810 | 6288 | <feature name="cart_model" value="SNS-006" /> |
| 5811 | 6289 | <feature name="cart_back_label" value="" /> |
| 6290 | ||
| 6291 | <feature name="slot" value="hirom" /> | |
| 5812 | 6292 | <dataarea name="rom" size="2097152"> |
| 5813 | 6293 | <rom name="sns-rw-0.u1" size="2097152" crc="9fa74067" sha1="db0ed085bd28bf58ec050e6eb950471163f8367e" offset="0x000000" /> |
| 5814 | 6294 | </dataarea> |
| r21545 | r21546 | |
| 5829 | 6309 | <feature name="lockout" value="" /> |
| 5830 | 6310 | <feature name="cart_model" value="SHVC-006" /> |
| 5831 | 6311 | <feature name="cart_back_label" value="920214" /> |
| 6312 | ||
| 6313 | <feature name="slot" value="lorom" /> | |
| 5832 | 6314 | <dataarea name="rom" size="1048576"> |
| 5833 | 6315 | <rom name="shvc-av-0.u1" size="1048576" crc="a5f63557" sha1="2ab3e78615d83fce96986a759cfe3ee1fe9ccb07" offset="0x000000" /> |
| 5834 | 6316 | </dataarea> |
| r21545 | r21546 | |
| 5847 | 6329 | <feature name="lockout" value="" /> |
| 5848 | 6330 | <feature name="cart_model" value="SNSP-006" /> |
| 5849 | 6331 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 6332 | ||
| 6333 | <feature name="slot" value="lorom" /> | |
| 5850 | 6334 | <dataarea name="rom" size="524288"> |
| 5851 | 6335 | <rom name="spal-xe-0.u1" size="524288" crc="5ddedc28" sha1="d684958da04b909661371d7d5b657a6beb213629" offset="0x000000" /> |
| 5852 | 6336 | </dataarea> |
| r21545 | r21546 | |
| 5867 | 6351 | <feature name="lockout" value="" /> |
| 5868 | 6352 | <feature name="cart_model" value="SNSP-006" /> |
| 5869 | 6353 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 6354 | ||
| 6355 | <feature name="slot" value="lorom" /> | |
| 5870 | 6356 | <dataarea name="rom" size="1572864"> |
| 5871 | 6357 | <rom name="spal-axop-0 p0.u1" size="1048576" crc="2131d946" sha1="0446176192536b72c77a7783a4f374af6bdb44d6" offset="0x000000" /> |
| 5872 | 6358 | <rom name="spal-axop-0 p1.u2" size="524288" crc="2383509b" sha1="a4a01278572a9ebf543f6d6e19fabe7d123f4688" offset="0x100000" /> |
| r21545 | r21546 | |
| 5886 | 6372 | <feature name="lockout" value="" /> |
| 5887 | 6373 | <feature name="cart_model" value="SNSP-006" /> |
| 5888 | 6374 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 6375 | ||
| 6376 | <feature name="slot" value="lorom" /> | |
| 5889 | 6377 | <dataarea name="rom" size="1048576"> |
| 5890 | 6378 | <rom name="spal-ax-0.u1" size="1048576" crc="f43f6743" sha1="8bfa0b57ab1ed3331ab8fdc34b5639cea1d1ccb1" offset="0x000000" /> |
| 5891 | 6379 | </dataarea> |
| r21545 | r21546 | |
| 5907 | 6395 | <feature name="lockout" value="" /> |
| 5908 | 6396 | <feature name="cart_model" value="SHVC-006" /> |
| 5909 | 6397 | <feature name="cart_back_label" value="" /> |
| 6398 | ||
| 6399 | <feature name="slot" value="lorom" /> | |
| 5910 | 6400 | <dataarea name="rom" size="1048576"> |
| 5911 | 6401 | <rom name="shvc-ax-0.u1" size="1048576" crc="b0a02734" sha1="15562f13c405fc401dc461cb5e0e917af8a9f7e4" offset="0x000000" /> |
| 5912 | 6402 | </dataarea> |
| r21545 | r21546 | |
| 5926 | 6416 | <feature name="lockout" value="D411 C208 11BB" /> |
| 5927 | 6417 | <feature name="cart_model" value="SNS-006" /> |
| 5928 | 6418 | <feature name="cart_back_label" value="" /> |
| 6419 | ||
| 6420 | <feature name="slot" value="lorom" /> | |
| 5929 | 6421 | <dataarea name="rom" size="1048576"> |
| 5930 | 6422 | <rom name="sns-ax-0.u1" size="1048576" crc="f812b533" sha1="5ef7d869547a47cfb73402151330140a83ffed45" offset="0x000000" /> |
| 5931 | 6423 | </dataarea> |
| r21545 | r21546 | |
| 5945 | 6437 | <feature name="lockout" value="D411A 9309 BA" /> |
| 5946 | 6438 | <feature name="cart_model" value="SNS-006" /> |
| 5947 | 6439 | <feature name="cart_back_label" value="" /> |
| 6440 | ||
| 6441 | <feature name="slot" value="lorom" /> | |
| 5948 | 6442 | <dataarea name="rom" size="1048576"> |
| 5949 | 6443 | <rom name="sns-b4-0.u1" size="1048576" crc="4f593c46" sha1="8b9efe5107285c776b24241a0a93f54f23a46e09" offset="0x000000" /> |
| 5950 | 6444 | </dataarea> |
| r21545 | r21546 | |
| 5968 | 6462 | <feature name="battery" value="BATT CR2032" /> |
| 5969 | 6463 | <feature name="cart_model" value="SHVC-006" /> |
| 5970 | 6464 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 6465 | ||
| 6466 | <feature name="slot" value="hirom" /> | |
| 5971 | 6467 | <dataarea name="rom" size="3145728"> |
| 5972 | 6468 | <rom name="shvc-axbj-0.u1" size="3145728" crc="1b83c440" sha1="c8bca249ebd481dfd7bb851c7846844ab70d3003" offset="0x000000" /> |
| 5973 | 6469 | </dataarea> |
| r21545 | r21546 | |
| 5994 | 6490 | <feature name="battery" value="BATT CR2032" /> |
| 5995 | 6491 | <feature name="cart_model" value="SHVC-006" /> |
| 5996 | 6492 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 6493 | ||
| 6494 | <feature name="slot" value="hirom" /> | |
| 5997 | 6495 | <dataarea name="rom" size="3145728"> |
| 5998 | 6496 | <rom name="shvc-axbj-0 p0.u1" size="2097152" crc="196e9a8d" sha1="e25fcd539b2a2996a29eb8bed3bcb37e79cdf067" offset="0x000000" /> |
| 5999 | 6497 | <rom name="shvc-axbj-0 p3.u2" size="1048576" crc="50fc1757" sha1="16acdc879d9e37e7e49239e8cf11c7aead9e9094" offset="0x200000" /> |
| r21545 | r21546 | |
| 6020 | 6518 | <feature name="battery" value="BATT CR2032" /> |
| 6021 | 6519 | <feature name="cart_model" value="SHVC-006" /> |
| 6022 | 6520 | <feature name="cart_back_label" value="" /> |
| 6521 | ||
| 6522 | <feature name="slot" value="hirom" /> | |
| 6023 | 6523 | <dataarea name="rom" size="2097152"> |
| 6024 | 6524 | <rom name="shvc-aaij-0.u1" size="2097152" crc="5613f172" sha1="5670308f143087f1ca6e19978e3fe1e776cdf249" offset="0x000000" /> |
| 6025 | 6525 | </dataarea> |
| r21545 | r21546 | |
| 6046 | 6546 | <feature name="lockout" value="" /> |
| 6047 | 6547 | <feature name="cart_model" value="SHVC-006" /> |
| 6048 | 6548 | <feature name="cart_back_label" value="" /> |
| 6549 | ||
| 6550 | <feature name="slot" value="hirom_dsp" /> | |
| 6049 | 6551 | <dataarea name="rom" size="1048576"> |
| 6050 | 6552 | <rom name="shvc-abzj-0.u1" size="1048576" crc="f0810694" sha1="0caca71401b96b3ab42ec89e9bcf7af82b1bd3d4" offset="0x000000" /> |
| 6051 | 6553 | </dataarea> |
| 6554 | <dataarea name="addon" size="10240"> | |
| 6555 | <rom name="dsp1b.u2" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 6556 | </dataarea> | |
| 6052 | 6557 | </part> |
| 6053 | 6558 | </software> |
| 6054 | 6559 | |
| r21545 | r21546 | |
| 6069 | 6574 | <feature name="lockout" value="D411A 9440 BA" /> |
| 6070 | 6575 | <feature name="cart_model" value="SNS-006" /> |
| 6071 | 6576 | <feature name="cart_back_label" value="" /> |
| 6577 | ||
| 6578 | <feature name="slot" value="hirom_dsp" /> | |
| 6072 | 6579 | <dataarea name="rom" size="1048576"> |
| 6073 | 6580 | <rom name="sns-abze-0.u1" size="1048576" crc="1c058b7d" sha1="236a466af4e05061b06d48bae637bb29f86672ad" offset="0x000000" /> |
| 6074 | 6581 | </dataarea> |
| 6582 | <dataarea name="addon" size="10240"> | |
| 6583 | <rom name="dsp1b.u2" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 6584 | </dataarea> | |
| 6075 | 6585 | </part> |
| 6076 | 6586 | </software> |
| 6077 | 6587 | |
| r21545 | r21546 | |
| 6090 | 6600 | <feature name="lockout" value="D411A 9348 C" /> |
| 6091 | 6601 | <feature name="cart_model" value="SNS-006" /> |
| 6092 | 6602 | <feature name="cart_back_label" value="" /> |
| 6603 | ||
| 6604 | <feature name="slot" value="lorom" /> | |
| 6093 | 6605 | <dataarea name="rom" size="1048576"> |
| 6094 | 6606 | <rom name="sns-8l-0 p0.u1" size="524288" crc="c277f6cf" sha1="e801a3e089533e656440b94b5d2f052a8e2201d0" offset="0x000000" /> |
| 6095 | 6607 | <rom name="sns-8l-0 p1.u2" size="524288" crc="9d11e98f" sha1="0b2992c702c358dc1d00039bb6c0cdf0eaf4d967" offset="0x080000" /> |
| r21545 | r21546 | |
| 6112 | 6624 | <feature name="lockout" value="D411A 9415 CC" /> |
| 6113 | 6625 | <feature name="cart_model" value="SNS-006" /> |
| 6114 | 6626 | <feature name="cart_back_label" value="" /> |
| 6627 | ||
| 6628 | <feature name="slot" value="lorom" /> | |
| 6115 | 6629 | <dataarea name="rom" size="1572864"> |
| 6116 | 6630 | <rom name="sns-u5-0 p0.u1" size="1048576" crc="840d8dfa" sha1="0330800e346d72c4ca09c2b361d7df2e3baf7a07" offset="0x000000" /> |
| 6117 | 6631 | <rom name="sns-u5-0 p1.u2" size="524288" crc="417e3c1d" sha1="1de4d55b07f737f30aea4d788f937ff3b69e63bb" offset="0x100000" /> |
| r21545 | r21546 | |
| 6134 | 6648 | <feature name="lockout" value="D411B 9507 A" /> |
| 6135 | 6649 | <feature name="cart_model" value="SNS-006" /> |
| 6136 | 6650 | <feature name="cart_back_label" value="" /> |
| 6651 | ||
| 6652 | <feature name="slot" value="lorom" /> | |
| 6137 | 6653 | <dataarea name="rom" size="1572864"> |
| 6138 | 6654 | <rom name="sns-abae-0 p0.u1" size="1048576" crc="2ef5cf42" sha1="a6ffb363a671cc8746c4859bfe2d27acb96c13f2" offset="0x000000" /> |
| 6139 | 6655 | <rom name="sns-abae-0 p1.u2" size="524288" crc="ff5eb5b4" sha1="e0e163012a61145ae27c723419d817a940e247ee" offset="0x100000" /> |
| r21545 | r21546 | |
| 6154 | 6670 | <feature name="lockout" value="D411B 9603 CC" /> |
| 6155 | 6671 | <feature name="cart_model" value="SNS-006" /> |
| 6156 | 6672 | <feature name="cart_back_label" value="" /> |
| 6673 | ||
| 6674 | <feature name="slot" value="lorom" /> | |
| 6157 | 6675 | <dataarea name="rom" size="2097152"> |
| 6158 | 6676 | <rom name="sns-a9be-0.u1" size="2097152" crc="c5058634" sha1="50f3592e22cdff8560761d1ff1b728f28fed83dc" offset="0x000000" /> |
| 6159 | 6677 | </dataarea> |
| r21545 | r21546 | |
| 6177 | 6695 | <feature name="battery" value="BATT CR2032" /> |
| 6178 | 6696 | <feature name="cart_model" value="SNS-006" /> |
| 6179 | 6697 | <feature name="cart_back_label" value="" /> |
| 6698 | ||
| 6699 | <feature name="slot" value="lorom" /> | |
| 6180 | 6700 | <dataarea name="rom" size="2097152"> |
| 6181 | 6701 | <rom name="sns-ab2e-0.u1" size="2097152" crc="7dc5b7b3" sha1="a4d107ca8a6ce9022bc99b0212bda040d57ae3bb" offset="0x000000" /> |
| 6182 | 6702 | </dataarea> |
| r21545 | r21546 | |
| 6197 | 6717 | <feature name="lockout" value="" /> |
| 6198 | 6718 | <feature name="cart_model" value="SNSP-006" /> |
| 6199 | 6719 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 6720 | ||
| 6721 | <feature name="slot" value="hirom" /> | |
| 6200 | 6722 | <dataarea name="rom" size="3145728"> |
| 6201 | 6723 | <rom name="spal-a3bp-0.u1" size="3145728" crc="6288d8ed" sha1="d6240284e98827bfc7619f62f9f4a4d9b03250e5" offset="0x000000" /> |
| 6202 | 6724 | </dataarea> |
| r21545 | r21546 | |
| 6216 | 6738 | <feature name="lockout" value="D411B 9526 B, D411B (C)" /> |
| 6217 | 6739 | <feature name="cart_model" value="SNS-006" /> |
| 6218 | 6740 | <feature name="cart_back_label" value="" /> |
| 6741 | ||
| 6742 | <feature name="slot" value="hirom" /> | |
| 6219 | 6743 | <dataarea name="rom" size="3145728"> |
| 6220 | 6744 | <rom name="sns-a3be-0.u1" size="3145728" crc="d9b5e9cf" sha1="8284e6814d6a01a191e82b107eb46570e3ecd9f3" offset="0x000000" /> |
| 6221 | 6745 | </dataarea> |
| r21545 | r21546 | |
| 6236 | 6760 | <feature name="lockout" value="" /> |
| 6237 | 6761 | <feature name="cart_model" value="SNSP-006" /> |
| 6238 | 6762 | <feature name="cart_back_label" value="" /> |
| 6763 | ||
| 6764 | <feature name="slot" value="lorom" /> | |
| 6239 | 6765 | <dataarea name="rom" size="1048576"> |
| 6240 | 6766 | <rom name="spal-bj-0.u1" size="1048576" crc="42f98e71" sha1="79cb69f300c58b3eec38e14a1f85ccba38c8c781" offset="0x000000" /> |
| 6241 | 6767 | </dataarea> |
| r21545 | r21546 | |
| 6255 | 6781 | <feature name="lockout" value="D411A 9309 BA" /> |
| 6256 | 6782 | <feature name="cart_model" value="SNS-006" /> |
| 6257 | 6783 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 6784 | ||
| 6785 | <feature name="slot" value="lorom" /> | |
| 6258 | 6786 | <dataarea name="rom" size="1048576"> |
| 6259 | 6787 | <rom name="sns-bj-0.u1" size="1048576" crc="e87dfdf6" sha1="087f414d51c999e25ced561fe21503c559d8050f" offset="0x000000" /> |
| 6260 | 6788 | </dataarea> |
| r21545 | r21546 | |
| 6275 | 6803 | <feature name="lockout" value="" /> |
| 6276 | 6804 | <feature name="cart_model" value="SHVC-006" /> |
| 6277 | 6805 | <feature name="cart_back_label" value="920214" /> |
| 6806 | ||
| 6807 | <feature name="slot" value="lorom" /> | |
| 6278 | 6808 | <dataarea name="rom" size="1048576"> |
| 6279 | 6809 | <rom name="shvc-bj-0.u1" size="1048576" crc="5bed3661" sha1="ea430d7190d3d40c220f0c972b013ec5e99aede1" offset="0x000000" /> |
| 6280 | 6810 | </dataarea> |
| r21545 | r21546 | |
| 6295 | 6825 | <feature name="lockout" value="" /> |
| 6296 | 6826 | <feature name="cart_model" value="SHVC-006" /> |
| 6297 | 6827 | <feature name="cart_back_label" value="920214" /> |
| 6828 | ||
| 6829 | <feature name="slot" value="lorom" /> | |
| 6298 | 6830 | <dataarea name="rom" size="1048576"> |
| 6299 | 6831 | <rom name="shvc-bz-0.u1" size="1048576" crc="b9cd2ff3" sha1="e486b107afcc50d3c5b2c33fa5840bd16ef705c2" offset="0x000000" /> |
| 6300 | 6832 | </dataarea> |
| r21545 | r21546 | |
| 6316 | 6848 | <feature name="lockout" value="D411A 9349 B" /> |
| 6317 | 6849 | <feature name="cart_model" value="SNS-006" /> |
| 6318 | 6850 | <feature name="cart_back_label" value="" /> |
| 6851 | ||
| 6852 | <feature name="slot" value="lorom" /> | |
| 6319 | 6853 | <dataarea name="rom" size="1048576"> |
| 6320 | 6854 | <rom name="sns-bz-0 p0.u1" size="524288" crc="e5472118" sha1="ef2be2143427f4d1ac03d22275b05ec190af6531" offset="0x000000" /> |
| 6321 | 6855 | <rom name="sns-bz-0 p1.u2" size="524288" crc="e1bf45a5" sha1="9a0171b10d164d5a6b378ef58a1b09cbed7cbb45" offset="0x080000" /> |
| r21545 | r21546 | |
| 6338 | 6872 | <feature name="lockout" value="D411A 9342 C" /> |
| 6339 | 6873 | <feature name="cart_model" value="SNS-006" /> |
| 6340 | 6874 | <feature name="cart_back_label" value="" /> |
| 6875 | ||
| 6876 | <feature name="slot" value="lorom" /> | |
| 6341 | 6877 | <dataarea name="rom" size="1048576"> |
| 6342 | 6878 | <rom name="sns-4b-0 p0.u1" size="524288" crc="eb5dc800" sha1="bd089edacea5dfa884be1360e893e37aaf1613a4" offset="0x000000" /> |
| 6343 | 6879 | <rom name="sns-4b-0 p1.u2" size="524288" crc="9631efb7" sha1="e8533a42058d2377a15b8c59a3f40449b84f889b" offset="0x080000" /> |
| r21545 | r21546 | |
| 6357 | 6893 | <feature name="lockout" value="" /> |
| 6358 | 6894 | <feature name="cart_model" value="SNSP-006" /> |
| 6359 | 6895 | <feature name="cart_back_label" value="SNSP-ESP" /> |
| 6896 | ||
| 6897 | <feature name="slot" value="lorom" /> | |
| 6360 | 6898 | <dataarea name="rom" size="1048576"> |
| 6361 | 6899 | <rom name="spal-bt-0.u1" size="1048576" crc="11e5bc5e" sha1="d514520660de9939d7d30de9219ed9bcf21f7a15" offset="0x000000" /> |
| 6362 | 6900 | </dataarea> |
| r21545 | r21546 | |
| 6385 | 6923 | <feature name="cart_model" value="SNS-006" /> |
| 6386 | 6924 | <feature name="cart_back_label" value="" /> |
| 6387 | 6925 | --> |
| 6926 | ||
| 6927 | <feature name="slot" value="lorom" /> | |
| 6388 | 6928 | <dataarea name="rom" size="1048576"> |
| 6389 | 6929 | <rom name="sns-bt-0.u1" size="1048576" crc="59c00310" sha1="ab007aa2f0b56770b94fd3c7dc0ea161377c6db2" offset="0x000000" /> |
| 6390 | 6930 | </dataarea> |
| r21545 | r21546 | |
| 6408 | 6948 | <feature name="battery" value="BATT CR2032" /> |
| 6409 | 6949 | <feature name="cart_model" value="SHVC-006" /> |
| 6410 | 6950 | <feature name="cart_back_label" value="901121" /> |
| 6951 | ||
| 6952 | <feature name="slot" value="lorom" /> | |
| 6411 | 6953 | <dataarea name="rom" size="1048576"> |
| 6412 | 6954 | <rom name="shvc-bc-0.u1" size="1048576" crc="ad80e50e" sha1="b30566f1fafe2c5417fe57ce209029bba1106843" offset="0x000000" /> |
| 6413 | 6955 | </dataarea> |
| r21545 | r21546 | |
| 6433 | 6975 | <feature name="battery" value="BATT CR2032" /> |
| 6434 | 6976 | <feature name="cart_model" value="SHVC-006" /> |
| 6435 | 6977 | <feature name="cart_back_label" value="901121" /> |
| 6978 | ||
| 6979 | <feature name="slot" value="lorom" /> | |
| 6436 | 6980 | <dataarea name="rom" size="1048576"> |
| 6437 | 6981 | <rom name="shvc-bd-0.u1" size="1048576" crc="99a1f158" sha1="a31fec86afce976ff586fc066561329c416187dd" offset="0x000000" /> |
| 6438 | 6982 | </dataarea> |
| r21545 | r21546 | |
| 6457 | 7001 | <feature name="lockout" value="" /> |
| 6458 | 7002 | <feature name="cart_model" value="SHVC-006" /> |
| 6459 | 7003 | <feature name="cart_back_label" value="920214" /> |
| 7004 | ||
| 7005 | <feature name="slot" value="hirom" /> | |
| 6460 | 7006 | <dataarea name="rom" size="1572864"> |
| 6461 | 7007 | <rom name="shvc-d2-0 p0.u1" size="1048576" crc="602b5888" sha1="29a105326d8c3e685b2f326011c9acc4bc422714" offset="0x000000" /> |
| 6462 | 7008 | <rom name="shvc-d2-0 p1.u2" size="524288" crc="579f86c8" sha1="959c0c871a42524d6395c12e22db20bc61e5d4a8" offset="0x100000" /> |
| r21545 | r21546 | |
| 6478 | 7024 | <feature name="lockout" value="" /> |
| 6479 | 7025 | <feature name="cart_model" value="SHVC-006" /> |
| 6480 | 7026 | <feature name="cart_back_label" value="901121" /> |
| 7027 | ||
| 7028 | <feature name="slot" value="lorom" /> | |
| 6481 | 7029 | <dataarea name="rom" size="1048576"> |
| 6482 | 7030 | <rom name="shvc-bg-0.u1" size="1048576" crc="8b8afd6f" sha1="2dba76455c864273fac853c1592af9132685a753" offset="0x000000" /> |
| 6483 | 7031 | </dataarea> |
| r21545 | r21546 | |
| 6497 | 7045 | <feature name="lockout" value="D411A 9309 BA" /> |
| 6498 | 7046 | <feature name="cart_model" value="SNS-006" /> |
| 6499 | 7047 | <feature name="cart_back_label" value="" /> |
| 7048 | ||
| 7049 | <feature name="slot" value="lorom" /> | |
| 6500 | 7050 | <dataarea name="rom" size="1048576"> |
| 6501 | 7051 | <rom name="sns-bg-0.u1" size="1048576" crc="190ff436" sha1="f321c4d625db984df46c15e1dac0b247d594d62d" offset="0x000000" /> |
| 6502 | 7052 | </dataarea> |
| r21545 | r21546 | |
| 6520 | 7070 | <feature name="battery" value="BATT CR2032" /> |
| 6521 | 7071 | <feature name="cart_model" value="SHVC-006" /> |
| 6522 | 7072 | <feature name="cart_back_label" value="920214" /> |
| 7073 | ||
| 7074 | <feature name="slot" value="hirom" /> | |
| 6523 | 7075 | <dataarea name="rom" size="1048576"> |
| 6524 | 7076 | <rom name="shvc-b8-0.u1" size="1048576" crc="c54ae0f9" sha1="09614be9cb31f26d02780e25a6217e73f0899084" offset="0x000000" /> |
| 6525 | 7077 | </dataarea> |
| r21545 | r21546 | |
| 6544 | 7096 | <feature name="lockout" value="" /> |
| 6545 | 7097 | <feature name="cart_model" value="SHVC-006" /> |
| 6546 | 7098 | <feature name="cart_back_label" value="920214" /> |
| 7099 | ||
| 7100 | <feature name="slot" value="hirom" /> | |
| 6547 | 7101 | <dataarea name="rom" size="1310720"> |
| 6548 | 7102 | <rom name="shvc-absj-0 p0.u1" size="1048576" crc="45fcc099" sha1="c4c02a97cf8c890307498f8838d1d2895479de3c" offset="0x000000" /> |
| 6549 | 7103 | <rom name="shvc-absj-0 p1.u2" size="262144" crc="c8359a87" sha1="070b21dee9641c5f568a9bbb87b990fe6e1e62f4" offset="0x100000" /> |
| r21545 | r21546 | |
| 6568 | 7122 | <feature name="battery" value="BATT CR2032" /> |
| 6569 | 7123 | <feature name="cart_model" value="SHVC-006" /> |
| 6570 | 7124 | <feature name="cart_back_label" value="" /> |
| 7125 | ||
| 7126 | <feature name="slot" value="hirom" /> | |
| 6571 | 7127 | <dataarea name="rom" size="3145728"> |
| 6572 | 7128 | <rom name="shvc-afhj-0.u1" size="3145728" crc="e38c4a5b" sha1="0e2a2f7e2b88a9853d7ff5ec37d78f7bfcc658cb" offset="0x000000" /> |
| 6573 | 7129 | </dataarea> |
| r21545 | r21546 | |
| 6590 | 7146 | <feature name="lockout" value="" /> |
| 6591 | 7147 | <feature name="cart_model" value="SNSP-006" /> |
| 6592 | 7148 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 7149 | ||
| 7150 | <feature name="slot" value="lorom" /> | |
| 6593 | 7151 | <dataarea name="rom" size="1048576"> |
| 6594 | 7152 | <rom name="spal-nx-0 p0.u1" size="524288" crc="cca324c0" sha1="824ddc2c8d14286c4da54eb0d2a700d082c15194" offset="0x000000" /> |
| 6595 | 7153 | <rom name="spal-nx-0 p1.u2" size="524288" crc="b5f6f86b" sha1="ec498366b1e185079d3c016400e63b6cd6b2fecd" offset="0x080000" /> |
| r21545 | r21546 | |
| 6610 | 7168 | <feature name="lockout" value="D411A 9319 B" /> |
| 6611 | 7169 | <feature name="cart_model" value="SNS-006" /> |
| 6612 | 7170 | <feature name="cart_back_label" value="" /> |
| 7171 | ||
| 7172 | <feature name="slot" value="lorom" /> | |
| 6613 | 7173 | <dataarea name="rom" size="1048576"> |
| 6614 | 7174 | <rom name="sns-nx-0.u1" size="1048576" crc="617ac925" sha1="3041c5c2a88449cf358a57d019930849575f8f6d" offset="0x000000" /> |
| 6615 | 7175 | </dataarea> |
| r21545 | r21546 | |
| 6628 | 7188 | <feature name="lockout" value="" /> |
| 6629 | 7189 | <feature name="cart_model" value="SNSP-006" /> |
| 6630 | 7190 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 7191 | ||
| 7192 | <feature name="slot" value="lorom" /> | |
| 6631 | 7193 | <dataarea name="rom" size="1048576"> |
| 6632 | 7194 | <rom name="spal-ul-0.u1" size="1048576" crc="043f3773" sha1="1302d74caf3db924510e58868b095066abdf74f1" offset="0x000000" /> |
| 6633 | 7195 | </dataarea> |
| r21545 | r21546 | |
| 6656 | 7218 | <feature name="cart_model" value="SNS-006" /> |
| 6657 | 7219 | <feature name="cart_back_label" value="" /> |
| 6658 | 7220 | --> |
| 7221 | ||
| 7222 | <feature name="slot" value="lorom" /> | |
| 6659 | 7223 | <dataarea name="rom" size="1048576"> |
| 6660 | 7224 | <rom name="sns-ul-0.u1" size="1048576" crc="8b18ac01" sha1="bf56f12bdde3e2233d7ffcaf4825b10d92632b77" offset="0x000000" /> |
| 6661 | 7225 | </dataarea> |
| r21545 | r21546 | |
| 6676 | 7240 | <feature name="lockout" value="" /> |
| 6677 | 7241 | <feature name="cart_model" value="SHVC-006" /> |
| 6678 | 7242 | <feature name="cart_back_label" value="920214" /> |
| 7243 | ||
| 7244 | <feature name="slot" value="lorom" /> | |
| 6679 | 7245 | <dataarea name="rom" size="1048576"> |
| 6680 | 7246 | <rom name="shvc-ew-0.u1" size="1048576" crc="b319c546" sha1="396fcab2dc8656b8d75df1643fc83868d76ce6c4" offset="0x000000" /> |
| 6681 | 7247 | </dataarea> |
| r21545 | r21546 | |
| 6695 | 7261 | <feature name="lockout" value="D411A 9402 BA" /> |
| 6696 | 7262 | <feature name="cart_model" value="SNS-006" /> |
| 6697 | 7263 | <feature name="cart_back_label" value="" /> |
| 7264 | ||
| 7265 | <feature name="slot" value="lorom" /> | |
| 6698 | 7266 | <dataarea name="rom" size="1048576"> |
| 6699 | 7267 | <rom name="sns-ew-0.u1" size="1048576" crc="956e183c" sha1="a8943fd4911b67f3ddf25fb05e7ce049775d0f62" offset="0x000000" /> |
| 6700 | 7268 | </dataarea> |
| r21545 | r21546 | |
| 6714 | 7282 | <feature name="lockout" value="D411B 9713 C" /> |
| 6715 | 7283 | <feature name="cart_model" value="SNS-006" /> |
| 6716 | 7284 | <feature name="cart_back_label" value="" /> |
| 7285 | ||
| 7286 | <feature name="slot" value="lorom" /> | |
| 6717 | 7287 | <dataarea name="rom" size="2097152"> |
| 6718 | 7288 | <rom name="sns-p-abue-0.u1" size="2097152" crc="0b37c518" sha1="de34cfe6766ab21a2e9ac61351a1058522cddf8b" offset="0x000000" /> |
| 6719 | 7289 | </dataarea> |
| r21545 | r21546 | |
| 6733 | 7303 | <feature name="lockout" value="D411A 9352 CB" /> |
| 6734 | 7304 | <feature name="cart_model" value="SNS-006" /> |
| 6735 | 7305 | <feature name="cart_back_label" value="" /> |
| 7306 | ||
| 7307 | <feature name="slot" value="lorom" /> | |
| 6736 | 7308 | <dataarea name="rom" size="1048576"> |
| 6737 | 7309 | <rom name="sns-6b-0.u1" size="1048576" crc="bda2e412" sha1="3e73bd7965eee7ddd40bd60ae51ecbca8d85de0f" offset="0x000000" /> |
| 6738 | 7310 | </dataarea> |
| r21545 | r21546 | |
| 6752 | 7324 | <feature name="lockout" value="D411A 9303 CA" /> |
| 6753 | 7325 | <feature name="cart_model" value="SNS-006" /> |
| 6754 | 7326 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 7327 | ||
| 7328 | <feature name="slot" value="lorom" /> | |
| 6755 | 7329 | <dataarea name="rom" size="524288"> |
| 6756 | 7330 | <rom name="sns-2v-0.u1" size="524288" crc="beebafa2" sha1="915550964ac5988d9bcb88dc9f74f8fc5c522903" offset="0x000000" /> |
| 6757 | 7331 | </dataarea> |
| r21545 | r21546 | |
| 6771 | 7345 | <feature name="lockout" value="D411A 9307 CA" /> |
| 6772 | 7346 | <feature name="cart_model" value="SNS-006" /> |
| 6773 | 7347 | <feature name="cart_back_label" value="" /> |
| 7348 | ||
| 7349 | <feature name="slot" value="lorom" /> | |
| 6774 | 7350 | <dataarea name="rom" size="1048576"> |
| 6775 | 7351 | <rom name="sns-be-0.u1" size="1048576" crc="7f6ed86e" sha1="01a1cb3e4ea1714c145ff06a0826d6df0ed36a06" offset="0x000000" /> |
| 6776 | 7352 | </dataarea> |
| r21545 | r21546 | |
| 6794 | 7370 | <feature name="battery" value="BATT CR2032" /> |
| 6795 | 7371 | <feature name="cart_model" value="SHVC-006" /> |
| 6796 | 7372 | <feature name="cart_back_label" value="" /> |
| 7373 | ||
| 7374 | <feature name="slot" value="lorom" /> | |
| 6797 | 7375 | <dataarea name="rom" size="524288"> |
| 6798 | 7376 | <rom name="shvc-apdj-0.u1" size="524288" crc="fb8ed6aa" sha1="20aaec8ac9cb64b1c406cb2f7de698bb2ec33611" offset="0x000000" /> |
| 6799 | 7377 | </dataarea> |
| r21545 | r21546 | |
| 6818 | 7396 | <feature name="battery" value="BATT CR2032" /> |
| 6819 | 7397 | <feature name="cart_model" value="SNS-006" /> |
| 6820 | 7398 | <feature name="cart_back_label" value="" /> |
| 7399 | ||
| 7400 | <feature name="slot" value="lorom" /> | |
| 6821 | 7401 | <dataarea name="rom" size="1048576"> |
| 6822 | 7402 | <rom name="sns-ab9e-0.u1" size="1048576" crc="25c69316" sha1="f6599996571f9d899caf4e33e5e5ce820a47dc8e" offset="0x000000" /> |
| 6823 | 7403 | </dataarea> |
| r21545 | r21546 | |
| 6840 | 7420 | <feature name="lockout" value="D411A 9444 CB" /> |
| 6841 | 7421 | <feature name="cart_model" value="SNS-006" /> |
| 6842 | 7422 | <feature name="cart_back_label" value="" /> |
| 7423 | ||
| 7424 | <feature name="slot" value="lorom" /> | |
| 6843 | 7425 | <dataarea name="rom" size="1048576"> |
| 6844 | 7426 | <rom name="sns-abme-0.u1" size="1048576" crc="4e8b2ecb" sha1="3ea3d8b7cf36eba21a9b180a80b645ee0e221bc0" offset="0x000000" /> |
| 6845 | 7427 | </dataarea> |
| r21545 | r21546 | |
| 6862 | 7444 | <feature name="battery" value="BATT CR2032" /> |
| 6863 | 7445 | <feature name="cart_model" value="SNS-006" /> |
| 6864 | 7446 | <feature name="cart_back_label" value="" /> |
| 7447 | ||
| 7448 | <feature name="slot" value="lorom" /> | |
| 6865 | 7449 | <dataarea name="rom" size="524288"> |
| 6866 | 7450 | <rom name="sns-cb-0.u1" size="524288" crc="468d8cdd" sha1="c4229e655a621c25e28b46bf72cb0a70a4911877" offset="0x000000" /> |
| 6867 | 7451 | </dataarea> |
| r21545 | r21546 | |
| 6883 | 7467 | <feature name="lockout" value="D411A 9353 BA" /> |
| 6884 | 7468 | <feature name="cart_model" value="SNS-006" /> |
| 6885 | 7469 | <feature name="cart_back_label" value="" /> |
| 7470 | ||
| 7471 | <feature name="slot" value="hirom" /> | |
| 6886 | 7472 | <dataarea name="rom" size="1048576"> |
| 6887 | 7473 | <rom name="sns-7f-0.u1" size="1048576" crc="25391c9f" sha1="85aa6176f3584863adef2e4a1385411ca25723f3" offset="0x000000" /> |
| 6888 | 7474 | </dataarea> |
| r21545 | r21546 | |
| 6905 | 7491 | <feature name="lockout" value="" /> |
| 6906 | 7492 | <feature name="cart_model" value="SHVC-006" /> |
| 6907 | 7493 | <feature name="cart_back_label" value="920214" /> |
| 7494 | ||
| 7495 | <feature name="slot" value="lorom" /> | |
| 6908 | 7496 | <dataarea name="rom" size="1048576"> |
| 6909 | 7497 | <rom name="shvc-3k-0 p0.u1" size="524288" crc="31d5a572" sha1="1bc7d709ba14658535179ecf2bb3e733e65fead5" offset="0x000000" /> |
| 6910 | 7498 | <rom name="shvc-3k-0 p1.u2" size="524288" crc="e3ae6448" sha1="7d9f8d29cfbd08359ee9c11f958298a618680cfd" offset="0x080000" /> |
| r21545 | r21546 | |
| 6926 | 7514 | <feature name="lockout" value="D411A 9304 BA" /> |
| 6927 | 7515 | <feature name="cart_model" value="SNS-006" /> |
| 6928 | 7516 | <feature name="cart_back_label" value="" /> |
| 7517 | ||
| 7518 | <feature name="slot" value="lorom" /> | |
| 6929 | 7519 | <dataarea name="rom" size="1048576"> |
| 6930 | 7520 | <rom name="sns-bv-0.u1" size="1048576" crc="53d8410e" sha1="b2f13be7ec7e955ef8fdd398bca44e06b690a8e2" offset="0x000000" /> |
| 6931 | 7521 | </dataarea> |
| r21545 | r21546 | |
| 6948 | 7538 | <feature name="lockout" value="" /> |
| 6949 | 7539 | <feature name="cart_model" value="SHVC-006" /> |
| 6950 | 7540 | <feature name="cart_back_label" value="920214" /> |
| 7541 | ||
| 7542 | <feature name="slot" value="hirom" /> | |
| 6951 | 7543 | <dataarea name="rom" size="1572864"> |
| 6952 | 7544 | <rom name="shvc-ae-0 p0.u1" size="1048576" crc="dc9dedd3" sha1="19a6d905e64290d0236fc2af07c27f5a629dd165" offset="0x000000" /> |
| 6953 | 7545 | <rom name="shvc-ae-0 p1.u2" size="524288" crc="f1032341" sha1="eff4002ebbe5afdf3c67644dfc0accab88ecbe37" offset="0x100000" /> |
| r21545 | r21546 | |
| 6969 | 7561 | <feature name="lockout" value="" /> |
| 6970 | 7562 | <feature name="cart_model" value="SHVC-006" /> |
| 6971 | 7563 | <feature name="cart_back_label" value="920214" /> |
| 7564 | ||
| 7565 | <feature name="slot" value="hirom" /> | |
| 6972 | 7566 | <dataarea name="rom" size="2097152"> |
| 6973 | 7567 | <rom name="shvc-2q-0.u1" size="2097152" crc="4aee5abb" sha1="3fe66efa28f97579602eca80fe1765a6f45f762d" offset="0x000000" /> |
| 6974 | 7568 | </dataarea> |
| r21545 | r21546 | |
| 6991 | 7585 | <feature name="lockout" value="" /> |
| 6992 | 7586 | <feature name="cart_model" value="SHVC-006" /> |
| 6993 | 7587 | <feature name="cart_back_label" value="920214" /> |
| 7588 | ||
| 7589 | <feature name="slot" value="hirom" /> | |
| 6994 | 7590 | <dataarea name="rom" size="2621440"> |
| 6995 | 7591 | <rom name="shvc-aqsj-0 p0.u1" size="2097152" crc="8e6752b3" sha1="44b424a8b95a698e3f290921adb8754f3ebe5da2" offset="0x000000" /> |
| 6996 | 7592 | <rom name="shvc-aqsj-0 p3.u2" size="524288" crc="15c58ea7" sha1="bd555ab048216bca02b1844cb7ec5bf3427a9c57" offset="0x200000" /> |
| r21545 | r21546 | |
| 7010 | 7606 | <feature name="lockout" value="" /> |
| 7011 | 7607 | <feature name="cart_model" value="SNSP-006" /> |
| 7012 | 7608 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 7609 | ||
| 7610 | <feature name="slot" value="lorom" /> | |
| 7013 | 7611 | <dataarea name="rom" size="1048576"> |
| 7014 | 7612 | <rom name="spal-6z-0.u1" size="1048576" crc="2d1dd10a" sha1="27eb4c70ecda592a0473aa8c68b424ff0ccb7413" offset="0x000000" /> |
| 7015 | 7613 | </dataarea> |
| r21545 | r21546 | |
| 7029 | 7627 | <feature name="lockout" value="D411A 9426 CA" /> |
| 7030 | 7628 | <feature name="cart_model" value="SNS-006" /> |
| 7031 | 7629 | <feature name="cart_back_label" value="" /> |
| 7630 | ||
| 7631 | <feature name="slot" value="lorom" /> | |
| 7032 | 7632 | <dataarea name="rom" size="1048576"> |
| 7033 | 7633 | <rom name="sns-6z-0.u1" size="1048576" crc="856beab1" sha1="bcac87c7a982d8eb90cbf30a6c34fbabde135ff7" offset="0x000000" /> |
| 7034 | 7634 | </dataarea> |
| r21545 | r21546 | |
| 7049 | 7649 | <feature name="lockout" value="" /> |
| 7050 | 7650 | <feature name="cart_model" value="SHVC-006" /> |
| 7051 | 7651 | <feature name="cart_back_label" value="" /> |
| 7652 | ||
| 7653 | <feature name="slot" value="lorom" /> | |
| 7052 | 7654 | <dataarea name="rom" size="1048576"> |
| 7053 | 7655 | <rom name="shvc-bl-0.u1" size="1048576" crc="ad2effc3" sha1="b59e45c1b885fb67c9e0964e3daccc69d809ed63" offset="0x000000" /> |
| 7054 | 7656 | </dataarea> |
| r21545 | r21546 | |
| 7068 | 7670 | <feature name="lockout" value="D411A 9238 BA" /> |
| 7069 | 7671 | <feature name="cart_model" value="SNS-006" /> |
| 7070 | 7672 | <feature name="cart_back_label" value="" /> |
| 7673 | ||
| 7674 | <feature name="slot" value="lorom" /> | |
| 7071 | 7675 | <dataarea name="rom" size="1048576"> |
| 7072 | 7676 | <rom name="sns-bl-0.u1" size="1048576" crc="3b01d0a3" sha1="b0bed10b3332e6c1e02c09e1bf89a35d56cc3c69" offset="0x000000" /> |
| 7073 | 7677 | </dataarea> |
| r21545 | r21546 | |
| 7092 | 7696 | <feature name="battery" value="BATT CR2032" /> |
| 7093 | 7697 | <feature name="cart_model" value="SHVC-006" /> |
| 7094 | 7698 | <feature name="cart_back_label" value="920214" /> |
| 7699 | ||
| 7700 | <feature name="slot" value="lorom" /> | |
| 7095 | 7701 | <dataarea name="rom" size="2097152"> |
| 7096 | 7702 | <rom name="shvc-nu-0 p0.u1" size="1048576" crc="8919fdda" sha1="e19ff04195c3340834bcfbcbfbe5da33fb344df5" offset="0x000000" /> |
| 7097 | 7703 | <rom name="shvc-nu-0 p1.u2" size="1048576" crc="e2c12e8d" sha1="83fa2360ea65d2b05c5f65b20631372adc2664ca" offset="0x100000" /> |
| r21545 | r21546 | |
| 7113 | 7719 | <feature name="lockout" value="" /> |
| 7114 | 7720 | <feature name="cart_model" value="SNSP-006" /> |
| 7115 | 7721 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 7722 | ||
| 7723 | <feature name="slot" value="lorom" /> | |
| 7116 | 7724 | <dataarea name="rom" size="524288"> |
| 7117 | 7725 | <rom name="spal-b6-0.u1" size="524288" crc="4a62057d" sha1="4ca07bc7319303952bc4b036eb3322dff3212d29" offset="0x000000" /> |
| 7118 | 7726 | </dataarea> |
| r21545 | r21546 | |
| 7132 | 7740 | <feature name="lockout" value="D411A 9322 CA" /> |
| 7133 | 7741 | <feature name="cart_model" value="SNS-006" /> |
| 7134 | 7742 | <feature name="cart_back_label" value="" /> |
| 7743 | ||
| 7744 | <feature name="slot" value="lorom" /> | |
| 7135 | 7745 | <dataarea name="rom" size="524288"> |
| 7136 | 7746 | <rom name="sns-b6-0.u1" size="524288" crc="82b97464" sha1="ad516a2bb9e7a8c9ecccdfbb491ba3dcc92a0519" offset="0x000000" /> |
| 7137 | 7747 | </dataarea> |
| r21545 | r21546 | |
| 7155 | 7765 | <feature name="battery" value="BATT CR2032" /> |
| 7156 | 7766 | <feature name="cart_model" value="SHVC-006" /> |
| 7157 | 7767 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 7768 | ||
| 7769 | <feature name="slot" value="lorom" /> | |
| 7158 | 7770 | <dataarea name="rom" size="2097152"> |
| 7159 | 7771 | <rom name="shvc-aywj-0.u1" size="2097152" crc="d10c3cfa" sha1="2fe859c1dfb3304e50f6845a41712c4307743c3b" offset="0x000000" /> |
| 7160 | 7772 | </dataarea> |
| r21545 | r21546 | |
| 7180 | 7792 | <feature name="battery" value="BATT CR2032" /> |
| 7181 | 7793 | <feature name="cart_model" value="SHVC-006" /> |
| 7182 | 7794 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 7795 | ||
| 7796 | <feature name="slot" value="hirom" /> | |
| 7183 | 7797 | <dataarea name="rom" size="1048576"> |
| 7184 | 7798 | <rom name="shvc-ah9j-0.u1" size="1048576" crc="9fea854d" sha1="1f1698bfde71cabbcb7ea57bf0ba69141362e562" offset="0x000000" /> |
| 7185 | 7799 | </dataarea> |
| r21545 | r21546 | |
| 7201 | 7815 | <feature name="lockout" value="D411A 9435 BA" /> |
| 7202 | 7816 | <feature name="cart_model" value="SNS-006" /> |
| 7203 | 7817 | <feature name="cart_back_label" value="" /> |
| 7818 | ||
| 7819 | <feature name="slot" value="lorom" /> | |
| 7204 | 7820 | <dataarea name="rom" size="1048576"> |
| 7205 | 7821 | <rom name="sns-abne-0.u1" size="1048576" crc="597aa981" sha1="e9b6482ff501b35db2aaffd1e2fca4f4be82034b" offset="0x000000" /> |
| 7206 | 7822 | </dataarea> |
| r21545 | r21546 | |
| 7220 | 7836 | <feature name="lockout" value="D411B 9528 C" /> |
| 7221 | 7837 | <feature name="cart_model" value="SNS-006" /> |
| 7222 | 7838 | <feature name="cart_back_label" value="" /> |
| 7839 | ||
| 7840 | <feature name="slot" value="hirom" /> | |
| 7223 | 7841 | <dataarea name="rom" size="3145728"> |
| 7224 | 7842 | <rom name="sns-ab4e-0.u1" size="3145728" crc="1899aaff" sha1="aa6afbec0c111943df266f93143aa1082659070e" offset="0x000000" /> |
| 7225 | 7843 | </dataarea> |
| r21545 | r21546 | |
| 7239 | 7857 | <feature name="lockout" value="D411A 9227 BA" /> |
| 7240 | 7858 | <feature name="cart_model" value="SNS-006" /> |
| 7241 | 7859 | <feature name="cart_back_label" value="" /> |
| 7860 | ||
| 7861 | <feature name="slot" value="lorom" /> | |
| 7242 | 7862 | <dataarea name="rom" size="1048576"> |
| 7243 | 7863 | <rom name="sns-ll-0.u1" size="1048576" crc="c0b632c0" sha1="1cbe6c3fd218c7fbd434d9951bbd9cc8eee049d2" offset="0x000000" /> |
| 7244 | 7864 | </dataarea> |
| r21545 | r21546 | |
| 7262 | 7882 | <feature name="battery" value="BATT CR2032" /> |
| 7263 | 7883 | <feature name="cart_model" value="SNS-006" /> |
| 7264 | 7884 | <feature name="cart_back_label" value="" /> |
| 7885 | ||
| 7886 | <feature name="slot" value="hirom" /> | |
| 7265 | 7887 | <dataarea name="rom" size="1572864"> |
| 7266 | 7888 | <rom name="sns-3b-0 p0.u1" size="1048576" crc="69c13f9a" sha1="dd748ce925a8e00bc825a2f296a12c512a7cf864" offset="0x000000" /> |
| 7267 | 7889 | <rom name="sns-3b-0 p1.u2" size="524288" crc="ee8257bb" sha1="f8d166726ed864fca0bb4cc7e3a01dd8d0fce9ce" offset="0x100000" /> |
| r21545 | r21546 | |
| 7284 | 7906 | <feature name="lockout" value="D411B 9531 C" /> |
| 7285 | 7907 | <feature name="cart_model" value="SNS-006" /> |
| 7286 | 7908 | <feature name="cart_back_label" value="" /> |
| 7909 | ||
| 7910 | <feature name="slot" value="lorom" /> | |
| 7287 | 7911 | <dataarea name="rom" size="524288"> |
| 7288 | 7912 | <rom name="sns-b7-0.u1" size="524288" crc="718cb0df" sha1="ba2e624390925f0993b5ccf74072e168fbfe4606" offset="0x000000" /> |
| 7289 | 7913 | </dataarea> |
| r21545 | r21546 | |
| 7303 | 7927 | <feature name="lockout" value="D411A 9338 CB" /> |
| 7304 | 7928 | <feature name="cart_model" value="SNS-006" /> |
| 7305 | 7929 | <feature name="cart_back_label" value="" /> |
| 7930 | ||
| 7931 | <feature name="slot" value="lorom" /> | |
| 7306 | 7932 | <dataarea name="rom" size="1048576"> |
| 7307 | 7933 | <rom name="sns-5d-0.u1" size="1048576" crc="5cece690" sha1="618eea2886004652fa707daf56d8ad04c3c17094" offset="0x000000" /> |
| 7308 | 7934 | </dataarea> |
| r21545 | r21546 | |
| 7326 | 7952 | <feature name="battery" value="BATT CR2032" /> |
| 7327 | 7953 | <feature name="cart_model" value="SNS-006" /> |
| 7328 | 7954 | <feature name="cart_back_label" value="" /> |
| 7955 | ||
| 7956 | <feature name="slot" value="hirom" /> | |
| 7329 | 7957 | <dataarea name="rom" size="1572864"> |
| 7330 | 7958 | <rom name="sns-qf-0 p0.u1" size="1048576" crc="e3a5d52f" sha1="c0124d84a3c534e9c51b9f8b4da7fe0887b5da5e" offset="0x000000" /> |
| 7331 | 7959 | <rom name="sns-qf-0 p1.u2" size="524288" crc="c440682b" sha1="11e0923ca2259b61d8057dcf3875ad0cd68cef34" offset="0x100000" /> |
| r21545 | r21546 | |
| 7350 | 7978 | <feature name="lockout" value="D411A 9306 BA" /> |
| 7351 | 7979 | <feature name="cart_model" value="SNS-006" /> |
| 7352 | 7980 | <feature name="cart_back_label" value="" /> |
| 7981 | ||
| 7982 | <feature name="slot" value="lorom" /> | |
| 7353 | 7983 | <dataarea name="rom" size="1572864"> |
| 7354 | 7984 | <rom name="sns-re-0 p0.u1" size="1048576" crc="d21d844b" sha1="144c402a0a1117e5f3bad98d309d329283d60a7c" offset="0x000000" /> |
| 7355 | 7985 | <rom name="sns-re-0 p1.u2" size="524288" crc="70162288" sha1="bf393af9c56cee2933d8e2d47cec34a2d906a006" offset="0x100000" /> |
| r21545 | r21546 | |
| 7370 | 8000 | <feature name="lockout" value="D411A 9450 BA" /> |
| 7371 | 8001 | <feature name="cart_model" value="SNS-006" /> |
| 7372 | 8002 | <feature name="cart_back_label" value="" /> |
| 8003 | ||
| 8004 | <feature name="slot" value="lorom" /> | |
| 7373 | 8005 | <dataarea name="rom" size="524288"> |
| 7374 | 8006 | <rom name="sns-abxe-0.u1" size="524288" crc="e6c0b5da" sha1="1cee68420e5032821993a67cd79d0b49d729178c" offset="0x000000" /> |
| 7375 | 8007 | </dataarea> |
| r21545 | r21546 | |
| 7394 | 8026 | <feature name="battery" value="BATT CR2032" /> |
| 7395 | 8027 | <feature name="cart_model" value="SHVC-006" /> |
| 7396 | 8028 | <feature name="cart_back_label" value="920214" /> |
| 8029 | ||
| 8030 | <feature name="slot" value="lorom" /> | |
| 7397 | 8031 | <dataarea name="rom" size="1572864"> |
| 7398 | 8032 | <rom name="shvc-bf-0 p0.u1" size="1048576" crc="42b56014" sha1="a6adee1075396d9075f66467177f2685e5c806f3" offset="0x000000" /> |
| 7399 | 8033 | <rom name="shvc-bf-0 p1.u2" size="524288" crc="068b9672" sha1="4cba132adf15d04397762da43ca86d215c410f47" offset="0x100000" /> |
| r21545 | r21546 | |
| 7423 | 8057 | <feature name="cart_revision" value="A" /> |
| 7424 | 8058 | <feature name="cart_model" value="SHVC-006" /> |
| 7425 | 8059 | <feature name="cart_back_label" value="920214" /> |
| 8060 | ||
| 8061 | <feature name="slot" value="lorom" /> | |
| 7426 | 8062 | <dataarea name="rom" size="1572864"> |
| 7427 | 8063 | <rom name="shvc-bf-1 p0.u1" size="1048576" crc="a3e0c71e" sha1="cdf0473400012e1b983a559f67631b9321655137" offset="0x000000" /> |
| 7428 | 8064 | <rom name="shvc-bf-1 p1.u2" size="524288" crc="9efb638b" sha1="66eecf86d6565d825bfb60c33b9b727569e06d20" offset="0x100000" /> |
| r21545 | r21546 | |
| 7449 | 8085 | <feature name="battery" value="BATT CR2032" /> |
| 7450 | 8086 | <feature name="cart_model" value="SNS-006" /> |
| 7451 | 8087 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 8088 | ||
| 8089 | <feature name="slot" value="lorom" /> | |
| 7452 | 8090 | <dataarea name="rom" size="1572864"> |
| 7453 | 8091 | <rom name="sns-bf-0 p0.u1" size="1048576" crc="16257ec1" sha1="cb675b80a50af37e084d66b63e24b553da748eb3" offset="0x000000" /> |
| 7454 | 8092 | <rom name="sns-bf-0 p1.u2" size="524288" crc="69a82476" sha1="95b8e0a1edd99d46728d42c03761eb23eb2dcc2c" offset="0x100000" /> |
| r21545 | r21546 | |
| 7476 | 8114 | <feature name="battery" value="BATT CR2032" /> |
| 7477 | 8115 | <feature name="cart_model" value="SHVC-006" /> |
| 7478 | 8116 | <feature name="cart_back_label" value="920214" /> |
| 8117 | ||
| 8118 | <feature name="slot" value="hirom" /> | |
| 7479 | 8119 | <dataarea name="rom" size="2621440"> |
| 7480 | 8120 | <rom name="shvc-af2j-0 p0.u1" size="2097152" crc="e903c522" sha1="963effc79b4175a6be0c6b97c7508b2ea0a48046" offset="0x000000" /> |
| 7481 | 8121 | <rom name="shvc-af2j-0 p3.u2" size="524288" crc="4b1a53ed" sha1="7758ad88e3240a10287cf59d8e1edefd0fcd108c" offset="0x200000" /> |
| r21545 | r21546 | |
| 7501 | 8141 | <feature name="battery" value="BATT CR2032" /> |
| 7502 | 8142 | <feature name="cart_model" value="SNS-006" /> |
| 7503 | 8143 | <feature name="cart_back_label" value="" /> |
| 8144 | ||
| 8145 | <feature name="slot" value="hirom" /> | |
| 7504 | 8146 | <dataarea name="rom" size="3145728"> |
| 7505 | 8147 | <rom name="sns-af2e-0.u1" size="3145728" crc="67cdacc5" sha1="1f7707e606b7e9fa8fb3908bbddfcb5dea93d776" offset="0x000000" /> |
| 7506 | 8148 | </dataarea> |
| r21545 | r21546 | |
| 7522 | 8164 | <feature name="lockout" value="D411A 9447 CA" /> |
| 7523 | 8165 | <feature name="cart_model" value="SNS-006" /> |
| 7524 | 8166 | <feature name="cart_back_label" value="" /> |
| 8167 | ||
| 8168 | <feature name="slot" value="lorom" /> | |
| 7525 | 8169 | <dataarea name="rom" size="2097152"> |
| 7526 | 8170 | <rom name="sns-abhe-0.u1" size="2097152" crc="9ebfe809" sha1="c6045c56d1b7acb07b46305fd306e2963b639f9c" offset="0x000000" /> |
| 7527 | 8171 | </dataarea> |
| r21545 | r21546 | |
| 7543 | 8187 | <feature name="lockout" value="D411A 9351 CC" /> |
| 7544 | 8188 | <feature name="cart_model" value="SNS-006" /> |
| 7545 | 8189 | <feature name="cart_back_label" value="" /> |
| 8190 | ||
| 8191 | <feature name="slot" value="lorom" /> | |
| 7546 | 8192 | <dataarea name="rom" size="2097152"> |
| 7547 | 8193 | <rom name="sns-5y-0 p0.u1" size="1048576" crc="d839cffc" sha1="461d1e5b99264c72325cddceefc8f4f9952b1710" offset="0x000000" /> |
| 7548 | 8194 | <rom name="sns-5y-0 p1.u2" size="1048576" crc="8a62b622" sha1="8871cacd7885031509d08da92896c7ca1fa39093" offset="0x100000" /> |
| r21545 | r21546 | |
| 7563 | 8209 | <feature name="lockout" value="D411B 9520 B" /> |
| 7564 | 8210 | <feature name="cart_model" value="SNS-006" /> |
| 7565 | 8211 | <feature name="cart_back_label" value="" /> |
| 8212 | ||
| 8213 | <feature name="slot" value="lorom" /> | |
| 7566 | 8214 | <dataarea name="rom" size="1048576"> |
| 7567 | 8215 | <rom name="sns-ab6e-0.u1" size="1048576" crc="1200f3cf" sha1="139ada7133889126735440968ad58f47fa93a341" offset="0x000000" /> |
| 7568 | 8216 | </dataarea> |
| r21545 | r21546 | |
| 7582 | 8230 | <feature name="lockout" value="D411B 9723 C" /> |
| 7583 | 8231 | <feature name="cart_model" value="SNS-006" /> |
| 7584 | 8232 | <feature name="cart_back_label" value="" /> |
| 8233 | ||
| 8234 | <feature name="slot" value="hirom" /> | |
| 7585 | 8235 | <dataarea name="rom" size="2097152"> |
| 7586 | 8236 | <rom name="sns-awue-0.u1" size="2097152" crc="52e4dc92" sha1="d883015b5d2774fca45e89c04e029e88e7cd6112" offset="0x000000" /> |
| 7587 | 8237 | </dataarea> |
| r21545 | r21546 | |
| 7601 | 8251 | <feature name="lockout" value="D411A 9448 AA" /> |
| 7602 | 8252 | <feature name="cart_model" value="SNS-006" /> |
| 7603 | 8253 | <feature name="cart_back_label" value="" /> |
| 8254 | ||
| 8255 | <feature name="slot" value="lorom" /> | |
| 7604 | 8256 | <dataarea name="rom" size="2097152"> |
| 7605 | 8257 | <rom name="sns-able-0.u1" size="2097152" crc="8fe49f80" sha1="746af6b97acf857b786b4e3adc1ca8e627dae3dd" offset="0x000000" /> |
| 7606 | 8258 | </dataarea> |
| r21545 | r21546 | |
| 7626 | 8278 | <feature name="cart_revision" value="A, B" /> |
| 7627 | 8279 | <feature name="cart_model" value="SHVC-028" /> |
| 7628 | 8280 | <feature name="cart_back_label" value="G728389" /> |
| 8281 | ||
| 8282 | <feature name="slot" value="bsxrom" /> | |
| 7629 | 8283 | <dataarea name="rom" size="1048576"> |
| 7630 | 8284 | <rom name="shvc-zbsj-1.u2" size="1048576" crc="f51f07a0" sha1="604556b2e62860af18db5a77f2956ebc75450020" offset="0x000000" /> |
| 7631 | 8285 | </dataarea> |
| r21545 | r21546 | |
| 7647 | 8301 | <feature name="lockout" value="D411A 9436 BA" /> |
| 7648 | 8302 | <feature name="cart_model" value="SNS-006" /> |
| 7649 | 8303 | <feature name="cart_back_label" value="" /> |
| 8304 | ||
| 8305 | <feature name="slot" value="hirom" /> | |
| 7650 | 8306 | <dataarea name="rom" size="2097152"> |
| 7651 | 8307 | <rom name="sns-abbe-0.u1" size="2097152" crc="d0d172fa" sha1="c501d8779891a501ca4674cc39fc9d82cc05eb8c" offset="0x000000" /> |
| 7652 | 8308 | </dataarea> |
| r21545 | r21546 | |
| 7666 | 8322 | <feature name="lockout" value="D411A 9314 BA" /> |
| 7667 | 8323 | <feature name="cart_model" value="SNS-006" /> |
| 7668 | 8324 | <feature name="cart_back_label" value="" /> |
| 8325 | ||
| 8326 | <feature name="slot" value="lorom" /> | |
| 7669 | 8327 | <dataarea name="rom" size="2097152"> |
| 7670 | 8328 | <rom name="sns-uy-0.u1" size="2097152" crc="444a52c1" sha1="9f6ff6264e0361e074f9cfee2ec4976866a781c5" offset="0x000000" /> |
| 7671 | 8329 | </dataarea> |
| r21545 | r21546 | |
| 7686 | 8344 | <feature name="lockout" value="" /> |
| 7687 | 8345 | <feature name="cart_model" value="SNSP-006" /> |
| 7688 | 8346 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 8347 | ||
| 8348 | <feature name="slot" value="lorom" /> | |
| 7689 | 8349 | <dataarea name="rom" size="1572864"> |
| 7690 | 8350 | <rom name="spal-r7-0 p0.u1" size="1048576" crc="c48ee837" sha1="4eb44e2f178526648915eb2f555f04f2cf54e65a" offset="0x000000" /> |
| 7691 | 8351 | <rom name="spal-r7-0 p1.u2" size="524288" crc="66c8485f" sha1="d20cd2bf2000957805b26499f30530f51937031d" offset="0x100000" /> |
| r21545 | r21546 | |
| 7708 | 8368 | <feature name="lockout" value="D411A 9343 BA" /> |
| 7709 | 8369 | <feature name="cart_model" value="SNS-006" /> |
| 7710 | 8370 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 8371 | ||
| 8372 | <feature name="slot" value="lorom" /> | |
| 7711 | 8373 | <dataarea name="rom" size="1572864"> |
| 7712 | 8374 | <rom name="sns-r7-0 p0.u1" size="1048576" crc="c5c37b96" sha1="b56f9a2a11babfc7ef6a3f08f60d8306a21e8845" offset="0x000000" /> |
| 7713 | 8375 | <rom name="sns-r7-0 p1.u2" size="524288" crc="49d7e8ff" sha1="2925a472017de3d23e808b6e01f252d00d887114" offset="0x100000" /> |
| r21545 | r21546 | |
| 7728 | 8390 | <feature name="lockout" value="D411A 9306 BA" /> |
| 7729 | 8391 | <feature name="cart_model" value="SNS-006" /> |
| 7730 | 8392 | <feature name="cart_back_label" value="" /> |
| 8393 | ||
| 8394 | <feature name="slot" value="lorom" /> | |
| 7731 | 8395 | <dataarea name="rom" size="1048576"> |
| 7732 | 8396 | <rom name="sns-bu-1.u1" size="1048576" crc="c2e91694" sha1="8130855e4db139a74025d4d08740fb55d5de19ce" offset="0x000000" /> |
| 7733 | 8397 | </dataarea> |
| r21545 | r21546 | |
| 7747 | 8411 | <feature name="lockout" value="D411A 9450 CB" /> |
| 7748 | 8412 | <feature name="cart_model" value="SNS-006" /> |
| 7749 | 8413 | <feature name="cart_back_label" value="" /> |
| 8414 | ||
| 8415 | <feature name="slot" value="lorom" /> | |
| 7750 | 8416 | <dataarea name="rom" size="524288"> |
| 7751 | 8417 | <rom name="sns-ayke-0.u1" size="524288" crc="3266fd23" sha1="43b8da73ee83c82b3a70092503f26c73e2333eee" offset="0x000000" /> |
| 7752 | 8418 | </dataarea> |
| r21545 | r21546 | |
| 7766 | 8432 | <feature name="lockout" value="D411A 9317 BA" /> |
| 7767 | 8433 | <feature name="cart_model" value="SNS-006" /> |
| 7768 | 8434 | <feature name="cart_back_label" value="" /> |
| 8435 | ||
| 8436 | <feature name="slot" value="lorom" /> | |
| 7769 | 8437 | <dataarea name="rom" size="524288"> |
| 7770 | 8438 | <rom name="sns-cc-0.u1" size="524288" crc="ba921443" sha1="d5502cbb7a86b214867a43675f5ca64ed45478ca" offset="0x000000" /> |
| 7771 | 8439 | </dataarea> |
| r21545 | r21546 | |
| 7784 | 8452 | <feature name="lockout" value="" /> |
| 7785 | 8453 | <feature name="cart_model" value="SNSP-006" /> |
| 7786 | 8454 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 8455 | ||
| 8456 | <feature name="slot" value="lorom" /> | |
| 7787 | 8457 | <dataarea name="rom" size="1048576"> |
| 7788 | 8458 | <rom name="spal-cj-0.u1" size="1048576" crc="c1357473" sha1="6c6cf19d7ab33a9248ab57dd264d4a6de0ec276a" offset="0x000000" /> |
| 7789 | 8459 | </dataarea> |
| r21545 | r21546 | |
| 7803 | 8473 | <feature name="lockout" value="D411A 9313 BA" /> |
| 7804 | 8474 | <feature name="cart_model" value="SNS-006" /> |
| 7805 | 8475 | <feature name="cart_back_label" value="" /> |
| 8476 | ||
| 8477 | <feature name="slot" value="lorom" /> | |
| 7806 | 8478 | <dataarea name="rom" size="1048576"> |
| 7807 | 8479 | <rom name="sns-cj-0.u1" size="1048576" crc="ce2eaa41" sha1="c82ef847ec4b01948dbab5e93c2d3fa9053296d8" offset="0x000000" /> |
| 7808 | 8480 | </dataarea> |
| r21545 | r21546 | |
| 7822 | 8494 | <feature name="lockout" value="D411A 9249 BA" /> |
| 7823 | 8495 | <feature name="cart_model" value="SNS-006" /> |
| 7824 | 8496 | <feature name="cart_back_label" value="" /> |
| 8497 | ||
| 8498 | <feature name="slot" value="lorom" /> | |
| 7825 | 8499 | <dataarea name="rom" size="1048576"> |
| 7826 | 8500 | <rom name="sns-c2-0.u1" size="1048576" crc="21392b00" sha1="e564dc4ea326bbaeca281b7aa8015a21fca3f81e" offset="0x000000" /> |
| 7827 | 8501 | </dataarea> |
| r21545 | r21546 | |
| 7845 | 8519 | <feature name="battery" value="BATT CR2032" /> |
| 7846 | 8520 | <feature name="cart_model" value="SHVC-006" /> |
| 7847 | 8521 | <feature name="cart_back_label" value="920214" /> |
| 8522 | ||
| 8523 | <feature name="slot" value="lorom" /> | |
| 7848 | 8524 | <dataarea name="rom" size="1572864"> |
| 7849 | 8525 | <rom name="sns-asce-0 p0.u1" size="1048576" crc="05bd2f3d" sha1="6be40a5ba5e8964f52dd47ca3a8f235ab6256aa7" offset="0x000000" /> |
| 7850 | 8526 | <rom name="sns-asce-0 p1.u2" size="524288" crc="6da67c29" sha1="9cd1afb72166e24ee61c75df0c855e0b5689ab90" offset="0x100000" /> |
| r21545 | r21546 | |
| 7867 | 8543 | <feature name="lockout" value="D411A 9334 BA" /> |
| 7868 | 8544 | <feature name="cart_model" value="SNS-006" /> |
| 7869 | 8545 | <feature name="cart_back_label" value="" /> |
| 8546 | ||
| 8547 | <feature name="slot" value="lorom" /> | |
| 7870 | 8548 | <dataarea name="rom" size="1048576"> |
| 7871 | 8549 | <rom name="sns-nl-0.u1" size="1048576" crc="bd0a0c0e" sha1="2d4f33f1b72f158916ca2560ef42b9b831e50393" offset="0x000000" /> |
| 7872 | 8550 | </dataarea> |
| r21545 | r21546 | |
| 7889 | 8567 | <feature name="lockout" value="D411A 9419 B" /> |
| 7890 | 8568 | <feature name="cart_model" value="SNS-006" /> |
| 7891 | 8569 | <feature name="cart_back_label" value="" /> |
| 8570 | ||
| 8571 | <feature name="slot" value="lorom" /> | |
| 7892 | 8572 | <dataarea name="rom" size="1572864"> |
| 7893 | 8573 | <rom name="sns-jl-0 p0.u1" size="1048576" crc="977beae3" sha1="3ac2f885cb8249ace53bc88122678daaa1e3005f" offset="0x000000" /> |
| 7894 | 8574 | <rom name="sns-jl-0 p1.u2" size="524288" crc="47b5e3d9" sha1="1965ff403496bf9e8e72e6a3b80f64385003737f" offset="0x100000" /> |
| r21545 | r21546 | |
| 7908 | 8588 | <feature name="lockout" value="" /> |
| 7909 | 8589 | <feature name="cart_model" value="SNSP-006" /> |
| 7910 | 8590 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 8591 | ||
| 8592 | <feature name="slot" value="lorom" /> | |
| 7911 | 8593 | <dataarea name="rom" size="1048576"> |
| 7912 | 8594 | <rom name="spal-6a-0.u1" size="1048576" crc="acb31f2a" sha1="a256dd6a32c7efc305efa704585db49bd9e69d17" offset="0x000000" /> |
| 7913 | 8595 | </dataarea> |
| r21545 | r21546 | |
| 7936 | 8618 | <feature name="cart_model" value="SNS-006" /> |
| 7937 | 8619 | <feature name="cart_back_label" value="" /> |
| 7938 | 8620 | --> |
| 8621 | ||
| 8622 | <feature name="slot" value="lorom" /> | |
| 7939 | 8623 | <dataarea name="rom" size="1048576"> |
| 7940 | 8624 | <rom name="sns-6a-0.u1" size="1048576" crc="456ab5c8" sha1="8634cb94412de777197a462759393c074efff061" offset="0x000000" /> |
| 7941 | 8625 | </dataarea> |
| r21545 | r21546 | |
| 7956 | 8640 | <feature name="lockout" value="D411B 9523 C" /> |
| 7957 | 8641 | <feature name="cart_model" value="SNS-006" /> |
| 7958 | 8642 | <feature name="cart_back_label" value="" /> |
| 8643 | ||
| 8644 | <feature name="slot" value="hirom" /> | |
| 7959 | 8645 | <dataarea name="rom" size="2097152"> |
| 7960 | 8646 | <rom name="sns-qm-0.u1" size="2097152" crc="81db73c7" sha1="9c28b15e170a1975acf0953ff66185a3c5c988ac" offset="0x000000" /> |
| 7961 | 8647 | </dataarea> |
| r21545 | r21546 | |
| 7975 | 8661 | <feature name="lockout" value="D411A 9242 BA" /> |
| 7976 | 8662 | <feature name="cart_model" value="SNS-006" /> |
| 7977 | 8663 | <feature name="cart_back_label" value="" /> |
| 8664 | ||
| 8665 | <feature name="slot" value="lorom" /> | |
| 7978 | 8666 | <dataarea name="rom" size="524288"> |
| 7979 | 8667 | <rom name="sns-cp-0.u1" size="524288" crc="9fd460a4" sha1="72cfb569819da4e799bf8fa1a6f023664cc7069b" offset="0x000000" /> |
| 7980 | 8668 | </dataarea> |
| r21545 | r21546 | |
| 7998 | 8686 | <feature name="battery" value="BATT CR2032" /> |
| 7999 | 8687 | <feature name="cart_model" value="SHVC-006" /> |
| 8000 | 8688 | <feature name="cart_back_label" value="920214" /> |
| 8689 | ||
| 8690 | <feature name="slot" value="lorom" /> | |
| 8001 | 8691 | <dataarea name="rom" size="1048576"> |
| 8002 | 8692 | <rom name="shvc-c3-0.u1" size="1048576" crc="26b0cee3" sha1="ccc69906612478813b4eaca03f9662e28596d69e" offset="0x000000" /> |
| 8003 | 8693 | </dataarea> |
| r21545 | r21546 | |
| 8024 | 8714 | <feature name="battery" value="BATT CR2032" /> |
| 8025 | 8715 | <feature name="cart_model" value="SHVC-006" /> |
| 8026 | 8716 | <feature name="cart_back_label" value="920214" /> |
| 8717 | ||
| 8718 | <feature name="slot" value="lorom" /> | |
| 8027 | 8719 | <dataarea name="rom" size="1572864"> |
| 8028 | 8720 | <rom name="shvc-t4-0 p0.u1" size="1048576" crc="cb68476c" sha1="55aff3bf2a4c530c581c26984f3febc10a6bf835" offset="0x000000" /> |
| 8029 | 8721 | <rom name="shvc-t4-0 p1.u2" size="524288" crc="7ba92cc7" sha1="cd46b1da6a2d6777aea9568ba61f2ec21916e35f" offset="0x100000" /> |
| r21545 | r21546 | |
| 8051 | 8743 | <feature name="battery" value="BATT CR2032" /> |
| 8052 | 8744 | <feature name="cart_model" value="SHVC-006" /> |
| 8053 | 8745 | <feature name="cart_back_label" value="920214" /> |
| 8746 | ||
| 8747 | <feature name="slot" value="lorom" /> | |
| 8054 | 8748 | <dataarea name="rom" size="2097152"> |
| 8055 | 8749 | <rom name="shvc-ac5j-0.u1" size="2097152" crc="e2b26d99" sha1="ad8ae8944e492b8336427ac3cd8af0853ad8b00b" offset="0x000000" /> |
| 8056 | 8750 | </dataarea> |
| r21545 | r21546 | |
| 8072 | 8766 | <feature name="lockout" value="D411A 9448 CA" /> |
| 8073 | 8767 | <feature name="cart_model" value="SNS-006" /> |
| 8074 | 8768 | <feature name="cart_back_label" value="" /> |
| 8769 | ||
| 8770 | <feature name="slot" value="lorom" /> | |
| 8075 | 8771 | <dataarea name="rom" size="2097152"> |
| 8076 | 8772 | <rom name="sns-acae-0.u1" size="2097152" crc="8bc5b8de" sha1="10e4754153e22116bcf3f9082fe6fe193748732e" offset="0x000000" /> |
| 8077 | 8773 | </dataarea> |
| r21545 | r21546 | |
| 8090 | 8786 | <feature name="lockout" value="" /> |
| 8091 | 8787 | <feature name="cart_model" value="SNSP-006" /> |
| 8092 | 8788 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 8789 | ||
| 8790 | <feature name="slot" value="lorom" /> | |
| 8093 | 8791 | <dataarea name="rom" size="1048576"> |
| 8094 | 8792 | <rom name="spal-axcp-0.u1" size="1048576" crc="a7677e65" sha1="43ce76773f2bd1232aae3268325b0daebcfb29c0" offset="0x000000" /> |
| 8095 | 8793 | </dataarea> |
| r21545 | r21546 | |
| 8109 | 8807 | <feature name="lockout" value="D411B 9614 CB" /> |
| 8110 | 8808 | <feature name="cart_model" value="SNS-006" /> |
| 8111 | 8809 | <feature name="cart_back_label" value="" /> |
| 8810 | ||
| 8811 | <feature name="slot" value="lorom" /> | |
| 8112 | 8812 | <dataarea name="rom" size="1048576"> |
| 8113 | 8813 | <rom name="sns-axce-0.u1" size="1048576" crc="a3b745bc" sha1="59d578d2c1762627da0d13e6b4c2b56a08b72f5b" offset="0x000000" /> |
| 8114 | 8814 | </dataarea> |
| r21545 | r21546 | |
| 8129 | 8829 | <feature name="lockout" value="D411B 9519 B" /> |
| 8130 | 8830 | <feature name="cart_model" value="SNS-006" /> |
| 8131 | 8831 | <feature name="cart_back_label" value="" /> |
| 8832 | ||
| 8833 | <feature name="slot" value="lorom" /> | |
| 8132 | 8834 | <dataarea name="rom" size="2097152"> |
| 8133 | 8835 | <rom name="sns-adze-0.u1" size="2097152" crc="7c4887e1" sha1="3bdaeafa81aa17c91a8b42d0fa8c5b26e3fd6b80" offset="0x000000" /> |
| 8134 | 8836 | </dataarea> |
| r21545 | r21546 | |
| 8149 | 8851 | <feature name="lockout" value="" /> |
| 8150 | 8852 | <feature name="cart_model" value="SHVC-006" /> |
| 8151 | 8853 | <feature name="cart_back_label" value="920214" /> |
| 8854 | ||
| 8855 | <feature name="slot" value="lorom" /> | |
| 8152 | 8856 | <dataarea name="rom" size="1048576"> |
| 8153 | 8857 | <rom name="shvc-cv-0.u1" size="1048576" crc="85ac87d5" sha1="d25e9d47fc1e7e8e3471b594be4df26dda6cc52e" offset="0x000000" /> |
| 8154 | 8858 | </dataarea> |
| r21545 | r21546 | |
| 8168 | 8872 | <feature name="lockout" value="" /> |
| 8169 | 8873 | <feature name="cart_model" value="SNSP-006" /> |
| 8170 | 8874 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-UKV" /> |
| 8875 | ||
| 8876 | <feature name="slot" value="lorom" /> | |
| 8171 | 8877 | <dataarea name="rom" size="1048576"> |
| 8172 | 8878 | <rom name="spal-8w-0.u1" size="1048576" crc="d89c8156" sha1="7cb016ae25d4377f9aabc1825ab5ecab05bf28e3" offset="0x000000" /> |
| 8173 | 8879 | </dataarea> |
| r21545 | r21546 | |
| 8188 | 8894 | <feature name="lockout" value="" /> |
| 8189 | 8895 | <feature name="cart_model" value="SHVC-006" /> |
| 8190 | 8896 | <feature name="cart_back_label" value="920214" /> |
| 8897 | ||
| 8898 | <feature name="slot" value="lorom" /> | |
| 8191 | 8899 | <dataarea name="rom" size="1048576"> |
| 8192 | 8900 | <rom name="shvc-8w-0.u1" size="1048576" crc="07cad002" sha1="b610aed56a55ef062465a8c31e59691cf65f059f" offset="0x000000" /> |
| 8193 | 8901 | </dataarea> |
| r21545 | r21546 | |
| 8207 | 8915 | <feature name="lockout" value="D411A 9408 BA" /> |
| 8208 | 8916 | <feature name="cart_model" value="SNS-006" /> |
| 8209 | 8917 | <feature name="cart_back_label" value="" /> |
| 8918 | ||
| 8919 | <feature name="slot" value="lorom" /> | |
| 8210 | 8920 | <dataarea name="rom" size="1048576"> |
| 8211 | 8921 | <rom name="sns-8w-0.u1" size="1048576" crc="bcd59d08" sha1="573b316e5b08f47dc0c8e339e2dc3101c4f74afc" offset="0x000000" /> |
| 8212 | 8922 | </dataarea> |
| r21545 | r21546 | |
| 8226 | 8936 | <feature name="lockout" value="D411B 9742 C" /> |
| 8227 | 8937 | <feature name="cart_model" value="SNS-006" /> |
| 8228 | 8938 | <feature name="cart_back_label" value="" /> |
| 8939 | ||
| 8940 | <feature name="slot" value="lorom" /> | |
| 8229 | 8941 | <dataarea name="rom" size="1048576"> |
| 8230 | 8942 | <rom name="sns-p-5p-0.u1" size="1048576" crc="98ef8414" sha1="c27615dffc57e0a5b9250a0613ac9b77ebe86256" offset="0x000000" /> |
| 8231 | 8943 | </dataarea> |
| r21545 | r21546 | |
| 8248 | 8960 | <feature name="battery" value="BATT CR2032" /> |
| 8249 | 8961 | <feature name="cart_model" value="SNS-006" /> |
| 8250 | 8962 | <feature name="cart_back_label" value="" /> |
| 8963 | ||
| 8964 | <feature name="slot" value="lorom" /> | |
| 8251 | 8965 | <dataarea name="rom" size="524288"> |
| 8252 | 8966 | <rom name="sns-67-0.u1" size="524288" crc="6b953095" sha1="94fe929852cf0794f64a58d689accf7abeecc40b" offset="0x000000" /> |
| 8253 | 8967 | </dataarea> |
| r21545 | r21546 | |
| 8271 | 8985 | <feature name="battery" value="BATT CR2032" /> |
| 8272 | 8986 | <feature name="cart_model" value="SNS-006" /> |
| 8273 | 8987 | <feature name="cart_back_label" value="" /> |
| 8988 | ||
| 8989 | <feature name="slot" value="lorom" /> | |
| 8274 | 8990 | <dataarea name="rom" size="524288"> |
| 8275 | 8991 | <rom name="sns-zv-0.u1" size="524288" crc="a9d604ea" sha1="856c5c858b278e97df7b41828fbd757d7e0c0321" offset="0x000000" /> |
| 8276 | 8992 | </dataarea> |
| r21545 | r21546 | |
| 8292 | 9008 | <feature name="lockout" value="D411A 9421 C" /> |
| 8293 | 9009 | <feature name="cart_model" value="SNS-006" /> |
| 8294 | 9010 | <feature name="cart_back_label" value="" /> |
| 9011 | ||
| 9012 | <feature name="slot" value="lorom" /> | |
| 8295 | 9013 | <dataarea name="rom" size="1048576"> |
| 8296 | 9014 | <rom name="sns-ac2e-0.u1" size="1048576" crc="86981887" sha1="12b8e3a04cbac7de8181a5ebb8546489a5df0937" offset="0x000000" /> |
| 8297 | 9015 | </dataarea> |
| r21545 | r21546 | |
| 8311 | 9029 | <feature name="lockout" value="D411 C131 01 B" /> |
| 8312 | 9030 | <feature name="cart_model" value="SNS-006" /> |
| 8313 | 9031 | <feature name="cart_back_label" value="" /> |
| 9032 | ||
| 9033 | <feature name="slot" value="lorom" /> | |
| 8314 | 9034 | <dataarea name="rom" size="524288"> |
| 8315 | 9035 | <rom name="sns-ch-0.u1" size="524288" crc="bc671e15" sha1="549966c7960ceeac332c7b4512761bb26483d29f" offset="0x000000" /> |
| 8316 | 9036 | </dataarea> |
| r21545 | r21546 | |
| 8330 | 9050 | <feature name="lockout" value="D411A 9246 AA" /> |
| 8331 | 9051 | <feature name="cart_model" value="SNS-006" /> |
| 8332 | 9052 | <feature name="cart_back_label" value="" /> |
| 9053 | ||
| 9054 | <feature name="slot" value="lorom" /> | |
| 8333 | 9055 | <dataarea name="rom" size="1048576"> |
| 8334 | 9056 | <rom name="sns-ce-0.u1" size="1048576" crc="552bf16a" sha1="804e40d9f651760654d36807f5c8e6ced9643eac" offset="0x000000" /> |
| 8335 | 9057 | </dataarea> |
| r21545 | r21546 | |
| 8351 | 9073 | <feature name="lockout" value="D411A 9338 B" /> |
| 8352 | 9074 | <feature name="cart_model" value="SHVC-006" /> |
| 8353 | 9075 | <feature name="cart_back_label" value="920214" /> |
| 9076 | ||
| 9077 | <feature name="slot" value="lorom" /> | |
| 8354 | 9078 | <dataarea name="rom" size="1310720"> |
| 8355 | 9079 | <rom name="sns-7c-0 p0.u1" size="1048576" crc="0712b0e3" sha1="05a221957dedb8d41a5130c403c800ff5820f8c4" offset="0x000000" /> |
| 8356 | 9080 | <rom name="sns-7c-0 p1.u2" size="262144" crc="f3a8d284" sha1="9a8cf0fbb4e99163069bed16b7250ab70caaa942" offset="0x100000" /> |
| r21545 | r21546 | |
| 8372 | 9096 | <feature name="lockout" value="" /> |
| 8373 | 9097 | <feature name="cart_model" value="SHVC-006" /> |
| 8374 | 9098 | <feature name="cart_back_label" value="901121" /> |
| 9099 | ||
| 9100 | <feature name="slot" value="lorom" /> | |
| 8375 | 9101 | <dataarea name="rom" size="524288"> |
| 8376 | 9102 | <rom name="shvc-go-0.u1" size="524288" crc="846151c8" sha1="c83973d6a458ff7234cdfc8660a9261d561fdb1a" offset="0x000000" /> |
| 8377 | 9103 | </dataarea> |
| r21545 | r21546 | |
| 8400 | 9126 | <feature name="cart_model" value="SNS-006" /> |
| 8401 | 9127 | <feature name="cart_back_label" value="" /> |
| 8402 | 9128 | --> |
| 9129 | ||
| 9130 | <feature name="slot" value="lorom" /> | |
| 8403 | 9131 | <dataarea name="rom" size="524288"> |
| 8404 | 9132 | <rom name="sns-3c-0.u1" size="524288" crc="1d2eae52" sha1="4010d63e6d7eb0f7ea47a0796f3af008ab98f22e" offset="0x000000" /> |
| 8405 | 9133 | </dataarea> |
| r21545 | r21546 | |
| 8425 | 9153 | <feature name="cart_revision" value="A" /> |
| 8426 | 9154 | <feature name="cart_model" value="SHVC-006" /> |
| 8427 | 9155 | <feature name="cart_back_label" value="920214" /> |
| 9156 | ||
| 9157 | <feature name="slot" value="lorom" /> | |
| 8428 | 9158 | <dataarea name="rom" size="3145728"> |
| 8429 | 9159 | <rom name="shvc-awoj-0.u1" size="3145728" crc="b3258f38" sha1="5abc7f3ab0b705028f9a7d101a68b31e36c4d11c" offset="0x000000" /> |
| 8430 | 9160 | </dataarea> |
| r21545 | r21546 | |
| 8451 | 9181 | <feature name="battery" value="BATT CR2032" /> |
| 8452 | 9182 | <feature name="cart_model" value="SHVC-006" /> |
| 8453 | 9183 | <feature name="cart_back_label" value="920214" /> |
| 9184 | ||
| 9185 | <feature name="slot" value="lorom" /> | |
| 8454 | 9186 | <dataarea name="rom" size="1048576"> |
| 8455 | 9187 | <rom name="shvc-do-0.u1" size="1048576" crc="497d7c95" sha1="3106ce675511a2d5d21d2600bc5438910db9f7a8" offset="0x000000" /> |
| 8456 | 9188 | </dataarea> |
| r21545 | r21546 | |
| 8476 | 9208 | <feature name="battery" value="BATT CR2032" /> |
| 8477 | 9209 | <feature name="cart_model" value="SHVC-006" /> |
| 8478 | 9210 | <feature name="cart_back_label" value="901121" /> |
| 9211 | ||
| 9212 | <feature name="slot" value="lorom" /> | |
| 8479 | 9213 | <dataarea name="rom" size="1048576"> |
| 8480 | 9214 | <rom name="shvc-xa-0.u1" size="1048576" crc="d5f808ca" sha1="4036190d0c9dbf49e46bd1b4c0164088934e734d" offset="0x000000" /> |
| 8481 | 9215 | </dataarea> |
| r21545 | r21546 | |
| 8499 | 9233 | <feature name="lockout" value="" /> |
| 8500 | 9234 | <feature name="cart_model" value="SHVC-006" /> |
| 8501 | 9235 | <feature name="cart_back_label" value="901121" /> |
| 9236 | ||
| 9237 | <feature name="slot" value="lorom" /> | |
| 8502 | 9238 | <dataarea name="rom" size="1048576"> |
| 8503 | 9239 | <rom name="shvc-cm-0.u1" size="1048576" crc="cf8a8dba" sha1="35025845c2d54d262218ebe50161705b207c7f3d" offset="0x000000" /> |
| 8504 | 9240 | </dataarea> |
| r21545 | r21546 | |
| 8521 | 9257 | <feature name="battery" value="BATT CR2032" /> |
| 8522 | 9258 | <feature name="cart_model" value="SNS-006" /> |
| 8523 | 9259 | <feature name="cart_back_label" value="" /> |
| 9260 | ||
| 9261 | <feature name="slot" value="hirom" /> | |
| 8524 | 9262 | <dataarea name="rom" size="4194304"> |
| 8525 | 9263 | <rom name="sns-acte-0.u1" size="4194304" crc="2d206bf7" sha1="de5822f4f2f7a55acb8926d4c0eaa63d5d989312" offset="0x000000" /> |
| 8526 | 9264 | </dataarea> |
| r21545 | r21546 | |
| 8547 | 9285 | <feature name="battery" value="BATT CR2032" /> |
| 8548 | 9286 | <feature name="cart_model" value="SHVC-006" /> |
| 8549 | 9287 | <feature name="cart_back_label" value="920214" /> |
| 9288 | ||
| 9289 | <feature name="slot" value="hirom" /> | |
| 8550 | 9290 | <dataarea name="rom" size="4194304"> |
| 8551 | 9291 | <rom name="shvc-actj-0.u1" size="4194304" crc="4d014c20" sha1="a82f0fba9bb111ffd0a878853a4563917d9b67bb" offset="0x000000" /> |
| 8552 | 9292 | </dataarea> |
| r21545 | r21546 | |
| 8573 | 9313 | <feature name="battery" value="BATT CR2032" /> |
| 8574 | 9314 | <feature name="cart_model" value="SHVC-006" /> |
| 8575 | 9315 | <feature name="cart_back_label" value="920214" /> |
| 9316 | ||
| 9317 | <feature name="slot" value="hirom" /> | |
| 8576 | 9318 | <dataarea name="rom" size="4194304"> |
| 8577 | 9319 | <rom name="shvc-actj-0 p0.u1" size="2097152" crc="ea81762f" sha1="ed96918a5b7b43bd6c817ced3a567768cc26fca1" offset="0x000000" /> |
| 8578 | 9320 | <rom name="shvc-actj-0 p3.u2" size="2097152" crc="a7e0cf31" sha1="62564bb1ba9a4789c08cdb2738f3c37df94e4dc3" offset="0x200000" /> |
| r21545 | r21546 | |
| 8595 | 9337 | <feature name="lockout" value="D411A 9239 CA" /> |
| 8596 | 9338 | <feature name="cart_model" value="SNS-006" /> |
| 8597 | 9339 | <feature name="cart_back_label" value="" /> |
| 9340 | ||
| 9341 | <feature name="slot" value="lorom" /> | |
| 8598 | 9342 | <dataarea name="rom" size="1048576"> |
| 8599 | 9343 | <rom name="sns-ck-0.u1" size="1048576" crc="e237ec45" sha1="3ffafb846909d6ef3dd8a8715362d2c4489cb3f1" offset="0x000000" /> |
| 8600 | 9344 | </dataarea> |
| r21545 | r21546 | |
| 8615 | 9359 | <feature name="lockout" value="D411A 9408 BA" /> |
| 8616 | 9360 | <feature name="cart_model" value="SNS-006" /> |
| 8617 | 9361 | <feature name="cart_back_label" value="" /> |
| 9362 | ||
| 9363 | <feature name="slot" value="hirom" /> | |
| 8618 | 9364 | <dataarea name="rom" size="1048576"> |
| 8619 | 9365 | <rom name="sns-y5-0.u1" size="1048576" crc="7ad5ccac" sha1="d136279ce3eb62a06f5762167db588c9d60f7441" offset="0x000000" /> |
| 8620 | 9366 | </dataarea> |
| r21545 | r21546 | |
| 8638 | 9384 | <feature name="battery" value="BATT CR2032" /> |
| 8639 | 9385 | <feature name="cart_model" value="SHVC-006" /> |
| 8640 | 9386 | <feature name="cart_back_label" value="901121" /> |
| 9387 | ||
| 9388 | <feature name="slot" value="lorom" /> | |
| 8641 | 9389 | <dataarea name="rom" size="1048576"> |
| 8642 | 9390 | <rom name="shvc-aubj-0.u1" size="1048576" crc="0937a72f" sha1="b7b79481ca8ef24c36d80b3680b05325e6a2bae8" offset="0x000000" /> |
| 8643 | 9391 | </dataarea> |
| r21545 | r21546 | |
| 8658 | 9406 | <feature name="lockout" value="" /> |
| 8659 | 9407 | <feature name="cart_model" value="SNSP-006" /> |
| 8660 | 9408 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 9409 | ||
| 9410 | <feature name="slot" value="lorom" /> | |
| 8661 | 9411 | <dataarea name="rom" size="1048576"> |
| 8662 | 9412 | <rom name="spal-c8-0.u1" size="1048576" crc="281244b0" sha1="af97daee852340d9d14e5e9bb633bec870420b1c" offset="0x000000" /> |
| 8663 | 9413 | </dataarea> |
| r21545 | r21546 | |
| 8681 | 9431 | <feature name="lockout" value="" /> |
| 8682 | 9432 | <feature name="cart_model" value="SHVC-006" /> |
| 8683 | 9433 | <feature name="cart_back_label" value="920214" /> |
| 9434 | ||
| 9435 | <feature name="slot" value="lorom" /> | |
| 8684 | 9436 | <dataarea name="rom" size="1572864"> |
| 8685 | 9437 | <rom name="shvc-ku-0 p0.u1" size="1048576" crc="50ea510f" sha1="1eadd3e49f0523914bbca89639f6f7fb83db7c1f" offset="0x000000" /> |
| 8686 | 9438 | <rom name="shvc-ku-0 p1.u2" size="524288" crc="12c988a4" sha1="d865327364382ac4dac1c34e51281aca4239c2f1" offset="0x100000" /> |
| r21545 | r21546 | |
| 8703 | 9455 | <feature name="lockout" value="" /> |
| 8704 | 9456 | <feature name="cart_model" value="SHVC-006" /> |
| 8705 | 9457 | <feature name="cart_back_label" value="920214" /> |
| 9458 | ||
| 9459 | <feature name="slot" value="lorom" /> | |
| 8706 | 9460 | <dataarea name="rom" size="524288"> |
| 8707 | 9461 | <rom name="shvc-ue-0.u1" size="524288" crc="24373cc6" sha1="cf0e00bc147910b7d8b8f8c085a41b41ee78bc6b" offset="0x000000" /> |
| 8708 | 9462 | </dataarea> |
| r21545 | r21546 | |
| 8727 | 9481 | <feature name="battery" value="BATT CR2032" /> |
| 8728 | 9482 | <feature name="cart_model" value="SHVC-006" /> |
| 8729 | 9483 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 9484 | ||
| 9485 | <feature name="slot" value="lorom" /> | |
| 8730 | 9486 | <dataarea name="rom" size="1048576"> |
| 8731 | 9487 | <rom name="shvc-ac6j-0.u1" size="1048576" crc="42d0c418" sha1="58469e1ea82fc7b2ecd5d696a561292fa2c5db8a" offset="0x000000" /> |
| 8732 | 9488 | </dataarea> |
| r21545 | r21546 | |
| 8752 | 9508 | <feature name="battery" value="BATT CR2032" /> |
| 8753 | 9509 | <feature name="cart_model" value="SHVC-006" /> |
| 8754 | 9510 | <feature name="cart_back_label" value="920214" /> |
| 9511 | ||
| 9512 | <feature name="slot" value="lorom" /> | |
| 8755 | 9513 | <dataarea name="rom" size="1048576"> |
| 8756 | 9514 | <rom name="shvc-cx-0.u1" size="1048576" crc="64034b07" sha1="1f3ec78d4648ea535027cdefde63429a193d25fd" offset="0x000000" /> |
| 8757 | 9515 | </dataarea> |
| r21545 | r21546 | |
| 8772 | 9530 | <feature name="lockout" value="" /> |
| 8773 | 9531 | <feature name="cart_model" value="SNSP-006" /> |
| 8774 | 9532 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 9533 | ||
| 9534 | <feature name="slot" value="lorom" /> | |
| 8775 | 9535 | <dataarea name="rom" size="1048576"> |
| 8776 | 9536 | <rom name="spal-av-0.u1" size="1048576" crc="f493414b" sha1="31030745abb1d407859a2184398c08868eae9658" offset="0x000000" /> |
| 8777 | 9537 | </dataarea> |
| r21545 | r21546 | |
| 8790 | 9550 | <feature name="lockout" value="" /> |
| 8791 | 9551 | <feature name="cart_model" value="SNSP-006" /> |
| 8792 | 9552 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 9553 | ||
| 9554 | <feature name="slot" value="lorom" /> | |
| 8793 | 9555 | <dataarea name="rom" size="1048576"> |
| 8794 | 9556 | <rom name="spal-yf-0.u1" size="1048576" crc="f8dee029" sha1="2a946e8ce8fa20cd54fea874110c39f30671f7a9" offset="0x000000" /> |
| 8795 | 9557 | </dataarea> |
| r21545 | r21546 | |
| 8809 | 9571 | <feature name="lockout" value="D411A 9313 CB" /> |
| 8810 | 9572 | <feature name="cart_model" value="SNS-006" /> |
| 8811 | 9573 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 9574 | ||
| 9575 | <feature name="slot" value="lorom" /> | |
| 8812 | 9576 | <dataarea name="rom" size="1048576"> |
| 8813 | 9577 | <rom name="sns-yf-0.u1" size="1048576" crc="5f02a044" sha1="ee4c327f98e50ea7fbf94c79c8844909ae088289" offset="0x000000" /> |
| 8814 | 9578 | </dataarea> |
| r21545 | r21546 | |
| 8835 | 9599 | <feature name="cart_revision" value="B" /> |
| 8836 | 9600 | <feature name="cart_model" value="SHVC-006" /> |
| 8837 | 9601 | <feature name="cart_back_label" value="920214" /> |
| 9602 | ||
| 9603 | <feature name="slot" value="lorom" /> | |
| 8838 | 9604 | <dataarea name="rom" size="1572864"> |
| 8839 | 9605 | <rom name="shvc-rt-2 p0.u1" size="1048576" crc="8d321aca" sha1="1b1e1ed17827032508e3b252549415d676f882ff" offset="0x000000" /> |
| 8840 | 9606 | <rom name="shvc-rt-2 p1.u2" size="524288" crc="eafa3df7" sha1="f054891f36f3b608ac2c89a3f497a5f7df910b52" offset="0x100000" /> |
| r21545 | r21546 | |
| 8862 | 9628 | <feature name="battery" value="BATT CR2032" /> |
| 8863 | 9629 | <feature name="cart_model" value="SHVC-006" /> |
| 8864 | 9630 | <feature name="cart_back_label" value="920214" /> |
| 9631 | ||
| 9632 | <feature name="slot" value="hirom" /> | |
| 8865 | 9633 | <dataarea name="rom" size="3145728"> |
| 8866 | 9634 | <rom name="shvc-ar4j-0.u1" size="3145728" crc="be764d4c" sha1="3ec883d427724d6dc655f431f901cde60d16af3e" offset="0x000000" /> |
| 8867 | 9635 | </dataarea> |
| r21545 | r21546 | |
| 8884 | 9652 | <feature name="lockout" value="" /> |
| 8885 | 9653 | <feature name="cart_model" value="SHVC-006" /> |
| 8886 | 9654 | <feature name="cart_back_label" value="920214" /> |
| 9655 | ||
| 9656 | <feature name="slot" value="lorom" /> | |
| 8887 | 9657 | <dataarea name="rom" size="1048576"> |
| 8888 | 9658 | <rom name="shvc-gh-0.u1" size="1048576" crc="a5d41d2f" sha1="3d3d994cc934b6b11d495510048751ae33b59b94" offset="0x000000" /> |
| 8889 | 9659 | </dataarea> |
| r21545 | r21546 | |
| 8906 | 9676 | <feature name="lockout" value="" /> |
| 8907 | 9677 | <feature name="cart_model" value="SHVC-006" /> |
| 8908 | 9678 | <feature name="cart_back_label" value="920214" /> |
| 9679 | ||
| 9680 | <feature name="slot" value="lorom" /> | |
| 8909 | 9681 | <dataarea name="rom" size="1310720"> |
| 8910 | 9682 | <rom name="shvc-g8-0 p0.u1" size="1048576" crc="8be24b4d" sha1="d9409e9c8b3d8b412664b1298028463438d33785" offset="0x000000" /> |
| 8911 | 9683 | <rom name="shvc-g8-0 p1.u2" size="262144" crc="75c252ca" sha1="8ec8b82bacb7db5de85e23442bc568aaf60bb637" offset="0x100000" /> |
| r21545 | r21546 | |
| 8927 | 9699 | <feature name="lockout" value="" /> |
| 8928 | 9700 | <feature name="cart_model" value="SHVC-006" /> |
| 8929 | 9701 | <feature name="cart_back_label" value="920214" /> |
| 9702 | ||
| 9703 | <feature name="slot" value="hirom" /> | |
| 8930 | 9704 | <dataarea name="rom" size="1048576"> |
| 8931 | 9705 | <rom name="shvc-akkj-0.u1" size="1048576" crc="34f2685e" sha1="01068ed4d7865372f3c22342f5898204a1ebcf5f" offset="0x000000" /> |
| 8932 | 9706 | </dataarea> |
| r21545 | r21546 | |
| 8950 | 9724 | <feature name="battery" value="BATT CR2032" /> |
| 8951 | 9725 | <feature name="cart_model" value="SHVC-006" /> |
| 8952 | 9726 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 9727 | ||
| 9728 | <feature name="slot" value="hirom" /> | |
| 8953 | 9729 | <dataarea name="rom" size="2097152"> |
| 8954 | 9730 | <rom name="shvc-azsj-0.u1" size="2097152" crc="eba309c0" sha1="49cd5e7a0a56213d3ce3aae04fd2ebc5503e659e" offset="0x000000" /> |
| 8955 | 9731 | </dataarea> |
| r21545 | r21546 | |
| 8976 | 9752 | <feature name="battery" value="BATT CR2032" /> |
| 8977 | 9753 | <feature name="cart_model" value="SHVC-006" /> |
| 8978 | 9754 | <feature name="cart_back_label" value="920214" /> |
| 9755 | ||
| 9756 | <feature name="slot" value="hirom" /> | |
| 8979 | 9757 | <dataarea name="rom" size="3145728"> |
| 8980 | 9758 | <rom name="shvc-adkj-0 p0.u1" size="2097152" crc="5b606ef7" sha1="6b47084fba80ce07347010a7bb4af063f058936b" offset="0x000000" /> |
| 8981 | 9759 | <rom name="shvc-adkj-0 p3.u2" size="1048576" crc="5b379b50" sha1="83b0507f1a84e686d76b5b869c1a5f2e22278097" offset="0x200000" /> |
| r21545 | r21546 | |
| 9005 | 9783 | <feature name="battery" value="BATT CR2032" /> |
| 9006 | 9784 | <feature name="cart_model" value="SHVC-006" /> |
| 9007 | 9785 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 9786 | ||
| 9787 | <feature name="slot" value="hirom_srtc" /> | |
| 9008 | 9788 | <dataarea name="rom" size="5242880"> |
| 9009 | 9789 | <rom name="shvc-ae6j-0 p0.u1" size="4194304" crc="f248b852" sha1="500f10baf23c23be58d1f31fd656d2f6dde9f916" offset="0x000000" /> |
| 9010 | 9790 | <rom name="shvc-ae6j-0 p3.u2" size="1048576" crc="8ee34319" sha1="65159935c1c4386364afa581ec664430a905ec00" offset="0x400000" /> |
| r21545 | r21546 | |
| 9031 | 9811 | <feature name="battery" value="BATT CR2032" /> |
| 9032 | 9812 | <feature name="cart_model" value="SHVC-006" /> |
| 9033 | 9813 | <feature name="cart_back_label" value="920214" /> |
| 9814 | ||
| 9815 | <feature name="slot" value="hirom" /> | |
| 9034 | 9816 | <dataarea name="rom" size="2097152"> |
| 9035 | 9817 | <rom name="shvc-ql-0.u1" size="2097152" crc="eebc4170" sha1="cf07d10e0b8dfac2fdef2468e42b4aeddea805e4" offset="0x000000" /> |
| 9036 | 9818 | </dataarea> |
| r21545 | r21546 | |
| 9056 | 9838 | <feature name="battery" value="BATT CR2032" /> |
| 9057 | 9839 | <feature name="cart_model" value="SHVC-006" /> |
| 9058 | 9840 | <feature name="cart_back_label" value="920214" /> |
| 9841 | ||
| 9842 | <feature name="slot" value="lorom" /> | |
| 9059 | 9843 | <dataarea name="rom" size="1048576"> |
| 9060 | 9844 | <rom name="shvc-gs-0.u1" size="1048576" crc="164771b5" sha1="32c473e8f732273d4192fbabbea6d8ce981f3341" offset="0x000000" /> |
| 9061 | 9845 | </dataarea> |
| r21545 | r21546 | |
| 9078 | 9862 | <feature name="lockout" value="" /> |
| 9079 | 9863 | <feature name="cart_model" value="SHVC-006" /> |
| 9080 | 9864 | <feature name="cart_back_label" value="901121" /> |
| 9865 | ||
| 9866 | <feature name="slot" value="lorom" /> | |
| 9081 | 9867 | <dataarea name="rom" size="1048576"> |
| 9082 | 9868 | <rom name="shvc-dt-0.u1" size="1048576" crc="299df5fe" sha1="5abe40225c7c2e3d5030fdef374a1edfd387b40e" offset="0x000000" /> |
| 9083 | 9869 | </dataarea> |
| r21545 | r21546 | |
| 9097 | 9883 | <feature name="lockout" value="D411 9147 CA" /> |
| 9098 | 9884 | <feature name="cart_model" value="SNS-006" /> |
| 9099 | 9885 | <feature name="cart_back_label" value="SNS-USA" /> |
| 9886 | ||
| 9887 | <feature name="slot" value="lorom" /> | |
| 9100 | 9888 | <dataarea name="rom" size="1048576"> |
| 9101 | 9889 | <rom name="sns-dt-0.u1" size="1048576" crc="c5341764" sha1="46fc172c87d32f307551502277ffdcd79984a702" offset="0x000000" /> |
| 9102 | 9890 | </dataarea> |
| r21545 | r21546 | |
| 9116 | 9904 | <feature name="lockout" value="D411A 9237 CA" /> |
| 9117 | 9905 | <feature name="cart_model" value="SNS-006" /> |
| 9118 | 9906 | <feature name="cart_back_label" value="" /> |
| 9907 | ||
| 9908 | <feature name="slot" value="lorom" /> | |
| 9119 | 9909 | <dataarea name="rom" size="1048576"> |
| 9120 | 9910 | <rom name="sns-zt-0.u1" size="1048576" crc="caad18dc" sha1="243edb6357d276aced81abaf9bce7e9505f8d284" offset="0x000000" /> |
| 9121 | 9911 | </dataarea> |
| r21545 | r21546 | |
| 9138 | 9928 | <feature name="lockout" value="" /> |
| 9139 | 9929 | <feature name="cart_model" value="SHVC-006" /> |
| 9140 | 9930 | <feature name="cart_back_label" value="" /> |
| 9931 | ||
| 9932 | <feature name="slot" value="lorom" /> | |
| 9141 | 9933 | <dataarea name="rom" size="2097152"> |
| 9142 | 9934 | <rom name="shvc-te-0 p0.u1" size="1048576" crc="80e3ea70" sha1="17dec7d69d01d846ea1d2933b62ce26664044342" offset="0x000000" /> |
| 9143 | 9935 | <rom name="shvc-te-0 p1.u2" size="1048576" crc="17f7843a" sha1="946fe0766182e11d858a6a957ec1cab8bb5e9aff" offset="0x100000" /> |
| r21545 | r21546 | |
| 9157 | 9949 | <feature name="lockout" value="" /> |
| 9158 | 9950 | <feature name="cart_model" value="SNSP-006" /> |
| 9159 | 9951 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 9952 | ||
| 9953 | <feature name="slot" value="lorom" /> | |
| 9160 | 9954 | <dataarea name="rom" size="2097152"> |
| 9161 | 9955 | <rom name="spal-9d-0.u1" size="2097152" crc="65792d05" sha1="502d1a4c1e0de218e0cfbea0549e084a57c6fd08" offset="0x000000" /> |
| 9162 | 9956 | </dataarea> |
| r21545 | r21546 | |
| 9180 | 9974 | <feature name="battery" value="BATT CR2032" /> |
| 9181 | 9975 | <feature name="cart_model" value="SHVC-006" /> |
| 9182 | 9976 | <feature name="cart_back_label" value="920214" /> |
| 9977 | ||
| 9978 | <feature name="slot" value="lorom" /> | |
| 9183 | 9979 | <dataarea name="rom" size="2097152"> |
| 9184 | 9980 | <rom name="shvc-algj-0.u1" size="2097152" crc="7aedd703" sha1="0634e9fe3849a7071612b665376eb95c59071f62" offset="0x000000" /> |
| 9185 | 9981 | </dataarea> |
| r21545 | r21546 | |
| 9205 | 10001 | <feature name="battery" value="BATT CR2032" /> |
| 9206 | 10002 | <feature name="cart_model" value="SHVC-006" /> |
| 9207 | 10003 | <feature name="cart_back_label" value="920214" /> |
| 10004 | ||
| 10005 | <feature name="slot" value="lorom" /> | |
| 9208 | 10006 | <dataarea name="rom" size="1048576"> |
| 9209 | 10007 | <rom name="shvc-jq-0.u1" size="1048576" crc="7d6c9203" sha1="1fc2c443a69de7279217e87c25519edd7598b1b0" offset="0x000000" /> |
| 9210 | 10008 | </dataarea> |
| r21545 | r21546 | |
| 9231 | 10029 | <feature name="cart_revision" value="A" /> |
| 9232 | 10030 | <feature name="cart_model" value="SHVC-006" /> |
| 9233 | 10031 | <feature name="cart_back_label" value="920214" /> |
| 10032 | ||
| 10033 | <feature name="slot" value="lorom" /> | |
| 9234 | 10034 | <dataarea name="rom" size="1048576"> |
| 9235 | 10035 | <rom name="shvc-jq-1.u1" size="1048576" crc="8516c373" sha1="4c2c387b4212b9298d4b8bdb3e7a010d28e13303" offset="0x000000" /> |
| 9236 | 10036 | </dataarea> |
| r21545 | r21546 | |
| 9257 | 10057 | <feature name="battery" value="BATT CR2032" /> |
| 9258 | 10058 | <feature name="cart_model" value="SHVC-040" /> |
| 9259 | 10059 | <feature name="cart_back_label" value="G744238 BSC-JPN-1" /> |
| 10060 | ||
| 10061 | <feature name="slot" value="lorom_bsx" /> | |
| 9260 | 10062 | <dataarea name="rom" size="3145728"> |
| 9261 | 10063 | <rom name="shvc-zdbj-0.u1" size="3145728" crc="19bdcb19" sha1="24af9a5a78635ec493bbbc2540ab98bd161c5798" offset="0x000000" /> |
| 9262 | 10064 | </dataarea> |
| r21545 | r21546 | |
| 9283 | 10085 | <feature name="battery" value="BATT CR2032" /> |
| 9284 | 10086 | <feature name="cart_model" value="SHVC-006" /> |
| 9285 | 10087 | <feature name="cart_back_label" value="920214" /> |
| 10088 | ||
| 10089 | <feature name="slot" value="lorom" /> | |
| 9286 | 10090 | <dataarea name="rom" size="1572864"> |
| 9287 | 10091 | <rom name="shvc-a7-0 p0.u1" size="1048576" crc="24864afc" sha1="5ff4b93fe606287c1ed415c54adac225c476e6b9" offset="0x000000" /> |
| 9288 | 10092 | <rom name="shvc-a7-0 p1.u2" size="524288" crc="4bd9f4f1" sha1="c1a286f4b563d5639143cf42cacdce0e150fdbbe" offset="0x100000" /> |
| r21545 | r21546 | |
| 9309 | 10113 | <feature name="battery" value="BATT CR2032" /> |
| 9310 | 10114 | <feature name="cart_model" value="SHVC-006" /> |
| 9311 | 10115 | <feature name="cart_back_label" value="920214" /> |
| 10116 | ||
| 10117 | <feature name="slot" value="lorom" /> | |
| 9312 | 10118 | <dataarea name="rom" size="3145728"> |
| 9313 | 10119 | <rom name="shvc-ad3j-0.u1" size="3145728" crc="75eeeb3f" sha1="2fc2925151290e792e8cc99e46b06ac19e3e2aef" offset="0x000000" /> |
| 9314 | 10120 | </dataarea> |
| r21545 | r21546 | |
| 9335 | 10141 | <feature name="battery" value="BATT CR2032" /> |
| 9336 | 10142 | <feature name="cart_model" value="SHVC-006" /> |
| 9337 | 10143 | <feature name="cart_back_label" value="920214" /> |
| 10144 | ||
| 10145 | <feature name="slot" value="lorom" /> | |
| 9338 | 10146 | <dataarea name="rom" size="3145728"> |
| 9339 | 10147 | <rom name="shvc-ad3j-0 p0.u1" size="2097152" crc="ad36d3d2" sha1="b1528c77b069e918929d1b122eedcf1c0f6f7a67" offset="0x000000" /> |
| 9340 | 10148 | <rom name="shvc-ad3j-0 p3.u2" size="1048576" crc="87e5d531" sha1="162c748d43a8f0c048ba70b3d812668b3a48b942" offset="0x200000" /> |
| r21545 | r21546 | |
| 9363 | 10171 | <feature name="cart_revision" value="B" /> |
| 9364 | 10172 | <feature name="cart_model" value="SHVC-006" /> |
| 9365 | 10173 | <feature name="cart_back_label" value="920214" /> |
| 10174 | ||
| 10175 | <feature name="slot" value="lorom" /> | |
| 9366 | 10176 | <dataarea name="rom" size="3145728"> |
| 9367 | 10177 | <rom name="shvc-ad3j-2 p0.u1" size="2097152" crc="b3a53866" sha1="cb6c9e5aea03b33be32605f70c06ffaf21ae5333" offset="0x000000" /> |
| 9368 | 10178 | <rom name="shvc-ad3j-2 p3.u2" size="1048576" crc="87e5d531" sha1="162c748d43a8f0c048ba70b3d812668b3a48b942" offset="0x200000" /> |
| r21545 | r21546 | |
| 9390 | 10200 | <feature name="cart_revision" value="D" /> |
| 9391 | 10201 | <feature name="cart_model" value="SHVC-006" /> |
| 9392 | 10202 | <feature name="cart_back_label" value="920214" /> |
| 10203 | ||
| 10204 | <feature name="slot" value="lorom" /> | |
| 9393 | 10205 | <dataarea name="rom" size="3145728"> |
| 9394 | 10206 | <rom name="shvc-ad3j-3.u1" size="3145728" crc="36768b55" sha1="01fa5a26c3521fe73eb687f9731a044dd3022287" offset="0x000000" /> |
| 9395 | 10207 | </dataarea> |
| r21545 | r21546 | |
| 9416 | 10228 | <feature name="battery" value="none" /> |
| 9417 | 10229 | <feature name="cart_model" value="SNSP-006" /> |
| 9418 | 10230 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 10231 | ||
| 10232 | <feature name="slot" value="lorom_sfx" /> | |
| 9419 | 10233 | <dataarea name="rom" size="524288"> |
| 9420 | 10234 | <rom name="spal-adip-0.u1" size="524288" crc="0354f4b1" sha1="5e38dd23cdd68754b6469da0725688d0af34f867" offset="0x000000" /> |
| 9421 | 10235 | </dataarea> |
| r21545 | r21546 | |
| 9441 | 10255 | <feature name="battery" value="none" /> |
| 9442 | 10256 | <feature name="cart_model" value="SNSP-006" /> |
| 9443 | 10257 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 10258 | ||
| 10259 | <feature name="slot" value="lorom_sfx" /> | |
| 9444 | 10260 | <dataarea name="rom" size="524288"> |
| 9445 | 10261 | <rom name="spal-af9p-0.u1" size="524288" crc="9dbc2330" sha1="d2940767de799fcd7a2ee0995f072930475ab88f" offset="0x000000" /> |
| 9446 | 10262 | </dataarea> |
| r21545 | r21546 | |
| 9467 | 10283 | <feature name="battery" value="BATT CR2032" /> |
| 9468 | 10284 | <feature name="cart_model" value="SHVC-006" /> |
| 9469 | 10285 | <feature name="cart_back_label" value="920214" /> |
| 10286 | ||
| 10287 | <feature name="slot" value="lorom" /> | |
| 9470 | 10288 | <dataarea name="rom" size="1572864"> |
| 9471 | 10289 | <rom name="shvc-aixj-0 p0.u1" size="1048576" crc="9602b7fd" sha1="b666999cb6b037e2c50822210594bceb38b2a466" offset="0x000000" /> |
| 9472 | 10290 | <rom name="shvc-aixj-0 p1.u2" size="524288" crc="9d957d74" sha1="c70399d5fc894067af6b9298e8f508d63dd702d7" offset="0x100000" /> |
| r21545 | r21546 | |
| 9490 | 10308 | <feature name="lockout" value="" /> |
| 9491 | 10309 | <feature name="cart_model" value="SHVC-006" /> |
| 9492 | 10310 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 10311 | ||
| 10312 | <feature name="slot" value="lorom" /> | |
| 9493 | 10313 | <dataarea name="rom" size="1048576"> |
| 9494 | 10314 | <rom name="shvc-agnj-0.u1" size="1048576" crc="a1684b6c" sha1="8a3c4a376a93555454421b6b660fe8ef9190b270" offset="0x000000" /> |
| 9495 | 10315 | </dataarea> |
| r21545 | r21546 | |
| 9514 | 10334 | <feature name="battery" value="BATT CR2032" /> |
| 9515 | 10335 | <feature name="cart_model" value="SHVC-006" /> |
| 9516 | 10336 | <feature name="cart_back_label" value="920214" /> |
| 10337 | ||
| 10338 | <feature name="slot" value="hirom" /> | |
| 9517 | 10339 | <dataarea name="rom" size="1310720"> |
| 9518 | 10340 | <rom name="shvc-qi-0 p0.u1" size="1048576" crc="79635ae2" sha1="bba9aa973aaf77bd1729894daf338a0af422cbf2" offset="0x000000" /> |
| 9519 | 10341 | <rom name="shvc-qi-0 p1.u2" size="262144" crc="094c95b8" sha1="e6d703af1d360eb89597d551976a648bff786e9f" offset="0x100000" /> |
| r21545 | r21546 | |
| 9539 | 10361 | <feature name="lockout" value="" /> |
| 9540 | 10362 | <feature name="cart_model" value="SHVC-006" /> |
| 9541 | 10363 | <feature name="cart_back_label" value="920214" /> |
| 10364 | ||
| 10365 | <feature name="slot" value="lorom" /> | |
| 9542 | 10366 | <dataarea name="rom" size="2097152"> |
| 9543 | 10367 | <rom name="shvc-im-0 p0.u1" size="1048576" crc="648e327a" sha1="443da51ac7051629e1409791b42746c00ed4d6d7" offset="0x000000" /> |
| 9544 | 10368 | <rom name="shvc-im-0 p1.u2" size="1048576" crc="e873cd0e" sha1="5870ebedf97ec365b1ee2438d367c6e515a745c7" offset="0x100000" /> |
| r21545 | r21546 | |
| 9563 | 10387 | <feature name="battery" value="BATT CR2032" /> |
| 9564 | 10388 | <feature name="cart_model" value="SNSP-006" /> |
| 9565 | 10389 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 10390 | ||
| 10391 | <feature name="slot" value="hirom" /> | |
| 9566 | 10392 | <dataarea name="rom" size="4194304"> |
| 9567 | 10393 | <rom name="spal-8x-0 p0.u1" size="2097152" crc="d6086f47" sha1="afcef57cf7d80a2617e6f4c743fcca0fa544b732" offset="0x000000" /> |
| 9568 | 10394 | <rom name="spal-8x-0 p3.u2" size="2097152" crc="d2abfe31" sha1="8bb81bc18d0c0a060c62af403b1e03d963835393" offset="0x200000" /> |
| r21545 | r21546 | |
| 9590 | 10416 | <feature name="cart_revision" value="A" /> |
| 9591 | 10417 | <feature name="cart_model" value="SNS-006" /> |
| 9592 | 10418 | <feature name="cart_back_label" value="" /> |
| 10419 | ||
| 10420 | <feature name="slot" value="hirom" /> | |
| 9593 | 10421 | <dataarea name="rom" size="4194304"> |
| 9594 | 10422 | <rom name="sns-8x-1.u1" size="4194304" crc="3eaa5697" sha1="8ee954e15b7d77a7941b107c8243b27acebdcbc0" offset="0x000000" /> |
| 9595 | 10423 | </dataarea> |
| r21545 | r21546 | |
| 9629 | 10457 | <feature name="cart_model" value="SNS-006" /> |
| 9630 | 10458 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 9631 | 10459 | --> |
| 10460 | ||
| 10461 | <feature name="slot" value="hirom" /> | |
| 9632 | 10462 | <dataarea name="rom" size="4194304"> |
| 9633 | 10463 | <rom name="sns-8x-2.u1" size="4194304" crc="762af827" sha1="cd606e77ab2034438e06891cd2d067dad69b4d1a" offset="0x000000" /> |
| 9634 | 10464 | </dataarea> |
| r21545 | r21546 | |
| 9654 | 10484 | <feature name="cart_revision" value="A" /> |
| 9655 | 10485 | <feature name="cart_model" value="SNSP-006" /> |
| 9656 | 10486 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 10487 | ||
| 10488 | <feature name="slot" value="hirom" /> | |
| 9657 | 10489 | <dataarea name="rom" size="4194304"> |
| 9658 | 10490 | <rom name="spal-adnp-1.u1" size="4194304" crc="2ea6b7e8" sha1="29601b586c57c1f5da8956b640e5fc48dcc4364f" offset="0x000000" /> |
| 9659 | 10491 | </dataarea> |
| r21545 | r21546 | |
| 9679 | 10511 | <feature name="cart_revision" value="A" /> |
| 9680 | 10512 | <feature name="cart_model" value="SNSP-006" /> |
| 9681 | 10513 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 10514 | ||
| 10515 | <feature name="slot" value="hirom" /> | |
| 9682 | 10516 | <dataarea name="rom" size="4194304"> |
| 9683 | 10517 | <rom name="spal-adnd-1.u1" size="4194304" crc="2eb33785" sha1="5a5ee7c1e3d36530c3ebf98bdced2c9c3a0313ab" offset="0x000000" /> |
| 9684 | 10518 | </dataarea> |
| r21545 | r21546 | |
| 9704 | 10538 | <feature name="battery" value="BATT CR2032" /> |
| 9705 | 10539 | <feature name="cart_model" value="SNS-006" /> |
| 9706 | 10540 | <feature name="cart_back_label" value="" /> |
| 10541 | ||
| 10542 | <feature name="slot" value="hirom" /> | |
| 9707 | 10543 | <dataarea name="rom" size="4194304"> |
| 9708 | 10544 | <rom name="sns-adne-0.u1" size="4194304" crc="006364db" sha1="3ec2035962918b5523d8b4745406f46f2a739b8d" offset="0x000000" /> |
| 9709 | 10545 | </dataarea> |
| r21545 | r21546 | |
| 9728 | 10564 | <feature name="battery" value="BATT CR2032" /> |
| 9729 | 10565 | <feature name="cart_model" value="SNSP-006" /> |
| 9730 | 10566 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 10567 | ||
| 10568 | <feature name="slot" value="hirom" /> | |
| 9731 | 10569 | <dataarea name="rom" size="4194304"> |
| 9732 | 10570 | <rom name="spal-a3cp-0.u1" size="4194304" crc="0551fe84" sha1="c79cbe60e4cd8ee086bb6c5f6b2dea5acebcc940" offset="0x000000" /> |
| 9733 | 10571 | </dataarea> |
| r21545 | r21546 | |
| 9753 | 10591 | <feature name="battery" value="BATT CR2032" /> |
| 9754 | 10592 | <feature name="cart_model" value="SNS-006" /> |
| 9755 | 10593 | <feature name="cart_back_label" value="M/SNS-USA/CAN-1" /> |
| 10594 | ||
| 10595 | <feature name="slot" value="hirom" /> | |
| 9756 | 10596 | <dataarea name="rom" size="4194304"> |
| 9757 | 10597 | <rom name="sns-a3ce-0.u1" size="4194304" crc="448eec19" sha1="d737e90d91dba8620fd5c2985eb6ff2cda7f23f9" offset="0x000000" /> |
| 9758 | 10598 | </dataarea> |
| r21545 | r21546 | |
| 9778 | 10618 | <feature name="battery" value="none" /> |
| 9779 | 10619 | <feature name="cart_model" value="SNSP-006" /> |
| 9780 | 10620 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 10621 | ||
| 10622 | <feature name="slot" value="lorom_sfx" /> | |
| 9781 | 10623 | <dataarea name="rom" size="2097152"> |
| 9782 | 10624 | <rom name="spal-ad8p-0.u1" size="2097152" crc="360243e4" sha1="3ffb94cdd6a47683980999d723a93bee9ba156f8" offset="0x000000" /> |
| 9783 | 10625 | </dataarea> |
| r21545 | r21546 | |
| 9799 | 10641 | <feature name="lockout" value="" /> |
| 9800 | 10642 | <feature name="cart_model" value="SNS-006" /> |
| 9801 | 10643 | <feature name="cart_back_label" value="D411A 9307 BA" /> |
| 10644 | ||
| 10645 | <feature name="slot" value="lorom" /> | |
| 9802 | 10646 | <dataarea name="rom" size="1048576"> |
| 9803 | 10647 | <rom name="sns-dm-0.u1" size="1048576" crc="ceeb7c32" sha1="5b7294665583510468d257f4896e825f642ad95f" offset="0x000000" /> |
| 9804 | 10648 | </dataarea> |
| r21545 | r21546 | |
| 9819 | 10663 | <feature name="lockout" value="" /> |
| 9820 | 10664 | <feature name="cart_model" value="SHVC-006" /> |
| 9821 | 10665 | <feature name="cart_back_label" value="920214" /> |
| 10666 | ||
| 10667 | <feature name="slot" value="hirom" /> | |
| 9822 | 10668 | <dataarea name="rom" size="524288"> |
| 9823 | 10669 | <rom name="shvc-dr-0.u1" size="524288" crc="51bc2909" sha1="11cd5e49b6907b6fa6f524ec7b216805712eeaf6" offset="0x000000" /> |
| 9824 | 10670 | </dataarea> |
| r21545 | r21546 | |
| 9839 | 10685 | <feature name="lockout" value="" /> |
| 9840 | 10686 | <feature name="cart_model" value="SHVC-006" /> |
| 9841 | 10687 | <feature name="cart_back_label" value="920214" /> |
| 10688 | ||
| 10689 | <feature name="slot" value="hirom" /> | |
| 9842 | 10690 | <dataarea name="rom" size="1048576"> |
| 9843 | 10691 | <rom name="shvc-2d-0.u1" size="1048576" crc="d343b398" sha1="8672e208c3716b8fae3fd612bc80679a5459b616" offset="0x000000" /> |
| 9844 | 10692 | </dataarea> |
| r21545 | r21546 | |
| 9861 | 10709 | <feature name="lockout" value="" /> |
| 9862 | 10710 | <feature name="cart_model" value="SHVC-006" /> |
| 9863 | 10711 | <feature name="cart_back_label" value="920214" /> |
| 10712 | ||
| 10713 | <feature name="slot" value="hirom" /> | |
| 9864 | 10714 | <dataarea name="rom" size="1572864"> |
| 9865 | 10715 | <rom name="shvc-4t-0 p0.u1" size="1048576" crc="50e22ac2" sha1="eacf072f3b0c7c181597123e16f6b0be5b3bca9d" offset="0x000000" /> |
| 9866 | 10716 | <rom name="shvc-4t-0 p1.u2" size="524288" crc="965c8e80" sha1="82c8e498908e235fcaff0d3a81a2e7863d2c9031" offset="0x100000" /> |
| r21545 | r21546 | |
| 9882 | 10732 | <feature name="lockout" value="" /> |
| 9883 | 10733 | <feature name="cart_model" value="SHVC-006" /> |
| 9884 | 10734 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 10735 | ||
| 10736 | <feature name="slot" value="lorom" /> | |
| 9885 | 10737 | <dataarea name="rom" size="2097152"> |
| 9886 | 10738 | <rom name="shvc-ad4j-0.u1" size="2097152" crc="5b6c63c8" sha1="613d396a49892b9f81fb5a8c395578fa443b3d84" offset="0x000000" /> |
| 9887 | 10739 | </dataarea> |
| r21545 | r21546 | |
| 9903 | 10755 | <feature name="lockout" value="D411A 9425 C" /> |
| 9904 | 10756 | <feature name="cart_model" value="SNS-006" /> |
| 9905 | 10757 | <feature name="cart_back_label" value="" /> |
| 10758 | ||
| 10759 | <feature name="slot" value="hirom" /> | |
| 9906 | 10760 | <dataarea name="rom" size="3145728"> |
| 9907 | 10761 | <rom name="sns-5e-0 p0.u1" size="2097152" crc="1a75203f" sha1="06bb8d315fd8d25cdefc8e0cafbc1ab36c9ca876" offset="0x000000" /> |
| 9908 | 10762 | <rom name="sns-5e-0 p3.u2" size="1048576" crc="2b497651" sha1="e805925a9387d07406f16e0c6fcdabff711793f2" offset="0x200000" /> |
| r21545 | r21546 | |
| 9924 | 10778 | <feature name="lockout" value="D411B 9521 C" /> |
| 9925 | 10779 | <feature name="cart_model" value="SNS-006" /> |
| 9926 | 10780 | <feature name="cart_back_label" value="" /> |
| 10781 | ||
| 10782 | <feature name="slot" value="hirom" /> | |
| 9927 | 10783 | <dataarea name="rom" size="2097152"> |
| 9928 | 10784 | <rom name="sns-ad5e-0.u1" size="2097152" crc="407c5c24" sha1="af3c96d6b26b9a7efc4850b81ede469027b0b173" offset="0x000000" /> |
| 9929 | 10785 | </dataarea> |
| r21545 | r21546 | |
| 9944 | 10800 | <feature name="lockout" value="" /> |
| 9945 | 10801 | <feature name="cart_model" value="SHVC-006" /> |
| 9946 | 10802 | <feature name="cart_back_label" value="920214" /> |
| 10803 | ||
| 10804 | <feature name="slot" value="lorom" /> | |
| 9947 | 10805 | <dataarea name="rom" size="2097152"> |
| 9948 | 10806 | <rom name="shvc-z2-0.u1" size="2097152" crc="8c7780bd" sha1="89bf91648a9ff8e2c07617b0801edf2a97f2779e" offset="0x000000" /> |
| 9949 | 10807 | </dataarea> |
| r21545 | r21546 | |
| 9966 | 10824 | <feature name="lockout" value="" /> |
| 9967 | 10825 | <feature name="cart_model" value="SHVC-006" /> |
| 9968 | 10826 | <feature name="cart_back_label" value="920214" /> |
| 10827 | ||
| 10828 | <feature name="slot" value="lorom" /> | |
| 9969 | 10829 | <dataarea name="rom" size="2097152"> |
| 9970 | 10830 | <rom name="shvc-z2-0 p0.u1" size="1048576" crc="12429363" sha1="9fbac5feacf879adb21abcba82f5ef89cd833e13" offset="0x000000" /> |
| 9971 | 10831 | <rom name="shvc-z2-0 p1.u2" size="1048576" crc="b358fabd" sha1="dacf5ba836c59411c7a34fb9c46f486b7bdd1c6a" offset="0x100000" /> |
| r21545 | r21546 | |
| 9988 | 10848 | <feature name="lockout" value="" /> |
| 9989 | 10849 | <feature name="cart_model" value="SHVC-006" /> |
| 9990 | 10850 | <feature name="cart_back_label" value="920214" /> |
| 10851 | ||
| 10852 | <feature name="slot" value="lorom" /> | |
| 9991 | 10853 | <dataarea name="rom" size="2097152"> |
| 9992 | 10854 | <rom name="shvc-ef-0.u1" size="2097152" crc="a5e37609" sha1="d5148a5cb1e7b01aac23fbe03bb735a2c29c4012" offset="0x000000" /> |
| 9993 | 10855 | </dataarea> |
| r21545 | r21546 | |
| 10011 | 10873 | <feature name="lockout" value="" /> |
| 10012 | 10874 | <feature name="cart_model" value="SHVC-006" /> |
| 10013 | 10875 | <feature name="cart_back_label" value="920214" /> |
| 10876 | ||
| 10877 | <feature name="slot" value="lorom" /> | |
| 10014 | 10878 | <dataarea name="rom" size="2097152"> |
| 10015 | 10879 | <rom name="shvc-ef-0 p0.u1" size="1048576" crc="f3d61fe4" sha1="5abf99bc7967f55c34bfecb62822af9987e09130" offset="0x000000" /> |
| 10016 | 10880 | <rom name="shvc-ef-0 p1.u2" size="1048576" crc="0e1fcb30" sha1="98c421edb529eafc5a2f9e954c81052e897653fd" offset="0x100000" /> |
| r21545 | r21546 | |
| 10033 | 10897 | <feature name="lockout" value="" /> |
| 10034 | 10898 | <feature name="cart_model" value="SHVC-006" /> |
| 10035 | 10899 | <feature name="cart_back_label" value="920214" /> |
| 10900 | ||
| 10901 | <feature name="slot" value="lorom" /> | |
| 10036 | 10902 | <dataarea name="rom" size="2097152"> |
| 10037 | 10903 | <rom name="shvc-az4j-0.u1" size="2097152" crc="cbfde2d0" sha1="d4bbf593338be7e495a306b3980ef1ef45a251f4" offset="0x000000" /> |
| 10038 | 10904 | </dataarea> |
| r21545 | r21546 | |
| 10057 | 10923 | <feature name="battery" value="BATT CR2032" /> |
| 10058 | 10924 | <feature name="cart_model" value="SHVC-006" /> |
| 10059 | 10925 | <feature name="cart_back_label" value="920214" /> |
| 10926 | ||
| 10927 | <feature name="slot" value="lorom" /> | |
| 10060 | 10928 | <dataarea name="rom" size="2097152"> |
| 10061 | 10929 | <rom name="shvc-az5j-0.u1" size="2097152" crc="d531289b" sha1="926b861734cdeef9e70cd436be62c73481e7392f" offset="0x000000" /> |
| 10062 | 10930 | </dataarea> |
| r21545 | r21546 | |
| 10082 | 10950 | <feature name="battery" value="BATT CR2032" /> |
| 10083 | 10951 | <feature name="cart_model" value="SHVC-006" /> |
| 10084 | 10952 | <feature name="cart_back_label" value="901121" /> |
| 10953 | ||
| 10954 | <feature name="slot" value="lorom" /> | |
| 10085 | 10955 | <dataarea name="rom" size="1048576"> |
| 10086 | 10956 | <rom name="shvc-db-0.u1" size="1048576" crc="32b17409" sha1="e894ad7f0cd5e9836494f12a22552511c9c3bce6" offset="0x000000" /> |
| 10087 | 10957 | </dataarea> |
| r21545 | r21546 | |
| 10107 | 10977 | <feature name="battery" value="BATT CR2032" /> |
| 10108 | 10978 | <feature name="cart_model" value="SHVC-006" /> |
| 10109 | 10979 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 10980 | ||
| 10981 | <feature name="slot" value="lorom" /> | |
| 10110 | 10982 | <dataarea name="rom" size="3145728"> |
| 10111 | 10983 | <rom name="shvc-a87j-0.u1" size="3145728" crc="52fc7228" sha1="cfb5d2ce3eab576dae49f570284b75c1a8c0465d" offset="0x000000" /> |
| 10112 | 10984 | </dataarea> |
| r21545 | r21546 | |
| 10133 | 11005 | <feature name="battery" value="BATT CR2032" /> |
| 10134 | 11006 | <feature name="cart_model" value="SHVC-006" /> |
| 10135 | 11007 | <feature name="cart_back_label" value="920214" /> |
| 11008 | ||
| 11009 | <feature name="slot" value="lorom" /> | |
| 10136 | 11010 | <dataarea name="rom" size="1572864"> |
| 10137 | 11011 | <rom name="shvc-dq-0 p0.u1" size="1048576" crc="9ca733ff" sha1="4544041bc41eecbf81c5319079eb2838f5c191d5" offset="0x000000" /> |
| 10138 | 11012 | <rom name="shvc-dq-0 p1.u2" size="524288" crc="f810ba47" sha1="ba4e0b4f3feb7b4d6ae60f763fe7e11f0ba60815" offset="0x100000" /> |
| r21545 | r21546 | |
| 10159 | 11033 | <feature name="battery" value="BATT CR2032" /> |
| 10160 | 11034 | <feature name="cart_model" value="SHVC-006" /> |
| 10161 | 11035 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 11036 | ||
| 11037 | <feature name="slot" value="hirom" /> | |
| 10162 | 11038 | <dataarea name="rom" size="4194304"> |
| 10163 | 11039 | <rom name="shvc-aq3j-0.u1" size="4194304" crc="13836bd2" sha1="b711341e4b1022d7645c5313840874aebc01b7b7" offset="0x000000" /> |
| 10164 | 11040 | </dataarea> |
| r21545 | r21546 | |
| 10185 | 11061 | <feature name="battery" value="BATT CR2032" /> |
| 10186 | 11062 | <feature name="cart_model" value="SHVC-006" /> |
| 10187 | 11063 | <feature name="cart_back_label" value="920214" /> |
| 11064 | ||
| 11065 | <feature name="slot" value="lorom" /> | |
| 10188 | 11066 | <dataarea name="rom" size="1572864"> |
| 10189 | 11067 | <rom name="shvc-d5-0 p0.u1" size="1048576" crc="07034bcc" sha1="0a56e4516c4e8b0e7edfa76368de1ac14db519ff" offset="0x000000" /> |
| 10190 | 11068 | <rom name="shvc-d5-0 p1.u2" size="524288" crc="8c4fc20c" sha1="d6183b37efadcbc0377c6ffe32aec6f5285e198b" offset="0x100000" /> |
| r21545 | r21546 | |
| 10211 | 11089 | <feature name="battery" value="BATT CR2032" /> |
| 10212 | 11090 | <feature name="cart_model" value="SHVC-006" /> |
| 10213 | 11091 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 11092 | ||
| 11093 | <feature name="slot" value="hirom" /> | |
| 10214 | 11094 | <dataarea name="rom" size="4194304"> |
| 10215 | 11095 | <rom name="shvc-aq6j-0.u1" size="4194304" crc="33304519" sha1="3e699dc7e064d6ac84b1981aa150fdf1672b5456" offset="0x000000" /> |
| 10216 | 11096 | </dataarea> |
| r21545 | r21546 | |
| 10237 | 11117 | <feature name="battery" value="BATT CR2032" /> |
| 10238 | 11118 | <feature name="cart_model" value="SHVC-006" /> |
| 10239 | 11119 | <feature name="cart_back_label" value="920214" /> |
| 11120 | ||
| 11121 | <feature name="slot" value="hirom" /> | |
| 10240 | 11122 | <dataarea name="rom" size="4194304"> |
| 10241 | 11123 | <rom name="shvc-aq6j-0 p0.u1" size="2097152" crc="429fe88f" sha1="5070bdb031c0c653a2cb6dd002d6c1519e9a1076" offset="0x000000" /> |
| 10242 | 11124 | <rom name="shvc-aq6j-0 p3.u2" size="2097152" crc="f0df0d80" sha1="6b8f4df4143ebe07e544ddc44fe8beced8d2029d" offset="0x200000" /> |
| r21545 | r21546 | |
| 10264 | 11146 | <feature name="battery" value="BATT CR2032" /> |
| 10265 | 11147 | <feature name="cart_model" value="SHVC-006" /> |
| 10266 | 11148 | <feature name="cart_back_label" value="901121" /> |
| 11149 | ||
| 11150 | <feature name="slot" value="lorom" /> | |
| 10267 | 11151 | <dataarea name="rom" size="1048576"> |
| 10268 | 11152 | <rom name="shvc-ds-0.u1" size="1048576" crc="70bba233" sha1="2fbc7d0b48f6017d4a2d65b3c37032ad708a6255" offset="0x000000" /> |
| 10269 | 11153 | </dataarea> |
| r21545 | r21546 | |
| 10285 | 11169 | <feature name="lockout" value="D411A 9304 BA" /> |
| 10286 | 11170 | <feature name="cart_model" value="SNS-006" /> |
| 10287 | 11171 | <feature name="cart_back_label" value="" /> |
| 11172 | ||
| 11173 | <feature name="slot" value="lorom" /> | |
| 10288 | 11174 | <dataarea name="rom" size="524288"> |
| 10289 | 11175 | <rom name="sns-di-0.u1" size="524288" crc="24ffe7fd" sha1="bc5c464875f0468287d60b785f24805ce4c45afb" offset="0x000000" /> |
| 10290 | 11176 | </dataarea> |
| r21545 | r21546 | |
| 10308 | 11194 | <feature name="battery" value="BATT CR2032" /> |
| 10309 | 11195 | <feature name="cart_model" value="SHVC-006" /> |
| 10310 | 11196 | <feature name="cart_back_label" value="901121" /> |
| 11197 | ||
| 11198 | <feature name="slot" value="lorom" /> | |
| 10311 | 11199 | <dataarea name="rom" size="1048576"> |
| 10312 | 11200 | <rom name="shvc-dk-0.u1" size="1048576" crc="b0a016a2" sha1="5d886f282655968b547f780e23ca77b7c0502512" offset="0x000000" /> |
| 10313 | 11201 | </dataarea> |
| r21545 | r21546 | |
| 10332 | 11220 | <feature name="battery" value="BATT CR2032" /> |
| 10333 | 11221 | <feature name="cart_model" value="SNS-006" /> |
| 10334 | 11222 | <feature name="cart_back_label" value="" /> |
| 11223 | ||
| 11224 | <feature name="slot" value="lorom" /> | |
| 10335 | 11225 | <dataarea name="rom" size="1048576"> |
| 10336 | 11226 | <rom name="sns-dk-0.u1" size="1048576" crc="7dae5c2a" sha1="42915d0f261d400ffbdb8ee7e6410b2d2d0a71f4" offset="0x000000" /> |
| 10337 | 11227 | </dataarea> |
| r21545 | r21546 | |
| 10356 | 11246 | <feature name="lockout" value="" /> |
| 10357 | 11247 | <feature name="cart_model" value="SHVC-006" /> |
| 10358 | 11248 | <feature name="cart_back_label" value="920214" /> |
| 11249 | ||
| 11250 | <feature name="slot" value="lorom" /> | |
| 10359 | 11251 | <dataarea name="rom" size="1572864"> |
| 10360 | 11252 | <rom name="shvc-adbj-0 p0.u1" size="1048576" crc="05fba6d7" sha1="3e7df6e137e99fe4d65a27547cc151a2a61ee2be" offset="0x000000" /> |
| 10361 | 11253 | <rom name="shvc-adbj-0 p1.u2" size="524288" crc="f53bad6f" sha1="c3abed64af949a01a3651fdace7075b5bab5d1cf" offset="0x100000" /> |
| r21545 | r21546 | |
| 10382 | 11274 | <feature name="lockout" value="" /> |
| 10383 | 11275 | <feature name="cart_model" value="SHVC-006" /> |
| 10384 | 11276 | <feature name="cart_back_label" value="920214" /> |
| 11277 | ||
| 11278 | <feature name="slot" value="hirom_dsp" /> | |
| 10385 | 11279 | <dataarea name="rom" size="1572864"> |
| 10386 | 11280 | <rom name="shvc-94-0 p0.u1" size="1048576" crc="90566da4" sha1="caccd2e6da2f8fae5613dc57eaad86628234c8a3" offset="0x000000" /> |
| 10387 | 11281 | <rom name="shvc-94-0 p1.u2" size="524288" crc="d5ff46b6" sha1="517047d2fdcaa7a95d808fc2a801d85f8c0ca35f" offset="0x100000" /> |
| 10388 | 11282 | </dataarea> |
| 11283 | <dataarea name="addon" size="10240"> | |
| 11284 | <rom name="dsp1b.u4" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 11285 | </dataarea> | |
| 10389 | 11286 | <dataarea name="nvram" size="8192"> |
| 10390 | 11287 | </dataarea> |
| 10391 | 11288 | </part> |
| r21545 | r21546 | |
| 10410 | 11307 | <feature name="lockout" value="" /> |
| 10411 | 11308 | <feature name="cart_model" value="SHVC-006" /> |
| 10412 | 11309 | <feature name="cart_back_label" value="920214" /> |
| 11310 | ||
| 11311 | <feature name="slot" value="hirom_dsp" /> | |
| 10413 | 11312 | <dataarea name="rom" size="1572864"> |
| 10414 | 11313 | <rom name="shvc-asxj-0 p0.u1" size="1048576" crc="8e2bb7e3" sha1="3b1484c6a506b0303a84a304c7bb3d8f828fcf1e" offset="0x000000" /> |
| 10415 | 11314 | <rom name="shvc-asxj-0 p1.u2" size="524288" crc="d4ca6b1f" sha1="c27bb03500d861a01acb9c17d1179603c19c1019" offset="0x100000" /> |
| 10416 | 11315 | </dataarea> |
| 11316 | <dataarea name="addon" size="10240"> | |
| 11317 | <rom name="dsp1b.u4" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 11318 | </dataarea> | |
| 10417 | 11319 | <dataarea name="nvram" size="8192"> |
| 10418 | 11320 | </dataarea> |
| 10419 | 11321 | </part> |
| r21545 | r21546 | |
| 10436 | 11338 | <feature name="lockout" value="" /> |
| 10437 | 11339 | <feature name="cart_model" value="SNSP-006" /> |
| 10438 | 11340 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 11341 | ||
| 11342 | <feature name="slot" value="lorom_dsp" /> | |
| 10439 | 11343 | <dataarea name="rom" size="1048576"> |
| 10440 | 11344 | <rom name="spal-v2-0.u1" size="1048576" crc="89a67adf" sha1="30fc660fb1e78d0533f424da750112dcd615050a" offset="0x000000" /> |
| 10441 | 11345 | </dataarea> |
| 11346 | <dataarea name="addon" size="10240"> | |
| 11347 | <rom name="dsp2.u3" size="10240" crc="8e9fbd9b" sha1="06dd9fcb118d18f6bbe234e013cb8780e06d6e63" offset="0x000000" /> | |
| 11348 | </dataarea> | |
| 10442 | 11349 | <dataarea name="nvram" size="32768"> |
| 10443 | 11350 | </dataarea> |
| 10444 | 11351 | </part> |
| r21545 | r21546 | |
| 10461 | 11368 | <feature name="battery" value="BATT CR2032" /> |
| 10462 | 11369 | <feature name="cart_model" value="SHVC-006" /> |
| 10463 | 11370 | <feature name="cart_back_label" value="920214" /> |
| 11371 | ||
| 11372 | <feature name="slot" value="lorom" /> | |
| 10464 | 11373 | <dataarea name="rom" size="1048576"> |
| 10465 | 11374 | <rom name="shvc-yd-0.u1" size="1048576" crc="ebcc121c" sha1="c6dd17e74e02f35aa86471d84974701b98ccecdd" offset="0x000000" /> |
| 10466 | 11375 | </dataarea> |
| r21545 | r21546 | |
| 10486 | 11395 | <feature name="battery" value="BATT CR2032" /> |
| 10487 | 11396 | <feature name="cart_model" value="SHVC-006" /> |
| 10488 | 11397 | <feature name="cart_back_label" value="920214" /> |
| 11398 | ||
| 11399 | <feature name="slot" value="lorom" /> | |
| 10489 | 11400 | <dataarea name="rom" size="1048576"> |
| 10490 | 11401 | <rom name="shvc-h3-0.u1" size="1048576" crc="727f1593" sha1="0227b495cbf91d60269b9d04a080d4507be01d23" offset="0x000000" /> |
| 10491 | 11402 | </dataarea> |
| r21545 | r21546 | |
| 10508 | 11419 | <feature name="lockout" value="" /> |
| 10509 | 11420 | <feature name="cart_model" value="SNSP-006" /> |
| 10510 | 11421 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 11422 | ||
| 11423 | <feature name="slot" value="hirom" /> | |
| 10511 | 11424 | <dataarea name="rom" size="3145728"> |
| 10512 | 11425 | <rom name="spal-aejp-0 p0.u1" size="2097152" crc="77e0d3f4" sha1="cbac7e78fe7bd19c100b21083f2d6c4cb2d03002" offset="0x000000" /> |
| 10513 | 11426 | <rom name="spal-aejp-0 p3.u2" size="1048576" crc="9099ccfa" sha1="88d4dc0d5e99459db74f92c05a0566d9d16f8e40" offset="0x200000" /> |
| r21545 | r21546 | |
| 10530 | 11443 | <feature name="lockout" value="" /> |
| 10531 | 11444 | <feature name="cart_model" value="SNS-006" /> |
| 10532 | 11445 | <feature name="cart_back_label" value="" /> |
| 11446 | ||
| 11447 | <feature name="slot" value="hirom" /> | |
| 10533 | 11448 | <dataarea name="rom" size="3145728"> |
| 10534 | 11449 | <rom name="sns-aeje-0 p0.u1" size="2097152" crc="e9a101df" sha1="2da7df7a8e3db7393cc86ca3041a52f83720786f" offset="0x000000" /> |
| 10535 | 11450 | <rom name="sns-aeje-0 p3.u2" size="1048576" crc="69280f3f" sha1="f4aaf256fec33d5cb948158652e1d4b77de2183c" offset="0x200000" /> |
| r21545 | r21546 | |
| 10549 | 11464 | <feature name="lockout" value="" /> |
| 10550 | 11465 | <feature name="cart_model" value="SNSP-006" /> |
| 10551 | 11466 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 11467 | ||
| 11468 | <feature name="slot" value="hirom" /> | |
| 10552 | 11469 | <dataarea name="rom" size="3145728"> |
| 10553 | 11470 | <rom name="spal-a2ep-0.u1" size="3145728" crc="4f961f70" sha1="e4c06a47ebfb80cf8f3f0abfbc2487af76911114" offset="0x000000" /> |
| 10554 | 11471 | </dataarea> |
| r21545 | r21546 | |
| 10568 | 11485 | <feature name="lockout" value="" /> |
| 10569 | 11486 | <feature name="cart_model" value="SNS-006" /> |
| 10570 | 11487 | <feature name="cart_back_label" value="" /> |
| 11488 | ||
| 11489 | <feature name="slot" value="hirom" /> | |
| 10571 | 11490 | <dataarea name="rom" size="3145728"> |
| 10572 | 11491 | <rom name="sns-a2ee-0.u1" size="3145728" crc="393de197" sha1="e4446c9f9c541a0d698e00ecbbb553df165a34f6" offset="0x000000" /> |
| 10573 | 11492 | </dataarea> |
| r21545 | r21546 | |
| 10592 | 11511 | <feature name="battery" value="BATT CR2032" /> |
| 10593 | 11512 | <feature name="cart_model" value="SHVC-006" /> |
| 10594 | 11513 | <feature name="cart_back_label" value="920214" /> |
| 11514 | ||
| 11515 | <feature name="slot" value="lorom" /> | |
| 10595 | 11516 | <dataarea name="rom" size="1572864"> |
| 10596 | 11517 | <rom name="shvc-h5-0 p0.u1" size="1048576" crc="e0ee288b" sha1="2e616345fa740f93ef10da37a83622be8555ad6f" offset="0x000000" /> |
| 10597 | 11518 | <rom name="shvc-h5-0 p1.u2" size="524288" crc="9317c76e" sha1="d9e58ea5bf2093d235c35eb39dac2d21da70cb1a" offset="0x100000" /> |
| r21545 | r21546 | |
| 10615 | 11536 | <feature name="lockout" value="D411A 9427 BA" /> |
| 10616 | 11537 | <feature name="cart_model" value="SNS-006" /> |
| 10617 | 11538 | <feature name="cart_back_label" value="" /> |
| 11539 | ||
| 11540 | <feature name="slot" value="hirom" /> | |
| 10618 | 11541 | <dataarea name="rom" size="1048576"> |
| 10619 | 11542 | <rom name="sns-l7-0.u1" size="1048576" crc="62abaee1" sha1="44c845ef4e75ab1881f3ddc89976dff9d23c018f" offset="0x000000" /> |
| 10620 | 11543 | </dataarea> |
| r21545 | r21546 | |
| 10640 | 11563 | <feature name="battery" value="BATT CR2032" /> |
| 10641 | 11564 | <feature name="cart_model" value="SHVC-006" /> |
| 10642 | 11565 | <feature name="cart_back_label" value="920214" /> |
| 11566 | ||
| 11567 | <feature name="slot" value="hirom" /> | |
| 10643 | 11568 | <dataarea name="rom" size="1572864"> |
| 10644 | 11569 | <rom name="shvc-el-0 p0.u1" size="1048576" crc="1e089e03" sha1="99d38f5493db2d0dbcde88bdf0d017a6cd249523" offset="0x000000" /> |
| 10645 | 11570 | <rom name="shvc-el-0 p1.u2" size="524288" crc="d9411a7e" sha1="6cef84d1559c1f7a07463024195abf1b5d141340" offset="0x100000" /> |
| r21545 | r21546 | |
| 10664 | 11589 | <feature name="battery" value="BATT CR2032" /> |
| 10665 | 11590 | <feature name="cart_model" value="SNSP-006" /> |
| 10666 | 11591 | <feature name="cart_back_label" value="SNSP-NOE, SNSP-UKV" /> |
| 11592 | ||
| 11593 | <feature name="slot" value="lorom" /> | |
| 10667 | 11594 | <dataarea name="rom" size="1048576"> |
| 10668 | 11595 | <rom name="spal-ex-0.u1" size="1048576" crc="a2b15ac4" sha1="29cf0f3068e37b37dc6f032fc3c3e16730430a08" offset="0x000000" /> |
| 10669 | 11596 | </dataarea> |
| r21545 | r21546 | |
| 10685 | 11612 | <feature name="lockout" value="" /> |
| 10686 | 11613 | <feature name="cart_model" value="SNS-006" /> |
| 10687 | 11614 | <feature name="cart_back_label" value="D411A 9414 CB" /> |
| 11615 | ||
| 11616 | <feature name="slot" value="lorom" /> | |
| 10688 | 11617 | <dataarea name="rom" size="2097152"> |
| 10689 | 11618 | <rom name="sns-ev-0.u1" size="2097152" crc="8606d69b" sha1="e954d294c6b5ac5be30099c13e75cc290909964a" offset="0x000000" /> |
| 10690 | 11619 | </dataarea> |
| r21545 | r21546 | |
| 10707 | 11636 | <feature name="battery" value="BATT CR2032" /> |
| 10708 | 11637 | <feature name="cart_model" value="SNS-006" /> |
| 10709 | 11638 | <feature name="cart_back_label" value="" /> |
| 11639 | ||
| 11640 | <feature name="slot" value="lorom" /> | |
| 10710 | 11641 | <dataarea name="rom" size="2097152"> |
| 10711 | 11642 | <rom name="sns-aswe-0.u1" size="2097152" crc="c2cff05a" sha1="e42df8576e7b3203b506accc128ec25497a77686" offset="0x000000" /> |
| 10712 | 11643 | </dataarea> |
| r21545 | r21546 | |
| 10733 | 11664 | <feature name="battery" value="BATT CR2032" /> |
| 10734 | 11665 | <feature name="cart_model" value="SHVC-006" /> |
| 10735 | 11666 | <feature name="cart_back_label" value="920214" /> |
| 11667 | ||
| 11668 | <feature name="slot" value="lorom" /> | |
| 10736 | 11669 | <dataarea name="rom" size="1048576"> |
| 10737 | 11670 | <rom name="shvc-es-0.u1" size="1048576" crc="896b37fb" sha1="512ee9678f6b26b2fb42b0a4a02ec3643eb3d7ce" offset="0x000000" /> |
| 10738 | 11671 | </dataarea> |
| r21545 | r21546 | |
| 10759 | 11692 | <feature name="battery" value="BATT CR2032" /> |
| 10760 | 11693 | <feature name="cart_model" value="SHVC-006" /> |
| 10761 | 11694 | <feature name="cart_back_label" value="920214" /> |
| 11695 | ||
| 11696 | <feature name="slot" value="lorom" /> | |
| 10762 | 11697 | <dataarea name="rom" size="2621440"> |
| 10763 | 11698 | <rom name="shvc-anij-0 p0.u1" size="2097152" crc="7d8ab0fb" sha1="59b471693527fea4cc98f3d4bde09d553039799b" offset="0x000000" /> |
| 10764 | 11699 | <rom name="shvc-anij-0 p3.u2" size="524288" crc="d7aba1a0" sha1="45f8ccfbf1ca0bb83f4b57325e1510e92fc87b99" offset="0x200000" /> |
| r21545 | r21546 | |
| 10784 | 11719 | <feature name="battery" value="BATT CR2032" /> |
| 10785 | 11720 | <feature name="cart_model" value="SNS-006" /> |
| 10786 | 11721 | <feature name="cart_back_label" value="" /> |
| 11722 | ||
| 11723 | <feature name="slot" value="lorom" /> | |
| 10787 | 11724 | <dataarea name="rom" size="2097152"> |
| 10788 | 11725 | <rom name="sns-9x-0.u1" size="2097152" crc="e6ede101" sha1="adfcc5ace741575c757a57073a536a82f8e273df" offset="0x000000" /> |
| 10789 | 11726 | </dataarea> |
| r21545 | r21546 | |
| 10809 | 11746 | <feature name="battery" value="BATT CR2032" /> |
| 10810 | 11747 | <feature name="cart_model" value="SHVC-006" /> |
| 10811 | 11748 | <feature name="cart_back_label" value="901121" /> |
| 11749 | ||
| 11750 | <feature name="slot" value="lorom" /> | |
| 10812 | 11751 | <dataarea name="rom" size="1048576"> |
| 10813 | 11752 | <rom name="shvc-eh-0.u1" size="1048576" crc="5cb9bc35" sha1="745ebf8164ca7be58829c6130c0e06f330cd0748" offset="0x000000" /> |
| 10814 | 11753 | </dataarea> |
| r21545 | r21546 | |
| 10817 | 11756 | </part> |
| 10818 | 11757 | </software> |
| 10819 | 11758 | |
| 10820 | <software name="exhaust2"> | |
| 11759 | <software name="exhaust2" cloneof="f1roc2"> | |
| 10821 | 11760 | <description>Exhaust Heat II - F1 Driver e no Kiseki (Jpn)</description> |
| 10822 | 11761 | <year>1993</year> |
| 10823 | 11762 | <publisher>Seta</publisher> |
| r21545 | r21546 | |
| 10835 | 11774 | <feature name="battery" value="BATT CR2032" /> |
| 10836 | 11775 | <feature name="cart_model" value="SHVC-006" /> |
| 10837 | 11776 | <feature name="cart_back_label" value="920214" /> |
| 11777 | ||
| 11778 | <feature name="slot" value="lorom_st010" /> | |
| 10838 | 11779 | <dataarea name="rom" size="1048576"> |
| 10839 | 11780 | <rom name="shvc-e2-0.u1" size="1048576" crc="e2c8e535" sha1="3600f81d5a7e2ec41f362cc22a16a58ce2612048" offset="0x000000" /> |
| 10840 | 11781 | </dataarea> |
| 11782 | <dataarea name="addon" size="69632"> | |
| 11783 | <rom name="st010.u2" size="69632" crc="aa11ee2d" sha1="cc1984e989cb94e3dcbb5f99e085b5414e18a017" offset="0x000000" /> | |
| 11784 | </dataarea> | |
| 10841 | 11785 | </part> |
| 10842 | 11786 | </software> |
| 10843 | 11787 | <!-- wip-f --> |
| r21545 | r21546 | |
| 10857 | 11801 | <feature name="battery" value="BATT CR2032" /> |
| 10858 | 11802 | <feature name="cart_model" value="SNS-006" /> |
| 10859 | 11803 | <feature name="cart_back_label" value="" /> |
| 11804 | ||
| 11805 | <feature name="slot" value="lorom" /> | |
| 10860 | 11806 | <dataarea name="rom" size="1048576"> |
| 10861 | 11807 | <rom name="sns-6p-0.u1" size="1048576" crc="b3da1b1d" sha1="199d607f2abacb10f229f173616e414f473c4778" offset="0x000000" /> |
| 10862 | 11808 | </dataarea> |
| r21545 | r21546 | |
| 10879 | 11825 | <feature name="lockout" value="" /> |
| 10880 | 11826 | <feature name="cart_model" value="SHVC-006" /> |
| 10881 | 11827 | <feature name="cart_back_label" value="920214" /> |
| 11828 | ||
| 11829 | <feature name="slot" value="lorom" /> | |
| 10882 | 11830 | <dataarea name="rom" size="1048576"> |
| 10883 | 11831 | <rom name="shvc-eg-0.u1" size="1048576" crc="f0202e26" sha1="40b6dd3958edc0e39c9c40ebee7675419b9b2fa6" offset="0x000000" /> |
| 10884 | 11832 | </dataarea> |
| r21545 | r21546 | |
| 10898 | 11846 | <feature name="lockout" value="D411A 9318 AA" /> |
| 10899 | 11847 | <feature name="cart_model" value="SHVC-006" /> |
| 10900 | 11848 | <feature name="cart_back_label" value="920214" /> |
| 11849 | ||
| 11850 | <feature name="slot" value="lorom" /> | |
| 10901 | 11851 | <dataarea name="rom" size="1048576"> |
| 10902 | 11852 | <rom name="sns-d8-0.u1" size="1048576" crc="1b53c15a" sha1="5c49fbab775ca3ebc2a27fe55bcdf043499fe24f" offset="0x000000" /> |
| 10903 | 11853 | </dataarea> |
| r21545 | r21546 | |
| 10917 | 11867 | <feature name="lockout" value="" /> |
| 10918 | 11868 | <feature name="cart_model" value="SNS-006" /> |
| 10919 | 11869 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 11870 | ||
| 11871 | <feature name="slot" value="lorom" /> | |
| 10920 | 11872 | <dataarea name="rom" size="524288"> |
| 10921 | 11873 | <rom name="sns-fn-0.u1" size="524288" crc="04c716bb" sha1="3f20c2c8749ccee3a53732b41ae026bf3aaa2158" offset="0x000000" /> |
| 10922 | 11874 | </dataarea> |
| r21545 | r21546 | |
| 10938 | 11890 | <feature name="lockout" value="D411A 9302 AA" /> |
| 10939 | 11891 | <feature name="cart_model" value="SNS-006" /> |
| 10940 | 11892 | <feature name="cart_back_label" value="" /> |
| 11893 | ||
| 11894 | <feature name="slot" value="lorom" /> | |
| 10941 | 11895 | <dataarea name="rom" size="1572864"> |
| 10942 | 11896 | <rom name="sns-gn-0 p0.u1" size="1048576" crc="67d3348e" sha1="a80db51fcaa999f10b7222400a885526f5ea1f5e" offset="0x000000" /> |
| 10943 | 11897 | <rom name="sns-gn-0 p1.u2" size="524288" crc="fdffe0b7" sha1="55d24a55557781ff785557e5051a7f10571e5d36" offset="0x100000" /> |
| r21545 | r21546 | |
| 10959 | 11913 | <feature name="lockout" value="" /> |
| 10960 | 11914 | <feature name="cart_model" value="SNSP-006" /> |
| 10961 | 11915 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 11916 | ||
| 11917 | <feature name="slot" value="hirom" /> | |
| 10962 | 11918 | <dataarea name="rom" size="2621440"> |
| 10963 | 11919 | <rom name="spal-dj-0 p0.u1" size="2097152" crc="b2c8e1ba" sha1="0d44e6e89791c68125aff4c33218b0c4ca5845fd" offset="0x000000" /> |
| 10964 | 11920 | <rom name="spal-dj-0 p3.u2" size="524288" crc="b6d40fc2" sha1="de279f36d46e50fe702f36f63db1e6a2255ea3be" offset="0x200000" /> |
| r21545 | r21546 | |
| 10981 | 11937 | <feature name="lockout" value="" /> |
| 10982 | 11938 | <feature name="cart_model" value="SNS-006" /> |
| 10983 | 11939 | <feature name="cart_back_label" value="" /> |
| 11940 | ||
| 11941 | <feature name="slot" value="hirom" /> | |
| 10984 | 11942 | <dataarea name="rom" size="2621440"> |
| 10985 | 11943 | <rom name="sns-dj-0 p0.u1" size="2097152" crc="36555bec" sha1="7e8badd97d0eb09add2149685de5c8b16f36453d" offset="0x000000" /> |
| 10986 | 11944 | <rom name="sns-dj-0 p3.u2" size="524288" crc="b6d40fc2" sha1="de279f36d46e50fe702f36f63db1e6a2255ea3be" offset="0x200000" /> |
| r21545 | r21546 | |
| 11001 | 11959 | <feature name="lockout" value="" /> |
| 11002 | 11960 | <feature name="cart_model" value="SNSP-006" /> |
| 11003 | 11961 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 11962 | ||
| 11963 | <feature name="slot" value="hirom" /> | |
| 11004 | 11964 | <dataarea name="rom" size="3145728"> |
| 11005 | 11965 | <rom name="spal-3r-0.u1" size="3145728" crc="a7f8d832" sha1="3af0769ce1aa7ba964c91a472e3687d1656df450" offset="0x000000" /> |
| 11006 | 11966 | </dataarea> |
| r21545 | r21546 | |
| 11021 | 11981 | <feature name="lockout" value="" /> |
| 11022 | 11982 | <feature name="cart_model" value="SNS-006" /> |
| 11023 | 11983 | <feature name="cart_back_label" value="" /> |
| 11984 | ||
| 11985 | <feature name="slot" value="hirom" /> | |
| 11024 | 11986 | <dataarea name="rom" size="4194304"> |
| 11025 | 11987 | <rom name="sns-3r-0.u1" size="4194304" crc="93935bee" sha1="8113ef06dc16bf570463636094df30c9593b2db9" offset="0x000000" /> |
| 11026 | 11988 | </dataarea> |
| r21545 | r21546 | |
| 11042 | 12004 | <feature name="battery" value="BATT CR2032" /> |
| 11043 | 12005 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 11044 | 12006 | <feature name="cart_back_label" value="820661" /> <!-- confirmed --> |
| 12007 | ||
| 12008 | <feature name="slot" value="lorom" /> | |
| 11045 | 12009 | <dataarea name="rom" size="2097152"> |
| 11046 | 12010 | <rom name="fifa 97 pal.u1" size="2097152" crc="470eabe5" sha1="685cf7781356a0e354b3dd10fabba898885ba81b" offset="0x000000" /> |
| 11047 | 12011 | </dataarea> |
| r21545 | r21546 | |
| 11065 | 12029 | <feature name="battery" value="BATT CR2032" /> |
| 11066 | 12030 | <feature name="cart_model" value="SNSP-005(-01)" /> <!-- probably a typo, this is a controller serial --> |
| 11067 | 12031 | <feature name="cart_back_label" value="" /> |
| 12032 | ||
| 12033 | <feature name="slot" value="lorom" /> | |
| 11068 | 12034 | <dataarea name="rom" size="2097152"> |
| 11069 | 12035 | <rom name="fifa 98.b3 pal.u1" size="2097152" crc="5e4f4856" sha1="a9287c363595e81a7fb83e667651b0fb70f4e607" offset="0x000000" /> |
| 11070 | 12036 | </dataarea> |
| r21545 | r21546 | |
| 11088 | 12054 | <feature name="battery" value="BATT CR2032" /> |
| 11089 | 12055 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 11090 | 12056 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 12057 | ||
| 12058 | <feature name="slot" value="lorom" /> | |
| 11091 | 12059 | <dataarea name="rom" size="2097152"> |
| 11092 | 12060 | <rom name="spal-a6sp-0.u1" size="2097152" crc="e8177aa6" sha1="3ab955f16f1eac8e1de2d8f49fe2eadd92d1dada" offset="0x000000" /> |
| 11093 | 12061 | </dataarea> |
| r21545 | r21546 | |
| 11113 | 12081 | <feature name="cart_revision" value="A" /> |
| 11114 | 12082 | <feature name="cart_model" value="SNS-006" /> |
| 11115 | 12083 | <feature name="cart_back_label" value="" /> |
| 12084 | ||
| 12085 | <feature name="slot" value="hirom" /> | |
| 11116 | 12086 | <dataarea name="rom" size="2621440"> |
| 11117 | 12087 | <rom name="sns-yh-1 p0.u1" size="2097152" crc="b35a9548" sha1="632b379a1223ca3bdd19f2cac40fbc5c4909028c" offset="0x000000" /> |
| 11118 | 12088 | <rom name="sns-yh-1 p3.u2" size="524288" crc="5deb5992" sha1="b42f96897ba03b7b1d87058ad605c47578321336" offset="0x200000" /> |
| r21545 | r21546 | |
| 11136 | 12106 | <feature name="battery" value="BATT CR2032" /> |
| 11137 | 12107 | <feature name="cart_model" value="SNS-006" /> |
| 11138 | 12108 | <feature name="cart_back_label" value="" /> |
| 12109 | ||
| 12110 | <feature name="slot" value="lorom" /> | |
| 11139 | 12111 | <dataarea name="rom" size="524288"> |
| 11140 | 12112 | <rom name="sns-mq-0.u1" size="524288" crc="6b19a2c6" sha1="787c535aaca7b57f6b85fc02ceef106f7fe5ea59" offset="0x000000" /> |
| 11141 | 12113 | </dataarea> |
| r21545 | r21546 | |
| 11160 | 12132 | <feature name="battery" value="BATT CR2032" /> |
| 11161 | 12133 | <feature name="cart_model" value="SNS-006" /> |
| 11162 | 12134 | <feature name="cart_back_label" value="SNS-USA" /> |
| 12135 | ||
| 12136 | <feature name="slot" value="lorom" /> | |
| 11163 | 12137 | <dataarea name="rom" size="1048576"> |
| 11164 | 12138 | <rom name="sns-f4-0.u1" size="1048576" crc="65d0a825" sha1="2fa447e3e010ce8ba5b4e746f6609aa0e324d947" offset="0x000000" /> |
| 11165 | 12139 | </dataarea> |
| r21545 | r21546 | |
| 11185 | 12159 | <feature name="cart_revision" value="A" /> |
| 11186 | 12160 | <feature name="cart_model" value="SNS-006" /> |
| 11187 | 12161 | <feature name="cart_back_label" value="901121" /> |
| 12162 | ||
| 12163 | <feature name="slot" value="lorom" /> | |
| 11188 | 12164 | <dataarea name="rom" size="1048576"> |
| 11189 | 12165 | <rom name="sns-f4-1.u1" size="1048576" crc="23084fcd" sha1="41a74eb369a7a91815529ef99ab1b20e2bdf3e26" offset="0x000000" /> |
| 11190 | 12166 | </dataarea> |
| r21545 | r21546 | |
| 11210 | 12186 | <feature name="battery" value="BATT CR2032" /> |
| 11211 | 12187 | <feature name="cart_model" value="SNS-006" /> |
| 11212 | 12188 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 12189 | ||
| 12190 | <feature name="slot" value="hirom" /> | |
| 11213 | 12191 | <dataarea name="rom" size="3145728"> |
| 11214 | 12192 | <rom name="sns-f6-0 p0.u1" size="2097152" crc="67cd4c51" sha1="83d8158d8a0fe5f83d4b4d3e89fbab35083072a3" offset="0x000000" /> |
| 11215 | 12193 | <rom name="sns-f6-0 p3.u2" size="1048576" crc="2ce51469" sha1="d54d0e62323bd99083a9930c46bfe2ae0648c598" offset="0x200000" /> |
| r21545 | r21546 | |
| 11236 | 12214 | <feature name="battery" value="BATT CR2032" /> |
| 11237 | 12215 | <feature name="cart_model" value="SHVC-006" /> |
| 11238 | 12216 | <feature name="cart_back_label" value="901121" /> |
| 12217 | ||
| 12218 | <feature name="slot" value="lorom" /> | |
| 11239 | 12219 | <dataarea name="rom" size="1048576"> |
| 11240 | 12220 | <rom name="shvc-f4-0.u1" size="1048576" crc="21027c5d" sha1="7502ed13fe969b294aab9ea3600dd8341713cd03" offset="0x000000" /> |
| 11241 | 12221 | </dataarea> |
| r21545 | r21546 | |
| 11262 | 12242 | <feature name="cart_revision" value="A" /> |
| 11263 | 12243 | <feature name="cart_model" value="SHVC-006" /> |
| 11264 | 12244 | <feature name="cart_back_label" value="901121" /> |
| 12245 | ||
| 12246 | <feature name="slot" value="lorom" /> | |
| 11265 | 12247 | <dataarea name="rom" size="1048576"> |
| 11266 | 12248 | <rom name="shvc-f4-1.u1" size="1048576" crc="caa15e97" sha1="eac14578b3465ffce874119005f9b244e8565a79" offset="0x000000" /> |
| 11267 | 12249 | </dataarea> |
| r21545 | r21546 | |
| 11288 | 12270 | <feature name="battery" value="BATT CR2032" /> |
| 11289 | 12271 | <feature name="cart_model" value="SHVC-006" /> |
| 11290 | 12272 | <feature name="cart_back_label" value="920214" /> |
| 12273 | ||
| 12274 | <feature name="slot" value="lorom" /> | |
| 11291 | 12275 | <dataarea name="rom" size="1048576"> |
| 11292 | 12276 | <rom name="shvc-fe-0.u1" size="1048576" crc="6cda700c" sha1="a2d04c5f3948ca930d2c0bc4e6f34d62f06a9fa5" offset="0x000000" /> |
| 11293 | 12277 | </dataarea> |
| r21545 | r21546 | |
| 11313 | 12297 | <feature name="battery" value="BATT CR2032" /> |
| 11314 | 12298 | <feature name="cart_model" value="SHVC-006" /> |
| 11315 | 12299 | <feature name="cart_back_label" value="920214" /> |
| 12300 | ||
| 12301 | <feature name="slot" value="hirom" /> | |
| 11316 | 12302 | <dataarea name="rom" size="2097152"> |
| 11317 | 12303 | <rom name="shvc-f5-0.u1" size="2097152" crc="c1bc267d" sha1="e937b54fff99838e2e853697e4f559359aa91fd6" offset="0x000000" /> |
| 11318 | 12304 | </dataarea> |
| r21545 | r21546 | |
| 11340 | 12326 | <feature name="battery" value="BATT CR2032" /> |
| 11341 | 12327 | <feature name="cart_model" value="SHVC-006" /> |
| 11342 | 12328 | <feature name="cart_back_label" value="920214" /> |
| 12329 | ||
| 12330 | <feature name="slot" value="hirom" /> | |
| 11343 | 12331 | <dataarea name="rom" size="2097152"> |
| 11344 | 12332 | <rom name="shvc-f5-0 p0.u1" size="1048576" crc="f6ccde10" sha1="a8a33c75cca3190de0b7f19aa1fcf089c8d1021a" offset="0x000000" /> |
| 11345 | 12333 | <rom name="shvc-f5-0 p1.u2" size="1048576" crc="c6177c82" sha1="fdbd8f2187dd68d3a5a03c36277cd007c15bb7b9" offset="0x100000" /> |
| r21545 | r21546 | |
| 11367 | 12355 | <feature name="battery" value="BATT CR2032" /> |
| 11368 | 12356 | <feature name="cart_model" value="SHVC-006" /> |
| 11369 | 12357 | <feature name="cart_back_label" value="920214" /> |
| 12358 | ||
| 12359 | <feature name="slot" value="hirom" /> | |
| 11370 | 12360 | <dataarea name="rom" size="3145728"> |
| 11371 | 12361 | <rom name="shvc-f6-0 p0.u1" size="2097152" crc="bafa8ed6" sha1="3a1e1b38c3bac784f2941a07ce15cee744c5a245" offset="0x000000" /> |
| 11372 | 12362 | <rom name="shvc-f6-0 p3.u2" size="1048576" crc="38a398a2" sha1="b28c6b17b2b027831b70a3dcc0156e84209da2d0" offset="0x200000" /> |
| r21545 | r21546 | |
| 11396 | 12386 | <feature name="battery" value="BATT CR2032" /> |
| 11397 | 12387 | <feature name="cart_model" value="SHVC-006" /> |
| 11398 | 12388 | <feature name="cart_back_label" value="920214" /> |
| 12389 | ||
| 12390 | <feature name="slot" value="hirom" /> | |
| 11399 | 12391 | <dataarea name="rom" size="3145728 "> |
| 11400 | 12392 | <rom name="shvc-f6-0 p1.u1" size="1048576" crc="bfc35e36" sha1="579cca6fd6c0b4f8d3489ba115d6bd51a745a16a" offset="0x000000" /> |
| 11401 | 12393 | <rom name="shvc-f6-0 p2.u2" size="1048576" crc="82736bb1" sha1="1931269554c4aebbd4d250c881cd15906347062d" offset="0x100000" /> |
| r21545 | r21546 | |
| 11423 | 12415 | <feature name="battery" value="BATT CR2032" /> |
| 11424 | 12416 | <feature name="cart_model" value="SHVC-006" /> |
| 11425 | 12417 | <feature name="cart_back_label" value="920214" /> |
| 12418 | ||
| 12419 | <feature name="slot" value="lorom" /> | |
| 11426 | 12420 | <dataarea name="rom" size="524288"> |
| 11427 | 12421 | <rom name="shvc-mq-0.u1" size="524288" crc="1da17f0c" sha1="ffc05a65ef43fa5c56c9930af1af527509c1ae05" offset="0x000000" /> |
| 11428 | 12422 | </dataarea> |
| r21545 | r21546 | |
| 11446 | 12440 | <feature name="lockout" value="" /> |
| 11447 | 12441 | <feature name="cart_model" value="SHVC-006" /> |
| 11448 | 12442 | <feature name="cart_back_label" value="901121" /> |
| 12443 | ||
| 12444 | <feature name="slot" value="lorom" /> | |
| 11449 | 12445 | <dataarea name="rom" size="1048576"> |
| 11450 | 12446 | <rom name="shvc-ft-0.u1" size="1048576" crc="a425a202" sha1="8ab57c0aef69a86be74a8c74399313a5317b1250" offset="0x000000" /> |
| 11451 | 12447 | </dataarea> |
| r21545 | r21546 | |
| 11465 | 12461 | <feature name="lockout" value="D411 9129 C" /> |
| 11466 | 12462 | <feature name="cart_model" value="SNS-006" /> |
| 11467 | 12463 | <feature name="cart_back_label" value="" /> |
| 12464 | ||
| 12465 | <feature name="slot" value="lorom" /> | |
| 11468 | 12466 | <dataarea name="rom" size="1048576"> |
| 11469 | 12467 | <rom name="sns-ft-0.u1" size="1048576" crc="4cab21db" sha1="6ca2ac5916b3201d90f88612d28006cffedde03d" offset="0x000000" /> |
| 11470 | 12468 | </dataarea> |
| r21545 | r21546 | |
| 11488 | 12486 | <feature name="lockout" value="D411A (B)" /> |
| 11489 | 12487 | <feature name="cart_model" value="SHVC-006" /> |
| 11490 | 12488 | <feature name="cart_back_label" value="920214" /> |
| 12489 | ||
| 12490 | <feature name="slot" value="lorom" /> | |
| 11491 | 12491 | <dataarea name="rom" size="1310720"> |
| 11492 | 12492 | <rom name="shvc-f2-0 p0.u1" size="1048576" crc="48fe51ad" sha1="77330d9464653362d85b115b5736a1c44630cd2b" offset="0x000000" /> |
| 11493 | 12493 | <rom name="shvc-f2-0 p1.u2" size="262144" crc="542dbb6e" sha1="a992e01627bec7abbd6ef5dedd22a8a7eba6ae1e" offset="0x100000" /> |
| r21545 | r21546 | |
| 11510 | 12510 | <feature name="lockout" value="D411A 9328 BA" /> |
| 11511 | 12511 | <feature name="cart_model" value="SNS-006" /> |
| 11512 | 12512 | <feature name="cart_back_label" value="" /> |
| 12513 | ||
| 12514 | <feature name="slot" value="lorom" /> | |
| 11513 | 12515 | <dataarea name="rom" size="1310720"> |
| 11514 | 12516 | <rom name="sns-f2-0 p0.u1" size="1048576" crc="515f5190" sha1="14db9b4b2e9a2052a1da6f61c2e32d3f9fd64946" offset="0x000000" /> |
| 11515 | 12517 | <rom name="sns-f2-0 p1.u2" size="262144" crc="ed0637ca" sha1="a55d1a73718f6d225264981624def1952e080fe7" offset="0x100000" /> |
| r21545 | r21546 | |
| 11529 | 12531 | <feature name="lockout" value="" /> |
| 11530 | 12532 | <feature name="cart_model" value="SNSP-006" /> |
| 11531 | 12533 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 12534 | ||
| 12535 | <feature name="slot" value="hirom" /> | |
| 11532 | 12536 | <dataarea name="rom" size="3145728"> |
| 11533 | 12537 | <rom name="spal-afzp-0.u1" size="3145728" crc="aa58a166" sha1="30cc3abb60f6037918017725139f4a3074800b64" offset="0x000000" /> |
| 11534 | 12538 | </dataarea> |
| r21545 | r21546 | |
| 11548 | 12552 | <feature name="lockout" value="" /> |
| 11549 | 12553 | <feature name="cart_model" value="SNS-006" /> |
| 11550 | 12554 | <feature name="cart_back_label" value="" /> |
| 12555 | ||
| 12556 | <feature name="slot" value="hirom" /> | |
| 11551 | 12557 | <dataarea name="rom" size="3145728"> |
| 11552 | 12558 | <rom name="sns-afze-0.u1" size="3145728" crc="a916e708" sha1="09d542fbb06dcafec26602bdc626bcdaf56b23cb" offset="0x000000" /> |
| 11553 | 12559 | </dataarea> |
| r21545 | r21546 | |
| 11572 | 12578 | <feature name="battery" value="BATT CR2032" /> |
| 11573 | 12579 | <feature name="cart_model" value="SHVC-006" /> |
| 11574 | 12580 | <feature name="cart_back_label" value="920214" /> |
| 12581 | ||
| 12582 | <feature name="slot" value="lorom" /> | |
| 11575 | 12583 | <dataarea name="rom" size="3145728"> |
| 11576 | 12584 | <rom name="shvc-em-0 p0.u1" size="2097152" crc="ca6a796c" sha1="0f0b04a704ef3f307ff6803b291bf9ad1f348303" offset="0x000000" /> |
| 11577 | 12585 | <rom name="shvc-em-0 p1.u2" size="1048576" crc="02e0390c" sha1="c3cc7e0d9c963737d070f58b65094872973dc75d" offset="0x200000" /> <!-- should be p3 instead of p1 --> |
| r21545 | r21546 | |
| 11598 | 12606 | <feature name="battery" value="BATT CR2032" /> |
| 11599 | 12607 | <feature name="cart_model" value="SHVC-006" /> |
| 11600 | 12608 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 12609 | ||
| 12610 | <feature name="slot" value="hirom" /> | |
| 11601 | 12611 | <dataarea name="rom" size="4194304"> |
| 11602 | 12612 | <rom name="shvc-a32j-0.u1" size="4194304" crc="dc0d8cf9" sha1="90f0bdeaf0151899f96281258fcb30899fbd0d44" offset="0x000000" /> |
| 11603 | 12613 | </dataarea> |
| r21545 | r21546 | |
| 11621 | 12631 | <feature name="lockout" value="" /> |
| 11622 | 12632 | <feature name="cart_model" value="SHVC-006" /> |
| 11623 | 12633 | <feature name="cart_back_label" value="920214" /> |
| 12634 | ||
| 12635 | <feature name="slot" value="hirom" /> | |
| 11624 | 12636 | <dataarea name="rom" size="2097152"> |
| 11625 | 12637 | <rom name="shvc-j4-0.u1" size="2097152" crc="ec8e8a05" sha1="542a7d68a2ee5cec7fcfc922eaf327a6cadb50ea" offset="0x000000" /> |
| 11626 | 12638 | </dataarea> |
| r21545 | r21546 | |
| 11639 | 12651 | <feature name="lockout" value="" /> |
| 11640 | 12652 | <feature name="cart_model" value="SNSP-006" /> |
| 11641 | 12653 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 12654 | ||
| 12655 | <feature name="slot" value="lorom" /> | |
| 11642 | 12656 | <dataarea name="rom" size="524288"> |
| 11643 | 12657 | <rom name="spal-fk-0.u1" size="524288" crc="5685773a" sha1="e6ca5b727d83c31a5aab8ef31af272dcfd4bbbb8" offset="0x000000" /> |
| 11644 | 12658 | </dataarea> |
| r21545 | r21546 | |
| 11658 | 12672 | <feature name="lockout" value="D411A 9324 BA" /> |
| 11659 | 12673 | <feature name="cart_model" value="SNS-006" /> |
| 11660 | 12674 | <feature name="cart_back_label" value="" /> |
| 12675 | ||
| 12676 | <feature name="slot" value="lorom" /> | |
| 11661 | 12677 | <dataarea name="rom" size="524288"> |
| 11662 | 12678 | <rom name="sns-fk-0.u1" size="524288" crc="4f0a1e2a" sha1="02ae2e06e34af12bd9b1f000bb03af79b1e38269" offset="0x000000" /> |
| 11663 | 12679 | </dataarea> |
| r21545 | r21546 | |
| 11678 | 12694 | <feature name="lockout" value="" /> |
| 11679 | 12695 | <feature name="cart_model" value="SNSP-006" /> |
| 11680 | 12696 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 12697 | ||
| 12698 | <feature name="slot" value="hirom" /> | |
| 11681 | 12699 | <dataarea name="rom" size="2097152"> |
| 11682 | 12700 | <rom name="spal-5f-0 p0.u1" size="1048576" crc="a85098d7" sha1="c3ce34232c6eafb691ba93624ea02c156fce07b6" offset="0x000000" /> |
| 11683 | 12701 | <rom name="spal-5f-0 p1.u2" size="1048576" crc="44b19c8a" sha1="6b5ef18bfd2fe77b24a6746dfba2bac7ab4e2a2b" offset="0x100000" /> |
| r21545 | r21546 | |
| 11701 | 12719 | <feature name="lockout" value="" /> |
| 11702 | 12720 | <feature name="cart_model" value="SHVC-006" /> |
| 11703 | 12721 | <feature name="cart_back_label" value="920214" /> |
| 12722 | ||
| 12723 | <feature name="slot" value="hirom" /> | |
| 11704 | 12724 | <dataarea name="rom" size="2097152"> |
| 11705 | 12725 | <rom name="shvc-lq-0 p0.u1" size="1048576" crc="0b0c1bb8" sha1="e962603adcc425ee10629e62bd0f11f0c73f7c12" offset="0x000000" /> |
| 11706 | 12726 | <rom name="shvc-lq-0 p1.u2" size="1048576" crc="f900c88f" sha1="ad33b89c94542e9e9cf1f8c47e96ee277fd3ede5" offset="0x100000" /> |
| r21545 | r21546 | |
| 11721 | 12741 | <feature name="lockout" value="" /> |
| 11722 | 12742 | <feature name="cart_model" value="SNS-006" /> |
| 11723 | 12743 | <feature name="cart_back_label" value="" /> |
| 12744 | ||
| 12745 | <feature name="slot" value="hirom" /> | |
| 11724 | 12746 | <dataarea name="rom" size="2097152"> |
| 11725 | 12747 | <rom name="sns-5f-0.u1" size="2097152" crc="1e6aceba" sha1="35228167b8ba0037d3584fc9986822eb6e1a2180" offset="0x000000" /> |
| 11726 | 12748 | </dataarea> |
| r21545 | r21546 | |
| 11741 | 12763 | <feature name="lockout" value="D411A 9440 BA" /> |
| 11742 | 12764 | <feature name="cart_model" value="SNS-006" /> |
| 11743 | 12765 | <feature name="cart_back_label" value="" /> |
| 12766 | ||
| 12767 | <feature name="slot" value="lorom" /> | |
| 11744 | 12768 | <dataarea name="rom" size="2097152"> |
| 11745 | 12769 | <rom name="sns-afne-0.u1" size="2097152" crc="3e7b51e0" sha1="e52ffb054d849d90151308b3ebdbb7108d9a4de7" offset="0x000000" /> |
| 11746 | 12770 | </dataarea> |
| r21545 | r21546 | |
| 11760 | 12784 | <feature name="lockout" value="D411A 9418 B" /> |
| 11761 | 12785 | <feature name="cart_model" value="SNS-006" /> |
| 11762 | 12786 | <feature name="cart_back_label" value="" /> |
| 12787 | ||
| 12788 | <feature name="slot" value="lorom" /> | |
| 11763 | 12789 | <dataarea name="rom" size="1048576"> |
| 11764 | 12790 | <rom name="sns-9f-0.u1" size="1048576" crc="594f5cc6" sha1="1083161ad7474b9be1152240247d569b405bea25" offset="0x000000" /> |
| 11765 | 12791 | </dataarea> |
| r21545 | r21546 | |
| 11782 | 12808 | <feature name="lockout" value="" /> |
| 11783 | 12809 | <feature name="cart_model" value="SHVC-006" /> |
| 11784 | 12810 | <feature name="cart_back_label" value="920214" /> |
| 12811 | ||
| 12812 | <feature name="slot" value="lorom" /> | |
| 11785 | 12813 | <dataarea name="rom" size="1572864"> |
| 11786 | 12814 | <rom name="shvc-ux-0 p0.u1" size="1048576" crc="977c32ab" sha1="125d543847b1f4aec60f3eb7cb6e3e0bfb603f22" offset="0x000000" /> |
| 11787 | 12815 | <rom name="shvc-ux-0 p1.u2" size="524288" crc="c744012b" sha1="8ec79209367eec828213ae93c426dcc2073acfbd" offset="0x100000" /> |
| r21545 | r21546 | |
| 11805 | 12833 | <feature name="lockout" value="" /> |
| 11806 | 12834 | <feature name="cart_model" value="SHVC-006" /> |
| 11807 | 12835 | <feature name="cart_back_label" value="920214" /> |
| 12836 | ||
| 12837 | <feature name="slot" value="hirom" /> | |
| 11808 | 12838 | <dataarea name="rom" size="3145728"> |
| 11809 | 12839 | <rom name="shvc-aslp-0 p0.u1" size="2097152" crc="6294a796" sha1="b89ab231c9bfe4a66492ebde97138757c455ce03" offset="0x000000" /> |
| 11810 | 12840 | <rom name="shvc-aslp-0 p3.u2" size="1048576" crc="b3b9053e" sha1="2861aa6d20761c8f739e9f431bdcd312c73cc2d6" offset="0x200000" /> |
| r21545 | r21546 | |
| 11830 | 12860 | <feature name="battery" value="BATT CR2032" /> |
| 11831 | 12861 | <feature name="cart_model" value="SHVC-006" /> |
| 11832 | 12862 | <feature name="cart_back_label" value="920214" /> |
| 12863 | ||
| 12864 | <feature name="slot" value="hirom" /> | |
| 11833 | 12865 | <dataarea name="rom" size="3145728"> |
| 11834 | 12866 | <rom name="shvc-agcj-0 p0.u1" size="2097152" crc="6c48e2fa" sha1="eac970657f29126fc93c550080427a88427e34c5" offset="0x000000" /> |
| 11835 | 12867 | <rom name="shvc-agcj-0 p3.u2" size="1048576" crc="e53074a7" sha1="2436b6f393dda9177f45ad1eb5b86652e9ddc2da" offset="0x200000" /> |
| r21545 | r21546 | |
| 11857 | 12889 | <feature name="battery" value="BATT CR2032" /> |
| 11858 | 12890 | <feature name="cart_model" value="SHVC-006" /> |
| 11859 | 12891 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 12892 | ||
| 12893 | <feature name="slot" value="hirom" /> | |
| 11860 | 12894 | <dataarea name="rom" size="3145728"> |
| 11861 | 12895 | <rom name="shvc-azgj-0.u1" size="3145728" crc="fd3fdbac" sha1="65da5aea2b08ef8a540a86710d9f97a590184848" offset="0x000000" /> |
| 11862 | 12896 | </dataarea> |
| r21545 | r21546 | |
| 11884 | 12918 | <feature name="battery" value="BATT CR2032" /> |
| 11885 | 12919 | <feature name="cart_model" value="SHVC-006" /> |
| 11886 | 12920 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 12921 | ||
| 12922 | <feature name="slot" value="hirom" /> | |
| 11887 | 12923 | <dataarea name="rom" size="3145728"> |
| 11888 | 12924 | <rom name="shvc-azgj-0 p0.u1" size="2097152" crc="c70ebd8c" sha1="5da32ee0e2e341a5a92100c7791867353af176ca" offset="0x000000" /> |
| 11889 | 12925 | <rom name="shvc-azgj-0 p3.u2" size="1048576" crc="8c6b928d" sha1="9017c9d299f4a6358d75e6a78abebcc2fbd8d1d5" offset="0x200000" /> |
| r21545 | r21546 | |
| 11910 | 12946 | <feature name="battery" value="BATT CR2032" /> |
| 11911 | 12947 | <feature name="cart_model" value="SHVC-006" /> |
| 11912 | 12948 | <feature name="cart_back_label" value="920214, G741812 SHVC-JPN-1" /> |
| 12949 | ||
| 12950 | <feature name="slot" value="hirom" /> | |
| 11913 | 12951 | <dataarea name="rom" size="4194304"> |
| 11914 | 12952 | <rom name="shvc-aaxj-0.u1" size="4194304" crc="af5703ee" sha1="e043f3096f0bd883644287344f18050ee43d69e9" offset="0x000000" /> |
| 11915 | 12953 | </dataarea> |
| r21545 | r21546 | |
| 11933 | 12971 | <feature name="battery" value="BATT CR2032" /> |
| 11934 | 12972 | <feature name="cart_model" value="SNSP-006" /> |
| 11935 | 12973 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 12974 | ||
| 12975 | <feature name="slot" value="lorom" /> | |
| 11936 | 12976 | <dataarea name="rom" size="524288"> |
| 11937 | 12977 | <rom name="spal-fz-0.u1" size="524288" crc="f1d8f5da" sha1="de475924bae6cbe7cabdc84ac4cb8aeec58f076e" offset="0x000000" /> |
| 11938 | 12978 | </dataarea> |
| r21545 | r21546 | |
| 11957 | 12997 | <feature name="battery" value="BATT CR2032" /> |
| 11958 | 12998 | <feature name="cart_model" value="SNS-006" /> |
| 11959 | 12999 | <feature name="cart_back_label" value="" /> |
| 13000 | ||
| 13001 | <feature name="slot" value="lorom" /> | |
| 11960 | 13002 | <dataarea name="rom" size="524288"> |
| 11961 | 13003 | <rom name="sns-fz-0.u1" size="524288" crc="aa0e31de" sha1="d3efd32b68f1fe37a82db9d9929b7ca7cc1a3af4" offset="0x000000" /> |
| 11962 | 13004 | </dataarea> |
| r21545 | r21546 | |
| 11995 | 13037 | <feature name="cart_model" value="SHVC-006" /> |
| 11996 | 13038 | <feature name="cart_back_label" value="901121" /> |
| 11997 | 13039 | --> |
| 13040 | ||
| 13041 | <feature name="slot" value="lorom" /> | |
| 11998 | 13042 | <dataarea name="rom" size="524288"> |
| 11999 | 13043 | <rom name="shvc-fz-0.u1" size="524288" crc="7681efc1" sha1="54d06d143383de0354788b07314c7dc238575dd0" offset="0x000000" /> |
| 12000 | 13044 | </dataarea> |
| r21545 | r21546 | |
| 12020 | 13064 | <feature name="battery" value="BATT CR2032" /> |
| 12021 | 13065 | <feature name="cart_model" value="SHVC-006" /> |
| 12022 | 13066 | <feature name="cart_back_label" value="920214" /> |
| 13067 | ||
| 13068 | <feature name="slot" value="hirom" /> | |
| 12023 | 13069 | <dataarea name="rom" size="2097152"> |
| 12024 | 13070 | <rom name="shvc-jg-0.u1" size="2097152" crc="b344e9a0" sha1="01bd54e220d5208433ecfdf0b9fa1a08b2260a89" offset="0x000000" /> |
| 12025 | 13071 | </dataarea> |
| r21545 | r21546 | |
| 12045 | 13091 | <feature name="battery" value="BATT CR2032" /> |
| 12046 | 13092 | <feature name="cart_model" value="SHVC-006" /> |
| 12047 | 13093 | <feature name="cart_back_label" value="920214" /> |
| 13094 | ||
| 13095 | <feature name="slot" value="hirom" /> | |
| 12048 | 13096 | <dataarea name="rom" size="3145728"> |
| 12049 | 13097 | <rom name="shvc-ahxj-0.u1" size="3145728" crc="94b93b25" sha1="602c0b6dd24c0d975b02e0574ff2b6041b041e34" offset="0x000000" /> |
| 12050 | 13098 | </dataarea> |
| r21545 | r21546 | |
| 12067 | 13115 | <feature name="lockout" value="" /> |
| 12068 | 13116 | <feature name="cart_model" value="SHVC-006" /> |
| 12069 | 13117 | <feature name="cart_back_label" value="920214" /> |
| 13118 | ||
| 13119 | <feature name="slot" value="lorom" /> | |
| 12070 | 13120 | <dataarea name="rom" size="262144"> |
| 12071 | 13121 | <rom name="shvc-agwj-0.u1" size="262144" crc="f159ca70" sha1="1e74ab222270aa3c88be3a36be17bbce27a1bb1e" offset="0x000000" /> |
| 12072 | 13122 | </dataarea> |
| r21545 | r21546 | |
| 12087 | 13137 | <feature name="lockout" value="" /> |
| 12088 | 13138 | <feature name="cart_model" value="SHVC-006" /> |
| 12089 | 13139 | <feature name="cart_back_label" value="920214" /> |
| 13140 | ||
| 13141 | <feature name="slot" value="lorom" /> | |
| 12090 | 13142 | <dataarea name="rom" size="524288"> |
| 12091 | 13143 | <rom name="shvc-gj-0.u1" size="524288" crc="8ebd1223" sha1="433366cc5fe3a8ce20de52399b66ee73570d5aaa" offset="0x000000" /> |
| 12092 | 13144 | </dataarea> |
| r21545 | r21546 | |
| 12107 | 13159 | <feature name="lockout" value="" /> |
| 12108 | 13160 | <feature name="cart_model" value="SHVC-006" /> |
| 12109 | 13161 | <feature name="cart_back_label" value="901121" /> |
| 13162 | ||
| 13163 | <feature name="slot" value="lorom" /> | |
| 12110 | 13164 | <dataarea name="rom" size="1048576"> |
| 12111 | 13165 | <rom name="shvc-gg-0.u1" size="1048576" crc="adde8d79" sha1="53997213fd8ccf4a8a46f448c2f2dbc45709263f" offset="0x000000" /> |
| 12112 | 13166 | </dataarea> |
| r21545 | r21546 | |
| 12128 | 13182 | <feature name="cart_revision" value="B" /> |
| 12129 | 13183 | <feature name="cart_model" value="SHVC-006" /> |
| 12130 | 13184 | <feature name="cart_back_label" value="901121" /> |
| 13185 | ||
| 13186 | <feature name="slot" value="lorom" /> | |
| 12131 | 13187 | <dataarea name="rom" size="1048576"> |
| 12132 | 13188 | <rom name="shvc-gg-2.u1" size="1048576" crc="6cd62399" sha1="0e0f23d415f4eaff718cb062c5b6a187e1303b01" offset="0x000000" /> |
| 12133 | 13189 | </dataarea> |
| r21545 | r21546 | |
| 12152 | 13208 | <feature name="battery" value="BATT CR2032" /> |
| 12153 | 13209 | <feature name="cart_model" value="SHVC-006" /> |
| 12154 | 13210 | <feature name="cart_back_label" value="920214" /> |
| 13211 | ||
| 13212 | <feature name="slot" value="lorom" /> | |
| 12155 | 13213 | <dataarea name="rom" size="2097152"> |
| 12156 | 13214 | <rom name="shvc-kl-0 p0.u1" size="1048576" crc="54f8a69f" sha1="787f647ccaa8980f85d6db6aed4d4833ce25ac2c" offset="0x000000" /> |
| 12157 | 13215 | <rom name="shvc-kl-0 p1.u2" size="1048576" crc="37d9879b" sha1="96b20a48e0fa0f4c28bf76a5cd9459ba62dfac4e" offset="0x100000" /> |
| r21545 | r21546 | |
| 12179 | 13237 | <feature name="battery" value="BATT CR2032" /> |
| 12180 | 13238 | <feature name="cart_model" value="SHVC-006" /> |
| 12181 | 13239 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 13240 | ||
| 13241 | <feature name="slot" value="lorom" /> | |
| 12182 | 13242 | <dataarea name="rom" size="3145728"> |
| 12183 | 13243 | <rom name="shvc-a4gj-0.u1" size="3145728" crc="bb9d8e56" sha1="ee71384e286f088508a736b7305ad5efecfbcc1a" offset="0x000000" /> |
| 12184 | 13244 | </dataarea> |
| r21545 | r21546 | |
| 12201 | 13261 | <feature name="lockout" value="" /> |
| 12202 | 13262 | <feature name="cart_model" value="SHVC-006" /> |
| 12203 | 13263 | <feature name="cart_back_label" value="920214" /> |
| 13264 | ||
| 13265 | <feature name="slot" value="lorom" /> | |
| 12204 | 13266 | <dataarea name="rom" size="1048576"> |
| 12205 | 13267 | <rom name="shvc-oy-0.u1" size="1048576" crc="73453c46" sha1="12345619eaa14ce4418bb6ee66c0364814c5082f" offset="0x000000" /> |
| 12206 | 13268 | </dataarea> |
| r21545 | r21546 | |
| 12223 | 13285 | <feature name="lockout" value="" /> |
| 12224 | 13286 | <feature name="cart_model" value="SHVC-006" /> |
| 12225 | 13287 | <feature name="cart_back_label" value="920214" /> |
| 13288 | ||
| 13289 | <feature name="slot" value="lorom" /> | |
| 12226 | 13290 | <dataarea name="rom" size="1572864"> |
| 12227 | 13291 | <rom name="shvc-gn-0 p0.u1" size="1048576" crc="fa07c79f" sha1="c6a12c9fd3d680e2ae4a6068af54d65cc7d4f89d" offset="0x000000" /> |
| 12228 | 13292 | <rom name="shvc-gn-0 p1.u2" size="524288" crc="e7e9f5bd" sha1="f25d5cdda32e206b4885ed4b8124a959140bdca9" offset="0x100000" /> |
| r21545 | r21546 | |
| 12246 | 13310 | <feature name="lockout" value="" /> |
| 12247 | 13311 | <feature name="cart_model" value="SHVC-006" /> |
| 12248 | 13312 | <feature name="cart_back_label" value="920214" /> |
| 13313 | ||
| 13314 | <feature name="slot" value="hirom" /> | |
| 12249 | 13315 | <dataarea name="rom" size="2621440"> |
| 12250 | 13316 | <rom name="shvc-dj-0 p0.u1" size="2097152" crc="990509fd" sha1="9ebeae6fdddbe81fd8d4909b4a354da0e5f4f997" offset="0x000000" /> |
| 12251 | 13317 | <rom name="shvc-dj-0 p3.u2" size="524288" crc="503af723" sha1="47ddb90cf019d2eb8ae551e9b9f08f1e1398bea4" offset="0x200000" /> |
| r21545 | r21546 | |
| 12270 | 13336 | <feature name="lockout" value="" /> |
| 12271 | 13337 | <feature name="cart_model" value="SHVC-006" /> |
| 12272 | 13338 | <feature name="cart_back_label" value="920214" /> |
| 13339 | ||
| 13340 | <feature name="slot" value="hirom" /> | |
| 12273 | 13341 | <dataarea name="rom" size="4194304"> |
| 12274 | 13342 | <rom name="shvc-3r-0 p0.u1" size="2097152" crc="ffb079df" sha1="05beacf964c455a61e606a1f61f96268ec3e3d29" offset="0x000000" /> |
| 12275 | 13343 | <rom name="shvc-3r-0 p1.u2" size="2097152" crc="55a88fb0" sha1="922261efbd9004c36a8c227d3f6bf5a4c248214f" offset="0x200000" /> |
| r21545 | r21546 | |
| 12294 | 13362 | <feature name="battery" value="BATT CR2032" /> |
| 12295 | 13363 | <feature name="cart_model" value="SHVC-006" /> |
| 12296 | 13364 | <feature name="cart_back_label" value="901121" /> |
| 13365 | ||
| 13366 | <feature name="slot" value="lorom" /> | |
| 12297 | 13367 | <dataarea name="rom" size="1048576"> |
| 12298 | 13368 | <rom name="shvc-gd-0.u1" size="1048576" crc="f0205fed" sha1="8d51a7b9c21f1f93c8680384e817e7baa879caeb" offset="0x000000" /> |
| 12299 | 13369 | </dataarea> |
| r21545 | r21546 | |
| 12316 | 13386 | <feature name="lockout" value="" /> |
| 12317 | 13387 | <feature name="cart_model" value="SHVC-006" /> |
| 12318 | 13388 | <feature name="cart_back_label" value="920214" /> |
| 13389 | ||
| 13390 | <feature name="slot" value="lorom" /> | |
| 12319 | 13391 | <dataarea name="rom" size="1048576"> |
| 12320 | 13392 | <rom name="shvc-g4-0.u1" size="1048576" crc="e51fb6f8" sha1="0451530f6acb855583192d6257182b8d99ec9aa5" offset="0x000000" /> |
| 12321 | 13393 | </dataarea> |
| r21545 | r21546 | |
| 12336 | 13408 | <feature name="lockout" value="" /> |
| 12337 | 13409 | <feature name="cart_model" value="SHVC-006" /> |
| 12338 | 13410 | <feature name="cart_back_label" value="" /> |
| 13411 | ||
| 13412 | <feature name="slot" value="lorom" /> | |
| 12339 | 13413 | <dataarea name="rom" size="2097152"> |
| 12340 | 13414 | <rom name="shvc-2i-0.u1" size="2097152" crc="de40aa12" sha1="947f72ebb7f3b19244103fa5a55c0a5a21267f23" offset="0x000000" /> |
| 12341 | 13415 | </dataarea> |
| r21545 | r21546 | |
| 12356 | 13430 | <feature name="lockout" value="" /> |
| 12357 | 13431 | <feature name="cart_model" value="SHVC-006" /> |
| 12358 | 13432 | <feature name="cart_back_label" value="920214" /> |
| 13433 | ||
| 13434 | <feature name="slot" value="hirom" /> | |
| 12359 | 13435 | <dataarea name="rom" size="2097152"> |
| 12360 | 13436 | <rom name="shvc-et-0.u1" size="2097152" crc="dfd6385d" sha1="d2286c7ab3eb4d76fa50e1a0af1b51fbc66c85e3" offset="0x000000" /> |
| 12361 | 13437 | </dataarea> |
| r21545 | r21546 | |
| 12380 | 13456 | <feature name="battery" value="BATT CR2032" /> |
| 12381 | 13457 | <feature name="cart_model" value="SHVC-006" /> |
| 12382 | 13458 | <feature name="cart_back_label" value="920214" /> |
| 13459 | ||
| 13460 | <feature name="slot" value="lorom" /> | |
| 12383 | 13461 | <dataarea name="rom" size="1572864"> |
| 12384 | 13462 | <rom name="shvc-ajpj-0 p0.u1" size="1048576" crc="4a8a6b70" sha1="a5b2b0ab6eb26b2ae5e88195060f5fd91d0b0aba" offset="0x000000" /> |
| 12385 | 13463 | <rom name="shvc-ajpj-0 p1.u2" size="524288" crc="ba3db086" sha1="07148ec3c73e135eaad80194e2c783022943f191" offset="0x100000" /> |
| r21545 | r21546 | |
| 12403 | 13481 | <feature name="lockout" value="" /> |
| 12404 | 13482 | <feature name="cart_model" value="SHVC-006" /> |
| 12405 | 13483 | <feature name="cart_back_label" value="920214" /> |
| 13484 | ||
| 13485 | <feature name="slot" value="lorom" /> | |
| 12406 | 13486 | <dataarea name="rom" size="1048576"> |
| 12407 | 13487 | <rom name="shvc-ahfj-0.u1" size="1048576" crc="019309a2" sha1="9845da97cf44e5a1cccb001ff6f3097996510d78" offset="0x000000" /> |
| 12408 | 13488 | </dataarea> |
| r21545 | r21546 | |
| 12425 | 13505 | <feature name="lockout" value="" /> |
| 12426 | 13506 | <feature name="cart_model" value="SHVC-006" /> |
| 12427 | 13507 | <feature name="cart_back_label" value="920214" /> |
| 13508 | ||
| 13509 | <feature name="slot" value="lorom" /> | |
| 12428 | 13510 | <dataarea name="rom" size="1572864"> |
| 12429 | 13511 | <rom name="shvc-a92j-0 p0.u1" size="1048576" crc="f30a282f" sha1="4794d15cffb813797cc716577b429c7e09c990f9" offset="0x000000" /> |
| 12430 | 13512 | <rom name="shvc-a92j-0 p1.u2" size="524288" crc="7bcc03b5" sha1="785c76fb3e65c8d7fd8d033ee93a1afc09df10c9" offset="0x100000" /> |
| r21545 | r21546 | |
| 12446 | 13528 | <feature name="lockout" value="" /> |
| 12447 | 13529 | <feature name="cart_model" value="SHVC-006" /> |
| 12448 | 13530 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 13531 | ||
| 13532 | <feature name="slot" value="lorom" /> | |
| 12449 | 13533 | <dataarea name="rom" size="2097152"> |
| 12450 | 13534 | <rom name="shvc-avpj-0.u1" size="2097152" crc="9a18290c" sha1="3059c420b63d7a6e9126037231021026c41e88c0" offset="0x000000" /> |
| 12451 | 13535 | </dataarea> |
| r21545 | r21546 | |
| 12467 | 13551 | <feature name="lockout" value="" /> |
| 12468 | 13552 | <feature name="cart_model" value="SHVC-006" /> |
| 12469 | 13553 | <feature name="cart_back_label" value="920214" /> |
| 13554 | ||
| 13555 | <feature name="slot" value="lorom" /> | |
| 12470 | 13556 | <dataarea name="rom" size="2097152"> |
| 12471 | 13557 | <rom name="shvc-agp1-0.u1" size="2097152" crc="04ee98ed" sha1="b3aba222d356beff1443a1b7b95cc90cff1d60b2" offset="0x000000" /> |
| 12472 | 13558 | </dataarea> |
| r21545 | r21546 | |
| 12486 | 13572 | <feature name="lockout" value="" /> |
| 12487 | 13573 | <feature name="cart_model" value="SNS-006" /> |
| 12488 | 13574 | <feature name="cart_back_label" value="" /> |
| 13575 | ||
| 13576 | <feature name="slot" value="lorom" /> | |
| 12489 | 13577 | <dataarea name="rom" size="524288"> |
| 12490 | 13578 | <rom name="goof troop.u1" size="524288" crc="4aafa462" sha1="b38560d091801db5e833d17393fe1df1398909b6" offset="0x000000" /> |
| 12491 | 13579 | </dataarea> |
| r21545 | r21546 | |
| 12508 | 13596 | <feature name="lockout" value="" /> |
| 12509 | 13597 | <feature name="cart_model" value="SHVC-006" /> |
| 12510 | 13598 | <feature name="cart_back_label" value="920214" /> |
| 13599 | ||
| 13600 | <feature name="slot" value="hirom" /> | |
| 12511 | 13601 | <dataarea name="rom" size="3145728"> |
| 12512 | 13602 | <rom name="shvc-agkj-0 p0.u1" size="2097152" crc="5763ca99" sha1="0b20e924774544bbcdad813ebe74c477095eca10" offset="0x000000" /> |
| 12513 | 13603 | <rom name="shvc-agkj-0 p3.u2" size="1048576" crc="79dace8c" sha1="dd0f170cb84265f6f90be1168e1158f2e1a3857c" offset="0x200000" /> |
| r21545 | r21546 | |
| 12528 | 13618 | <feature name="lockout" value="" /> |
| 12529 | 13619 | <feature name="cart_model" value="SHVC-006" /> |
| 12530 | 13620 | <feature name="cart_back_label" value="920214" /> |
| 13621 | ||
| 13622 | <feature name="slot" value="lorom" /> | |
| 12531 | 13623 | <dataarea name="rom" size="1048576"> |
| 12532 | 13624 | <rom name="shvc-g7-0.u1" size="1048576" crc="1895299c" sha1="f52f4a8831f78f9e1abd4157bfe49b1a2d4be8ee" offset="0x000000" /> |
| 12533 | 13625 | </dataarea> |
| r21545 | r21546 | |
| 12549 | 13641 | <feature name="lockout" value="" /> |
| 12550 | 13642 | <feature name="cart_model" value="SHVC-006" /> |
| 12551 | 13643 | <feature name="cart_back_label" value="901121" /> |
| 13644 | ||
| 13645 | <feature name="slot" value="lorom" /> | |
| 12552 | 13646 | <dataarea name="rom" size="524288"> |
| 12553 | 13647 | <rom name="shvc-g3-0.u1" size="524288" crc="bca9ab02" sha1="e5119c731c9de5f942565ab0d752cb50abf4f32c" offset="0x000000" /> |
| 12554 | 13648 | </dataarea> |
| r21545 | r21546 | |
| 12569 | 13663 | <feature name="lockout" value="" /> |
| 12570 | 13664 | <feature name="cart_model" value="SHVC-006" /> |
| 12571 | 13665 | <feature name="cart_back_label" value="901121, 920214" /> |
| 13666 | ||
| 13667 | <feature name="slot" value="lorom" /> | |
| 12572 | 13668 | <dataarea name="rom" size="1048576"> |
| 12573 | 13669 | <rom name="shvc-3l-0.u1" size="1048576" crc="8254a32e" sha1="dd7bd49f27a6229e708d7c06bf432b390bc9b211" offset="0x000000" /> |
| 12574 | 13670 | </dataarea> |
| r21545 | r21546 | |
| 12591 | 13687 | <feature name="lockout" value="" /> |
| 12592 | 13688 | <feature name="cart_model" value="SHVC-006" /> |
| 12593 | 13689 | <feature name="cart_back_label" value="920214" /> |
| 13690 | ||
| 13691 | <feature name="slot" value="lorom" /> | |
| 12594 | 13692 | <dataarea name="rom" size="1310720"> |
| 12595 | 13693 | <rom name="shvc-b3-0 p0.u1" size="1048576" crc="3e9e1d21" sha1="b0d9c63cec62bbe6eee122ad99cdb30c9c2c1704" offset="0x000000" /> |
| 12596 | 13694 | <rom name="shvc-b3-0 p1.u2" size="262144" crc="b8a39252" sha1="9f4e4dd7212e4636c8418cd1abae3d5f0a5bec04" offset="0x100000" /> |
| r21545 | r21546 | |
| 12615 | 13713 | <feature name="lockout" value="" /> |
| 12616 | 13714 | <feature name="cart_model" value="SHVC-006" /> |
| 12617 | 13715 | <feature name="cart_back_label" value="920214" /> |
| 13716 | ||
| 13717 | <feature name="slot" value="lorom" /> | |
| 12618 | 13718 | <dataarea name="rom" size="1572864"> |
| 12619 | 13719 | <rom name="shvc-4f-0 p0.u1" size="1048576" crc="51ebce4b" sha1="beb00c026b3623fcddd0e183b77cab609dda5824" offset="0x000000" /> |
| 12620 | 13720 | <rom name="shvc-4f-0 p1.u2" size="524288" crc="446d47ec" sha1="3648332a1a4eaa552d3d7cfa2fa27a258483b7e2" offset="0x100000" /> |
| r21545 | r21546 | |
| 12636 | 13736 | <feature name="lockout" value="" /> |
| 12637 | 13737 | <feature name="cart_model" value="SHVC-006" /> |
| 12638 | 13738 | <feature name="cart_back_label" value="" /> |
| 13739 | ||
| 13740 | <feature name="slot" value="lorom" /> | |
| 12639 | 13741 | <dataarea name="rom" size="524288"> |
| 12640 | 13742 | <rom name="shvc-gu-0.u1" size="524288" crc="eeafd816" sha1="6dc973f31b9506becc5cb6838932a7e90b2b17c3" offset="0x000000" /> |
| 12641 | 13743 | </dataarea> |
| r21545 | r21546 | |
| 12659 | 13761 | <feature name="battery" value="BATT CR2032" /> |
| 12660 | 13762 | <feature name="cart_model" value="SHVC-006" /> |
| 12661 | 13763 | <feature name="cart_back_label" value="920214" /> |
| 13764 | ||
| 13765 | <feature name="slot" value="lorom_sa1" /> | |
| 12662 | 13766 | <dataarea name="rom" size="1048576"> |
| 12663 | 13767 | <rom name="shvc-il-0.u1" size="1048576" crc="4c1b8801" sha1="5e30faf3e483a1238db9a8d8ae1f320369600814" offset="0x000000" /> |
| 12664 | 13768 | </dataarea> |
| r21545 | r21546 | |
| 12679 | 13783 | <feature name="lockout" value="" /> |
| 12680 | 13784 | <feature name="cart_model" value="SNSP-006" /> |
| 12681 | 13785 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 13786 | ||
| 13787 | <feature name="slot" value="hirom" /> | |
| 12682 | 13788 | <dataarea name="rom" size="2097152"> |
| 12683 | 13789 | <rom name="spal-ahgp-0.u1" size="2097152" crc="7f6ccf00" sha1="1cb2695505b781eb5bfdc326c15d096b446b3aa7" offset="0x000000" /> |
| 12684 | 13790 | </dataarea> |
| r21545 | r21546 | |
| 12698 | 13804 | <feature name="lockout" value="D411 C133 05 B" /> |
| 12699 | 13805 | <feature name="cart_model" value="SNS-006" /> |
| 12700 | 13806 | <feature name="cart_back_label" value="" /> |
| 13807 | ||
| 13808 | <feature name="slot" value="lorom" /> | |
| 12701 | 13809 | <dataarea name="rom" size="1048576"> |
| 12702 | 13810 | <rom name="sns-jo-0.u1" size="1048576" crc="58752baf" sha1="45baf328efa1e573aef81b2a936207f8979206a4" offset="0x000000" /> |
| 12703 | 13811 | </dataarea> |
| r21545 | r21546 | |
| 12721 | 13829 | <feature name="battery" value="BATT CR2032" /> |
| 12722 | 13830 | <feature name="cart_model" value="SHVC-006" /> |
| 12723 | 13831 | <feature name="cart_back_label" value="920214" /> |
| 13832 | ||
| 13833 | <feature name="slot" value="lorom" /> | |
| 12724 | 13834 | <dataarea name="rom" size="1048576"> |
| 12725 | 13835 | <rom name="shvc-hh-0.u1" size="1048576" crc="d191ad46" sha1="4edad4a8a8e3ab6117171c48ce2a332757ed3e2f" offset="0x000000" /> |
| 12726 | 13836 | </dataarea> |
| r21545 | r21546 | |
| 12745 | 13855 | <feature name="battery" value="BATT CR2032" /> |
| 12746 | 13856 | <feature name="cart_model" value="SNS-006" /> |
| 12747 | 13857 | <feature name="cart_back_label" value="" /> |
| 13858 | ||
| 13859 | <feature name="slot" value="lorom" /> | |
| 12748 | 13860 | <dataarea name="rom" size="2097152"> |
| 12749 | 13861 | <rom name="sns-aywe-0.u1" size="2097152" crc="f829129e" sha1="a64a5634429a4f5341868a40c220d7be89fda70a" offset="0x000000" /> |
| 12750 | 13862 | </dataarea> |
| r21545 | r21546 | |
| 12767 | 13879 | <feature name="lockout" value="" /> |
| 12768 | 13880 | <feature name="cart_model" value="SHVC-006" /> |
| 12769 | 13881 | <feature name="cart_back_label" value="901121" /> |
| 13882 | ||
| 13883 | <feature name="slot" value="lorom" /> | |
| 12770 | 13884 | <dataarea name="rom" size="524288"> |
| 12771 | 13885 | <rom name="shvc-ht-0.u1" size="524288" crc="fce8a74d" sha1="0b6c5c4f7484ae643dce60f760b600e3fa310448" offset="0x000000" /> |
| 12772 | 13886 | </dataarea> |
| r21545 | r21546 | |
| 12787 | 13901 | <feature name="lockout" value="" /> |
| 12788 | 13902 | <feature name="cart_model" value="SHVC-006" /> |
| 12789 | 13903 | <feature name="cart_back_label" value="920214" /> |
| 13904 | ||
| 13905 | <feature name="slot" value="lorom" /> | |
| 12790 | 13906 | <dataarea name="rom" size="1048576"> |
| 12791 | 13907 | <rom name="shvc-2y-0.u1" size="1048576" crc="19e67dff" sha1="826806420c11d0b5adccac50adff89057157786c" offset="0x000000" /> |
| 12792 | 13908 | </dataarea> |
| r21545 | r21546 | |
| 12812 | 13928 | <feature name="battery" value="BATT CR2032" /> |
| 12813 | 13929 | <feature name="cart_model" value="SHVC-006" /> |
| 12814 | 13930 | <feature name="cart_back_label" value="920214" /> |
| 13931 | ||
| 13932 | <feature name="slot" value="lorom_st011" /> | |
| 12815 | 13933 | <dataarea name="rom" size="524288"> |
| 12816 | 13934 | <rom name="shvc-2m-0.u1" size="524288" crc="81e822ad" sha1="82b4bca58918a18707f932ec6afc0a12a3c4b872" offset="0x000000" /> |
| 12817 | 13935 | </dataarea> |
| 13936 | <dataarea name="addon" size="69632"> | |
| 13937 | <rom name="st011.u2" size="69632" crc="34d2952c" sha1="1375b8c1efc8cae4962b57dfe22f6b78e1ddacc8" offset="0" /> | |
| 13938 | </dataarea> | |
| 12818 | 13939 | </part> |
| 12819 | 13940 | </software> |
| 12820 | 13941 | |
| r21545 | r21546 | |
| 12838 | 13959 | <feature name="battery" value="BATT CR2032" /> |
| 12839 | 13960 | <feature name="cart_model" value="SHVC-006" /> |
| 12840 | 13961 | <feature name="cart_back_label" value="" /> |
| 13962 | ||
| 13963 | <feature name="slot" value="lorom_st018" /> | |
| 12841 | 13964 | <dataarea name="rom" size="524288"> |
| 12842 | 13965 | <rom name="shvc-a2mj-0.u1" size="524288" crc="dd852671" sha1="b291ada870b9ec09326cd2f9470ea1519cbaa2e9" offset="0x000000" /> |
| 12843 | 13966 | </dataarea> |
| 13967 | <dataarea name="addon" size="163840"> | |
| 13968 | <rom name="0xf3.u3" size="131072" crc="f73d5e10" sha1="388e3721b94cd074d6ba0eca8616523d2118a6c3" offset="0x000000" /> | |
| 13969 | <rom name="0xf4.u3" size="32768" crc="b5255459" sha1="b19c0f8f207d62fdabf4bf71442826063bccc626" offset="0x000000" /> | |
| 13970 | </dataarea> | |
| 12844 | 13971 | <dataarea name="nvram" size="8192"> |
| 12845 | 13972 | </dataarea> |
| 12846 | 13973 | </part> |
| r21545 | r21546 | |
| 12862 | 13989 | <feature name="lockout" value="" /> |
| 12863 | 13990 | <feature name="cart_model" value="SHVC-006" /> |
| 12864 | 13991 | <feature name="cart_back_label" value="920214" /> |
| 13992 | ||
| 13993 | <feature name="slot" value="lorom" /> | |
| 12865 | 13994 | <dataarea name="rom" size="1572864"> |
| 12866 | 13995 | <rom name="shvc-hk-0 p0.u1" size="1048576" crc="02e6cddf" sha1="fcffa756978bc6694a7ce4142b6b3a7eb7f6c9ed" offset="0x000000" /> |
| 12867 | 13996 | <rom name="shvc-hk-0 p1.u2" size="524288" crc="a2b53271" sha1="85d5de8fbdfa4a40105a644dcf72227ceaab45ec" offset="0x100000" /> |
| r21545 | r21546 | |
| 12885 | 14014 | <feature name="lockout" value="" /> |
| 12886 | 14015 | <feature name="cart_model" value="SHVC-006" /> |
| 12887 | 14016 | <feature name="cart_back_label" value="920214" /> |
| 14017 | ||
| 14018 | <feature name="slot" value="lorom" /> | |
| 12888 | 14019 | <dataarea name="rom" size="1572864"> |
| 12889 | 14020 | <rom name="shvc-hp-0 p0.u1" size="1048576" crc="cddd4872" sha1="adf9acddcc89edae8c2613342d5f281d7e4e60d1" offset="0x000000" /> |
| 12890 | 14021 | <rom name="shvc-hp-0 p1.u2" size="524288" crc="8f4ed5dd" sha1="629702fdd506ad4da65b60b1b795e967fcaf207f" offset="0x100000" /> |
| r21545 | r21546 | |
| 12910 | 14041 | <feature name="battery" value="BATT CR2032" /> |
| 12911 | 14042 | <feature name="cart_model" value="SHVC-006" /> |
| 12912 | 14043 | <feature name="cart_back_label" value="920214" /> |
| 14044 | ||
| 14045 | <feature name="slot" value="lorom" /> | |
| 12913 | 14046 | <dataarea name="rom" size="1048576"> |
| 12914 | 14047 | <rom name="shvc-ahpj-0.u1" size="1048576" crc="a1bf047b" sha1="0c315c653f8778d1cef906e9843f054f7e839cc0" offset="0x000000" /> |
| 12915 | 14048 | </dataarea> |
| r21545 | r21546 | |
| 12932 | 14065 | <feature name="lockout" value="" /> |
| 12933 | 14066 | <feature name="cart_model" value="SHVC-006" /> |
| 12934 | 14067 | <feature name="cart_back_label" value="920214" /> |
| 14068 | ||
| 14069 | <feature name="slot" value="lorom" /> | |
| 12935 | 14070 | <dataarea name="rom" size="524288"> |
| 12936 | 14071 | <rom name="shvc-ih-0.u1" size="524288" crc="ef85eb96" sha1="b2c1f00db47f909dca528c8797a01371e0b1ec87" offset="0x000000" /> |
| 12937 | 14072 | </dataarea> |
| r21545 | r21546 | |
| 12953 | 14088 | <feature name="lockout" value="" /> |
| 12954 | 14089 | <feature name="cart_model" value="SNS-006" /> |
| 12955 | 14090 | <feature name="cart_back_label" value="D411A 9443 BA" /> |
| 14091 | ||
| 14092 | <feature name="slot" value="lorom" /> | |
| 12956 | 14093 | <dataarea name="rom" size="1572864"> |
| 12957 | 14094 | <rom name="sns-ahie-0 p0.u1" size="1048576" crc="1934905b" sha1="568e1e9df46cbd303c4a69ca1f4cd99c7265aa01" offset="0x000000" /> |
| 12958 | 14095 | <!-- the second rom should be good but its size needs to be confirmed --> |
| r21545 | r21546 | |
| 12975 | 14112 | <feature name="lockout" value="" /> |
| 12976 | 14113 | <feature name="cart_model" value="SHVC-006" /> |
| 12977 | 14114 | <feature name="cart_back_label" value="920214" /> |
| 14115 | ||
| 14116 | <feature name="slot" value="lorom" /> | |
| 12978 | 14117 | <dataarea name="rom" size="1048576"> |
| 12979 | 14118 | <rom name="shvc-dd-0.u1" size="1048576" crc="5947a7a4" sha1="2953a9624617b78c6baa3122e7cdc32856e938b1" offset="0x000000" /> |
| 12980 | 14119 | </dataarea> |
| r21545 | r21546 | |
| 12998 | 14137 | <feature name="battery" value="BATT CR2032" /> |
| 12999 | 14138 | <feature name="cart_model" value="SHVC-006" /> |
| 13000 | 14139 | <feature name="cart_back_label" value="920214" /> |
| 14140 | ||
| 14141 | <feature name="slot" value="lorom" /> | |
| 13001 | 14142 | <dataarea name="rom" size="524288"> |
| 13002 | 14143 | <rom name="shvc-aoxj-0.u1" size="524288" crc="a43c5a39" sha1="dae24c25255807fe79f32d82442de2321c1870cb" offset="0x000000" /> |
| 13003 | 14144 | </dataarea> |
| r21545 | r21546 | |
| 13018 | 14159 | <feature name="lockout" value="" /> |
| 13019 | 14160 | <feature name="cart_model" value="SNSP-006" /> |
| 13020 | 14161 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 14162 | ||
| 14163 | <feature name="slot" value="lorom" /> | |
| 13021 | 14164 | <dataarea name="rom" size="1048576"> |
| 13022 | 14165 | <rom name="spal-ho-0.u1" size="1048576" crc="6679a772" sha1="94c91d20009f218424c83daa9c7903211118c103" offset="0x000000" /> |
| 13023 | 14166 | </dataarea> |
| r21545 | r21546 | |
| 13037 | 14180 | <feature name="lockout" value="" /> |
| 13038 | 14181 | <feature name="cart_model" value="SNS-006" /> |
| 13039 | 14182 | <feature name="cart_back_label" value="" /> |
| 14183 | ||
| 14184 | <feature name="slot" value="lorom" /> | |
| 13040 | 14185 | <dataarea name="rom" size="1048576"> |
| 13041 | 14186 | <rom name="sns-ho-0.u1" size="1048576" crc="0c572ef0" sha1="24f628d669757b5c92d6c8788dbfcb1d1aeb0481" offset="0x000000" /> |
| 13042 | 14187 | </dataarea> |
| r21545 | r21546 | |
| 13060 | 14205 | <feature name="battery" value="BATT CR2032" /> |
| 13061 | 14206 | <feature name="cart_model" value="SHVC-006" /> |
| 13062 | 14207 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 14208 | ||
| 14209 | <feature name="slot" value="lorom_sa1" /> | |
| 13063 | 14210 | <dataarea name="rom" size="4194304"> |
| 13064 | 14211 | <rom name="shvc-akfj-0.u1" size="4194304" crc="151bd470" sha1="2f2ff2c75eafa705363feb435a88d2c914d301cf" offset="0x000000" /> |
| 13065 | 14212 | </dataarea> |
| r21545 | r21546 | |
| 13083 | 14230 | <feature name="lockout" value="" /> |
| 13084 | 14231 | <feature name="cart_model" value="SHVC-006" /> |
| 13085 | 14232 | <feature name="cart_back_label" value="920214" /> |
| 14233 | ||
| 14234 | <feature name="slot" value="lorom" /> | |
| 13086 | 14235 | <dataarea name="rom" size="1048576"> |
| 13087 | 14236 | <rom name="shvc-hb-0.u1" size="1048576" crc="010e3dab" sha1="d653331974983226d0a1c425737a19fee580833e" offset="0x000000" /> |
| 13088 | 14237 | </dataarea> |
| r21545 | r21546 | |
| 13106 | 14255 | <feature name="battery" value="BATT CR2032" /> |
| 13107 | 14256 | <feature name="cart_model" value="SHVC-006" /> |
| 13108 | 14257 | <feature name="cart_back_label" value="920214" /> |
| 14258 | ||
| 14259 | <feature name="slot" value="lorom" /> | |
| 13109 | 14260 | <dataarea name="rom" size="1048576"> |
| 13110 | 14261 | <rom name="shvc-hg-0.u1" size="1048576" crc="823019ca" sha1="566f67ac388a51bf3bec7150798703c6041e7b0d" offset="0x000000" /> |
| 13111 | 14262 | </dataarea> |
| r21545 | r21546 | |
| 13131 | 14282 | <feature name="battery" value="BATT CR2032" /> |
| 13132 | 14283 | <feature name="cart_model" value="SHVC-006" /> |
| 13133 | 14284 | <feature name="cart_back_label" value="920214" /> |
| 14285 | ||
| 14286 | <feature name="slot" value="lorom" /> | |
| 13134 | 14287 | <dataarea name="rom" size="2097152"> |
| 13135 | 14288 | <rom name="shvc-agxj-0.u1" size="2097152" crc="9f6d0228" sha1="33f29c6f08a458778a0a065d9e6b0ff56d0c83c3" offset="0x000000" /> |
| 13136 | 14289 | </dataarea> |
| r21545 | r21546 | |
| 13151 | 14304 | <feature name="lockout" value="" /> |
| 13152 | 14305 | <feature name="cart_model" value="SNSP-006" /> |
| 13153 | 14306 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14307 | ||
| 14308 | <feature name="slot" value="lorom" /> | |
| 13154 | 14309 | <dataarea name="rom" size="1048576"> |
| 13155 | 14310 | <rom name="spal-u9-0.u1" size="1048576" crc="d2af01d4" sha1="50c85ebd587a296b9cf00f209df3a2f07e6683ed" offset="0x000000" /> |
| 13156 | 14311 | </dataarea> |
| r21545 | r21546 | |
| 13169 | 14324 | <feature name="lockout" value="" /> |
| 13170 | 14325 | <feature name="cart_model" value="SNSP-006" /> |
| 13171 | 14326 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14327 | ||
| 14328 | <feature name="slot" value="hirom" /> | |
| 13172 | 14329 | <dataarea name="rom" size="262144"> |
| 13173 | 14330 | <rom name="spal-abkp-0.u1" size="262144" crc="5c4b2544" sha1="5fdb008cce34d6c8ad3618c2a5f0e95b0f26e87f" offset="0x000000" /> |
| 13174 | 14331 | </dataarea> |
| r21545 | r21546 | |
| 13187 | 14344 | <feature name="lockout" value="" /> |
| 13188 | 14345 | <feature name="cart_model" value="SNSP-006" /> |
| 13189 | 14346 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14347 | ||
| 14348 | <feature name="slot" value="lorom" /> | |
| 13190 | 14349 | <dataarea name="rom" size="1048576"> |
| 13191 | 14350 | <rom name="spal-ahup-0.u1" size="1048576" crc="de5f9d73" sha1="0463c0eda6a8ff5b9aea919ca520979e99811ae0" offset="0x000000" /> |
| 13192 | 14351 | </dataarea> |
| r21545 | r21546 | |
| 13207 | 14366 | <feature name="lockout" value="" /> |
| 13208 | 14367 | <feature name="cart_model" value="SHVC-006" /> |
| 13209 | 14368 | <feature name="cart_back_label" value="920214" /> |
| 14369 | ||
| 14370 | <feature name="slot" value="lorom" /> | |
| 13210 | 14371 | <dataarea name="rom" size="1048576"> |
| 13211 | 14372 | <rom name="shvc-iy-0.u1" size="1048576" crc="4d5329f2" sha1="a7806a49890598c32b490c4a348ea52dea3869c2" offset="0x000000" /> |
| 13212 | 14373 | </dataarea> |
| r21545 | r21546 | |
| 13240 | 14401 | --> |
| 13241 | 14402 | <feature name="cart_model" value="SNS-006" /> |
| 13242 | 14403 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 14404 | ||
| 14405 | <feature name="slot" value="hirom" /> | |
| 13243 | 14406 | <dataarea name="rom" size="2097152"> |
| 13244 | 14407 | <rom name="sns-jg-0.u1" size="2097152" crc="1c3848c0" sha1="38de0c84dd2bc3bdfc0a3d7ab0220c79b70887c3" offset="0x000000" /> |
| 13245 | 14408 | </dataarea> |
| r21545 | r21546 | |
| 13265 | 14428 | <feature name="battery" value="BATT CR2032" /> |
| 13266 | 14429 | <feature name="cart_model" value="SNSP-006" /> |
| 13267 | 14430 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 14431 | ||
| 14432 | <feature name="slot" value="hirom" /> | |
| 13268 | 14433 | <dataarea name="rom" size="2097152"> |
| 13269 | 14434 | <rom name="sfra-jg-0.u1" size="2097152" crc="63f6f934" sha1="025ed8b698b66100dbbeb66b8a91af2ea9d742f9" offset="0x000000" /> |
| 13270 | 14435 | </dataarea> |
| r21545 | r21546 | |
| 13290 | 14455 | <feature name="battery" value="BATT CR2032" /> |
| 13291 | 14456 | <feature name="cart_model" value="SNSP-006" /> |
| 13292 | 14457 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 14458 | ||
| 14459 | <feature name="slot" value="hirom" /> | |
| 13293 | 14460 | <dataarea name="rom" size="2097152"> |
| 13294 | 14461 | <rom name="sfrg-jg-0.u1" size="2097152" crc="1a7c8541" sha1="24711ce599f1f61e9b3cac3d117d5d9c37ff759f" offset="0x000000" /> |
| 13295 | 14462 | </dataarea> |
| r21545 | r21546 | |
| 13315 | 14482 | <feature name="battery" value="BATT CR2032" /> |
| 13316 | 14483 | <feature name="cart_model" value="SNSP-006" /> |
| 13317 | 14484 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 14485 | ||
| 14486 | <feature name="slot" value="hirom" /> | |
| 13318 | 14487 | <dataarea name="rom" size="2097152"> |
| 13319 | 14488 | <rom name="sfrg-jg-1.u1" size="2097152" crc="4bd8e60b" sha1="d3ff5adf858d7e56a67577ac6042c26565c240df" offset="0x000000" /> |
| 13320 | 14489 | </dataarea> |
| r21545 | r21546 | |
| 13335 | 14504 | <feature name="lockout" value="" /> |
| 13336 | 14505 | <feature name="cart_model" value="SNSP-006" /> |
| 13337 | 14506 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14507 | ||
| 14508 | <feature name="slot" value="lorom" /> | |
| 13338 | 14509 | <dataarea name="rom" size="524288"> |
| 13339 | 14510 | <rom name="span-aiyp-0.u1" size="524288" crc="34fad701" sha1="2fdca97be96c4d9ee79e28aca8be64a7d43cb233" offset="0x000000" /> |
| 13340 | 14511 | </dataarea> |
| r21545 | r21546 | |
| 13353 | 14524 | <feature name="lockout" value="" /> |
| 13354 | 14525 | <feature name="cart_model" value="SNSP-006" /> |
| 13355 | 14526 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 14527 | ||
| 14528 | <feature name="slot" value="lorom" /> | |
| 13356 | 14529 | <dataarea name="rom" size="1048576"> |
| 13357 | 14530 | <rom name="spal-c7-0.u1" size="1048576" crc="3ee9b136" sha1="f29c1652af61a1a14f09bc774fb4f1ca7b1ed282" offset="0x000000" /> |
| 13358 | 14531 | </dataarea> |
| r21545 | r21546 | |
| 13372 | 14545 | <feature name="lockout" value="D411A 9338 CB" /> |
| 13373 | 14546 | <feature name="cart_model" value="SNS-006" /> |
| 13374 | 14547 | <feature name="cart_back_label" value="" /> |
| 14548 | ||
| 14549 | <feature name="slot" value="lorom" /> | |
| 13375 | 14550 | <dataarea name="rom" size="1048576"> |
| 13376 | 14551 | <rom name="sns-c7-0.u1" size="1048576" crc="0b6209ba" sha1="8fb4dc371c0e44fe362b23b5fec464288e3cc5ec" offset="0x000000" /> |
| 13377 | 14552 | </dataarea> |
| r21545 | r21546 | |
| 13390 | 14565 | <feature name="lockout" value="" /> |
| 13391 | 14566 | <feature name="cart_model" value="SNSP-006" /> |
| 13392 | 14567 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 14568 | ||
| 14569 | <feature name="slot" value="lorom" /> | |
| 13393 | 14570 | <dataarea name="rom" size="2097152"> |
| 13394 | 14571 | <rom name="spal-8u-0.u1" size="2097152" crc="9df29605" sha1="5243901e733bd56d51143ca1d33a3798bcc1e690" offset="0x000000" /> |
| 13395 | 14572 | </dataarea> |
| r21545 | r21546 | |
| 13409 | 14586 | <feature name="lockout" value="" /> |
| 13410 | 14587 | <feature name="cart_model" value="SNS-006" /> |
| 13411 | 14588 | <feature name="cart_back_label" value="" /> |
| 14589 | ||
| 14590 | <feature name="slot" value="lorom" /> | |
| 13412 | 14591 | <dataarea name="rom" size="2097152"> |
| 13413 | 14592 | <rom name="sns-8u-0.u1" size="2097152" crc="36b5a429" sha1="a93d160327b87e4bc48e093928851076533aa1ec" offset="0x000000" /> |
| 13414 | 14593 | </dataarea> |
| r21545 | r21546 | |
| 13427 | 14606 | <feature name="lockout" value="" /> |
| 13428 | 14607 | <feature name="cart_model" value="SNSP-006" /> |
| 13429 | 14608 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14609 | ||
| 14610 | <feature name="slot" value="lorom" /> | |
| 13430 | 14611 | <dataarea name="rom" size="2097152"> |
| 13431 | 14612 | <rom name="spal-aijp-0.u1" size="2097152" crc="fa4560c3" sha1="f08be42140cad072529d4ddf5472beb447228e00" offset="0x000000" /> |
| 13432 | 14613 | </dataarea> |
| r21545 | r21546 | |
| 13449 | 14630 | <feature name="battery" value="BATT CR2032" /> |
| 13450 | 14631 | <feature name="cart_model" value="SNS-006" /> |
| 13451 | 14632 | <feature name="cart_back_label" value="" /> |
| 14633 | ||
| 14634 | <feature name="slot" value="lorom" /> | |
| 13452 | 14635 | <dataarea name="rom" size="1048576"> |
| 13453 | 14636 | <rom name="sns-in-0.u1" size="1048576" crc="543f3327" sha1="0920a7c9a4cf4ec6d80684f35de275f70de6b805" offset="0x000000" /> |
| 13454 | 14637 | </dataarea> |
| r21545 | r21546 | |
| 13473 | 14656 | <feature name="cart_revision" value="A" /> |
| 13474 | 14657 | <feature name="cart_model" value="SNSP-006" /> |
| 13475 | 14658 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 14659 | ||
| 14660 | <feature name="slot" value="lorom" /> | |
| 13476 | 14661 | <dataarea name="rom" size="524288"> |
| 13477 | 14662 | <rom name="spal-8s-1.u1" size="524288" crc="6ff2d97e" sha1="1b7e843210b1939b1032f829d33c2f27600049ca" offset="0x000000" /> |
| 13478 | 14663 | </dataarea> |
| r21545 | r21546 | |
| 13494 | 14679 | <feature name="lockout" value="" /> |
| 13495 | 14680 | <feature name="cart_model" value="SNSP-006" /> |
| 13496 | 14681 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14682 | ||
| 14683 | <feature name="slot" value="lorom" /> | |
| 13497 | 14684 | <dataarea name="rom" size="1048576"> |
| 13498 | 14685 | <rom name="spal-3u-0.u1" size="1048576" crc="6cd568a9" sha1="688fd46ee8fb2fcf0549031265a8998cd640e7b5" offset="0x000000" /> |
| 13499 | 14686 | </dataarea> |
| r21545 | r21546 | |
| 13513 | 14700 | <feature name="lockout" value="" /> |
| 13514 | 14701 | <feature name="cart_model" value="SNSP-006" /> |
| 13515 | 14702 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14703 | ||
| 14704 | <feature name="slot" value="lorom" /> | |
| 13516 | 14705 | <dataarea name="rom" size="2097152"> |
| 13517 | 14706 | <rom name="spal-awjp-0.u1" size="2097152" crc="cba724ba" sha1="abdbf30d0987aca99183c451b7b9567e2ff67980" offset="0x000000" /> |
| 13518 | 14707 | </dataarea> |
| r21545 | r21546 | |
| 13537 | 14726 | <feature name="battery" value="BATT CR2032" /> |
| 13538 | 14727 | <feature name="cart_model" value="SHVC-006" /> |
| 13539 | 14728 | <feature name="cart_back_label" value="920214" /> |
| 14729 | ||
| 14730 | <feature name="slot" value="lorom" /> | |
| 13540 | 14731 | <dataarea name="rom" size="1572864"> |
| 13541 | 14732 | <rom name="shvc-i2-0 p0.u1" size="1048576" crc="6db98d2c" sha1="f02f4410e5c8320b4e59adbf22fdc87a23278709" offset="0x000000" /> |
| 13542 | 14733 | <rom name="shvc-i2-0 p1.u2" size="524288" crc="0dd3cc1b" sha1="c5b31cdcc698e2000674079b118c62591ef55f61" offset="0x100000" /> |
| r21545 | r21546 | |
| 13564 | 14755 | <feature name="battery" value="BT1" /> |
| 13565 | 14756 | <feature name="cart_model" value="" /> <!-- to do --> |
| 13566 | 14757 | <feature name="cart_back_label" value="" /> |
| 14758 | ||
| 14759 | <feature name="slot" value="lorom_sa1" /> | |
| 13567 | 14760 | <dataarea name="rom" size="4194304"> |
| 13568 | 14761 | <rom name="shvc-zbpj-0.u1" size="4194304" crc="b9ba8544" sha1="357ac4826297a6496035e3951cacda55dcae4b1b" offset="0x000000" /> |
| 13569 | 14762 | </dataarea> |
| r21545 | r21546 | |
| 13582 | 14775 | <feature name="lockout" value="" /> |
| 13583 | 14776 | <feature name="cart_model" value="SNSP-006" /> |
| 13584 | 14777 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 14778 | ||
| 14779 | <feature name="slot" value="lorom" /> | |
| 13585 | 14780 | <dataarea name="rom" size="2097152"> |
| 13586 | 14781 | <rom name="spal-aizp-0.u1" size="2097152" crc="b096e82e" sha1="9b3c5a6887ba722ac29de0ea13afc38cd2091e33" offset="0x000000" /> |
| 13587 | 14782 | </dataarea> |
| r21545 | r21546 | |
| 13605 | 14800 | <feature name="battery" value="BATT CR2032" /> |
| 13606 | 14801 | <feature name="cart_model" value="SHVC-006" /> |
| 13607 | 14802 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 14803 | ||
| 14804 | <feature name="slot" value="lorom_sa1" /> | |
| 13608 | 14805 | <dataarea name="rom" size="3145728"> |
| 13609 | 14806 | <rom name="shvc-aj6j-0.u1" size="3145728" crc="3a4b04e5" sha1="ad5152eb49f47beeab2cda582dd0c5f14894ee95" offset="0x000000" /> |
| 13610 | 14807 | </dataarea> |
| r21545 | r21546 | |
| 13642 | 14839 | --> |
| 13643 | 14840 | <feature name="cart_model" value="SHVC-006" /> |
| 13644 | 14841 | <feature name="cart_back_label" value="920214" /> |
| 14842 | ||
| 14843 | <feature name="slot" value="lorom" /> | |
| 13645 | 14844 | <dataarea name="rom" size="1572864"> |
| 13646 | 14845 | <rom name="shvc-jl-0 p0.u1" size="1048576" crc="40437bf2" sha1="7b078f9851b3b5411cc217dc4b879d1555b85031" offset="0x000000" /> |
| 13647 | 14846 | <rom name="shvc-jl-0 p1.u2" size="524288" crc="64290afa" sha1="1cac74d20f2ee080afe23879f770d0f898d34962" offset="0x100000" /> |
| r21545 | r21546 | |
| 13670 | 14869 | <feature name="battery" value="BATT CR2032" /> |
| 13671 | 14870 | <feature name="cart_model" value="SHVC-006" /> |
| 13672 | 14871 | <feature name="cart_back_label" value="920214" /> |
| 14872 | ||
| 14873 | <feature name="slot" value="lorom" /> | |
| 13673 | 14874 | <dataarea name="rom" size="1572864"> |
| 13674 | 14875 | <rom name="shvc-aj2j-0 p0.u1" size="1048576" crc="5d05e97b" sha1="9a4f292114b6fb6deaf6a4f768345e7a7636fb71" offset="0x000000" /> |
| 13675 | 14876 | <rom name="shvc-aj2j-0 p1.u2" size="524288" crc="a791e51c" sha1="c2c20c0a706d60ec8baaf2fc7d08264768be30f4" offset="0x100000" /> |
| r21545 | r21546 | |
| 13694 | 14895 | <feature name="lockout" value="" /> |
| 13695 | 14896 | <feature name="cart_model" value="SHVC-006" /> |
| 13696 | 14897 | <feature name="cart_back_label" value="920214" /> |
| 14898 | ||
| 14899 | <feature name="slot" value="lorom" /> | |
| 13697 | 14900 | <dataarea name="rom" size="1048576"> |
| 13698 | 14901 | <rom name="shvc-je-0.u1" size="1048576" crc="b81828ec" sha1="a6e6ba3a2785f07c7c2c8076a8497c565570b272" offset="0x000000" /> |
| 13699 | 14902 | </dataarea> |
| r21545 | r21546 | |
| 13716 | 14919 | <feature name="cart_revision" value="A" /> |
| 13717 | 14920 | <feature name="cart_model" value="SHVC-006" /> |
| 13718 | 14921 | <feature name="cart_back_label" value="920214" /> |
| 14922 | ||
| 14923 | <feature name="slot" value="lorom" /> | |
| 13719 | 14924 | <dataarea name="rom" size="1048576"> |
| 13720 | 14925 | <rom name="shvc-je-1.u1" size="1048576" crc="7538f598" sha1="b08aeb7fa70a40484da5683ef104264271964d58" offset="0x000000" /> |
| 13721 | 14926 | </dataarea> |
| r21545 | r21546 | |
| 13739 | 14944 | <feature name="lockout" value="" /> |
| 13740 | 14945 | <feature name="cart_model" value="SHVC-006" /> |
| 13741 | 14946 | <feature name="cart_back_label" value="920214" /> |
| 14947 | ||
| 14948 | <feature name="slot" value="lorom" /> | |
| 13742 | 14949 | <dataarea name="rom" size="1572864"> |
| 13743 | 14950 | <rom name="shvc-2h-0 p0.u1" size="1048576" crc="3880dc58" sha1="be1cc6a81c10ed2fd89b376407cc7bcaaff23e81" offset="0x000000" /> |
| 13744 | 14951 | <rom name="shvc-2h-0 p1.u2" size="524288" crc="147ba2e0" sha1="54ebbb549b824208d5217537ed899842934c255e" offset="0x100000" /> |
| r21545 | r21546 | |
| 13764 | 14971 | <feature name="battery" value="BATT CR2032" /> |
| 13765 | 14972 | <feature name="cart_model" value="SHVC-006" /> |
| 13766 | 14973 | <feature name="cart_back_label" value="920214" /> |
| 14974 | ||
| 14975 | <feature name="slot" value="lorom" /> | |
| 13767 | 14976 | <dataarea name="rom" size="2097152"> |
| 13768 | 14977 | <rom name="shvc-aj3j-0.u1" size="2097152" crc="1499b746" sha1="4ffe84a8a2700e9c3bd09a5ae8abacc013050da0" offset="0x000000" /> |
| 13769 | 14978 | </dataarea> |
| r21545 | r21546 | |
| 13790 | 14999 | <feature name="battery" value="BATT CR2032" /> |
| 13791 | 15000 | <feature name="cart_model" value="SHVC-006" /> |
| 13792 | 15001 | <feature name="cart_back_label" value="920214" /> |
| 15002 | ||
| 15003 | <feature name="slot" value="lorom" /> | |
| 13793 | 15004 | <dataarea name="rom" size="1572864"> |
| 13794 | 15005 | <rom name="shvc-vx-0 p0.u1" size="1048576" crc="47c0f937" sha1="aa3fe77e94038357a77aa08e08f0ed41badc8fc5" offset="0x000000" /> |
| 13795 | 15006 | <rom name="shvc-vx-0 p1.u2" size="524288" crc="b981ab5f" sha1="43d7c1aa1237ce590fcd744ec04efb718476cd18" offset="0x100000" /> |
| r21545 | r21546 | |
| 13816 | 15027 | <feature name="battery" value="BATT CR2032" /> |
| 13817 | 15028 | <feature name="cart_model" value="SHVC-006" /> |
| 13818 | 15029 | <feature name="cart_back_label" value="920214" /> |
| 15030 | ||
| 15031 | <feature name="slot" value="hirom" /> | |
| 13819 | 15032 | <dataarea name="rom" size="2097152"> |
| 13820 | 15033 | <rom name="shvc-ajsj-0.u1" size="2097152" crc="26664bb4" sha1="7d017b19fef59e6d583c8de95314c5495d36defc" offset="0x000000" /> |
| 13821 | 15034 | </dataarea> |
| r21545 | r21546 | |
| 13838 | 15051 | <feature name="lockout" value="" /> |
| 13839 | 15052 | <feature name="cart_model" value="SHVC-006" /> |
| 13840 | 15053 | <feature name="cart_back_label" value="901121" /> |
| 15054 | ||
| 15055 | <feature name="slot" value="lorom" /> | |
| 13841 | 15056 | <dataarea name="rom" size="1048576"> |
| 13842 | 15057 | <rom name="shvc-br-0.u1" size="1048576" crc="c157978c" sha1="d79896f4ad042961a6b0111cee2f6e425c253059" offset="0x000000" /> |
| 13843 | 15058 | </dataarea> |
| r21545 | r21546 | |
| 13856 | 15071 | <feature name="lockout" value="" /> |
| 13857 | 15072 | <feature name="cart_model" value="SNSP-006" /> |
| 13858 | 15073 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 15074 | ||
| 15075 | <feature name="slot" value="lorom" /> | |
| 13859 | 15076 | <dataarea name="rom" size="524288"> |
| 13860 | 15077 | <rom name="spal-jj-0.u1" size="524288" crc="7414a4c2" sha1="f2627ed67e2c653b9256e0c0bc77d1ba5322e96c" offset="0x000000" /> |
| 13861 | 15078 | </dataarea> |
| r21545 | r21546 | |
| 13880 | 15097 | <feature name="battery" value="BATT CR2032" /> |
| 13881 | 15098 | <feature name="cart_model" value="SHVC-006" /> |
| 13882 | 15099 | <feature name="cart_back_label" value="920214" /> |
| 15100 | ||
| 15101 | <feature name="slot" value="hirom" /> | |
| 13883 | 15102 | <dataarea name="rom" size="2621440"> |
| 13884 | 15103 | <rom name="shvc-a94j-0 p0.u1" size="2097152" crc="fface06e" sha1="55692e2839e41caf4df09da8e2e3c83d3ad89b96" offset="0x000000" /> |
| 13885 | 15104 | <rom name="shvc-a94j-0 p3.u2" size="524288" crc="b397b07d" sha1="2c667f48cea7dd33465712e5f4d861aac4b33fd1" offset="0x200000" /> |
| r21545 | r21546 | |
| 13907 | 15126 | <feature name="battery" value="BATT CR2032" /> |
| 13908 | 15127 | <feature name="cart_model" value="SHVC-006" /> |
| 13909 | 15128 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 15129 | ||
| 15130 | <feature name="slot" value="lorom" /> | |
| 13910 | 15131 | <dataarea name="rom" size="4194304"> |
| 13911 | 15132 | <rom name="shvc-ajxj-0.u1" size="4194304" crc="94c1d85c" sha1="e24b1dcf8e60ebfdb5b0c1d4fe20756ad53f4d61" offset="0x000000" /> |
| 13912 | 15133 | </dataarea> |
| r21545 | r21546 | |
| 13933 | 15154 | <feature name="battery" value="BATT CR2032" /> |
| 13934 | 15155 | <feature name="cart_model" value="SHVC-006" /> |
| 13935 | 15156 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 15157 | ||
| 15158 | <feature name="slot" value="lorom" /> | |
| 13936 | 15159 | <dataarea name="rom" size="3145728"> |
| 13937 | 15160 | <rom name="shvc-aj5j-0.u1" size="3145728" crc="e17c5c97" sha1="2752ff02cb7ff7213b28115ad7e42502ecd1beb8" offset="0x000000" /> |
| 13938 | 15161 | </dataarea> |
| r21545 | r21546 | |
| 13960 | 15183 | <feature name="battery" value="BATT CR2032" /> |
| 13961 | 15184 | <feature name="cart_model" value="SHVC-006" /> |
| 13962 | 15185 | <feature name="cart_back_label" value="920214" /> |
| 15186 | ||
| 15187 | <feature name="slot" value="lorom" /> | |
| 13963 | 15188 | <dataarea name="rom" size="2621440"> |
| 13964 | 15189 | <rom name="shvc-ap2j-0 p0.u1" size="2097152" crc="072090b7" sha1="ae65471e1e5269563945b1cac183da1f18e7ad77" offset="0x000000" /> |
| 13965 | 15190 | <rom name="shvc-ap2j-0 p3.u2" size="524288" crc="506c0197" sha1="cf84e58fbcfc297e7c4c05263b135e03523a8cf6" offset="0x200000" /> |
| r21545 | r21546 | |
| 13987 | 15212 | <feature name="battery" value="BATT CR2032" /> |
| 13988 | 15213 | <feature name="cart_model" value="SHVC-006" /> |
| 13989 | 15214 | <feature name="cart_back_label" value="920214" /> |
| 15215 | ||
| 15216 | <feature name="slot" value="lorom" /> | |
| 13990 | 15217 | <dataarea name="rom" size="3145728"> |
| 13991 | 15218 | <rom name="shvc-a3jj-0.u1" size="3145728" crc="f7c3a222" sha1="a3f0eeb11ac12c5febeb64c5183763ec4229a3bd" offset="0x000000" /> |
| 13992 | 15219 | </dataarea> |
| r21545 | r21546 | |
| 14014 | 15241 | <feature name="battery" value="BATT CR2032" /> |
| 14015 | 15242 | <feature name="cart_model" value="SHVC-006" /> |
| 14016 | 15243 | <feature name="cart_back_label" value="920214" /> |
| 15244 | ||
| 15245 | <feature name="slot" value="lorom" /> | |
| 14017 | 15246 | <dataarea name="rom" size="3145728"> |
| 14018 | 15247 | <rom name="shvc-a3jj-0 p0.u1" size="2097152" crc="d2896548" sha1="1604e0d7bb55851d87349a88e800a0e69c193f78" offset="0x000000" /> |
| 14019 | 15248 | <rom name="shvc-a3jj-0 p3.u2" size="1048576" crc="51ab48bd" sha1="4faeb56f7de04e32ff4178ebbb04ef55df50ec10" offset="0x200000" /> |
| r21545 | r21546 | |
| 14041 | 15270 | <feature name="battery" value="BATT CR2032" /> |
| 14042 | 15271 | <feature name="cart_model" value="SHVC-006" /> |
| 14043 | 15272 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 15273 | ||
| 15274 | <feature name="slot" value="lorom" /> | |
| 14044 | 15275 | <dataarea name="rom" size="3145728"> |
| 14045 | 15276 | <rom name="shvc-aq7j-0.u1" size="3145728" crc="ad5b0417" sha1="46cf1acadd4c1a87598eafcca7795f8480dfcbae" offset="0x000000" /> |
| 14046 | 15277 | </dataarea> |
| r21545 | r21546 | |
| 14064 | 15295 | <feature name="lockout" value="" /> |
| 14065 | 15296 | <feature name="cart_model" value="SHVC-006" /> |
| 14066 | 15297 | <feature name="cart_back_label" value="920214" /> |
| 15298 | ||
| 15299 | <feature name="slot" value="lorom" /> | |
| 14067 | 15300 | <dataarea name="rom" size="2097152"> |
| 14068 | 15301 | <rom name="shvc-yx-0.u1" size="2097152" crc="a4374771" sha1="955b28bde4a64916cf0499a994098d08bcbdd3de" offset="0x000000" /> |
| 14069 | 15302 | </dataarea> |
| r21545 | r21546 | |
| 14088 | 15321 | <feature name="battery" value="BATT CR2032" /> |
| 14089 | 15322 | <feature name="cart_model" value="SHVC-006" /> |
| 14090 | 15323 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 15324 | ||
| 15325 | <feature name="slot" value="lorom" /> | |
| 14091 | 15326 | <dataarea name="rom" size="3145728"> |
| 14092 | 15327 | <rom name="shvc-a57j-0.u1" size="3145728" crc="bc9b4391" sha1="b4efc86977342c01246bc5b4a7ecf18963ecdc9c" offset="0x000000" /> |
| 14093 | 15328 | </dataarea> |
| r21545 | r21546 | |
| 14115 | 15350 | <feature name="cart_revision" value="A" /> |
| 14116 | 15351 | <feature name="cart_model" value="SHVC-006" /> |
| 14117 | 15352 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 15353 | ||
| 15354 | <feature name="slot" value="lorom" /> | |
| 14118 | 15355 | <dataarea name="rom" size="3145728"> |
| 14119 | 15356 | <rom name="shvc-a57j-1.u1" size="3145728" crc="fb487712" sha1="cd72925ca1a135bc3fa8160e4c92664836294055" offset="0x000000" /> |
| 14120 | 15357 | </dataarea> |
| r21545 | r21546 | |
| 14141 | 15378 | <feature name="battery" value="BATT CR2032" /> |
| 14142 | 15379 | <feature name="cart_model" value="SHVC-006" /> |
| 14143 | 15380 | <feature name="cart_back_label" value="920214" /> |
| 15381 | ||
| 15382 | <feature name="slot" value="lorom" /> | |
| 14144 | 15383 | <dataarea name="rom" size="2097152"> |
| 14145 | 15384 | <rom name="shvc-3u-0.u1" size="2097152" crc="37c36fdc" sha1="fed2e45d5ece469a3c789b959d65f069662d56e1" offset="0x000000" /> |
| 14146 | 15385 | </dataarea> |
| r21545 | r21546 | |
| 14168 | 15407 | <feature name="cart_revision" value="A" /> |
| 14169 | 15408 | <feature name="cart_model" value="SHVC-006" /> |
| 14170 | 15409 | <feature name="cart_back_label" value="920214" /> |
| 15410 | ||
| 15411 | <feature name="slot" value="lorom" /> | |
| 14171 | 15412 | <dataarea name="rom" size="2097152"> |
| 14172 | 15413 | <rom name="shvc-3u-1.u1" size="2097152" crc="16d71685" sha1="533fc018b897149f0b03d34646bfc9b9087380eb" offset="0x000000" /> |
| 14173 | 15414 | </dataarea> |
| r21545 | r21546 | |
| 14195 | 15436 | <feature name="battery" value="BATT CR2032" /> |
| 14196 | 15437 | <feature name="cart_model" value="SHVC-006" /> |
| 14197 | 15438 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 15439 | ||
| 15440 | <feature name="slot" value="lorom" /> | |
| 14198 | 15441 | <dataarea name="rom" size="3145728"> |
| 14199 | 15442 | <rom name="shvc-awjj-0 p0.u1" size="2097152" crc="6e373688" sha1="c7ddc2a1410667aac39f35a98a33ff76a37f1777" offset="0x000000" /> |
| 14200 | 15443 | <rom name="shvc-awjj-0 p3.u2" size="1048576" crc="d89e74c5" sha1="82d97d955ef96e924244e4bcaf34b288d7a5d4f8" offset="0x200000" /> |
| r21545 | r21546 | |
| 14216 | 15459 | <feature name="lockout" value="" /> |
| 14217 | 15460 | <feature name="cart_model" value="SNSP-006" /> |
| 14218 | 15461 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 15462 | ||
| 15463 | <feature name="slot" value="lorom" /> | |
| 14219 | 15464 | <dataarea name="rom" size="524288"> |
| 14220 | 15465 | <rom name="sfrg-jc-0.u1" size="524288" crc="e2294a8e" sha1="0e0c581574851b09487ccb8ebc1cb7514be05a31" offset="0x000000" /> |
| 14221 | 15466 | </dataarea> |
| r21545 | r21546 | |
| 14240 | 15485 | <feature name="battery" value="BATT CR2032" /> |
| 14241 | 15486 | <feature name="cart_model" value="SHVC-006" /> |
| 14242 | 15487 | <feature name="cart_back_label" value="920214" /> |
| 15488 | ||
| 15489 | <feature name="slot" value="lorom" /> | |
| 14243 | 15490 | <dataarea name="rom" size="524288"> |
| 14244 | 15491 | <rom name="shvc-pi-0.u1" size="524288" crc="4664ff26" sha1="c8b1f4b97c1fd50114b80c7c7fdcc8f5bd4f72ff" offset="0x000000" /> |
| 14245 | 15492 | </dataarea> |
| r21545 | r21546 | |
| 14266 | 15513 | <feature name="battery" value="BATT CR2032" /> |
| 14267 | 15514 | <feature name="cart_model" value="SHVC-006" /> |
| 14268 | 15515 | <feature name="cart_back_label" value="920214" /> |
| 15516 | ||
| 15517 | <feature name="slot" value="lorom" /> | |
| 14269 | 15518 | <dataarea name="rom" size="1048576"> |
| 14270 | 15519 | <rom name="shvc-xu-0.u1" size="1048576" crc="9bfa7045" sha1="ea1c868ad7ae1e861262c005c39953712e1bdaef" offset="0x000000" /> |
| 14271 | 15520 | </dataarea> |
| r21545 | r21546 | |
| 14292 | 15541 | <feature name="battery" value="BATT CR2032" /> |
| 14293 | 15542 | <feature name="cart_model" value="SHVC-028" /> |
| 14294 | 15543 | <feature name="cart_back_label" value="G736879 BSC-JPN" /> |
| 15544 | ||
| 15545 | <feature name="slot" value="hirom_bsx" /> | |
| 14295 | 15546 | <dataarea name="rom" size="1048576"> |
| 14296 | 15547 | <rom name="shvc-ztmj-0.u1" size="1048576" crc="a24944e4" sha1="8417556b5ce22fb9bc4026fe28f7aee348a76fd9" offset="0x000000" /> |
| 14297 | 15548 | </dataarea> |
| r21545 | r21546 | |
| 14312 | 15563 | <feature name="lockout" value="" /> |
| 14313 | 15564 | <feature name="cart_model" value="SNSP-006" /> |
| 14314 | 15565 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 15566 | ||
| 15567 | <feature name="slot" value="lorom" /> | |
| 14315 | 15568 | <dataarea name="rom" size="2097152"> |
| 14316 | 15569 | <rom name="spal-ajdp-0.u1" size="2097152" crc="7742b6f4" sha1="4d824268805986f807c1a8cb0656fd470e692e93" offset="0x000000" /> |
| 14317 | 15570 | </dataarea> |
| r21545 | r21546 | |
| 14342 | 15595 | <feature name="lockout" value="" /> |
| 14343 | 15596 | <feature name="cart_model" value="SNSP-006" /> |
| 14344 | 15597 | <feature name="cart_back_label" value="" /> |
| 15598 | ||
| 15599 | <feature name="slot" value="lorom" /> | |
| 14345 | 15600 | <dataarea name="rom" size="2097152"> |
| 14346 | 15601 | <rom name="spal-7k-0.u1" size="2097152" crc="392ae185" sha1="108f21e83050bdead3c229398ce3e42085758e56" offset="0x000000" /> |
| 14347 | 15602 | </dataarea> |
| r21545 | r21546 | |
| 14361 | 15616 | <feature name="lockout" value="" /> |
| 14362 | 15617 | <feature name="cart_model" value="SNS-006" /> |
| 14363 | 15618 | <feature name="cart_back_label" value="" /> |
| 15619 | ||
| 15620 | <feature name="slot" value="lorom" /> | |
| 14364 | 15621 | <dataarea name="rom" size="2097152"> |
| 14365 | 15622 | <rom name="sns-7k-0.u1" size="2097152" crc="3511efb3" sha1="f9dbb76fb1a62d47f8de4e7db46bfbcb1a038ca5" offset="0x000000" /> |
| 14366 | 15623 | </dataarea> |
| r21545 | r21546 | |
| 14382 | 15639 | <feature name="lockout" value="" /> |
| 14383 | 15640 | <feature name="cart_model" value="SHVC-006" /> |
| 14384 | 15641 | <feature name="cart_back_label" value="920214" /> |
| 15642 | ||
| 15643 | <feature name="slot" value="lorom" /> | |
| 14385 | 15644 | <dataarea name="rom" size="1048576"> |
| 14386 | 15645 | <rom name="shvc-5j-0.u1" size="1048576" crc="eec6a20f" sha1="d006fca25506af64dbcc601ce627d7d933684c21" offset="0x000000" /> |
| 14387 | 15646 | </dataarea> |
| r21545 | r21546 | |
| 14400 | 15659 | <feature name="lockout" value="" /> |
| 14401 | 15660 | <feature name="cart_model" value="SNSP-006" /> |
| 14402 | 15661 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 15662 | ||
| 15663 | <feature name="slot" value="lorom" /> | |
| 14403 | 15664 | <dataarea name="rom" size="2097152"> |
| 14404 | 15665 | <rom name="spal-ajgp-0.u1" size="2097152" crc="fb770320" sha1="07d155903f8d7cfa0b66f5e379163282987a635f" offset="0x000000" /> |
| 14405 | 15666 | </dataarea> |
| r21545 | r21546 | |
| 14420 | 15681 | <feature name="lockout" value="" /> |
| 14421 | 15682 | <feature name="cart_model" value="SNS-006" /> |
| 14422 | 15683 | <feature name="cart_back_label" value="" /> |
| 15684 | ||
| 15685 | <feature name="slot" value="lorom" /> | |
| 14423 | 15686 | <dataarea name="rom" size="2097152"> |
| 14424 | 15687 | <rom name="sns-j8-0.u1" size="2097152" crc="77540cb9" sha1="dcf24b8bcbda766ffafdebfd39aad073c18176f3" offset="0x000000" /> |
| 14425 | 15688 | </dataarea> |
| r21545 | r21546 | |
| 14441 | 15704 | <feature name="cart_revision" value="Ø" /> <!-- Majesco carts don't have a revision stamp --> |
| 14442 | 15705 | <feature name="cart_model" value="SNS-006" /> |
| 14443 | 15706 | <feature name="cart_back_label" value="" /> |
| 15707 | ||
| 15708 | <feature name="slot" value="lorom" /> | |
| 14444 | 15709 | <dataarea name="rom" size="2097152"> |
| 14445 | 15710 | <rom name="sns-p-j8-1.u1" size="2097152" crc="8bfde0b7" sha1="4d0e15ca36c11f3b3257424f48a1d3be39972835" offset="0x000000" /> |
| 14446 | 15711 | </dataarea> |
| r21545 | r21546 | |
| 14465 | 15730 | <feature name="battery" value="BATT CR2032" /> |
| 14466 | 15731 | <feature name="cart_model" value="SHVC-006" /> |
| 14467 | 15732 | <feature name="cart_back_label" value="920214" /> |
| 15733 | ||
| 15734 | <feature name="slot" value="hirom" /> | |
| 14468 | 15735 | <dataarea name="rom" size="1572864"> |
| 14469 | 15736 | <rom name="shvc-ju-0 p0.u1" size="1048576" crc="7c359f5c" sha1="745cee7a7484c2a96f610eedeb0585b184bddbed" offset="0x000000" /> |
| 14470 | 15737 | <rom name="shvc-ju-0 p1.u2" size="524288" crc="6d907f14" sha1="56914a7c5a85f5f8ae7deead85fb613fcddedd8a" offset="0x100000" /> |
| r21545 | r21546 | |
| 14491 | 15758 | <feature name="battery" value="BATT CR2032" /> |
| 14492 | 15759 | <feature name="cart_model" value="SHVC-006" /> |
| 14493 | 15760 | <feature name="cart_back_label" value="920214" /> |
| 15761 | ||
| 15762 | <feature name="slot" value="lorom" /> | |
| 14494 | 15763 | <dataarea name="rom" size="524288"> |
| 14495 | 15764 | <rom name="shvc-4k-0.u1" size="524288" crc="ba902cd5" sha1="e4d9f3176df6dc1ea5b05505d158c92b40d9d597" offset="0x000000" /> |
| 14496 | 15765 | </dataarea> |
| r21545 | r21546 | |
| 14499 | 15768 | </part> |
| 14500 | 15769 | </software> |
| 14501 | 15770 | |
| 14502 | <software name=" | |
| 15771 | <software name="dezaemon"> | |
| 14503 | 15772 | <description>Kaite Tsukutte Asoberu Dezaemon (Jpn)</description> |
| 14504 | 15773 | <year>1994</year> |
| 14505 | 15774 | <publisher>Athena</publisher> |
| r21545 | r21546 | |
| 14517 | 15786 | <feature name="battery" value="BATT CR2032" /> |
| 14518 | 15787 | <feature name="cart_model" value="SHVC-006" /> |
| 14519 | 15788 | <feature name="cart_back_label" value="920214" /> |
| 15789 | ||
| 15790 | <feature name="slot" value="lorom" /> | |
| 14520 | 15791 | <dataarea name="rom" size="524288"> |
| 14521 | 15792 | <rom name="shvc-66-0.u1" size="524288" crc="052167cc" sha1="4b5725aeb7f770feadda6cfec5e609ff57fce363" offset="0x000000" /> |
| 14522 | 15793 | </dataarea> |
| 14523 | <dataarea name="nvram" size=" | |
| 15794 | <dataarea name="nvram" size="131072"> <!-- The game expects 4x32kb of NVRAM to pass initial checks... Double check this! --> | |
| 14524 | 15795 | </dataarea> |
| 14525 | 15796 | </part> |
| 14526 | 15797 | </software> |
| r21545 | r21546 | |
| 14542 | 15813 | <feature name="battery" value="BATT CR2032" /> |
| 14543 | 15814 | <feature name="cart_model" value="SHVC-006" /> |
| 14544 | 15815 | <feature name="cart_back_label" value="920214" /> |
| 15816 | ||
| 15817 | <feature name="slot" value="lorom" /> | |
| 14545 | 15818 | <dataarea name="rom" size="3145728"> |
| 14546 | 15819 | <rom name="shvc-eu-0.u1" size="3145728" crc="71c631aa" sha1="4c8f357bd86f9ed909d6a89afb0dbe74913fb333" offset="0x000000" /> |
| 14547 | 15820 | </dataarea> |
| r21545 | r21546 | |
| 14568 | 15841 | <feature name="battery" value="BATT CR2032" /> |
| 14569 | 15842 | <feature name="cart_model" value="SHVC-006" /> |
| 14570 | 15843 | <feature name="cart_back_label" value="920214" /> |
| 15844 | ||
| 15845 | <feature name="slot" value="lorom" /> | |
| 14571 | 15846 | <dataarea name="rom" size="3145728"> |
| 14572 | 15847 | <rom name="shvc-eu-0 p0.u1" size="2097152" crc="5b163356" sha1="16f8cb6c2c2a046413c47c37381f916d5c131faf" offset="0x000000" /> |
| 14573 | 15848 | <rom name="shvc-eu-0 p1.u2" size="1048576" crc="0e484bab" sha1="c8a38d846ad61e7838e903fd349cad6092d179a6" offset="0x200000" /> |
| r21545 | r21546 | |
| 14595 | 15870 | <feature name="battery" value="BATT CR2032" /> |
| 14596 | 15871 | <feature name="cart_model" value="SHVC-006" /> |
| 14597 | 15872 | <feature name="cart_back_label" value="920214" /> |
| 15873 | ||
| 15874 | <feature name="slot" value="lorom" /> | |
| 14598 | 15875 | <dataarea name="rom" size="1572864"> |
| 14599 | 15876 | <rom name="shvc-aknj-0 p0.u1" size="1048576" crc="9edef726" sha1="8d018d7c7756098609079b9646651e8d62cdbf2c" offset="0x000000" /> |
| 14600 | 15877 | <rom name="shvc-aknj-0 p1.u2" size="524288" crc="251c987f" sha1="f3cea8d0e4c424cf10bd124349a3df1ea0ea4c38" offset="0x100000" /> |
| r21545 | r21546 | |
| 14617 | 15894 | <feature name="lockout" value="D411B 9525 C" /> |
| 14618 | 15895 | <feature name="cart_model" value="SNS-006" /> |
| 14619 | 15896 | <feature name="cart_back_label" value="" /> |
| 15897 | ||
| 15898 | <feature name="slot" value="lorom" /> | |
| 14620 | 15899 | <dataarea name="rom" size="1048576"> |
| 14621 | 15900 | <rom name="sns-akee-0.u1" size="1048576" crc="e8ed176e" sha1="843c025b26e1640c2bf080375ecd7ed79e97fe08" offset="0x000000" /> |
| 14622 | 15901 | </dataarea> |
| r21545 | r21546 | |
| 14640 | 15919 | <feature name="battery" value="BATT CR2032" /> |
| 14641 | 15920 | <feature name="cart_model" value="SHVC-006" /> |
| 14642 | 15921 | <feature name="cart_back_label" value="920214" /> |
| 15922 | ||
| 15923 | <feature name="slot" value="lorom" /> | |
| 14643 | 15924 | <dataarea name="rom" size="1048576"> |
| 14644 | 15925 | <rom name="shvc-82-0.u1" size="1048576" crc="2b88e48d" sha1="7f62907573fb5401da6323fd963e72978fa28f76" offset="0x000000" /> |
| 14645 | 15926 | </dataarea> |
| r21545 | r21546 | |
| 14665 | 15946 | <feature name="battery" value="BATT CR2032" /> |
| 14666 | 15947 | <feature name="cart_model" value="SNS-006" /> |
| 14667 | 15948 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 15949 | ||
| 15950 | <feature name="slot" value="lorom" /> | |
| 14668 | 15951 | <dataarea name="rom" size="2097152"> |
| 14669 | 15952 | <rom name="sns-jr-0.u1" size="2097152" crc="8bf2b589" sha1="c33066642fccff2ecc042f00f27998fcdbb1f374" offset="0x000000" /> |
| 14670 | 15953 | </dataarea> |
| r21545 | r21546 | |
| 14691 | 15974 | <feature name="battery" value="BATT CR2032" /> |
| 14692 | 15975 | <feature name="cart_model" value="SNS-006" /> |
| 14693 | 15976 | <feature name="cart_back_label" value="M/SNS-USA/CAN-1" /> |
| 15977 | ||
| 15978 | <feature name="slot" value="hirom" /> | |
| 14694 | 15979 | <dataarea name="rom" size="4194304"> |
| 14695 | 15980 | <rom name="sns-a9ge-0.u1" size="4194304" crc="e9b4bd73" sha1="ca78faf0dcafcbbc7a114cf9f9f5a5d0f1f289f7" offset="0x000000" /> |
| 14696 | 15981 | </dataarea> |
| r21545 | r21546 | |
| 14718 | 16003 | <feature name="battery" value="BATT CR2032" /> |
| 14719 | 16004 | <feature name="cart_model" value="SHVC-006" /> |
| 14720 | 16005 | <feature name="cart_back_label" value="920214" /> |
| 16006 | ||
| 16007 | <feature name="slot" value="lorom" /> | |
| 14721 | 16008 | <dataarea name="rom" size="1048576"> |
| 14722 | 16009 | <rom name="shvc-ix-0.u1" size="1048576" crc="9ba1f895" sha1="45c4de22174f01135628d8b61eff0de672bc7d30" offset="0x000000" /> |
| 14723 | 16010 | </dataarea> |
| r21545 | r21546 | |
| 14744 | 16031 | <feature name="battery" value="BATT CR2032" /> |
| 14745 | 16032 | <feature name="cart_model" value="SHVC-006" /> |
| 14746 | 16033 | <feature name="cart_back_label" value="920214" /> |
| 16034 | ||
| 16035 | <feature name="slot" value="lorom" /> | |
| 14747 | 16036 | <dataarea name="rom" size="1572864"> |
| 14748 | 16037 | <rom name="shvc-78-0 p0.u1" size="1048576" crc="a96f4029" sha1="e9b50ea2a7d1c2bb6c63af8b08d536a0e6fdaa66" offset="0x000000" /> |
| 14749 | 16038 | <rom name="shvc-78-0 p1.u2" size="524288" crc="5e5b59f0" sha1="34cc8762491963d9b7183b417453c713ed430cc1" offset="0x100000" /> |
| r21545 | r21546 | |
| 14770 | 16059 | <feature name="battery" value="BATT CR2032" /> |
| 14771 | 16060 | <feature name="cart_model" value="SHVC-006" /> |
| 14772 | 16061 | <feature name="cart_back_label" value="901121" /> |
| 16062 | ||
| 16063 | <feature name="slot" value="lorom" /> | |
| 14773 | 16064 | <dataarea name="rom" size="1048576"> |
| 14774 | 16065 | <rom name="shvc-gp-0.u1" size="1048576" crc="ceaf5365" sha1="19e718bed32fe8c972934629aa4a4c04e1960f9c" offset="0x000000" /> |
| 14775 | 16066 | </dataarea> |
| r21545 | r21546 | |
| 14794 | 16085 | <feature name="lockout" value="" /> |
| 14795 | 16086 | <feature name="cart_model" value="SHVC-006" /> |
| 14796 | 16087 | <feature name="cart_back_label" value="920214" /> |
| 16088 | ||
| 16089 | <feature name="slot" value="lorom" /> | |
| 14797 | 16090 | <dataarea name="rom" size="1572864"> |
| 14798 | 16091 | <rom name="shvc-vu-0 p0.u1" size="1048576" crc="55e106a5" sha1="153c6aa8ad1300551ddfc5a1e023bd050f31b0dd" offset="0x000000" /> |
| 14799 | 16092 | <rom name="shvc-vu-0 p1.u2" size="524288" crc="99fcf991" sha1="b0dc5633bb23b46b71b2b3787db7fa76e02201e8" offset="0x100000" /> |
| r21545 | r21546 | |
| 14813 | 16106 | <feature name="lockout" value="" /> |
| 14814 | 16107 | <feature name="cart_model" value="SNSP-006" /> |
| 14815 | 16108 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 16109 | ||
| 16110 | <feature name="slot" value="hirom" /> | |
| 14816 | 16111 | <dataarea name="rom" size="4194304"> |
| 14817 | 16112 | <rom name="spal-aklp-0.u1" size="4194304" crc="3d7252d4" sha1="ba0b5147c6c87c9a7471a1d7be2579f4644898ea" offset="0x000000" /> |
| 14818 | 16113 | </dataarea> |
| r21545 | r21546 | |
| 14832 | 16127 | <feature name="lockout" value="" /> |
| 14833 | 16128 | <feature name="cart_model" value="SNS-006" /> |
| 14834 | 16129 | <feature name="cart_back_label" value="" /> |
| 16130 | ||
| 16131 | <feature name="slot" value="hirom" /> | |
| 14835 | 16132 | <dataarea name="rom" size="4194304"> |
| 14836 | 16133 | <rom name="sns-akle-0.u1" size="4194304" crc="252c1da7" sha1="ee9e2e95d6e99eb1b0e2060a1210a489e88dcc13" offset="0x000000" /> |
| 14837 | 16134 | </dataarea> |
| r21545 | r21546 | |
| 14853 | 16150 | <feature name="lockout" value="D411B 9519 B" /> |
| 14854 | 16151 | <feature name="cart_model" value="SNS-006" /> |
| 14855 | 16152 | <feature name="cart_back_label" value="" /> |
| 16153 | ||
| 16154 | <feature name="slot" value="hirom" /> | |
| 14856 | 16155 | <dataarea name="rom" size="2621440"> |
| 14857 | 16156 | <rom name="sns-aake-0 p0.u1" size="2097152" crc="470079ad" sha1="3bf13dd2e281a6425066ba30722b2e681c5b9819" offset="0x000000" /> |
| 14858 | 16157 | <rom name="sns-aake-0 p3.u2" size="524288" crc="ceee4424" sha1="9faf4d7b56880a306e706742bd43cee7d1b5497d" offset="0x200000" /> |
| r21545 | r21546 | |
| 14873 | 16172 | <feature name="lockout" value="D411A 9302 BA" /> |
| 14874 | 16173 | <feature name="cart_model" value="SNS-006" /> |
| 14875 | 16174 | <feature name="cart_back_label" value="" /> |
| 16175 | ||
| 16176 | <feature name="slot" value="lorom" /> | |
| 14876 | 16177 | <dataarea name="rom" size="524288"> |
| 14877 | 16178 | <rom name="sns-rc-0.u1" size="524288" crc="99bd1fe1" sha1="55d037575affe9a1acae30a395bb4680e76a3e0b" offset="0x000000" /> |
| 14878 | 16179 | </dataarea> |
| r21545 | r21546 | |
| 14891 | 16192 | <feature name="lockout" value="" /> |
| 14892 | 16193 | <feature name="cart_model" value="SNSP-006" /> |
| 14893 | 16194 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 16195 | ||
| 16196 | <feature name="slot" value="hirom" /> | |
| 14894 | 16197 | <dataarea name="rom" size="2097152"> |
| 14895 | 16198 | <rom name="spal-ei-0.u1" size="2097152" crc="78f0820b" sha1="e65eaa67dbc227fead5ecc15e23771c29050eecd" offset="0x000000" /> |
| 14896 | 16199 | </dataarea> |
| r21545 | r21546 | |
| 14911 | 16214 | <feature name="lockout" value="" /> |
| 14912 | 16215 | <feature name="cart_model" value="SHVC-006" /> |
| 14913 | 16216 | <feature name="cart_back_label" value="920214" /> |
| 16217 | ||
| 16218 | <feature name="slot" value="lorom" /> | |
| 14914 | 16219 | <dataarea name="rom" size="1048576"> |
| 14915 | 16220 | <rom name="shvc-km-0.u1" size="1048576" crc="825b9607" sha1="38fa840c1129293232e2857fd82cab09956fc03c" offset="0x000000" /> |
| 14916 | 16221 | </dataarea> |
| r21545 | r21546 | |
| 14933 | 16238 | <feature name="lockout" value="" /> |
| 14934 | 16239 | <feature name="cart_model" value="SHVC-006" /> |
| 14935 | 16240 | <feature name="cart_back_label" value="920214" /> |
| 16241 | ||
| 16242 | <feature name="slot" value="hirom" /> | |
| 14936 | 16243 | <dataarea name="rom" size="2097152"> |
| 14937 | 16244 | <rom name="shvc-kt-0 p0.u1" size="1048576" crc="35c9d55f" sha1="662a564e646fdb2575359dda07fa1e6d575368f4" offset="0x000000" /> |
| 14938 | 16245 | <rom name="shvc-kt-0 p1.u2" size="1048576" crc="621195a8" sha1="26ea104fb12dc98fac92c12a4f88589d54e8f4a7" offset="0x100000" /> |
| r21545 | r21546 | |
| 14959 | 16266 | <feature name="battery" value="BATT CR2032" /> |
| 14960 | 16267 | <feature name="cart_model" value="SHVC-006" /> |
| 14961 | 16268 | <feature name="cart_back_label" value="920214" /> |
| 16269 | ||
| 16270 | <feature name="slot" value="lorom" /> | |
| 14962 | 16271 | <dataarea name="rom" size="1310720"> |
| 14963 | 16272 | <rom name="shvc-cg-0 p0.u1" size="1048576" crc="f47d1a34" sha1="8b6349303b253879d6d0d1a3967e2b5fb5ed4cdd" offset="0x000000" /> |
| 14964 | 16273 | <rom name="shvc-cg-0 p1.u2" size="262144" crc="4c8fb325" sha1="d71437920fdf1ddae266699a836d25b374a66ec1" offset="0x100000" /> |
| r21545 | r21546 | |
| 14984 | 16293 | <feature name="battery" value="BATT CR2032" /> |
| 14985 | 16294 | <feature name="cart_model" value="SNS-006" /> |
| 14986 | 16295 | <feature name="cart_back_label" value="" /> |
| 16296 | ||
| 16297 | <feature name="slot" value="lorom_sa1" /> | |
| 14987 | 16298 | <dataarea name="rom" size="4194304"> |
| 14988 | 16299 | <rom name="sns-akfe-0.u1" size="4194304" crc="89d0f7dc" sha1="cca1e67fa230bf4f60154f5ea55d06568229dc5d" offset="0x000000" /> |
| 14989 | 16300 | </dataarea> |
| r21545 | r21546 | |
| 15006 | 16317 | <feature name="lockout" value="" /> |
| 15007 | 16318 | <feature name="cart_model" value="SNS-006" /> |
| 15008 | 16319 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 16320 | ||
| 16321 | <feature name="slot" value="lorom" /> | |
| 15009 | 16322 | <dataarea name="rom" size="1048576"> |
| 15010 | 16323 | <rom name="sns-pq-0.u1" size="1048576" crc="21e658b8" sha1="95e4ac5f3f95863ffd8c6519f93a52b631c97d4a" offset="0x000000" /> |
| 15011 | 16324 | </dataarea> |
| r21545 | r21546 | |
| 15028 | 16341 | <feature name="battery" value="BATT CR2032" /> |
| 15029 | 16342 | <feature name="cart_model" value="SNSP-006" /> |
| 15030 | 16343 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 16344 | ||
| 16345 | <feature name="slot" value="lorom" /> | |
| 15031 | 16346 | <dataarea name="rom" size="1048576"> |
| 15032 | 16347 | <rom name="spal-cg-0.u1" size="1048576" crc="995cc0a3" sha1="97630b34fcf9f20963cd18d144a3927092540bb8" offset="0x000000" /> |
| 15033 | 16348 | </dataarea> |
| r21545 | r21546 | |
| 15051 | 16366 | <feature name="battery" value="BATT CR2032" /> |
| 15052 | 16367 | <feature name="cart_model" value="SNSP-006(-03)" /> |
| 15053 | 16368 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 16369 | ||
| 16370 | <feature name="slot" value="lorom_sa1" /> | |
| 15054 | 16371 | <dataarea name="rom" size="4194304"> |
| 15055 | 16372 | <rom name="spal-akfp-0.u1" size="4194304" crc="ce33dcfb" sha1="ce325ad271e91735ce19e9c2b8e0ad04dc103ae1" offset="0x000000" /> |
| 15056 | 16373 | </dataarea> |
| r21545 | r21546 | |
| 15077 | 16394 | <feature name="battery" value="BATT CR2032" /> |
| 15078 | 16395 | <feature name="cart_model" value="SHVC-006" /> |
| 15079 | 16396 | <feature name="cart_back_label" value="920214" /> |
| 16397 | ||
| 16398 | <feature name="slot" value="hirom" /> | |
| 15080 | 16399 | <dataarea name="rom" size="1572864"> |
| 15081 | 16400 | <rom name="shvc-hd-0 p0.u1" size="1048576" crc="58888851" sha1="b43235d4b4b641a101ee3112ef5b6ef0519ac432" offset="0x000000" /> |
| 15082 | 16401 | <rom name="shvc-hd-0 p1.u2" size="524288" crc="aaa5cf5d" sha1="c29316f5616f1bb97b7a1328d2c576272da3aad9" offset="0x100000" /> |
| r21545 | r21546 | |
| 15103 | 16422 | <feature name="battery" value="BATT CR2032" /> |
| 15104 | 16423 | <feature name="cart_model" value="SHVC-006" /> |
| 15105 | 16424 | <feature name="cart_back_label" value="920214" /> |
| 16425 | ||
| 16426 | <feature name="slot" value="lorom" /> | |
| 15106 | 16427 | <dataarea name="rom" size="1048576"> |
| 15107 | 16428 | <rom name="shvc-vl-0.u1" size="1048576" crc="2a6f930e" sha1="8ab97e9281eaf08f3c13aaafb9bc8d7fa3a45b16" offset="0x000000" /> |
| 15108 | 16429 | </dataarea> |
| r21545 | r21546 | |
| 15129 | 16450 | <feature name="battery" value="BATT CR2032" /> |
| 15130 | 16451 | <feature name="cart_model" value="SHVC-006" /> |
| 15131 | 16452 | <feature name="cart_back_label" value="920214" /> |
| 16453 | ||
| 16454 | <feature name="slot" value="hirom" /> | |
| 15132 | 16455 | <dataarea name="rom" size="1572864"> |
| 15133 | 16456 | <rom name="shvc-qg-0 p0.u1" size="1048576" crc="2becc571" sha1="a36b1967c9ee26192f9f92da47dd757c988c96e5" offset="0x000000" /> |
| 15134 | 16457 | <rom name="shvc-qg-0 p1.u2" size="524288" crc="60e5661e" sha1="bb63dfd97fa3b457f5cabb95265ece0174925f40" offset="0x100000" /> |
| r21545 | r21546 | |
| 15155 | 16478 | <feature name="battery" value="BATT CR2032" /> |
| 15156 | 16479 | <feature name="cart_model" value="SHVC-006" /> |
| 15157 | 16480 | <feature name="cart_back_label" value="920214" /> |
| 16481 | ||
| 16482 | <feature name="slot" value="hirom" /> | |
| 15158 | 16483 | <dataarea name="rom" size="1048576"> |
| 15159 | 16484 | <rom name="shvc-asgj-0.u1" size="1048576" crc="0e536dd2" sha1="f456fbef02ab88bc3827ea049df3ff3f1885a160" offset="0x000000" /> |
| 15160 | 16485 | </dataarea> |
| r21545 | r21546 | |
| 15177 | 16502 | <feature name="cart_revision" value="A" /> |
| 15178 | 16503 | <feature name="cart_model" value="SNS-006" /> |
| 15179 | 16504 | <feature name="cart_back_label" value="" /> |
| 16505 | ||
| 16506 | <feature name="slot" value="lorom" /> | |
| 15180 | 16507 | <dataarea name="rom" size="524288"> |
| 15181 | 16508 | <rom name="sns-fh-1.u1" size="524288" crc="ac5116d9" sha1="02b7a15f1c712503a36fc927ad688ade9ad8a0e5" offset="0x000000" /> |
| 15182 | 16509 | </dataarea> |
| r21545 | r21546 | |
| 15195 | 16522 | <feature name="lockout" value="" /> |
| 15196 | 16523 | <feature name="cart_model" value="SNSP-006" /> |
| 15197 | 16524 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 16525 | ||
| 16526 | <feature name="slot" value="lorom" /> | |
| 15198 | 16527 | <dataarea name="rom" size="524288"> |
| 15199 | 16528 | <rom name="spal-l8-0.u1" size="524288" crc="263178b2" sha1="b0ebdec85a3f72cb66c216bc3001cd2ce367ecb2" offset="0x000000" /> |
| 15200 | 16529 | </dataarea> |
| r21545 | r21546 | |
| 15219 | 16548 | <feature name="battery" value="BATT CR2032" /> |
| 15220 | 16549 | <feature name="cart_model" value="SHVC-006" /> |
| 15221 | 16550 | <feature name="cart_back_label" value="920214" /> |
| 16551 | ||
| 16552 | <feature name="slot" value="lorom" /> | |
| 15222 | 16553 | <dataarea name="rom" size="1048576"> |
| 15223 | 16554 | <rom name="shvc-l6-0.u1" size="1048576" crc="a6bb5a7a" sha1="4ef6c42e8e30439a047566658ba7c17bf1e07f40" offset="0x000000" /> |
| 15224 | 16555 | </dataarea> |
| r21545 | r21546 | |
| 15245 | 16576 | <feature name="battery" value="BATT CR2032" /> |
| 15246 | 16577 | <feature name="cart_model" value="SHVC-006" /> |
| 15247 | 16578 | <feature name="cart_back_label" value="920214" /> |
| 16579 | ||
| 16580 | <feature name="slot" value="hirom" /> | |
| 15248 | 16581 | <dataarea name="rom" size="3145728"> |
| 15249 | 16582 | <rom name="shvc-albj-0 p0.u1" size="2097152" crc="e1e4f152" sha1="fe84637842745686a7a1ed8de4e66c08585db11b" offset="0x000000" /> |
| 15250 | 16583 | <rom name="shvc-albj-0 p3.u2" size="1048576" crc="a51ec221" sha1="290e0410db913131abe6338830928da5da47c0d0" offset="0x200000" /> |
| r21545 | r21546 | |
| 15267 | 16600 | <feature name="lockout" value="" /> |
| 15268 | 16601 | <feature name="cart_model" value="SNS-006" /> |
| 15269 | 16602 | <feature name="cart_back_label" value="" /> |
| 16603 | ||
| 16604 | <feature name="slot" value="lorom" /> | |
| 15270 | 16605 | <dataarea name="rom" size="1048576"> |
| 15271 | 16606 | <rom name="sns-6l-0.u1" size="1048576" crc="0a6dd870" sha1="8d5595de49178294914d36ffc2b38f078cbd20a0" offset="0x000000" /> |
| 15272 | 16607 | </dataarea> |
| r21545 | r21546 | |
| 15285 | 16620 | <feature name="lockout" value="" /> |
| 15286 | 16621 | <feature name="cart_model" value="SNSP-006" /> |
| 15287 | 16622 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 16623 | ||
| 16624 | <feature name="slot" value="lorom" /> | |
| 15288 | 16625 | <dataarea name="rom" size="1048576"> |
| 15289 | 16626 | <rom name="sfrg-gg-0.u1" size="1048576" crc="5796529e" sha1="f971122ecb7fa6bfd82fe4697daf3806536f866e" offset="0x000000" /> |
| 15290 | 16627 | </dataarea> |
| r21545 | r21546 | |
| 15304 | 16641 | <feature name="lockout" value="" /> |
| 15305 | 16642 | <feature name="cart_model" value="SNS-006" /> |
| 15306 | 16643 | <feature name="cart_back_label" value="SNS-USA" /> |
| 16644 | ||
| 16645 | <feature name="slot" value="lorom" /> | |
| 15307 | 16646 | <dataarea name="rom" size="1048576"> |
| 15308 | 16647 | <rom name="sns-gg-0.u1" size="1048576" crc="82479d6a" sha1="e7db9b1220d66bc8665fe2761ac396dc28bfd88c" offset="0x000000" /> |
| 15309 | 16648 | </dataarea> |
| r21545 | r21546 | |
| 15325 | 16664 | <feature name="battery" value="BATT CR2032" /> |
| 15326 | 16665 | <feature name="cart_model" value="SNS-006" /> |
| 15327 | 16666 | <feature name="cart_back_label" value="" /> |
| 16667 | ||
| 16668 | <feature name="slot" value="lorom" /> | |
| 15328 | 16669 | <dataarea name="rom" size="1048576"> |
| 15329 | 16670 | <rom name="sns-zf-0.u1" size="1048576" crc="47760381" sha1="c1c6c7f76fff936c534ff11f87a54162fc0aa100" offset="0x000000" /> |
| 15330 | 16671 | </dataarea> |
| r21545 | r21546 | |
| 15349 | 16690 | <feature name="battery" value="BATT CR2032" /> |
| 15350 | 16691 | <feature name="cart_model" value="SNSP-006" /> |
| 15351 | 16692 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 16693 | ||
| 16694 | <feature name="slot" value="lorom" /> | |
| 15352 | 16695 | <dataarea name="rom" size="1048576"> |
| 15353 | 16696 | <rom name="sfrg-zl-0.u1" size="1048576" crc="6a6c2091" sha1="2e62494967fb0afdf5da1635607f9641df7c6559" offset="0x000000" /> |
| 15354 | 16697 | </dataarea> |
| r21545 | r21546 | |
| 15373 | 16716 | <feature name="battery" value="BATT CR2032" /> |
| 15374 | 16717 | <feature name="cart_model" value="SNSP-006" /> |
| 15375 | 16718 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 16719 | ||
| 16720 | <feature name="slot" value="lorom" /> | |
| 15376 | 16721 | <dataarea name="rom" size="1048576"> |
| 15377 | 16722 | <rom name="sfra-zl-0.u1" size="1048576" crc="1f8c30e8" sha1="229364a1b92a05167cd38609b1aa98f7041987cc" offset="0x000000" /> |
| 15378 | 16723 | </dataarea> |
| r21545 | r21546 | |
| 15410 | 16755 | --> |
| 15411 | 16756 | <feature name="cart_model" value="SNS-006" /> |
| 15412 | 16757 | <feature name="cart_back_label" value="" /> |
| 16758 | ||
| 16759 | <feature name="slot" value="lorom" /> | |
| 15413 | 16760 | <dataarea name="rom" size="1048576"> |
| 15414 | 16761 | <rom name="sns-zl-0.u1" size="1048576" crc="777aac2f" sha1="6d4f10a8b10e10dbe624cb23cf03b88bb8252973" offset="0x000000" /> |
| 15415 | 16762 | </dataarea> |
| r21545 | r21546 | |
| 15432 | 16779 | <feature name="lockout" value="" /> |
| 15433 | 16780 | <feature name="cart_model" value="SHVC-006" /> |
| 15434 | 16781 | <feature name="cart_back_label" value="901121" /> |
| 16782 | ||
| 16783 | <feature name="slot" value="lorom" /> | |
| 15435 | 16784 | <dataarea name="rom" size="1048576"> |
| 15436 | 16785 | <rom name="shvc-le-0.u1" size="1048576" crc="13027564" sha1="0b281f6d4eb20b9d35958792968e1ebdb502477d" offset="0x000000" /> |
| 15437 | 16786 | </dataarea> |
| r21545 | r21546 | |
| 15453 | 16802 | <feature name="battery" value="BATT CR2032" /> |
| 15454 | 16803 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 15455 | 16804 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 16805 | ||
| 16806 | <feature name="slot" value="lorom" /> | |
| 15456 | 16807 | <dataarea name="rom" size="2097152"> |
| 15457 | 16808 | <rom name="spal-l2-0.u1" size="2097152" crc="290107a1" sha1="fda84c807739021e40f5d20a65995a3bb6ffd371" offset="0x000000" /> |
| 15458 | 16809 | </dataarea> |
| r21545 | r21546 | |
| 15480 | 16831 | <feature name="battery" value="BATT CR2032" /> |
| 15481 | 16832 | <feature name="cart_model" value="SHVC-006" /> |
| 15482 | 16833 | <feature name="cart_back_label" value="920214" /> |
| 16834 | ||
| 16835 | <feature name="slot" value="lorom" /> | |
| 15483 | 16836 | <dataarea name="rom" size="1572864"> |
| 15484 | 16837 | <rom name="shvc-ln-0 p0.u1" size="1048576" crc="f31b83c2" sha1="3b5b36cb410129b5973670ce2b14fae28d4ace5f" offset="0x000000" /> |
| 15485 | 16838 | <rom name="shvc-ln-0 p1.u2" size="524288" crc="0e1e7cd6" sha1="f70fb9c21b47130688235e7686650d85998bfe9d" offset="0x100000" /> |
| r21545 | r21546 | |
| 15506 | 16859 | <feature name="battery" value="BATT CR2032" /> |
| 15507 | 16860 | <feature name="cart_model" value="SHVC-006" /> |
| 15508 | 16861 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 16862 | ||
| 16863 | <feature name="slot" value="hirom" /> | |
| 15509 | 16864 | <dataarea name="rom" size="4194304"> |
| 15510 | 16865 | <rom name="shvc-alnj-0.u1" size="4194304" crc="c68be22a" sha1="3cdec34bf2652b278ed482d3f425efff2aa64e7e" offset="0x000000" /> |
| 15511 | 16866 | </dataarea> |
| r21545 | r21546 | |
| 15527 | 16882 | <feature name="lockout" value="" /> |
| 15528 | 16883 | <feature name="cart_model" value="SNSP-006" /> |
| 15529 | 16884 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 16885 | ||
| 16886 | <feature name="slot" value="lorom" /> | |
| 15530 | 16887 | <dataarea name="rom" size="2097152"> |
| 15531 | 16888 | <rom name="spal-lk-0.u1" size="2097152" crc="aa6ee29c" sha1="5e24edaf584c05e35019c29570ffb83c248baf0e" offset="0x000000" /> |
| 15532 | 16889 | </dataarea> |
| r21545 | r21546 | |
| 15548 | 16905 | <feature name="lockout" value="" /> |
| 15549 | 16906 | <feature name="cart_model" value="SHVC-006" /> |
| 15550 | 16907 | <feature name="cart_back_label" value="920214" /> |
| 16908 | ||
| 16909 | <feature name="slot" value="lorom" /> | |
| 15551 | 16910 | <dataarea name="rom" size="2097152"> |
| 15552 | 16911 | <rom name="shvc-lk-0.u1" size="2097152" crc="3c948ea6" sha1="e33715d52b1deda1d6a6b8ffa279b168f1092ca2" offset="0x000000" /> |
| 15553 | 16912 | </dataarea> |
| r21545 | r21546 | |
| 15567 | 16926 | <feature name="lockout" value="" /> |
| 15568 | 16927 | <feature name="cart_model" value="SNS-006" /> |
| 15569 | 16928 | <feature name="cart_back_label" value="" /> |
| 16929 | ||
| 16930 | <feature name="slot" value="lorom" /> | |
| 15570 | 16931 | <dataarea name="rom" size="1048576"> |
| 15571 | 16932 | <rom name="sns-l3-0.u1" size="1048576" crc="a14c3dbc" sha1="c02e8042a1a637c84d762152f8033e8adc7f0f2e" offset="0x000000" /> |
| 15572 | 16933 | </dataarea> |
| r21545 | r21546 | |
| 15594 | 16955 | <feature name="cart_model" value="SNSP-006" /> |
| 15595 | 16956 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 15596 | 16957 | --> |
| 16958 | ||
| 16959 | <feature name="slot" value="hirom" /> | |
| 15597 | 16960 | <dataarea name="rom" size="3145728"> |
| 15598 | 16961 | <rom name="spal-alkp-0.u1" size="3145728" crc="8a46ed37" sha1="45c59fd06b00f6c7222e6a5904e66dac9cf0be07" offset="0x000000" /> |
| 15599 | 16962 | </dataarea> |
| r21545 | r21546 | |
| 15614 | 16977 | <feature name="lockout" value="" /> |
| 15615 | 16978 | <feature name="cart_model" value="SNSP-006" /> |
| 15616 | 16979 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 16980 | ||
| 16981 | <feature name="slot" value="hirom" /> | |
| 15617 | 16982 | <dataarea name="rom" size="3145728"> |
| 15618 | 16983 | <rom name="spal-alkp-0 p0.u1" size="2097152" crc="31394bcf" sha1="1028d5c0bb4b9411080d5418f81c124dd2bf27d7" offset="0x000000" /> |
| 15619 | 16984 | <rom name="spal-alkp-0 p3.u2" size="1048576" crc="7a2b62c0" sha1="e5968e5ed6cd21dfe3c6f2ee7de5abb5c7d1cbed" offset="0x200000" /> |
| r21545 | r21546 | |
| 15634 | 16999 | <feature name="lockout" value="" /> |
| 15635 | 17000 | <feature name="cart_model" value="SNS-006" /> |
| 15636 | 17001 | <feature name="cart_back_label" value="SNS-USA/CAN-1-M" /> |
| 17002 | ||
| 17003 | <feature name="slot" value="hirom" /> | |
| 15637 | 17004 | <dataarea name="rom" size="3145728"> |
| 15638 | 17005 | <rom name="sns-p-alke-00.u1" size="3145728" crc="c8fbfaa8" sha1="e5319132495fd34d03f141962d9d6e3d76fe7b02" offset="0x000000" /> |
| 15639 | 17006 | <!-- Notes: There is a version of the Majesco MAXI-1J0N-20-1 pcb where the rom name is "lion king.u1" --> |
| r21545 | r21546 | |
| 15659 | 17026 | <feature name="battery" value="BATT CR2032" /> |
| 15660 | 17027 | <feature name="cart_model" value="SHVC-006" /> |
| 15661 | 17028 | <feature name="cart_back_label" value="920214" /> |
| 17029 | ||
| 17030 | <feature name="slot" value="hirom" /> | |
| 15662 | 17031 | <dataarea name="rom" size="2097152"> |
| 15663 | 17032 | <rom name="shvc-5v-0.u1" size="2097152" crc="6291ee08" sha1="f626b0b767d11c62c5cb3f8d1d0171fe5deb4245" offset="0x000000" /> |
| 15664 | 17033 | </dataarea> |
| r21545 | r21546 | |
| 15684 | 17053 | <feature name="lockout" value="D411A 9252 BA" /> |
| 15685 | 17054 | <feature name="cart_model" value="SNS-006" /> |
| 15686 | 17055 | <feature name="cart_back_label" value="" /> |
| 17056 | ||
| 17057 | <feature name="slot" value="hirom_dsp" /> | |
| 15687 | 17058 | <dataarea name="rom" size="524288"> |
| 15688 | 17059 | <rom name="sns-az-0.u1" size="524288" crc="84f7e078" sha1="1f5e53a0391a902de6ee9407ed10803c84e23cc3" offset="0x000000" /> |
| 15689 | 17060 | </dataarea> |
| 17061 | <dataarea name="addon" size="10240"> | |
| 17062 | <rom name="dsp1a.u2" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 17063 | </dataarea> | |
| 15690 | 17064 | </part> |
| 15691 | 17065 | </software> |
| 15692 | 17066 | |
| r21545 | r21546 | |
| 15703 | 17077 | <feature name="lockout" value="" /> |
| 15704 | 17078 | <feature name="cart_model" value="SNS-006" /> |
| 15705 | 17079 | <feature name="cart_back_label" value="" /> |
| 17080 | ||
| 17081 | <feature name="slot" value="lorom" /> | |
| 15706 | 17082 | <dataarea name="rom" size="2097152"> |
| 15707 | 17083 | <rom name="sns-alte-0.u1" size="2097152" crc="6d3bc96f" sha1="83affabb0d0c3d01bdb0969359df4570e457fb4e" offset="0x000000" /> |
| 15708 | 17084 | </dataarea> |
| r21545 | r21546 | |
| 15721 | 17097 | <feature name="lockout" value="" /> |
| 15722 | 17098 | <feature name="cart_model" value="SNSP-006" /> |
| 15723 | 17099 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 17100 | ||
| 17101 | <feature name="slot" value="lorom" /> | |
| 15724 | 17102 | <dataarea name="rom" size="2097152"> |
| 15725 | 17103 | <rom name="spal-altp-0.u1" size="2097152" crc="fdf2f478" sha1="100afca042722209352682d705e3ae73bbb91ca8" offset="0x000000" /> |
| 15726 | 17104 | </dataarea> |
| r21545 | r21546 | |
| 15739 | 17117 | <feature name="lockout" value="" /> |
| 15740 | 17118 | <feature name="cart_model" value="SNSP-006" /> |
| 15741 | 17119 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 17120 | ||
| 17121 | <feature name="slot" value="lorom" /> | |
| 15742 | 17122 | <dataarea name="rom" size="1048576"> |
| 15743 | 17123 | <rom name="sfrg-lv-0.u1" size="1048576" crc="4ee705ab" sha1="4aad42b6813d12f90aef9a6fdc3ad1d97024ad93" offset="0x000000" /> |
| 15744 | 17124 | </dataarea> |
| r21545 | r21546 | |
| 15761 | 17141 | <feature name="battery" value="BATT CR2032" /> |
| 15762 | 17142 | <feature name="cart_model" value="SNS-006" /> |
| 15763 | 17143 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 17144 | ||
| 17145 | <feature name="slot" value="lorom" /> | |
| 15764 | 17146 | <dataarea name="rom" size="1048576"> |
| 15765 | 17147 | <rom name="sns-es-0.u1" size="1048576" crc="5e1aa1a6" sha1="904bba17f5a37fdc714c91be80082444136586ea" offset="0x000000" /> |
| 15766 | 17148 | </dataarea> |
| r21545 | r21546 | |
| 15785 | 17167 | <feature name="battery" value="BATT CR2032" /> |
| 15786 | 17168 | <feature name="cart_model" value="SNS-006" /> |
| 15787 | 17169 | <feature name="cart_back_label" value="M/SNS-USA/CAN-1" /> |
| 17170 | ||
| 17171 | <feature name="slot" value="lorom" /> | |
| 15788 | 17172 | <dataarea name="rom" size="3145728"> |
| 15789 | 17173 | <rom name="sns-anie-0.u1" size="3145728" crc="08b9ab4f" sha1="4a4814be6d3b1a12addcbc2b872f2f12c157d0fc" offset="0x000000" /> |
| 15790 | 17174 | </dataarea> |
| r21545 | r21546 | |
| 15808 | 17192 | <feature name="battery" value="BATT CR2032" /> |
| 15809 | 17193 | <feature name="cart_model" value="n/a" /> <!-- Identical to SNSP-006 but no model label, probably a printing issue consecutive to the combination of -NOE/-EUR labels --> |
| 15810 | 17194 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 17195 | ||
| 17196 | <feature name="slot" value="lorom" /> | |
| 15811 | 17197 | <dataarea name="rom" size="3145728"> |
| 15812 | 17198 | <rom name="spal-anid-0.u1" size="3145728" crc="8278693d" sha1="858197f17ac8081bd7d43f4089a75785a2016c6c" offset="0x000000" /> |
| 15813 | 17199 | </dataarea> |
| r21545 | r21546 | |
| 15829 | 17215 | <feature name="lockout" value="D411A 9304 BA" /> |
| 15830 | 17216 | <feature name="cart_model" value="SNS-006" /> |
| 15831 | 17217 | <feature name="cart_back_label" value="" /> |
| 17218 | ||
| 17219 | <feature name="slot" value="hirom" /> | |
| 15832 | 17220 | <dataarea name="rom" size="1048576"> |
| 15833 | 17221 | <rom name="sns-9m-0.u1" size="1048576" crc="8bed5914" sha1="2958443668cf1b0eaa620a32889297c6cdb886e6" offset="0x000000" /> |
| 15834 | 17222 | </dataarea> |
| r21545 | r21546 | |
| 15851 | 17239 | <feature name="battery" value="BATT CR2032" /> |
| 15852 | 17240 | <feature name="cart_model" value="SNSP-006" /> |
| 15853 | 17241 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 17242 | ||
| 17243 | <feature name="slot" value="hirom" /> | |
| 15854 | 17244 | <dataarea name="rom" size="1048576"> |
| 15855 | 17245 | <rom name="spal-anlp-0.u1" size="1048576" crc="4b0c7993" sha1="470ccc62b77d3f6b6fb5de704e4be8d2ac12888f" offset="0x000000" /> |
| 15856 | 17246 | </dataarea> |
| r21545 | r21546 | |
| 15875 | 17265 | <feature name="battery" value="BATT CR2032" /> |
| 15876 | 17266 | <feature name="cart_model" value="SNS-006" /> |
| 15877 | 17267 | <feature name="cart_back_label" value="" /> |
| 17268 | ||
| 17269 | <feature name="slot" value="hirom" /> | |
| 15878 | 17270 | <dataarea name="rom" size="1048576"> |
| 15879 | 17271 | <rom name="sns-anle-0.u1" size="1048576" crc="021a3f69" sha1="80761ea62cb673b0a4814c2f8321c237cd45890f" offset="0x000000" /> |
| 15880 | 17272 | </dataarea> |
| r21545 | r21546 | |
| 15899 | 17291 | <feature name="battery" value="BATT CR2032" /> |
| 15900 | 17292 | <feature name="cart_model" value="SNS-006" /> |
| 15901 | 17293 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 17294 | ||
| 17295 | <feature name="slot" value="hirom" /> | |
| 15902 | 17296 | <dataarea name="rom" size="2097152"> |
| 15903 | 17297 | <rom name="madden nfl 97 b1.u1" size="2097152" crc="c21cf4be" sha1="d72d765bed742907b16b5d5f8a6440b03716c0d3" offset="0x000000" /> |
| 15904 | 17298 | </dataarea> |
| r21545 | r21546 | |
| 15921 | 17315 | <feature name="lockout" value="" /> |
| 15922 | 17316 | <feature name="cart_model" value="SHVC-006" /> |
| 15923 | 17317 | <feature name="cart_back_label" value="920214" /> |
| 17318 | ||
| 17319 | <feature name="slot" value="lorom" /> | |
| 15924 | 17320 | <dataarea name="rom" size="1048576"> |
| 15925 | 17321 | <rom name="shvc-md-0.u1" size="1048576" crc="0b159d53" sha1="f5a431e46124d7a8638176203cdb351cd1e8423c" offset="0x000000" /> |
| 15926 | 17322 | </dataarea> |
| r21545 | r21546 | |
| 15944 | 17340 | <feature name="battery" value="BATT CR2032" /> |
| 15945 | 17341 | <feature name="cart_model" value="SHVC-006" /> |
| 15946 | 17342 | <feature name="cart_back_label" value="901121, 920214" /> |
| 17343 | ||
| 17344 | <feature name="slot" value="lorom" /> | |
| 15947 | 17345 | <dataarea name="rom" size="524288"> |
| 15948 | 17346 | <rom name="shvc-tl-0.u1" size="524288" crc="5f863463" sha1="49cb2ecf265e1534a2912c14d41c3fc157fc0db9" offset="0x000000" /> |
| 15949 | 17347 | </dataarea> |
| r21545 | r21546 | |
| 15969 | 17367 | <feature name="battery" value="BATT CR2032" /> |
| 15970 | 17368 | <feature name="cart_model" value="SHVC-006" /> |
| 15971 | 17369 | <feature name="cart_back_label" value="920214" /> |
| 17370 | ||
| 17371 | <feature name="slot" value="lorom" /> | |
| 15972 | 17372 | <dataarea name="rom" size="1048576"> |
| 15973 | 17373 | <rom name="shvc-aiqj-0.u1" size="1048576" crc="19f7288c" sha1="e91bfdde475f3693a2c0d6407d8fec85bfdaf019" offset="0x000000" /> |
| 15974 | 17374 | </dataarea> |
| r21545 | r21546 | |
| 15994 | 17394 | <feature name="battery" value="BATT CR2032" /> |
| 15995 | 17395 | <feature name="cart_model" value="SHVC-006" /> |
| 15996 | 17396 | <feature name="cart_back_label" value="920214" /> |
| 17397 | ||
| 17398 | <feature name="slot" value="hirom" /> | |
| 15997 | 17399 | <dataarea name="rom" size="2097152"> |
| 15998 | 17400 | <rom name="shvc-aguj-0.u1" size="2097152" crc="46b9f6d3" sha1="898e3b1ca4a83d88302721ac2dbf7228140a7c15" offset="0x000000" /> |
| 15999 | 17401 | </dataarea> |
| r21545 | r21546 | |
| 16019 | 17421 | <feature name="battery" value="BATT CR2032" /> |
| 16020 | 17422 | <feature name="cart_model" value="SHVC-006" /> |
| 16021 | 17423 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 17424 | ||
| 17425 | <feature name="slot" value="hirom" /> | |
| 16022 | 17426 | <dataarea name="rom" size="3145728"> |
| 16023 | 17427 | <rom name="shvc-a99j-0.u1" size="3145728" crc="5897d86e" sha1="09f965cec7bb6e201e011a203da806e05982a0ca" offset="0x000000" /> |
| 16024 | 17428 | </dataarea> |
| r21545 | r21546 | |
| 16046 | 17450 | <feature name="battery" value="BATT CR2032" /> |
| 16047 | 17451 | <feature name="cart_model" value="SHVC-006" /> |
| 16048 | 17452 | <feature name="cart_back_label" value="920214" /> |
| 17453 | ||
| 17454 | <feature name="slot" value="lorom" /> | |
| 16049 | 17455 | <dataarea name="rom" size="1572864"> |
| 16050 | 17456 | <rom name="shvc-zm-0 p0.u1" size="1048576" crc="5acd337e" sha1="254804544b71b0e7e17079bcec89b5bfc4672774" offset="0x000000" /> |
| 16051 | 17457 | <rom name="shvc-zm-0 p1.u2" size="524288" crc="d81eebb1" sha1="ca7e21ad9e885471750f5d326985bf34c9087113" offset="0x100000" /> |
| r21545 | r21546 | |
| 16067 | 17473 | <feature name="lockout" value="" /> |
| 16068 | 17474 | <feature name="cart_model" value="SNSP-006" /> |
| 16069 | 17475 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 17476 | ||
| 17477 | <feature name="slot" value="lorom" /> | |
| 16070 | 17478 | <dataarea name="rom" size="1048576"> |
| 16071 | 17479 | <rom name="sfrg-mu-0.u1" size="1048576" crc="f6f739a9" sha1="fcd4a8c83efe83e8e15b03d83eb8f3f04a7d532f" offset="0x000000" /> |
| 16072 | 17480 | </dataarea> |
| r21545 | r21546 | |
| 16086 | 17494 | <feature name="lockout" value="" /> |
| 16087 | 17495 | <feature name="cart_model" value="SNS-006" /> |
| 16088 | 17496 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 17497 | ||
| 17498 | <feature name="slot" value="lorom" /> | |
| 16089 | 17499 | <dataarea name="rom" size="1048576"> |
| 16090 | 17500 | <rom name="sns-mu-0.u1" size="1048576" crc="e51a3fcd" sha1="93fdfdbef3f44c89881c64eb76146ee09328f245" offset="0x000000" /> |
| 16091 | 17501 | </dataarea> |
| r21545 | r21546 | |
| 16110 | 17520 | <feature name="battery" value="BATT CR2032" /> |
| 16111 | 17521 | <feature name="cart_model" value="SHVC-006" /> |
| 16112 | 17522 | <feature name="cart_back_label" value="920214" /> |
| 17523 | ||
| 17524 | <feature name="slot" value="hirom" /> | |
| 16113 | 17525 | <dataarea name="rom" size="1048576"> |
| 16114 | 17526 | <rom name="shvc-acxj-0.u1" size="1048576" crc="f64c5aa0" sha1="c4200b9886b16c148b32d2c75d02f2a875d997cc" offset="0x000000" /> |
| 16115 | 17527 | </dataarea> |
| r21545 | r21546 | |
| 16133 | 17545 | <feature name="battery" value="BATT CR2032" /> |
| 16134 | 17546 | <feature name="cart_model" value="SNSP-006" /> |
| 16135 | 17547 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 17548 | ||
| 17549 | <feature name="slot" value="lorom" /> | |
| 16136 | 17550 | <dataarea name="rom" size="1048576"> |
| 16137 | 17551 | <rom name="spal-mp-0.u1" size="1048576" crc="266b220e" sha1="6d93da7773b2c121bc4e7a3edc38f29f546455e2" offset="0x000000" /> |
| 16138 | 17552 | </dataarea> |
| r21545 | r21546 | |
| 16169 | 17583 | <feature name="cart_model" value="SHVC-006" /> |
| 16170 | 17584 | <feature name="cart_back_label" value="920214" /> |
| 16171 | 17585 | --> |
| 17586 | ||
| 17587 | <feature name="slot" value="lorom" /> | |
| 16172 | 17588 | <dataarea name="rom" size="1048576"> |
| 16173 | 17589 | <!-- Notes: Both US and JP cartridges have the prefix SNS on their maskrom chips --> |
| 16174 | 17590 | <rom name="shvc-mp-0.u1" size="1048576" crc="38c9626c" sha1="d027c03eb2faefa07640ec828b2a46f601f7b15f" offset="0x000000" /> |
| r21545 | r21546 | |
| 16192 | 17608 | <feature name="lockout" value="" /> |
| 16193 | 17609 | <feature name="cart_model" value="SHVC-006" /> |
| 16194 | 17610 | <feature name="cart_back_label" value="920214" /> |
| 17611 | ||
| 17612 | <feature name="slot" value="lorom" /> | |
| 16195 | 17613 | <dataarea name="rom" size="1048576"> |
| 16196 | 17614 | <rom name="shvc-we-0.u1" size="1048576" crc="c6695e34" sha1="68b307fa7fdfd91a190fa0148178473aa2406b41" offset="0x000000" /> |
| 16197 | 17615 | </dataarea> |
| r21545 | r21546 | |
| 16214 | 17632 | <feature name="lockout" value="" /> |
| 16215 | 17633 | <feature name="cart_model" value="SHVC-006" /> |
| 16216 | 17634 | <feature name="cart_back_label" value="920214" /> |
| 17635 | ||
| 17636 | <feature name="slot" value="lorom" /> | |
| 16217 | 17637 | <dataarea name="rom" size="1048576"> |
| 16218 | 17638 | <rom name="shvc-we-0 p0.u1" size="524288" crc="a4fc9c65" sha1="e7846245f391a720dce5ca3ef4b6d0088d011a14" offset="0x000000" /> |
| 16219 | 17639 | <rom name="shvc-we-0 p1.u2" size="524288" crc="50002710" sha1="a861bef859876d829b9a94fa398036b2d880ebe2" offset="0x080000" /> |
| r21545 | r21546 | |
| 16239 | 17659 | <feature name="battery" value="BATT CR2032" /> |
| 16240 | 17660 | <feature name="cart_model" value="SHVC-006" /> |
| 16241 | 17661 | <feature name="cart_back_label" value="920214" /> |
| 17662 | ||
| 17663 | <feature name="slot" value="lorom" /> | |
| 16242 | 17664 | <dataarea name="rom" size="1572864"> |
| 16243 | 17665 | <rom name="shvc-o2-0 p0.u1" size="1048576" crc="0b0a522c" sha1="c54279a11c265dcfae28be3b680d038801444ed6" offset="0x000000" /> |
| 16244 | 17666 | <rom name="shvc-o2-0 p1.u2" size="524288" crc="378a2966" sha1="d7fc241cf1cfe97315503a7bf65a1b621aa1692c" offset="0x100000" /> |
| r21545 | r21546 | |
| 16265 | 17687 | <feature name="battery" value="BATT CR2032" /> |
| 16266 | 17688 | <feature name="cart_model" value="SHVC-006" /> |
| 16267 | 17689 | <feature name="cart_back_label" value="" /> |
| 17690 | ||
| 17691 | <feature name="slot" value="lorom_sa1" /> | |
| 16268 | 17692 | <dataarea name="rom" size="2097152"> |
| 16269 | 17693 | <rom name="shvc-ao3j-0.u1" size="2097152" crc="e5612567" sha1="7212c255f0800bde41fd351bb71511ee83c6e77b" offset="0x000000" /> |
| 16270 | 17694 | </dataarea> |
| r21545 | r21546 | |
| 16291 | 17715 | <feature name="battery" value="BATT CR2032" /> |
| 16292 | 17716 | <feature name="cart_model" value="SHVC-006" /> |
| 16293 | 17717 | <feature name="cart_back_label" value="920214" /> |
| 17718 | ||
| 17719 | <feature name="slot" value="lorom" /> | |
| 16294 | 17720 | <dataarea name="rom" size="2097152"> |
| 16295 | 17721 | <rom name="shvc-amvj-0.u1" size="2097152" crc="2d0f0f92" sha1="2996c6baf96a0dfe33cd3bd8442993c1ff95ad25" offset="0x000000" /> |
| 16296 | 17722 | </dataarea> |
| r21545 | r21546 | |
| 16313 | 17739 | <feature name="lockout" value="" /> |
| 16314 | 17740 | <feature name="cart_model" value="SHVC-006" /> |
| 16315 | 17741 | <feature name="cart_back_label" value="920214" /> |
| 17742 | ||
| 17743 | <feature name="slot" value="lorom" /> | |
| 16316 | 17744 | <dataarea name="rom" size="1048576"> |
| 16317 | 17745 | <rom name="shvc-jz-0.u1" size="1048576" crc="202b3738" sha1="4e6ba15a1165d434e6d7da5f59b3560e705c51ef" offset="0x000000" /> |
| 16318 | 17746 | </dataarea> |
| r21545 | r21546 | |
| 16335 | 17763 | <feature name="battery" value="BATT CR2032" /> |
| 16336 | 17764 | <feature name="cart_model" value="SNS-006" /> |
| 16337 | 17765 | <feature name="cart_back_label" value="" /> |
| 17766 | ||
| 17767 | <feature name="slot" value="lorom" /> | |
| 16338 | 17768 | <dataarea name="rom" size="1048576"> |
| 16339 | 17769 | <rom name="sns-wm-0.u1" size="1048576" crc="40b7a858" sha1="dac468b0d0885cfdd5b5fc02b0d92b53a638921f" offset="0x000000" /> |
| 16340 | 17770 | </dataarea> |
| r21545 | r21546 | |
| 16357 | 17787 | <feature name="lockout" value="" /> |
| 16358 | 17788 | <feature name="cart_model" value="SNSP-006" /> |
| 16359 | 17789 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE, SNSP-UKV" /> |
| 17790 | ||
| 17791 | <feature name="slot" value="lorom" /> | |
| 16360 | 17792 | <dataarea name="rom" size="1572864"> |
| 16361 | 17793 | <rom name="spal-rx-0 p0.u1" size="1048576" crc="331442f6" sha1="6d8d0c07ce1c60276838f16c725cfd0fa8268b42" offset="0x000000" /> |
| 16362 | 17794 | <rom name="spal-rx-0 p1.u2" size="524288" crc="af9ee767" sha1="e17d7579d8a28e721997948ae17983ffb8f762a6" offset="0x100000" /> |
| r21545 | r21546 | |
| 16379 | 17811 | <feature name="lockout" value="" /> |
| 16380 | 17812 | <feature name="cart_model" value="SNS-006" /> |
| 16381 | 17813 | <feature name="cart_back_label" value="" /> |
| 17814 | ||
| 17815 | <feature name="slot" value="lorom" /> | |
| 16382 | 17816 | <dataarea name="rom" size="1572864"> |
| 16383 | 17817 | <rom name="sns-rx-0 p0.u1" size="1048576" crc="e9f5be7d" sha1="a240a8b146eda564f781c3435514ac25ce6c7a7d" offset="0x000000" /> |
| 16384 | 17818 | <rom name="sns-rx-0 p1.u2" size="524288" crc="af9ee767" sha1="e17d7579d8a28e721997948ae17983ffb8f762a6" offset="0x100000" /> |
| r21545 | r21546 | |
| 16400 | 17834 | <feature name="lockout" value="" /> |
| 16401 | 17835 | <feature name="cart_model" value="SHVC-006" /> |
| 16402 | 17836 | <feature name="cart_back_label" value="920214" /> |
| 17837 | ||
| 17838 | <feature name="slot" value="lorom" /> | |
| 16403 | 17839 | <dataarea name="rom" size="1048576"> |
| 16404 | 17840 | <rom name="shvc-mz-0.u1" size="1048576" crc="f23bc69e" sha1="dc3474067ccadf7ff9b980b414d2d45b538aee9a" offset="0x000000" /> |
| 16405 | 17841 | </dataarea> |
| r21545 | r21546 | |
| 16424 | 17860 | <feature name="battery" value="BATT CR2032" /> |
| 16425 | 17861 | <feature name="cart_model" value="SNSP-006" /> |
| 16426 | 17862 | <feature name="cart_back_label" value="SNSP-ESP" /> |
| 17863 | ||
| 17864 | <feature name="slot" value="lorom_obc1" /> | |
| 16427 | 17865 | <dataarea name="rom" size="2097152"> |
| 16428 | 17866 | <rom name="spal-kd-0 p0.u1" size="1048576" crc="75c6c007" sha1="e1307afe8d595c12b6b389a6ba86930800fc68f9" offset="0x000000" /> |
| 16429 | 17867 | <rom name="spal-kd-0 p1.u2" size="1048576" crc="9f4bb746" sha1="37f52caa033a58a54dee01a248a28f71e8090e5b" offset="0x100000" /> |
| r21545 | r21546 | |
| 16448 | 17886 | <feature name="lockout" value="" /> |
| 16449 | 17887 | <feature name="cart_model" value="SNSP-006" /> |
| 16450 | 17888 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 17889 | ||
| 17890 | <feature name="slot" value="lorom" /> | |
| 16451 | 17891 | <dataarea name="rom" size="1572864"> |
| 16452 | 17892 | <rom name="spal-6m-0 p0.u1" size="1048576" crc="7f184b5d" sha1="4d2655d3e3616b7c18c4d1a0e8317f98bcbaa463" offset="0x000000" /> |
| 16453 | 17893 | <rom name="spal-6m-0 p1.u2" size="524288" crc="b6917be9" sha1="d57df16b6fb2da71e7289ab1abe4001ac232debb" offset="0x100000" /> |
| r21545 | r21546 | |
| 16471 | 17911 | <feature name="lockout" value="D411A 9344 BA" /> |
| 16472 | 17912 | <feature name="cart_model" value="SNS-006" /> |
| 16473 | 17913 | <feature name="cart_back_label" value="" /> |
| 17914 | ||
| 17915 | <feature name="slot" value="lorom" /> | |
| 16474 | 17916 | <dataarea name="rom" size="1572864"> |
| 16475 | 17917 | <rom name="sns-6m-0 p0.u1" size="1048576" crc="bddb1645" sha1="57a9e0d0e8a865d5b49b2f6577600bbaec67fe97" offset="0x000000" /> |
| 16476 | 17918 | <rom name="sns-6m-0 p1.u2" size="524288" crc="e4168845" sha1="3909ec8a8a45cd553101cfadfe408ad4910d80ab" offset="0x100000" /> |
| r21545 | r21546 | |
| 16492 | 17934 | <feature name="lockout" value="D411B 9508 B" /> |
| 16493 | 17935 | <feature name="cart_model" value="SNS-006" /> |
| 16494 | 17936 | <feature name="cart_back_label" value="" /> |
| 17937 | ||
| 17938 | <feature name="slot" value="lorom" /> | |
| 16495 | 17939 | <dataarea name="rom" size="2097152"> |
| 16496 | 17940 | <rom name="sns-awme-0.u1" size="2097152" crc="f2ab92d4" sha1="bcf0a4d5370547c9d6e5317210e12bdea3994f15" offset="0x000000" /> |
| 16497 | 17941 | </dataarea> |
| r21545 | r21546 | |
| 16512 | 17956 | <feature name="lockout" value="" /> |
| 16513 | 17957 | <feature name="cart_model" value="SHVC-006" /> |
| 16514 | 17958 | <feature name="cart_back_label" value="920214" /> |
| 17959 | ||
| 17960 | <feature name="slot" value="lorom" /> | |
| 16515 | 17961 | <dataarea name="rom" size="2097152"> |
| 16516 | 17962 | <rom name="shvc-amij-0.u1" size="2097152" crc="b6c13316" sha1="5e7c62d7304cc302367f57d6c2c6b5cdf9f2ac57" offset="0x000000" /> |
| 16517 | 17963 | </dataarea> |
| r21545 | r21546 | |
| 16531 | 17977 | <feature name="lockout" value="" /> |
| 16532 | 17978 | <feature name="cart_model" value="SNS-006" /> |
| 16533 | 17979 | <feature name="cart_back_label" value="" /> |
| 17980 | ||
| 17981 | <feature name="slot" value="lorom" /> | |
| 16534 | 17982 | <dataarea name="rom" size="2097152"> |
| 16535 | 17983 | <rom name="sns-amie-0.u1" size="2097152" crc="08806b5b" sha1="34b11763d672df886789c428f7cf8a567876a57e" offset="0x000000" /> |
| 16536 | 17984 | </dataarea> |
| r21545 | r21546 | |
| 16551 | 17999 | <feature name="lockout" value="" /> |
| 16552 | 18000 | <feature name="cart_model" value="SHVC-006" /> |
| 16553 | 18001 | <feature name="cart_back_label" value="920214" /> |
| 18002 | ||
| 18003 | <feature name="slot" value="lorom" /> | |
| 16554 | 18004 | <dataarea name="rom" size="1048576"> |
| 16555 | 18005 | <rom name="shvc-mi-0.u1" size="1048576" crc="a0bfd8e9" sha1="f4473f1150e61d0bd02180fa496b344aa61ef9d8" offset="0x000000" /> |
| 16556 | 18006 | </dataarea> |
| r21545 | r21546 | |
| 16572 | 18022 | <feature name="cart_revision" value="A" /> |
| 16573 | 18023 | <feature name="cart_model" value="SHVC-006" /> |
| 16574 | 18024 | <feature name="cart_back_label" value="920214" /> |
| 18025 | ||
| 18026 | <feature name="slot" value="lorom" /> | |
| 16575 | 18027 | <dataarea name="rom" size="1048576"> |
| 16576 | 18028 | <rom name="shvc-mi-1.u1" size="1048576" crc="453bd625" sha1="2a1bd97fcb38c7abdbf8396d1dfd0ea3ffe161b3" offset="0x000000" /> |
| 16577 | 18029 | </dataarea> |
| r21545 | r21546 | |
| 16594 | 18046 | <feature name="lockout" value="" /> |
| 16595 | 18047 | <feature name="cart_model" value="SHVC-006" /> |
| 16596 | 18048 | <feature name="cart_back_label" value="920214" /> |
| 18049 | ||
| 18050 | <feature name="slot" value="hirom" /> | |
| 16597 | 18051 | <dataarea name="rom" size="1572864"> |
| 16598 | 18052 | <rom name="shvc-4c-0 p0.u1" size="1048576" crc="ccd3d5d1" sha1="263c9f26fd33edb7bf7f65f64b92a0403bd22657" offset="0x000000" /> |
| 16599 | 18053 | <rom name="shvc-4c-0 p1.u2" size="524288" crc="9c56f79d" sha1="0fee9f9ae4fe2ccb47e7b457647682582ad45603" offset="0x100000" /> |
| r21545 | r21546 | |
| 16613 | 18067 | <feature name="lockout" value="" /> |
| 16614 | 18068 | <feature name="cart_model" value="SNSP-006" /> |
| 16615 | 18069 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 18070 | ||
| 18071 | <feature name="slot" value="lorom" /> | |
| 16616 | 18072 | <dataarea name="rom" size="524288"> |
| 16617 | 18073 | <rom name="spal-ah3p-0.u1" size="524288" crc="b4f64a09" sha1="7bde6792ee0e1136165850d0ac543e7a07141ed5" offset="0x000000" /> |
| 16618 | 18074 | </dataarea> |
| r21545 | r21546 | |
| 16634 | 18090 | <feature name="battery" value="BATT CR2032" /> |
| 16635 | 18091 | <feature name="cart_model" value="SNSP-006" /> |
| 16636 | 18092 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 18093 | ||
| 18094 | <feature name="slot" value="lorom" /> | |
| 16637 | 18095 | <dataarea name="rom" size="1048576"> |
| 16638 | 18096 | <rom name="sfrg-mg-0.u1" size="1048576" crc="b117df8a" sha1="9e670b7f06a4b1fd8d7e79719d9b4a59aa4edb57" offset="0x000000" /> |
| 16639 | 18097 | </dataarea> |
| r21545 | r21546 | |
| 16659 | 18117 | <feature name="lockout" value="" /> |
| 16660 | 18118 | <feature name="cart_model" value="SHVC-006" /> |
| 16661 | 18119 | <feature name="cart_back_label" value="920214" /> |
| 18120 | ||
| 18121 | <feature name="slot" value="lorom" /> | |
| 16662 | 18122 | <dataarea name="rom" size="1572864"> |
| 16663 | 18123 | <rom name="shvc-ng-0 p0.u1" size="1048576" crc="b5db9f07" sha1="eff7756de3f27736dfaa6dcca391299e6d178424" offset="0x000000" /> |
| 16664 | 18124 | <rom name="shvc-ng-0 p1.u2" size="524288" crc="e48532c0" sha1="26b7931429a25271471e6f417e53fb7c728c9682" offset="0x100000" /> |
| r21545 | r21546 | |
| 16684 | 18144 | <feature name="battery" value="BATT CR2032" /> |
| 16685 | 18145 | <feature name="cart_model" value="SHVC-006" /> |
| 16686 | 18146 | <feature name="cart_back_label" value="" /> |
| 18147 | ||
| 18148 | <feature name="slot" value="hirom" /> | |
| 16687 | 18149 | <dataarea name="rom" size="2097152"> |
| 16688 | 18150 | <rom name="shvc-bm4j-0.u1" size="2097152" crc="4459d4d0" sha1="e84ab48b9a0024b90fd9d789a8b8cf94f879d195" offset="0x000000" /> |
| 16689 | 18151 | </dataarea> |
| r21545 | r21546 | |
| 16709 | 18171 | <feature name="battery" value="BATT CR2032" /> |
| 16710 | 18172 | <feature name="cart_model" value="SHVC-006" /> |
| 16711 | 18173 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 18174 | ||
| 18175 | <feature name="slot" value="lorom_sa1" /> | |
| 16712 | 18176 | <dataarea name="rom" size="4194304"> |
| 16713 | 18177 | <rom name="shvc-a4wj-0.u1" size="4194304" crc="b17e95d4" sha1="b1f27592546e5d6029843cbe8cd6f09fc3752106" offset="0x000000" /> |
| 16714 | 18178 | </dataarea> |
| r21545 | r21546 | |
| 16729 | 18193 | <feature name="lockout" value="" /> |
| 16730 | 18194 | <feature name="cart_model" value="SNS-006" /> |
| 16731 | 18195 | <feature name="cart_back_label" value="" /> |
| 18196 | ||
| 18197 | <feature name="slot" value="lorom" /> | |
| 16732 | 18198 | <dataarea name="rom" size="2097152"> |
| 16733 | 18199 | <rom name="sns-ajye-0.u1" size="2097152" crc="0b207e7f" sha1="524bc88a5daff3435149ad079a593295e22740b0" offset="0x000000" /> |
| 16734 | 18200 | </dataarea> |
| r21545 | r21546 | |
| 16755 | 18221 | <feature name="battery" value="BATT CR2032" /> |
| 16756 | 18222 | <feature name="cart_model" value="SHVC-006" /> |
| 16757 | 18223 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 18224 | ||
| 18225 | <feature name="slot" value="hirom_spc7110" /> | |
| 16758 | 18226 | <dataarea name="rom" size="3145728"> |
| 16759 | 18227 | <rom name="shvc-ah8j-0 p.u1" size="1048576" crc="36b36739" sha1="afb03231f913ab1c241b91a3ca8ecfba5b45dd38" offset="0x000000" /> |
| 16760 | 18228 | <rom name="shvc-ah8j-0 d.u2" size="2097152" crc="ed1e5493" sha1="aba34ca249f174dcc8a15d73c737863438c6a70d" offset="0x100000" /> |
| r21545 | r21546 | |
| 16781 | 18249 | <feature name="battery" value="BATT CR2032" /> |
| 16782 | 18250 | <feature name="cart_model" value="SHVC-006" /> |
| 16783 | 18251 | <feature name="cart_back_label" value="920214" /> |
| 18252 | ||
| 18253 | <feature name="slot" value="lorom" /> | |
| 16784 | 18254 | <dataarea name="rom" size="1048576"> |
| 16785 | 18255 | <rom name="shvc-ml-0.u1" size="1048576" crc="42fe51e1" sha1="f8363d4b2b392c9a4762a56b37bf8dd7d424c92f" offset="0x000000" /> |
| 16786 | 18256 | </dataarea> |
| r21545 | r21546 | |
| 16802 | 18272 | <feature name="lockout" value="" /> |
| 16803 | 18273 | <feature name="cart_model" value="SNS-006" /> |
| 16804 | 18274 | <feature name="cart_back_label" value="SNS-USA/CAN, SNS-USA/CAN-1" /> |
| 18275 | ||
| 18276 | <feature name="slot" value="lorom" /> | |
| 16805 | 18277 | <dataarea name="rom" size="524288"> |
| 16806 | 18278 | <rom name="sns-ml-0.u1" size="524288" crc="d6da408e" sha1="f5d758dbe7de0610be87cab90898cceaf65985c7" offset="0x000000" /> |
| 16807 | 18279 | </dataarea> |
| r21545 | r21546 | |
| 16839 | 18311 | <feature name="battery" value="BATT CR2032" /> |
| 16840 | 18312 | <feature name="cart_model" value="SHVC-006" /> |
| 16841 | 18313 | <feature name="cart_back_label" value="920214" /> |
| 18314 | ||
| 18315 | <feature name="slot" value="lorom" /> | |
| 16842 | 18316 | <dataarea name="rom" size="1572864"> |
| 16843 | 18317 | <rom name="shvc-amlj-0 p0.u1" size="1048576" crc="0cedc7cd" sha1="2677d85fc31c5320045c5ed252339a23ddbf0144" offset="0x000000" /> |
| 16844 | 18318 | <rom name="shvc-amlj-0 p1.u2" size="524288" crc="9e3ccc90" sha1="b264f1bfa9037e7282ae3ea59461138326f4fa4a" offset="0x100000" /> |
| r21545 | r21546 | |
| 16862 | 18336 | <feature name="cart_revision" value="Ø" /> <!-- Majesco carts don't have a revision stamp --> |
| 16863 | 18337 | <feature name="cart_model" value="SNS-006" /> |
| 16864 | 18338 | <feature name="cart_back_label" value="" /> |
| 18339 | ||
| 18340 | <feature name="slot" value="lorom" /> | |
| 16865 | 18341 | <dataarea name="rom" size="524288"> |
| 16866 | 18342 | <rom name="sns-p-ml.u1" size="524288" crc="88d54085" sha1="beddd101739f5e1a6e3abd1542cccd341e6e5263" offset="0x000000" /> |
| 16867 | 18343 | </dataarea> |
| r21545 | r21546 | |
| 16882 | 18358 | <feature name="lockout" value="" /> |
| 16883 | 18359 | <feature name="cart_model" value="SNSP-006" /> |
| 16884 | 18360 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 18361 | ||
| 18362 | <feature name="slot" value="lorom" /> | |
| 16885 | 18363 | <dataarea name="rom" size="2097152"> |
| 16886 | 18364 | <rom name="spal-kx-0 p0.u1" size="1048576" crc="12cc1ed9" sha1="0f42102d7ec3860cc3f407856ebff2fbe1abed18" offset="0x000000" /> |
| 16887 | 18365 | <rom name="spal-kx-0 p1.u2" size="1048576" crc="0e971d61" sha1="d416c3450812d3634c0dcc2eaf11cff90e65e850" offset="0x100000" /> |
| r21545 | r21546 | |
| 16904 | 18382 | <feature name="lockout" value="" /> |
| 16905 | 18383 | <feature name="cart_model" value="SNS-006" /> |
| 16906 | 18384 | <feature name="cart_back_label" value="" /> |
| 18385 | ||
| 18386 | <feature name="slot" value="lorom" /> | |
| 16907 | 18387 | <dataarea name="rom" size="2097152"> |
| 16908 | 18388 | <rom name="sns-kx-0 p0.u1" size="1048576" crc="290dab3a" sha1="47755c2df4c37d2301f416e1566800a70683c2d1" offset="0x000000" /> |
| 16909 | 18389 | <rom name="sns-kx-0 p1.u2" size="1048576" crc="f4b4fa37" sha1="40870fd534b3465a2b335061b598708cce612f2c" offset="0x100000" /> |
| r21545 | r21546 | |
| 16924 | 18404 | <feature name="lockout" value="" /> |
| 16925 | 18405 | <feature name="cart_model" value="SNS-006" /> |
| 16926 | 18406 | <feature name="cart_back_label" value="" /> |
| 18407 | ||
| 18408 | <feature name="slot" value="lorom" /> | |
| 16927 | 18409 | <dataarea name="rom" size="2097152"> |
| 16928 | 18410 | <rom name="sns-kx-0.u1" size="2097152" crc="def42945" sha1="c6ded5b8bca1716a2dddfdc697b31f085aaa05d0" offset="0x000000" /> |
| 16929 | 18411 | </dataarea> |
| r21545 | r21546 | |
| 16942 | 18424 | <feature name="lockout" value="" /> |
| 16943 | 18425 | <feature name="cart_model" value="SNSP-006" /> |
| 16944 | 18426 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 18427 | ||
| 18428 | <feature name="slot" value="hirom" /> | |
| 16945 | 18429 | <dataarea name="rom" size="4194304"> |
| 16946 | 18430 | <rom name="spal-a3mp-0.u1" size="4194304" crc="ca3ceb0a" sha1="520ed61aa390f447d71a6a16582464e9888381d2" offset="0x000000" /> |
| 16947 | 18431 | </dataarea> |
| r21545 | r21546 | |
| 16961 | 18445 | <feature name="lockout" value="" /> |
| 16962 | 18446 | <feature name="cart_model" value="SNS-006" /> |
| 16963 | 18447 | <feature name="cart_back_label" value="" /> |
| 18448 | ||
| 18449 | <feature name="slot" value="hirom" /> | |
| 16964 | 18450 | <dataarea name="rom" size="4194304"> |
| 16965 | 18451 | <rom name="sns-a3me-0.u1" size="4194304" crc="4e6af725" sha1="58e4e1259a86faaadbc982176e569cb2038dbac5" offset="0x000000" /> |
| 16966 | 18452 | </dataarea> |
| r21545 | r21546 | |
| 16982 | 18468 | <feature name="cart_revision" value="A" /> |
| 16983 | 18469 | <feature name="cart_model" value="SNSP-006" /> |
| 16984 | 18470 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 18471 | ||
| 18472 | <feature name="slot" value="hirom" /> | |
| 16985 | 18473 | <dataarea name="rom" size="3145728"> |
| 16986 | 18474 | <rom name="spal-28-1 p0.u1" size="2097152" crc="9d88cd58" sha1="d11abe52d154dfcfad5ca286955cc260fd139cf8" offset="0x000000" /> |
| 16987 | 18475 | <rom name="spal-28-1 p3.u2" size="1048576" crc="89203e3e" sha1="35211aa2b99a8721be8d4c66979fe4f196c85b30" offset="0x200000" /> |
| r21545 | r21546 | |
| 17003 | 18491 | <feature name="lockout" value="" /> |
| 17004 | 18492 | <feature name="cart_model" value="SNS-006" /> |
| 17005 | 18493 | <feature name="cart_back_label" value="" /> |
| 18494 | ||
| 18495 | <feature name="slot" value="hirom" /> | |
| 17006 | 18496 | <dataarea name="rom" size="3145728"> |
| 17007 | 18497 | <rom name="sns-28-0 p0.u1" size="2097152" crc="2e67ea27" sha1="ad0b75a058c16f257fc2a4421c1fc1bca1241b1d" offset="0x000000" /> |
| 17008 | 18498 | <rom name="sns-28-0 p3.u2" size="1048576" crc="a5048535" sha1="707f7d275399ab348616550fc51ff5b0e18df30a" offset="0x200000" /> |
| r21545 | r21546 | |
| 17029 | 18519 | <feature name="battery" value="BATT CR2032" /> |
| 17030 | 18520 | <feature name="cart_model" value="SHVC-006" /> |
| 17031 | 18521 | <feature name="cart_back_label" value="920214" /> |
| 18522 | ||
| 18523 | <feature name="slot" value="hirom" /> | |
| 17032 | 18524 | <dataarea name="rom" size="3145728"> |
| 17033 | 18525 | <rom name="shvc-mb-0 p0.u1" size="2097152" crc="3ce05d1f" sha1="1302e58fbfd54962c6a18eb42d5bb9f0838c9816" offset="0x000000" /> |
| 17034 | 18526 | <rom name="shvc-mb-0 p3.u2" size="1048576" crc="f407f4e2" sha1="a0853a1fd20c3b97caf16912b99281ed2dc33db7" offset="0x200000" /> |
| r21545 | r21546 | |
| 17056 | 18548 | <feature name="battery" value="BATT CR2032" /> |
| 17057 | 18549 | <feature name="cart_model" value="SHVC-006" /> |
| 17058 | 18550 | <feature name="cart_back_label" value="920214" /> |
| 18551 | ||
| 18552 | <feature name="slot" value="lorom" /> | |
| 17059 | 18553 | <dataarea name="rom" size="1572864"> |
| 17060 | 18554 | <rom name="shvc-m2-0 p0.u1" size="1048576" crc="44e0ec49" sha1="ba6a6d02e926a0ac84d81341c4ccc72bf5b014d9" offset="0x000000" /> |
| 17061 | 18555 | <rom name="shvc-m2-0 p1.u2" size="524288" crc="a583a842" sha1="a296aa0c93718ba3eae7f7eb0b4940adf87d08da" offset="0x100000" /> |
| r21545 | r21546 | |
| 17077 | 18571 | <feature name="lockout" value="" /> |
| 17078 | 18572 | <feature name="cart_model" value="SNSP-006" /> |
| 17079 | 18573 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 18574 | ||
| 18575 | <feature name="slot" value="lorom" /> | |
| 17080 | 18576 | <dataarea name="rom" size="1048576"> |
| 17081 | 18577 | <rom name="spal-n8-0.u1" size="1048576" crc="bf4fcdf1" sha1="ee594aa4673b08a4bd31460b92a1adf08de54562" offset="0x000000" /> |
| 17082 | 18578 | </dataarea> |
| r21545 | r21546 | |
| 17099 | 18595 | <feature name="lockout" value="" /> |
| 17100 | 18596 | <feature name="cart_model" value="SHVC-006" /> |
| 17101 | 18597 | <feature name="cart_back_label" value="920214" /> |
| 18598 | ||
| 18599 | <feature name="slot" value="hirom" /> | |
| 17102 | 18600 | <dataarea name="rom" size="3145728"> |
| 17103 | 18601 | <rom name="shvc-zw-0 p0.u1" size="2097152" crc="4faef1d7" sha1="1d09fcc93e455b2d734c0360b573256400c56fa3" offset="0x000000" /> |
| 17104 | 18602 | <rom name="shvc-zw-0 p3.u2" size="1048576" crc="db423a58" sha1="db7cc1bce35bfb0e14dc7c93f42468d630a458f5" offset="0x200000" /> |
| r21545 | r21546 | |
| 17123 | 18621 | <feature name="battery" value="BATT CR2032" /> |
| 17124 | 18622 | <feature name="cart_model" value="SHVC-006" /> |
| 17125 | 18623 | <feature name="cart_back_label" value="920214" /> |
| 18624 | ||
| 18625 | <feature name="slot" value="hirom" /> | |
| 17126 | 18626 | <dataarea name="rom" size="4194304"> |
| 17127 | 18627 | <rom name="shvc-aeaj-0.u1" size="4194304" crc="feb80589" sha1="ba80e259616529f907425bcc553a1a0959f0d7f4" offset="0x000000" /> |
| 17128 | 18628 | </dataarea> |
| r21545 | r21546 | |
| 17146 | 18646 | <feature name="battery" value="BATT CR2032" /> |
| 17147 | 18647 | <feature name="cart_model" value="SNSP-006" /> |
| 17148 | 18648 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 18649 | ||
| 18650 | <feature name="slot" value="lorom" /> | |
| 17149 | 18651 | <dataarea name="rom" size="524288"> |
| 17150 | 18652 | <rom name="sfrg-mq-0.u1" size="524288" crc="f21760df" sha1="bd190854c0f725160ed6f6b0669e3cdd2308ccca" offset="0x000000" /> |
| 17151 | 18653 | </dataarea> |
| r21545 | r21546 | |
| 17171 | 18673 | <feature name="battery" value="BATT CR2032" /> |
| 17172 | 18674 | <feature name="cart_model" value="SHVC-006" /> |
| 17173 | 18675 | <feature name="cart_back_label" value="920214" /> |
| 18676 | ||
| 18677 | <feature name="slot" value="lorom" /> | |
| 17174 | 18678 | <dataarea name="rom" size="524288"> |
| 17175 | 18679 | <rom name="shvc-ou-0.u1" size="524288" crc="d90d7c95" sha1="ec2eb4914c3cf173413de70d744b490b0f801685" offset="0x000000" /> |
| 17176 | 18680 | </dataarea> |
| r21545 | r21546 | |
| 17197 | 18701 | <feature name="battery" value="BATT CR2032" /> |
| 17198 | 18702 | <feature name="cart_model" value="SHVC-006" /> |
| 17199 | 18703 | <feature name="cart_back_label" value="920214" /> |
| 18704 | ||
| 18705 | <feature name="slot" value="lorom" /> | |
| 17200 | 18706 | <dataarea name="rom" size="1048576"> |
| 17201 | 18707 | <rom name="shvc-no-0.u1" size="1048576" crc="0894ae07" sha1="2e99881cbb852c6ab7a5809e73fd37be1aae672c" offset="0x000000" /> |
| 17202 | 18708 | </dataarea> |
| r21545 | r21546 | |
| 17221 | 18727 | <feature name="lockout" value="" /> |
| 17222 | 18728 | <feature name="cart_model" value="SHVC-006" /> |
| 17223 | 18729 | <feature name="cart_back_label" value="920214" /> |
| 18730 | ||
| 18731 | <feature name="slot" value="lorom" /> | |
| 17224 | 18732 | <dataarea name="rom" size="1572864"> |
| 17225 | 18733 | <rom name="shvc-qv-0 p0.u1" size="1048576" crc="013a2358" sha1="ea01c6ccb7567b14b3c7c2275e0b1a9e2a536afb" offset="0x000000" /> |
| 17226 | 18734 | <rom name="shvc-qv-0 p1.u2" size="524288" crc="58b19f4d" sha1="fa69f41d6b7b7c10e9c031f0f248ea9a757411f5" offset="0x100000" /> |
| r21545 | r21546 | |
| 17241 | 18749 | <feature name="lockout" value="" /> |
| 17242 | 18750 | <feature name="cart_model" value="SNS-006" /> |
| 17243 | 18751 | <feature name="cart_back_label" value="" /> |
| 18752 | ||
| 18753 | <feature name="slot" value="hirom" /> | |
| 17244 | 18754 | <dataarea name="rom" size="2097152"> |
| 17245 | 18755 | <rom name="sns-7w-0.u1" size="2097152" crc="d4dc20e1" sha1="de2068d44f632b9f2573ca981e262a7d7ce97a96" offset="0x000000" /> |
| 17246 | 18756 | </dataarea> |
| r21545 | r21546 | |
| 17259 | 18769 | <feature name="lockout" value="" /> |
| 17260 | 18770 | <feature name="cart_model" value="SNSP-006" /> |
| 17261 | 18771 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 18772 | ||
| 18773 | <feature name="slot" value="lorom" /> | |
| 17262 | 18774 | <dataarea name="rom" size="2097152"> |
| 17263 | 18775 | <rom name="spal-8n-0.u1" size="2097152" crc="2b8e81c6" sha1="b4eadb624ea501f472e963dbd486de29ca6b9245" offset="0x000000" /> |
| 17264 | 18776 | </dataarea> |
| r21545 | r21546 | |
| 17281 | 18793 | <feature name="battery" value="BATT CR2032" /> |
| 17282 | 18794 | <feature name="cart_model" value="SNSP-006" /> |
| 17283 | 18795 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 18796 | ||
| 18797 | <feature name="slot" value="lorom" /> | |
| 17284 | 18798 | <dataarea name="rom" size="3145728"> |
| 17285 | 18799 | <rom name="spal-ajtp-0 p0.u1" size="2097152" crc="238ca19c" sha1="6523ef95aefeba2ea0a7bde26fd670d6ab9bdd9f" offset="0x000000" /> |
| 17286 | 18800 | <rom name="spal-ajtp-0 p3.u2" size="1048576" crc="68468198" sha1="1e84810d8a4889ffe0ad1c3f65542ab096b89714" offset="0x200000" /> |
| r21545 | r21546 | |
| 17306 | 18820 | <feature name="battery" value="BATT CR2032" /> |
| 17307 | 18821 | <feature name="cart_model" value="SNSP-006" /> |
| 17308 | 18822 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 18823 | ||
| 18824 | <feature name="slot" value="lorom" /> | |
| 17309 | 18825 | <dataarea name="rom" size="1572864"> |
| 17310 | 18826 | <rom name="spal-anbp-0 p0.u1" size="1048576" crc="410c73a5" sha1="9876cbca667be81fd514655b25ca80d0cc685ee9" offset="0x000000" /> |
| 17311 | 18827 | <rom name="spal-anbp-0 p1.u2" size="524288" crc="3945e27a" sha1="513b019f84625d40ff55a30791f331c8cb4c8d4e" offset="0x100000" /> |
| r21545 | r21546 | |
| 17332 | 18848 | <feature name="battery" value="BATT CR2032" /> |
| 17333 | 18849 | <feature name="cart_model" value="SHVC-006" /> |
| 17334 | 18850 | <feature name="cart_back_label" value="920214" /> |
| 18851 | ||
| 18852 | <feature name="slot" value="lorom" /> | |
| 17335 | 18853 | <dataarea name="rom" size="1572864"> |
| 17336 | 18854 | <rom name="sns-a6be-0 p0.u1" size="1048576" crc="a69f40f4" sha1="155b64e5d874005729933f673837b3ff6037cd0b" offset="0x000000" /> |
| 17337 | 18855 | <rom name="sns-a6be-0 p1.u2" size="524288" crc="9be1719f" sha1="755253f12d16a7ed94dc2de388b7a844cf2df4cb" offset="0x100000" /> |
| r21545 | r21546 | |
| 17357 | 18875 | <feature name="battery" value="BATT CR2032" /> |
| 17358 | 18876 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 17359 | 18877 | <feature name="cart_back_label" value="" /> |
| 18878 | ||
| 18879 | <feature name="slot" value="lorom" /> | |
| 17360 | 18880 | <dataarea name="rom" size="2097152"> |
| 17361 | 18881 | <rom name="nba 97 b1 pal.u1" size="2097152" crc="2c680c99" sha1="b6fbbeca6e5bcbc6c61cded2dfefd204ffddf2ba" offset="0x000000" /> |
| 17362 | 18882 | </dataarea> |
| r21545 | r21546 | |
| 17381 | 18901 | <feature name="battery" value="BATT CR2032" /> |
| 17382 | 18902 | <feature name="cart_model" value="SNS-006" /> |
| 17383 | 18903 | <feature name="cart_back_label" value="" /> |
| 18904 | ||
| 18905 | <feature name="slot" value="lorom" /> | |
| 17384 | 18906 | <dataarea name="rom" size="2097152"> |
| 17385 | 18907 | <rom name="nba 97 b1.u1" size="2097152" crc="5115b8e5" sha1="6255287751bc9679b9500ac9be06cda6640d1dcc" offset="0x000000" /> |
| 17386 | 18908 | </dataarea> |
| r21545 | r21546 | |
| 17407 | 18929 | <feature name="battery" value="BATT CR2032" /> |
| 17408 | 18930 | <feature name="cart_model" value="SHVC-006" /> |
| 17409 | 18931 | <feature name="cart_back_label" value="920214" /> |
| 18932 | ||
| 18933 | <feature name="slot" value="lorom" /> | |
| 17410 | 18934 | <dataarea name="rom" size="1048576"> |
| 17411 | 18935 | <rom name="shvc-gt-0.u1" size="1048576" crc="640d734f" sha1="b66adea4a4a3aec6e3bcad6c0540d8f454184dad" offset="0x000000" /> |
| 17412 | 18936 | </dataarea> |
| r21545 | r21546 | |
| 17433 | 18957 | <feature name="cart_revision" value="Ø or A" /> |
| 17434 | 18958 | <feature name="cart_model" value="SHVC-006" /> |
| 17435 | 18959 | <feature name="cart_back_label" value="" /> |
| 18960 | ||
| 18961 | <feature name="slot" value="lorom" /> | |
| 17436 | 18962 | <dataarea name="rom" size="1048576"> |
| 17437 | 18963 | <rom name="shvc-ga-0.u1" size="1048576" crc="b4fd7aff" sha1="eb553b77418dedba25fc4d5dddcb04f424b0f6a9" offset="0x000000" /> |
| 17438 | 18964 | </dataarea> |
| r21545 | r21546 | |
| 17459 | 18985 | <feature name="cart_revision" value="B" /> |
| 17460 | 18986 | <feature name="cart_model" value="SHVC-006" /> |
| 17461 | 18987 | <feature name="cart_back_label" value="901121" /> |
| 18988 | ||
| 18989 | <feature name="slot" value="lorom" /> | |
| 17462 | 18990 | <dataarea name="rom" size="1048576"> |
| 17463 | 18991 | <rom name="shvc-ga-1.u1" size="1048576" crc="d7e41218" sha1="c399dfaca26154e635345efdd24e5c4ce36110a7" offset="0x000000" /> |
| 17464 | 18992 | </dataarea> |
| r21545 | r21546 | |
| 17484 | 19012 | <feature name="battery" value="BATT CR2032" /> |
| 17485 | 19013 | <feature name="cart_model" value="SHVC-006" /> |
| 17486 | 19014 | <feature name="cart_back_label" value="920214" /> |
| 19015 | ||
| 19016 | <feature name="slot" value="lorom" /> | |
| 17487 | 19017 | <dataarea name="rom" size="1048576"> |
| 17488 | 19018 | <rom name="shvc-gb-0.u1" size="1048576" crc="e8a7d379" sha1="45d7108b793aaa3b45e8e76fa8dd7fb84557fcf0" offset="0x000000" /> |
| 17489 | 19019 | </dataarea> |
| r21545 | r21546 | |
| 17509 | 19039 | <feature name="battery" value="BATT CR2032" /> |
| 17510 | 19040 | <feature name="cart_model" value="SHVC-006" /> |
| 17511 | 19041 | <feature name="cart_back_label" value="920214" /> |
| 19042 | ||
| 19043 | <feature name="slot" value="lorom" /> | |
| 17512 | 19044 | <dataarea name="rom" size="1048576"> |
| 17513 | 19045 | <rom name="shvc-gc-0.u1" size="1048576" crc="8bafca10" sha1="eb78d985aade66cf1f2aaf19ebed104288746006" offset="0x000000" /> |
| 17514 | 19046 | </dataarea> |
| r21545 | r21546 | |
| 17533 | 19065 | <feature name="lockout" value="" /> |
| 17534 | 19066 | <feature name="cart_model" value="SHVC-006" /> |
| 17535 | 19067 | <feature name="cart_back_label" value="" /> |
| 19068 | ||
| 19069 | <feature name="slot" value="hirom" /> | |
| 17536 | 19070 | <dataarea name="rom" size="1048576"> |
| 17537 | 19071 | <rom name="shvc-9m-0 p0.u1" size="524288" crc="f9f07acd" sha1="4307930a5f17054d0c42a5830ab57416158631c1" offset="0x000000" /> |
| 17538 | 19072 | <rom name="shvc-9m-0 p1.u2" size="524288" crc="bc2f7fe4" sha1="c9454b3face4b8f5ed110d10178b29e7bad73431" offset="0x080000" /> |
| r21545 | r21546 | |
| 17557 | 19091 | <feature name="battery" value="BATT CR2032" /> |
| 17558 | 19092 | <feature name="cart_model" value="SHVC-006" /> |
| 17559 | 19093 | <feature name="cart_back_label" value="920214" /> |
| 19094 | ||
| 19095 | <feature name="slot" value="lorom" /> | |
| 17560 | 19096 | <dataarea name="rom" size="3145728"> |
| 17561 | 19097 | <rom name="shvc-q9-0.u1" size="3145728" crc="1c036b4f" sha1="39a57e0005e656e8e8d3f9fd63c4cffc39617a8b" offset="0x000000" /> |
| 17562 | 19098 | </dataarea> |
| r21545 | r21546 | |
| 17580 | 19116 | <feature name="battery" value="BATT CR2032" /> |
| 17581 | 19117 | <feature name="cart_model" value="SNSP-006" /> |
| 17582 | 19118 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 19119 | ||
| 19120 | <feature name="slot" value="hirom" /> | |
| 17583 | 19121 | <dataarea name="rom" size="1048576"> |
| 17584 | 19122 | <rom name="spal-anhp-0.u1" size="1048576" crc="6930b67a" sha1="b7b8b974f970c39576ecc3612da727947fc2fb85" offset="0x000000" /> |
| 17585 | 19123 | </dataarea> |
| r21545 | r21546 | |
| 17604 | 19142 | <feature name="battery" value="BATT CR2032" /> |
| 17605 | 19143 | <feature name="cart_model" value="SNS-006" /> |
| 17606 | 19144 | <feature name="cart_back_label" value="" /> |
| 19145 | ||
| 19146 | <feature name="slot" value="hirom" /> | |
| 17607 | 19147 | <dataarea name="rom" size="1048576"> |
| 17608 | 19148 | <rom name="sns-anhe-0.u1" size="1048576" crc="2e9b1463" sha1="0b939f267377801d2c805b05c06a7ee6c880c5fc" offset="0x000000" /> |
| 17609 | 19149 | </dataarea> |
| r21545 | r21546 | |
| 17627 | 19167 | <feature name="battery" value="BATT CR2032" /> |
| 17628 | 19168 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 17629 | 19169 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 19170 | ||
| 19171 | <feature name="slot" value="hirom" /> | |
| 17630 | 19172 | <dataarea name="rom" size="2097152"> |
| 17631 | 19173 | <rom name="spal-a6hp-0.u1" size="2097152" crc="e883f2de" sha1="5ef3b01137d7605c3ab8800867887e62efe363c7" offset="0x000000" /> |
| 17632 | 19174 | </dataarea> |
| r21545 | r21546 | |
| 17650 | 19192 | <feature name="battery" value="BATT CR2032" /> |
| 17651 | 19193 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 17652 | 19194 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 19195 | ||
| 19196 | <feature name="slot" value="hirom" /> | |
| 17653 | 19197 | <dataarea name="rom" size="2097152"> |
| 17654 | 19198 | <rom name="spal-ah7p-0.u1" size="2097152" crc="2bd19adf" sha1="b09e70cd89019bb0e32995c9171d7432653cd1cf" offset="0x000000" /> |
| 17655 | 19199 | </dataarea> |
| r21545 | r21546 | |
| 17672 | 19216 | <feature name="lockout" value="" /> |
| 17673 | 19217 | <feature name="battery" value="BATT CR2032" /> |
| 17674 | 19218 | <feature name="cart_revision" value="A" /> |
| 17675 | <feature name="cart_model" value="SNSP-006(-01" /> | |
| 19219 | <feature name="cart_model" value="SNSP-006(-01)" /> | |
| 17676 | 19220 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 19221 | ||
| 19222 | <feature name="slot" value="hirom" /> | |
| 17677 | 19223 | <dataarea name="rom" size="2097152"> |
| 17678 | 19224 | <rom name="spal-ah7p-1.u1" size="2097152" crc="d1eda2b9" sha1="30c8fbd1db019242d59123739a8baaa16200cbba" offset="0x000000" /> |
| 17679 | 19225 | </dataarea> |
| r21545 | r21546 | |
| 17694 | 19240 | <feature name="lockout" value="" /> |
| 17695 | 19241 | <feature name="cart_model" value="SNSP-006" /> |
| 17696 | 19242 | <feature name="cart_back_label" value="" /> |
| 19243 | ||
| 19244 | <feature name="slot" value="lorom" /> | |
| 17697 | 19245 | <dataarea name="rom" size="524288"> |
| 17698 | 19246 | <rom name="spal-hy-0.u1" size="524288" crc="ad70faf2" sha1="c65499e0b008b485d812e894496ae40d35e104c1" offset="0x000000" /> |
| 17699 | 19247 | </dataarea> |
| r21545 | r21546 | |
| 17713 | 19261 | <feature name="lockout" value="D411A 9308 CA" /> |
| 17714 | 19262 | <feature name="cart_model" value="SNS-006" /> |
| 17715 | 19263 | <feature name="cart_back_label" value="" /> |
| 19264 | ||
| 19265 | <feature name="slot" value="lorom" /> | |
| 17716 | 19266 | <dataarea name="rom" size="524288"> |
| 17717 | 19267 | <rom name="sns-hy-0.u1" size="524288" crc="c858eac4" sha1="76a01492cfb656e9fce0094bca356c312adfea0e" offset="0x000000" /> |
| 17718 | 19268 | </dataarea> |
| r21545 | r21546 | |
| 17737 | 19287 | <feature name="battery" value="BATT CR2032" /> |
| 17738 | 19288 | <feature name="cart_model" value="SHVC-006" /> |
| 17739 | 19289 | <feature name="cart_back_label" value="920214" /> |
| 19290 | ||
| 19291 | <feature name="slot" value="lorom" /> | |
| 17740 | 19292 | <dataarea name="rom" size="1572864"> |
| 17741 | 19293 | <rom name="shvc-nn-0 p0.u1" size="1048576" crc="feca0e63" sha1="be8b6d49f14835421ea663a36ea6e3b4ee2fc3a2" offset="0x000000" /> |
| 17742 | 19294 | <rom name="shvc-nn-0 p1.u2" size="524288" crc="6608cb78" sha1="448a7da42426c05ccb8137b86922e5baa0b9aa74" offset="0x100000" /> |
| r21545 | r21546 | |
| 17763 | 19315 | <feature name="battery" value="BATT CR2032" /> |
| 17764 | 19316 | <feature name="cart_model" value="SHVC-006" /> |
| 17765 | 19317 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 19318 | ||
| 19319 | <feature name="slot" value="lorom" /> | |
| 17766 | 19320 | <dataarea name="rom" size="2097152"> |
| 17767 | 19321 | <rom name="shvc-a2bj-0.u1" size="2097152" crc="c9ccedff" sha1="55fd6a8ed7ef02b86bfa50216bd93eec3f27d0c4" offset="0x000000" /> |
| 17768 | 19322 | </dataarea> |
| r21545 | r21546 | |
| 17786 | 19340 | <feature name="lockout" value="" /> |
| 17787 | 19341 | <feature name="cart_model" value="SNS-006" /> |
| 17788 | 19342 | <feature name="cart_back_label" value="" /> |
| 19343 | ||
| 19344 | <feature name="slot" value="lorom" /> | |
| 17789 | 19345 | <dataarea name="rom" size="1572864"> |
| 17790 | 19346 | <rom name="sns-ange-0 p0.u1" size="1048576" crc="61378ccc" sha1="502955e69477ab47e81251e7efa56e44214f93b7" offset="0x000000" /> |
| 17791 | 19347 | <rom name="sns-ange-0 p1.u2" size="524288" crc="e8619cd2" sha1="2eb06d239771c96385e56647bec74744c4660bd0" offset="0x100000" /> |
| r21545 | r21546 | |
| 17807 | 19363 | <feature name="lockout" value="" /> |
| 17808 | 19364 | <feature name="cart_model" value="SNSP-006" /> |
| 17809 | 19365 | <feature name="cart_back_label" value="" /> |
| 19366 | ||
| 19367 | <feature name="slot" value="lorom" /> | |
| 17810 | 19368 | <dataarea name="rom" size="1048576"> |
| 17811 | 19369 | <rom name="spal-nw-0.u1" size="1048576" crc="83eb5296" sha1="5b922c3c0fd06e928e0e54e69c07499608ca2051" offset="0x000000" /> |
| 17812 | 19370 | </dataarea> |
| r21545 | r21546 | |
| 17827 | 19385 | <feature name="lockout" value="D411A 9327 BA" /> |
| 17828 | 19386 | <feature name="cart_model" value="SNS-006" /> |
| 17829 | 19387 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 19388 | ||
| 19389 | <feature name="slot" value="lorom" /> | |
| 17830 | 19390 | <dataarea name="rom" size="1048576"> |
| 17831 | 19391 | <rom name="sns-m8-0.u1" size="1048576" crc="162252e2" sha1="03591006e7296ab3f0608faa97e03ce725eb0f14" offset="0x000000" /> |
| 17832 | 19392 | </dataarea> |
| r21545 | r21546 | |
| 17846 | 19406 | <feature name="lockout" value="D411B 9526 B" /> |
| 17847 | 19407 | <feature name="cart_model" value="SNS-006" /> |
| 17848 | 19408 | <feature name="cart_back_label" value="" /> |
| 19409 | ||
| 19410 | <feature name="slot" value="lorom" /> | |
| 17849 | 19411 | <dataarea name="rom" size="2097152"> |
| 17850 | 19412 | <rom name="sns-anre-0.u1" size="2097152" crc="c52877cd" sha1="39ba5f87d788f010c485ffef8d28ab950a70d1cc" offset="0x000000" /> |
| 17851 | 19413 | </dataarea> |
| r21545 | r21546 | |
| 17867 | 19429 | <feature name="lockout" value="" /> |
| 17868 | 19430 | <feature name="cart_model" value="SNS-006" /> |
| 17869 | 19431 | <feature name="cart_back_label" value="" /> |
| 19432 | ||
| 19433 | <feature name="slot" value="lorom" /> | |
| 17870 | 19434 | <dataarea name="rom" size="1572864"> |
| 17871 | 19435 | <rom name="sns-ni-0 p0.u1" size="1048576" crc="7857661c" sha1="3ad4eea78a6cd0031a58294245dbcb7ff4167650" offset="0x000000" /> |
| 17872 | 19436 | <rom name="sns-ni-0 p1.u2" size="524288" crc="81cf9dc4" sha1="390c1f3c3a6044f7b1778be16b7c3142ef58a742" offset="0x100000" /> |
| r21545 | r21546 | |
| 17886 | 19450 | <feature name="lockout" value="" /> |
| 17887 | 19451 | <feature name="cart_model" value="SNSP-006" /> |
| 17888 | 19452 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 19453 | ||
| 19454 | <feature name="slot" value="lorom" /> | |
| 17889 | 19455 | <dataarea name="rom" size="1048576"> |
| 17890 | 19456 | <rom name="spal-lr-0.u1" size="1048576" crc="b1859ca4" sha1="e5efb589e2dd783ef2d99f01caa866d8a3a04d16" offset="0x000000" /> |
| 17891 | 19457 | </dataarea> |
| r21545 | r21546 | |
| 17909 | 19475 | <feature name="battery" value="BATT CR2032" /> |
| 17910 | 19476 | <feature name="cart_model" value="SHVC-006" /> |
| 17911 | 19477 | <feature name="cart_back_label" value="920214" /> |
| 19478 | ||
| 19479 | <feature name="slot" value="lorom" /> | |
| 17912 | 19480 | <dataarea name="rom" size="1048576"> |
| 17913 | 19481 | <rom name="shvc-anpj-0.u1" size="1048576" crc="13648b68" sha1="cc6b15592b34bb381f4fdeb29033c1d3f6b545a4" offset="0x000000" /> |
| 17914 | 19482 | </dataarea> |
| r21545 | r21546 | |
| 17934 | 19502 | <feature name="battery" value="BATT CR2032" /> |
| 17935 | 19503 | <feature name="cart_model" value="SHVC-006" /> |
| 17936 | 19504 | <feature name="cart_back_label" value="920214" /> |
| 19505 | ||
| 19506 | <feature name="slot" value="hirom" /> | |
| 17937 | 19507 | <dataarea name="rom" size="2097152"> |
| 17938 | 19508 | <rom name="shvc-nk-0.u1" size="2097152" crc="928504a7" sha1="86fffcdf9ffaae32990cf59e4d753266deb7bb3e" offset="0x000000" /> |
| 17939 | 19509 | </dataarea> |
| r21545 | r21546 | |
| 17960 | 19530 | <feature name="cart_revision" value="A" /> |
| 17961 | 19531 | <feature name="cart_model" value="SHVC-006" /> |
| 17962 | 19532 | <feature name="cart_back_label" value="920214" /> |
| 19533 | ||
| 19534 | <feature name="slot" value="hirom" /> | |
| 17963 | 19535 | <dataarea name="rom" size="2097152"> |
| 17964 | 19536 | <rom name="shvc-nk-1.u1" size="2097152" crc="7e91d654" sha1="f6d3a82cd4381f14113fe2b84bada935b122ebb1" offset="0x000000" /> |
| 17965 | 19537 | </dataarea> |
| r21545 | r21546 | |
| 17985 | 19557 | <feature name="battery" value="BATT CR2032" /> |
| 17986 | 19558 | <feature name="cart_model" value="SHVC-006" /> |
| 17987 | 19559 | <feature name="cart_back_label" value="920214" /> |
| 19560 | ||
| 19561 | <feature name="slot" value="hirom" /> | |
| 17988 | 19562 | <dataarea name="rom" size="3145728"> |
| 17989 | 19563 | <rom name="shvc-an6j-0.u1" size="3145728" crc="b190d1ea" sha1="c2339a1db3b89290fe1ee18371f27af9d438adf8" offset="0x000000" /> |
| 17990 | 19564 | </dataarea> |
| r21545 | r21546 | |
| 18010 | 19584 | <feature name="battery" value="BATT CR2032" /> |
| 18011 | 19585 | <feature name="cart_model" value="SHVC-006" /> |
| 18012 | 19586 | <feature name="cart_back_label" value="920214" /> |
| 19587 | ||
| 19588 | <feature name="slot" value="lorom" /> | |
| 18013 | 19589 | <dataarea name="rom" size="1048576"> |
| 18014 | 19590 | <rom name="shvc-on-0.u1" size="1048576" crc="f7d2fbc6" sha1="7ea6f75e9b1685cf757c3622fab40576c7b5888b" offset="0x000000" /> |
| 18015 | 19591 | </dataarea> |
| r21545 | r21546 | |
| 18036 | 19612 | <feature name="battery" value="BATT CR2032" /> |
| 18037 | 19613 | <feature name="cart_model" value="SHVC-040" /> |
| 18038 | 19614 | <feature name="cart_back_label" value="G744238 BSC-JPN-1" /> |
| 19615 | ||
| 19616 | <feature name="slot" value="hirom_bsx" /> | |
| 18039 | 19617 | <dataarea name="rom" size="1048576"> |
| 18040 | 19618 | <rom name="shvc-zmcj-0.u1" size="1048576" crc="c79c123f" sha1="337e0c4bdbf544787b543a1fb83afba7526191b9" offset="0x000000" /> |
| 18041 | 19619 | </dataarea> |
| r21545 | r21546 | |
| 18061 | 19639 | <feature name="battery" value="BATT CR2032" /> |
| 18062 | 19640 | <feature name="cart_model" value="SHVC-006" /> |
| 18063 | 19641 | <feature name="cart_back_label" value="920214" /> |
| 19642 | ||
| 19643 | <feature name="slot" value="hirom" /> | |
| 18064 | 19644 | <dataarea name="rom" size="2097152"> |
| 18065 | 19645 | <rom name="shvc-aoaj-0.u1" size="2097152" crc="cd2a1a67" sha1="8dd393d4c36edbefe29dbbac55f12d2bfea65930" offset="0x000000" /> |
| 18066 | 19646 | </dataarea> |
| r21545 | r21546 | |
| 18086 | 19666 | <feature name="battery" value="BATT CR2032" /> |
| 18087 | 19667 | <feature name="cart_model" value="SHVC-006" /> |
| 18088 | 19668 | <feature name="cart_back_label" value="920214" /> |
| 19669 | ||
| 19670 | <feature name="slot" value="lorom" /> | |
| 18089 | 19671 | <dataarea name="rom" size="1048576"> |
| 18090 | 19672 | <rom name="shvc-oz-0.u1" size="1048576" crc="f78b76e9" sha1="a38d39d6f1e71878c53523fb9d1177210c453be1" offset="0x000000" /> |
| 18091 | 19673 | </dataarea> |
| r21545 | r21546 | |
| 18106 | 19688 | <feature name="lockout" value="" /> |
| 18107 | 19689 | <feature name="cart_model" value="SNSP-006" /> |
| 18108 | 19690 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 19691 | ||
| 19692 | <feature name="slot" value="lorom" /> | |
| 18109 | 19693 | <dataarea name="rom" size="1048576"> |
| 18110 | 19694 | <rom name="spal-iy-0.u1" size="1048576" crc="0f956136" sha1="1fd1c5098f68e8aa625b1c77b672ca2a4acda8ce" offset="0x000000" /> |
| 18111 | 19695 | </dataarea> |
| r21545 | r21546 | |
| 18128 | 19712 | <feature name="lockout" value="" /> |
| 18129 | 19713 | <feature name="cart_model" value="SHVC-006" /> |
| 18130 | 19714 | <feature name="cart_back_label" value="920214" /> |
| 19715 | ||
| 19716 | <feature name="slot" value="lorom" /> | |
| 18131 | 19717 | <dataarea name="rom" size="2621440"> |
| 18132 | 19718 | <rom name="shvc-oj-0 p0.u1" size="2097152" crc="5c9b0767" sha1="3cc2d148db8b05d6a7fb150877ad3f9c1ed29fe4" offset="0x000000" /> |
| 18133 | 19719 | <rom name="shvc-oj-0 p3.u2" size="524288" crc="e850ddd7" sha1="95b9098feba8770800f6d6b14a8b645e08ba5d34" offset="0x100000" /> |
| r21545 | r21546 | |
| 18163 | 19749 | --> |
| 18164 | 19750 | <feature name="cart_model" value="SHVC-006" /> |
| 18165 | 19751 | <feature name="cart_back_label" value="920214" /> |
| 19752 | ||
| 19753 | <feature name="slot" value="lorom" /> | |
| 18166 | 19754 | <dataarea name="rom" size="1048576"> |
| 18167 | 19755 | <rom name="shvc-ot-0.u1" size="1048576" crc="8e4befd0" sha1="2c27b89a244abe941b6a9fceb1a674dbefd1f734" offset="0x000000" /> |
| 18168 | 19756 | </dataarea> |
| r21545 | r21546 | |
| 18183 | 19771 | <feature name="lockout" value="" /> |
| 18184 | 19772 | <feature name="cart_model" value="SNSP-006" /> |
| 18185 | 19773 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 19774 | ||
| 19775 | <feature name="slot" value="lorom" /> | |
| 18186 | 19776 | <dataarea name="rom" size="1048576"> |
| 18187 | 19777 | <rom name="spal-ld-0.u1" size="1048576" crc="5822a4e1" sha1="79700f895fb439c035cef9bf9de68d58d2705d33" offset="0x000000" /> |
| 18188 | 19778 | </dataarea> |
| r21545 | r21546 | |
| 18203 | 19793 | <feature name="lockout" value="" /> |
| 18204 | 19794 | <feature name="cart_model" value="SHVC-006" /> |
| 18205 | 19795 | <feature name="cart_back_label" value="920214" /> |
| 19796 | ||
| 19797 | <feature name="slot" value="lorom" /> | |
| 18206 | 19798 | <dataarea name="rom" size="1048576"> |
| 18207 | 19799 | <rom name="shvc-p5-0.u1" size="1048576" crc="8aed15dd" sha1="95119068cfe5aa37d9607d61692be9902a9d7fba" offset="0x000000" /> |
| 18208 | 19800 | </dataarea> |
| r21545 | r21546 | |
| 18223 | 19815 | <feature name="lockout" value="" /> |
| 18224 | 19816 | <feature name="cart_model" value="SHVC-006" /> |
| 18225 | 19817 | <feature name="cart_back_label" value="920214" /> |
| 19818 | ||
| 19819 | <feature name="slot" value="lorom" /> | |
| 18226 | 19820 | <dataarea name="rom" size="1048576"> |
| 18227 | 19821 | <rom name="shvc-9k-0.u1" size="1048576" crc="e47e4ab2" sha1="2d95a36d79cdd66392d0eb8a92d28f0f95edda79" offset="0x000000" /> |
| 18228 | 19822 | </dataarea> |
| r21545 | r21546 | |
| 18243 | 19837 | <feature name="lockout" value="" /> |
| 18244 | 19838 | <feature name="cart_model" value="SHVC-006" /> |
| 18245 | 19839 | <feature name="cart_back_label" value="920214" /> |
| 19840 | ||
| 19841 | <feature name="slot" value="lorom" /> | |
| 18246 | 19842 | <dataarea name="rom" size="1048576"> |
| 18247 | 19843 | <rom name="shvc-ks-0.u1" size="1048576" crc="6c901862" sha1="5a259e17c0cf0b005085bad556bc47cac5441568" offset="0x000000" /> |
| 18248 | 19844 | </dataarea> |
| r21545 | r21546 | |
| 18265 | 19861 | <feature name="lockout" value="" /> |
| 18266 | 19862 | <feature name="cart_model" value="SHVC-006" /> |
| 18267 | 19863 | <feature name="cart_back_label" value="920214" /> |
| 19864 | ||
| 19865 | <feature name="slot" value="lorom" /> | |
| 18268 | 19866 | <dataarea name="rom" size="1572864"> |
| 18269 | 19867 | <rom name="shvc-a2pj-0 p0.u1" size="1048576" crc="ea9a619e" sha1="94b168383a96dc753207842a2725604556735bcc" offset="0x000000" /> |
| 18270 | 19868 | <rom name="shvc-a2pj-0 p1.u2" size="524288" crc="f2552d55" sha1="a07b68f47a8a1d0f51b598c08435f46240eb8b90" offset="0x100000" /> |
| r21545 | r21546 | |
| 18286 | 19884 | <feature name="lockout" value="" /> |
| 18287 | 19885 | <feature name="cart_model" value="SHVC-006" /> |
| 18288 | 19886 | <feature name="cart_back_label" value="920214" /> |
| 19887 | ||
| 19888 | <feature name="slot" value="lorom" /> | |
| 18289 | 19889 | <dataarea name="rom" size="1048576"> |
| 18290 | 19890 | <rom name="shvc-pc-0.u1" size="1048576" crc="8ce8a4eb" sha1="163ec9502f98cc5439ee894ddcc06e87a57541e6" offset="0x000000" /> |
| 18291 | 19891 | </dataarea> |
| r21545 | r21546 | |
| 18309 | 19909 | <feature name="battery" value="BATT CR2032" /> |
| 18310 | 19910 | <feature name="cart_model" value="SHVC-006" /> |
| 18311 | 19911 | <feature name="cart_back_label" value="920214" /> |
| 19912 | ||
| 19913 | <feature name="slot" value="lorom" /> | |
| 18312 | 19914 | <dataarea name="rom" size="1048576"> |
| 18313 | 19915 | <rom name="shvc-pa-0.u1" size="1048576" crc="34ff17b3" sha1="a4e68b500c94c6848680fcf3f148b4d4c9588d01" offset="0x000000" /> |
| 18314 | 19916 | </dataarea> |
| r21545 | r21546 | |
| 18334 | 19936 | <feature name="battery" value="BATT CR2032" /> |
| 18335 | 19937 | <feature name="cart_model" value="SHVC-006" /> |
| 18336 | 19938 | <feature name="cart_back_label" value="920214" /> |
| 19939 | ||
| 19940 | <feature name="slot" value="lorom" /> | |
| 18337 | 19941 | <dataarea name="rom" size="1048576"> |
| 18338 | 19942 | <rom name="shvc-oc-0.u1" size="1048576" crc="8f163dc1" sha1="3a1008fc910f6ebba9e14aad1a2246a8021d70fb" offset="0x000000" /> |
| 18339 | 19943 | </dataarea> |
| r21545 | r21546 | |
| 18356 | 19960 | <feature name="lockout" value="" /> |
| 18357 | 19961 | <feature name="cart_model" value="SHVC-006" /> |
| 18358 | 19962 | <feature name="cart_back_label" value="920214" /> |
| 19963 | ||
| 19964 | <feature name="slot" value="lorom" /> | |
| 18359 | 19965 | <dataarea name="rom" size="1048576"> |
| 18360 | 19966 | <rom name="shvc-p6-0.u1" size="1048576" crc="8c765da9" sha1="f6f0caf461000ffae5ecf93091ec00a3ac05b406" offset="0x000000" /> |
| 18361 | 19967 | </dataarea> |
| r21545 | r21546 | |
| 18379 | 19985 | <feature name="battery" value="BATT CR2032" /> |
| 18380 | 19986 | <feature name="cart_model" value="SNS-006" /> |
| 18381 | 19987 | <feature name="cart_back_label" value="" /> |
| 19988 | ||
| 19989 | <feature name="slot" value="lorom" /> | |
| 18382 | 19990 | <dataarea name="rom" size="1572864"> |
| 18383 | 19991 | <rom name="sns-ln-0 p0.u1" size="1048576" crc="1a904e22" sha1="42d8d674d05f1582677038be0ceff9650b3ec861" offset="0x000000" /> |
| 18384 | 19992 | <!-- the second rom should be good but its size needs to be confirmed --> |
| r21545 | r21546 | |
| 18403 | 20011 | <feature name="lockout" value="" /> |
| 18404 | 20012 | <feature name="cart_model" value="SHVC-006" /> |
| 18405 | 20013 | <feature name="cart_back_label" value="920214" /> |
| 20014 | ||
| 20015 | <feature name="slot" value="lorom" /> | |
| 18406 | 20016 | <dataarea name="rom" size="1048576"> |
| 18407 | 20017 | <rom name="shvc-aylj-0.u1" size="1048576" crc="14d70786" sha1="ead855d774c9943f7ffb5b4f429b2dd07fb6f606" offset="0x000000" /> |
| 18408 | 20018 | </dataarea> |
| r21545 | r21546 | |
| 18421 | 20031 | <feature name="lockout" value="" /> |
| 18422 | 20032 | <feature name="cart_model" value="SNSP-006" /> |
| 18423 | 20033 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 20034 | ||
| 20035 | <feature name="slot" value="lorom" /> | |
| 18424 | 20036 | <dataarea name="rom" size="524288"> |
| 18425 | 20037 | <rom name="spal-p2-0.u1" size="524288" crc="282611cd" sha1="a609e3f8a2de393d5565035a7469ea5bfbb2d3ce" offset="0x000000" /> |
| 18426 | 20038 | </dataarea> |
| r21545 | r21546 | |
| 18441 | 20053 | <feature name="lockout" value="" /> |
| 18442 | 20054 | <feature name="cart_model" value="SHVC-006" /> |
| 18443 | 20055 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20056 | ||
| 20057 | <feature name="slot" value="hirom" /> | |
| 18444 | 20058 | <dataarea name="rom" size="1048576"> |
| 18445 | 20059 | <rom name="shvc-aqcj-0.u1" size="1048576" crc="30fc693d" sha1="fff43fffc6b9b52f0710b9f3a78f4d54a0f399fe" offset="0x000000" /> |
| 18446 | 20060 | </dataarea> |
| r21545 | r21546 | |
| 18462 | 20076 | <feature name="cart_revision" value="A" /> |
| 18463 | 20077 | <feature name="cart_model" value="SHVC-006" /> |
| 18464 | 20078 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20079 | ||
| 20080 | <feature name="slot" value="hirom" /> | |
| 18465 | 20081 | <dataarea name="rom" size="1048576"> |
| 18466 | 20082 | <rom name="shvc-aqaj-1.u1" size="1048576" crc="0e43e135" sha1="96afaf8831c4ca18afce40e47e05838f2938762a" offset="0x000000" /> |
| 18467 | 20083 | </dataarea> |
| r21545 | r21546 | |
| 18482 | 20098 | <feature name="lockout" value="" /> |
| 18483 | 20099 | <feature name="cart_model" value="SHVC-006" /> |
| 18484 | 20100 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20101 | ||
| 20102 | <feature name="slot" value="hirom" /> | |
| 18485 | 20103 | <dataarea name="rom" size="2097152"> |
| 18486 | 20104 | <rom name="shvc-aqxj-0.u1" size="2097152" crc="c07337c1" sha1="2ebb99bb878329742e460b95c29774dd95e7fcf1" offset="0x000000" /> |
| 18487 | 20105 | </dataarea> |
| r21545 | r21546 | |
| 18502 | 20120 | <feature name="lockout" value="" /> |
| 18503 | 20121 | <feature name="cart_model" value="SHVC-006" /> |
| 18504 | 20122 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20123 | ||
| 20124 | <feature name="slot" value="hirom" /> | |
| 18505 | 20125 | <dataarea name="rom" size="1048576"> |
| 18506 | 20126 | <rom name="shvc-aqrj-0.u1" size="1048576" crc="18b6820b" sha1="254d7ad50092b0a27386b2f91875b4c650500fbd" offset="0x000000" /> |
| 18507 | 20127 | </dataarea> |
| r21545 | r21546 | |
| 18522 | 20142 | <feature name="lockout" value="" /> |
| 18523 | 20143 | <feature name="cart_model" value="SHVC-006" /> |
| 18524 | 20144 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20145 | ||
| 20146 | <feature name="slot" value="hirom" /> | |
| 18525 | 20147 | <dataarea name="rom" size="1048576"> |
| 18526 | 20148 | <rom name="shvc-aqmj-0.u1" size="1048576" crc="54e92c91" sha1="dd94ec199678e6f40d518acc1a4886d097187258" offset="0x000000" /> |
| 18527 | 20149 | </dataarea> |
| r21545 | r21546 | |
| 18546 | 20168 | <feature name="battery" value="BATT CR2032" /> |
| 18547 | 20169 | <feature name="cart_model" value="SHVC-006" /> |
| 18548 | 20170 | <feature name="cart_back_label" value="920214" /> |
| 20171 | ||
| 20172 | <feature name="slot" value="hirom" /> | |
| 18549 | 20173 | <dataarea name="rom" size="2097152"> |
| 18550 | 20174 | <rom name="shvc-apxj-0.u1" size="2097152" crc="2ea12170" sha1="80215a04136f5c2e994f0a8e91db39a0bb01dc5b" offset="0x000000" /> |
| 18551 | 20175 | </dataarea> |
| r21545 | r21546 | |
| 18573 | 20197 | <feature name="battery" value="BATT CR2032" /> |
| 18574 | 20198 | <feature name="cart_model" value="SHVC-006" /> |
| 18575 | 20199 | <feature name="cart_back_label" value="920214" /> |
| 20200 | ||
| 20201 | <feature name="slot" value="hirom" /> | |
| 18576 | 20202 | <dataarea name="rom" size="2621440"> |
| 18577 | 20203 | <rom name="shvc-aypj-0 p0.u1" size="2097152" crc="d96035a5" sha1="c5dc99e7ca425adc1bf60a4628f24812c4e7cd69" offset="0x000000" /> |
| 18578 | 20204 | <rom name="shvc-aypj-0 p3.u2" size="524288" crc="279a88cb" sha1="1c5613503a8ae0d4ac25402c2f1d93a1ed3d9e2b" offset="0x200000" /> |
| r21545 | r21546 | |
| 18594 | 20220 | <feature name="lockout" value="" /> |
| 18595 | 20221 | <feature name="cart_model" value="SNSP-006" /> |
| 18596 | 20222 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 20223 | ||
| 20224 | <feature name="slot" value="lorom" /> | |
| 18597 | 20225 | <dataarea name="rom" size="1048576"> |
| 18598 | 20226 | <rom name="spal-pd-0.u1" size="1048576" crc="6ffa308c" sha1="c561db29eb48e814549aa6e967fde7de32e3f922" offset="0x000000" /> |
| 18599 | 20227 | </dataarea> |
| r21545 | r21546 | |
| 18615 | 20243 | <feature name="lockout" value="" /> |
| 18616 | 20244 | <feature name="cart_model" value="SHVC-006" /> |
| 18617 | 20245 | <feature name="cart_back_label" value="920214" /> |
| 20246 | ||
| 20247 | <feature name="slot" value="lorom" /> | |
| 18618 | 20248 | <dataarea name="rom" size="1048576"> |
| 18619 | 20249 | <rom name="shvc-pd-0.u1" size="1048576" crc="876dfd97" sha1="0b74559e400c4285791d0739fb1fd847bd4d1b2d" offset="0x000000" /> |
| 18620 | 20250 | </dataarea> |
| r21545 | r21546 | |
| 18638 | 20268 | <feature name="battery" value="BATT CR2032" /> |
| 18639 | 20269 | <feature name="cart_model" value="SHVC-006" /> |
| 18640 | 20270 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20271 | ||
| 20272 | <feature name="slot" value="lorom_sa1" /> | |
| 18641 | 20273 | <dataarea name="rom" size="2097152"> |
| 18642 | 20274 | <rom name="shvc-aonj-0.u1" size="2097152" crc="0b6fb2f8" sha1="7c84674ce5bed9de224c07d0d99d19c92a39e942" offset="0x000000" /> |
| 18643 | 20275 | </dataarea> |
| r21545 | r21546 | |
| 18661 | 20293 | <feature name="battery" value="BATT CR2032" /> |
| 18662 | 20294 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 18663 | 20295 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 20296 | ||
| 20297 | <feature name="slot" value="lorom_sa1" /> | |
| 18664 | 20298 | <dataarea name="rom" size="1048576"> |
| 18665 | 20299 | <rom name="spal-aepp-0.u1" size="1048576" crc="be94e60d" sha1="cc1e7ddde84a6c7b8998d5be0555a79f10bcce52" offset="0x000000" /> |
| 18666 | 20300 | </dataarea> |
| r21545 | r21546 | |
| 18685 | 20319 | <feature name="battery" value="BATT CR2032" /> |
| 18686 | 20320 | <feature name="cart_model" value="SNS-006" /> |
| 18687 | 20321 | <feature name="cart_back_label" value="" /> |
| 20322 | ||
| 20323 | <feature name="slot" value="lorom_sa1" /> | |
| 18688 | 20324 | <dataarea name="rom" size="1048576"> |
| 18689 | 20325 | <rom name="sns-aepe-0.u1" size="1048576" crc="914f2ea3" sha1="b962d72c943d33a9cb55c5a05d779f0a836c46c3" offset="0x000000" /> |
| 18690 | 20326 | </dataarea> |
| r21545 | r21546 | |
| 18709 | 20345 | <feature name="lockout" value="" /> |
| 18710 | 20346 | <feature name="cart_model" value="SNSP-006" /> |
| 18711 | 20347 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 20348 | ||
| 20349 | <feature name="slot" value="lorom_dsp" /> | |
| 18712 | 20350 | <dataarea name="rom" size="524288"> |
| 18713 | 20351 | <rom name="spal-pw-0.u1" size="524288" crc="def45776" sha1="d450d6d580d163fdfcc4f58d5bf8fafd7f510750" offset="0x000000" /> |
| 18714 | 20352 | </dataarea> |
| 20353 | <dataarea name="addon" size="10240"> | |
| 20354 | <rom name="dsp1.u2" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 20355 | </dataarea> | |
| 18715 | 20356 | </part> |
| 18716 | 20357 | </software> |
| 18717 | 20358 | |
| r21545 | r21546 | |
| 18733 | 20374 | <feature name="lockout" value="" /> |
| 18734 | 20375 | <feature name="cart_model" value="SHVC-006" /> |
| 18735 | 20376 | <feature name="cart_back_label" value="901121, 920414" /> |
| 20377 | ||
| 20378 | <feature name="slot" value="lorom_dsp" /> | |
| 18736 | 20379 | <dataarea name="rom" size="524288"> |
| 18737 | 20380 | <rom name="shvc-pw-0.u1" size="524288" crc="77871727" sha1="76832034269723dc0aa7b9019faa5e8f39181e9d" offset="0x000000" /> |
| 18738 | 20381 | </dataarea> |
| 20382 | <dataarea name="addon" size="10240"> | |
| 20383 | <rom name="dsp1.u2" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 20384 | </dataarea> | |
| 18739 | 20385 | </part> |
| 18740 | 20386 | </software> |
| 18741 | 20387 | |
| r21545 | r21546 | |
| 18756 | 20402 | <feature name="lockout" value="" /> |
| 18757 | 20403 | <feature name="cart_model" value="SNS-006" /> |
| 18758 | 20404 | <feature name="cart_back_label" value="" /> |
| 20405 | ||
| 20406 | <feature name="slot" value="lorom_dsp" /> | |
| 18759 | 20407 | <dataarea name="rom" size="524288"> |
| 18760 | 20408 | <rom name="sns-pw-0.u1" size="524288" crc="266c44ed" sha1="fe941ba251acf329f028a1603a43562db2c75e51" offset="0x000000" /> |
| 18761 | 20409 | </dataarea> |
| 20410 | <dataarea name="addon" size="10240"> | |
| 20411 | <rom name="dsp1.u2" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 20412 | </dataarea> | |
| 18762 | 20413 | </part> |
| 18763 | 20414 | </software> |
| 18764 | 20415 | |
| r21545 | r21546 | |
| 18774 | 20425 | <feature name="lockout" value="" /> |
| 18775 | 20426 | <feature name="cart_model" value="SNSP-006" /> |
| 18776 | 20427 | <feature name="cart_back_label" value="SNSP-FRG" /> |
| 20428 | ||
| 20429 | <feature name="slot" value="lorom" /> | |
| 18777 | 20430 | <dataarea name="rom" size="1048576"> |
| 18778 | 20431 | <rom name="spal-yw-0.u1" size="1048576" crc="94da9bd9" sha1="3d83672fcc88940fb0e8502e822f52a75944b067" offset="0x000000" /> |
| 18779 | 20432 | </dataarea> |
| r21545 | r21546 | |
| 18793 | 20446 | <feature name="lockout" value="" /> |
| 18794 | 20447 | <feature name="cart_model" value="SNSP-006" /> |
| 18795 | 20448 | <feature name="cart_back_label" value="" /> |
| 20449 | ||
| 20450 | <feature name="slot" value="hirom" /> | |
| 18796 | 20451 | <dataarea name="rom" size="3145728"> |
| 18797 | 20452 | <rom name="spal-acgp-0.u1" size="3145728" crc="2832c824" sha1="0f7d84215e21f8778199bd8fe3b8a55a056e029f" offset="0x000000" /> |
| 18798 | 20453 | </dataarea> |
| r21545 | r21546 | |
| 18813 | 20468 | <feature name="lockout" value="D411A 9411 BA" /> |
| 18814 | 20469 | <feature name="cart_model" value="SNS-006" /> |
| 18815 | 20470 | <feature name="cart_back_label" value="" /> |
| 20471 | ||
| 20472 | <feature name="slot" value="lorom" /> | |
| 18816 | 20473 | <dataarea name="rom" size="1048576"> |
| 18817 | 20474 | <rom name="sns-8p-0.u1" size="1048576" crc="7ca0ca4d" sha1="ee8cb83b46b0dfce33cbbfa16bf0c713fbf288ba" offset="0x000000" /> |
| 18818 | 20475 | </dataarea> |
| r21545 | r21546 | |
| 18831 | 20488 | <feature name="lockout" value="" /> |
| 18832 | 20489 | <feature name="cart_model" value="SNSP-006" /> |
| 18833 | 20490 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 20491 | ||
| 20492 | <feature name="slot" value="lorom" /> | |
| 18834 | 20493 | <dataarea name="rom" size="2097152"> |
| 18835 | 20494 | <rom name="spal-apap-0.u1" size="2097152" crc="7e9bc944" sha1="634b545e4ccaccc454a2e9eb256a8e96b4e75bb7" offset="0x000000" /> |
| 18836 | 20495 | </dataarea> |
| r21545 | r21546 | |
| 18850 | 20509 | <feature name="lockout" value="" /> |
| 18851 | 20510 | <feature name="cart_model" value="SNSP-006" /> |
| 18852 | 20511 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 20512 | ||
| 20513 | <feature name="slot" value="lorom" /> | |
| 18853 | 20514 | <dataarea name="rom" size="1048576"> |
| 18854 | 20515 | <rom name="sfra-p4-0.u1" size="1048576" crc="e5e84e18" sha1="9fc200f34eece7e477cae7be0217b66015e613ee" offset="0x000000" /> |
| 18855 | 20516 | </dataarea> |
| r21545 | r21546 | |
| 18869 | 20530 | <feature name="lockout" value="" /> |
| 18870 | 20531 | <feature name="cart_model" value="SNSP-006" /> |
| 18871 | 20532 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 20533 | ||
| 20534 | <feature name="slot" value="lorom" /> | |
| 18872 | 20535 | <dataarea name="rom" size="1048576"> |
| 18873 | 20536 | <rom name="sfrg-p4-0.u1" size="1048576" crc="edc2befd" sha1="88e30c9575d7a96db29d3dcc5725612c359ff047" offset="0x000000" /> |
| 18874 | 20537 | </dataarea> |
| r21545 | r21546 | |
| 18890 | 20553 | <feature name="lockout" value="" /> |
| 18891 | 20554 | <feature name="cart_model" value="SNS-006" /> |
| 18892 | 20555 | <feature name="cart_back_label" value="" /> |
| 20556 | ||
| 20557 | <feature name="slot" value="lorom" /> | |
| 18893 | 20558 | <dataarea name="rom" size="1572864"> |
| 18894 | 20559 | <rom name="sns-29-0 p0.u1" size="1048576" crc="a5ee2a81" sha1="54fab38a8e98280cabdeb2b6ae5ae312e7144a3c" offset="0x000000" /> |
| 18895 | 20560 | <rom name="sns-29-0 p1.u2" size="524288" crc="eae507e1" sha1="713d82ac479ba83e1f63d064644e396decfa3c56" offset="0x100000" /> |
| r21545 | r21546 | |
| 18912 | 20577 | <feature name="lockout" value="" /> |
| 18913 | 20578 | <feature name="cart_model" value="SHVC-006" /> |
| 18914 | 20579 | <feature name="cart_back_label" value="920214" /> |
| 20580 | ||
| 20581 | <feature name="slot" value="lorom" /> | |
| 18915 | 20582 | <dataarea name="rom" size="1048576"> |
| 18916 | 20583 | <rom name="shvc-pt-0.u1" size="1048576" crc="ee13e32d" sha1="4c1b2a49bfc9845e62931b0197c410efb52a5abd" offset="0x000000" /> |
| 18917 | 20584 | </dataarea> |
| r21545 | r21546 | |
| 18935 | 20602 | <feature name="battery" value="BATT CR2032" /> |
| 18936 | 20603 | <feature name="cart_model" value="SHVC-006" /> |
| 18937 | 20604 | <feature name="cart_back_label" value="901121" /> |
| 20605 | ||
| 20606 | <feature name="slot" value="lorom" /> | |
| 18938 | 20607 | <dataarea name="rom" size="524288"> |
| 18939 | 20608 | <rom name="shvc-po-0.u1" size="524288" crc="191e1ce3" sha1="c34c261ba34afd321f304da5daeb28723dcbd9fc" offset="0x000000" /> |
| 18940 | 20609 | </dataarea> |
| r21545 | r21546 | |
| 18959 | 20628 | <feature name="lockout" value="" /> |
| 18960 | 20629 | <feature name="cart_model" value="SHVC-006" /> |
| 18961 | 20630 | <feature name="cart_back_label" value="920214" /> |
| 20631 | ||
| 20632 | <feature name="slot" value="lorom" /> | |
| 18962 | 20633 | <dataarea name="rom" size="1310720"> |
| 18963 | 20634 | <rom name="shvc-pl-0 p0.u1" size="1048576" crc="6feb075a" sha1="85f7696c45140665ce76308377bc4081583adda7" offset="0x000000" /> |
| 18964 | 20635 | <rom name="shvc-pl-0 p1.u2" size="262144" crc="c60ac4ce" sha1="7e5b2dbdcec9b23dd62a04c235fbe34bbf22cd03" offset="0x100000" /> |
| r21545 | r21546 | |
| 18979 | 20650 | <feature name="lockout" value="" /> |
| 18980 | 20651 | <feature name="cart_model" value="SNS-006" /> |
| 18981 | 20652 | <feature name="cart_back_label" value="SNS-USA/CAN-1-M" /> |
| 20653 | ||
| 20654 | <feature name="slot" value="lorom" /> | |
| 18982 | 20655 | <dataarea name="rom" size="2097152"> |
| 18983 | 20656 | <rom name="sns-p-appe-0.u1" size="2097152" crc="f09e91a1" sha1="ef20e4ce1b4b6a25aac14613d4bed949017edfc9" offset="0x000000" /> |
| 18984 | 20657 | </dataarea> |
| r21545 | r21546 | |
| 19003 | 20676 | <feature name="battery" value="BATT CR2032" /> |
| 19004 | 20677 | <feature name="cart_model" value="SHVC-006" /> |
| 19005 | 20678 | <feature name="cart_back_label" value="920214" /> |
| 20679 | ||
| 20680 | <feature name="slot" value="lorom" /> | |
| 19006 | 20681 | <dataarea name="rom" size="1572864"> |
| 19007 | 20682 | <rom name="shvc-aluj-0 p0.u1" size="1048576" crc="ab2895c1" sha1="16f6613102377b85349b9fbf69ea77342a1930a7" offset="0x000000" /> |
| 19008 | 20683 | <rom name="shvc-aluj-0 p1.u2" size="524288" crc="794897e0" sha1="e862317ccd56612702bb2c06803e71dfcead2291" offset="0x100000" /> |
| r21545 | r21546 | |
| 19025 | 20700 | <feature name="lockout" value="D411B 9528 C" /> |
| 19026 | 20701 | <feature name="cart_model" value="SNS-006" /> |
| 19027 | 20702 | <feature name="cart_back_label" value="" /> |
| 20703 | ||
| 20704 | <feature name="slot" value="lorom" /> | |
| 19028 | 20705 | <dataarea name="rom" size="1048576"> |
| 19029 | 20706 | <rom name="sns-aote-0.u1" size="1048576" crc="e945530d" sha1="9db093a46938fe14fdc044a0758618d4b43fb449" offset="0x000000" /> |
| 19030 | 20707 | </dataarea> |
| r21545 | r21546 | |
| 19046 | 20723 | <feature name="battery" value="BATT CR2032" /> |
| 19047 | 20724 | <feature name="cart_model" value="SNSP-006(-02)" /> |
| 19048 | 20725 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 20726 | ||
| 20727 | <feature name="slot" value="lorom_sa1" /> | |
| 19049 | 20728 | <dataarea name="rom" size="1048576"> |
| 19050 | 20729 | <rom name="spal-a4rp-0.u1" size="1048576" crc="6aa46cfc" sha1="bdafd8414e832acb4f85c2f3a539ba9b9af8bcc9" offset="0x000000" /> |
| 19051 | 20730 | </dataarea> |
| r21545 | r21546 | |
| 19072 | 20751 | <feature name="battery" value="BATT CR2032" /> |
| 19073 | 20752 | <feature name="cart_model" value="SHVC-006" /> |
| 19074 | 20753 | <feature name="cart_back_label" value="" /> |
| 20754 | ||
| 20755 | <feature name="slot" value="lorom" /> | |
| 19075 | 20756 | <dataarea name="rom" size="1048576"> |
| 19076 | 20757 | <rom name="shvc-bpsj-0.u1" size="1048576" crc="39fbaa1e" sha1="4b69363051df75089169cb76e5abc6364ecbabf5" offset="0x000000" /> |
| 19077 | 20758 | </dataarea> |
| r21545 | r21546 | |
| 19094 | 20775 | <feature name="lockout" value="" /> |
| 19095 | 20776 | <feature name="cart_model" value="SHVC-006" /> |
| 19096 | 20777 | <feature name="cart_back_label" value="920214" /> |
| 20778 | ||
| 20779 | <feature name="slot" value="lorom" /> | |
| 19097 | 20780 | <dataarea name="rom" size="1048576"> |
| 19098 | 20781 | <rom name="shvc-pm-0.u1" size="1048576" crc="3e14376b" sha1="79ab6cb1a0cc37ba2bd1f5cf080b2e0489c8a05d" offset="0x000000" /> |
| 19099 | 20782 | </dataarea> |
| r21545 | r21546 | |
| 19112 | 20795 | <feature name="lockout" value="" /> |
| 19113 | 20796 | <feature name="cart_model" value="SNSP-006" /> |
| 19114 | 20797 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 20798 | ||
| 20799 | <feature name="slot" value="lorom" /> | |
| 19115 | 20800 | <dataarea name="rom" size="1048576"> |
| 19116 | 20801 | <rom name="spal-pr-0.u1" size="1048576" crc="320562c3" sha1="d2e9ba4c7e75a178a551fc13d5fa05a2ce55d509" offset="0x000000" /> |
| 19117 | 20802 | </dataarea> |
| r21545 | r21546 | |
| 19132 | 20817 | <feature name="lockout" value="" /> |
| 19133 | 20818 | <feature name="cart_model" value="SHVC-006" /> |
| 19134 | 20819 | <feature name="cart_back_label" value="920214" /> |
| 20820 | ||
| 20821 | <feature name="slot" value="lorom" /> | |
| 19135 | 20822 | <dataarea name="rom" size="1048576"> |
| 19136 | 20823 | <rom name="shvc-pr-0.u1" size="1048576" crc="cfc71e89" sha1="de1d327f90ee57c8b20e2489109638b8632f18f5" offset="0x000000" /> |
| 19137 | 20824 | </dataarea> |
| r21545 | r21546 | |
| 19150 | 20837 | <feature name="lockout" value="" /> |
| 19151 | 20838 | <feature name="cart_model" value="SNSP-006" /> |
| 19152 | 20839 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 20840 | ||
| 20841 | <feature name="slot" value="lorom" /> | |
| 19153 | 20842 | <dataarea name="rom" size="2097152"> |
| 19154 | 20843 | <rom name="spal-aupp-0.u1" size="2097152" crc="2d25a9e1" sha1="5d1b73634baa29462ab878a8aa6e75facec96ffb" offset="0x000000" /> |
| 19155 | 20844 | </dataarea> |
| r21545 | r21546 | |
| 19170 | 20859 | <feature name="lockout" value="" /> |
| 19171 | 20860 | <feature name="cart_model" value="SHVC-006" /> |
| 19172 | 20861 | <feature name="cart_back_label" value="901121" /> |
| 20862 | ||
| 20863 | <feature name="slot" value="lorom" /> | |
| 19173 | 20864 | <dataarea name="rom" size="524288"> |
| 19174 | 20865 | <rom name="shvc-fb-0.u1" size="524288" crc="d07cfdcb" sha1="1c8df09898dd29053aa21e6d972132c420b5468e" offset="0x000000" /> |
| 19175 | 20866 | </dataarea> |
| r21545 | r21546 | |
| 19190 | 20881 | <feature name="lockout" value="" /> |
| 19191 | 20882 | <feature name="cart_model" value="SHVC-006" /> |
| 19192 | 20883 | <feature name="cart_back_label" value="920214" /> |
| 20884 | ||
| 20885 | <feature name="slot" value="lorom" /> | |
| 19193 | 20886 | <dataarea name="rom" size="524288"> |
| 19194 | 20887 | <rom name="shvc-zz-0.u1" size="524288" crc="1210816b" sha1="7637e0a1fc86d3b815972e44c60acecfc1f8c1f2" offset="0x000000" /> |
| 19195 | 20888 | </dataarea> |
| r21545 | r21546 | |
| 19213 | 20906 | <feature name="battery" value="BATT CR2032" /> |
| 19214 | 20907 | <feature name="cart_model" value="SHVC-006" /> |
| 19215 | 20908 | <feature name="cart_back_label" value="920214" /> |
| 20909 | ||
| 20910 | <feature name="slot" value="lorom" /> | |
| 19216 | 20911 | <dataarea name="rom" size="1048576"> |
| 19217 | 20912 | <rom name="shvc-az3j-0.u1" size="1048576" crc="cf05dfce" sha1="9c36aae943b447754e293b4a54c8c39554dac81d" offset="0x000000" /> |
| 19218 | 20913 | </dataarea> |
| r21545 | r21546 | |
| 19238 | 20933 | <feature name="battery" value="BATT CR2032" /> |
| 19239 | 20934 | <feature name="cart_model" value="SHVC-006" /> |
| 19240 | 20935 | <feature name="cart_back_label" value="901121" /> |
| 20936 | ||
| 20937 | <feature name="slot" value="lorom" /> | |
| 19241 | 20938 | <dataarea name="rom" size="524288"> |
| 19242 | 20939 | <rom name="shvc-ps-0.u1" size="524288" crc="a1981915" sha1="d1a3580ef1b6d9a655dc7f92a378aaaff24d9305" offset="0x000000" /> |
| 19243 | 20940 | </dataarea> |
| r21545 | r21546 | |
| 19263 | 20960 | <feature name="battery" value="BATT CR2032" /> |
| 19264 | 20961 | <feature name="cart_model" value="SHVC-006" /> |
| 19265 | 20962 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 20963 | ||
| 20964 | <feature name="slot" value="lorom" /> | |
| 19266 | 20965 | <dataarea name="rom" size="1048576"> |
| 19267 | 20966 | <rom name="shvc-au4j-0.u1" size="1048576" crc="c1cba41c" sha1="a05b026f77fb88653440af2d9eba936b0f9910e1" offset="0x000000" /> |
| 19268 | 20967 | </dataarea> |
| r21545 | r21546 | |
| 19285 | 20984 | <feature name="lockout" value="" /> |
| 19286 | 20985 | <feature name="cart_model" value="SHVC-006" /> |
| 19287 | 20986 | <feature name="cart_back_label" value="" /> |
| 20987 | ||
| 20988 | <feature name="slot" value="hirom" /> | |
| 19288 | 20989 | <dataarea name="rom" size="1048576"> |
| 19289 | 20990 | <rom name="shvc-py-0.u1" size="1048576" crc="5c145e98" sha1="c8a348b4e8db0d44efe0ed40b3e566d842e6c635" offset="0x000000" /> |
| 19290 | 20991 | </dataarea> |
| r21545 | r21546 | |
| 19305 | 21006 | <feature name="lockout" value="" /> |
| 19306 | 21007 | <feature name="cart_model" value="SHVC-006" /> |
| 19307 | 21008 | <feature name="cart_back_label" value="920214, G741812 SHVC-JPN-1" /> |
| 21009 | ||
| 21010 | <feature name="slot" value="lorom" /> | |
| 19308 | 21011 | <dataarea name="rom" size="524288"> |
| 19309 | 21012 | <rom name="shvc-aykj-0.u1" size="524288" crc="96bd588b" sha1="918c7b5bf263001cc4bfc53b4a42dac1fd4f897a" offset="0x000000" /> |
| 19310 | 21013 | </dataarea> |
| r21545 | r21546 | |
| 19325 | 21028 | <feature name="lockout" value="" /> |
| 19326 | 21029 | <feature name="cart_model" value="SNSP-006" /> |
| 19327 | 21030 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 21031 | ||
| 21032 | <feature name="slot" value="lorom" /> | |
| 19328 | 21033 | <dataarea name="rom" size="2097152"> |
| 19329 | 21034 | <rom name="spal-er-0.u1" size="2097152" crc="5a183e62" sha1="20f3fac4df152aa39b56c40694f254a0d60f1db6" offset="0x000000" /> |
| 19330 | 21035 | </dataarea> |
| r21545 | r21546 | |
| 19345 | 21050 | <feature name="lockout" value="D411A 9434 BA" /> |
| 19346 | 21051 | <feature name="cart_model" value="SNS-006" /> |
| 19347 | 21052 | <feature name="cart_back_label" value="" /> |
| 21053 | ||
| 21054 | <feature name="slot" value="lorom" /> | |
| 19348 | 21055 | <dataarea name="rom" size="2097152"> |
| 19349 | 21056 | <rom name="sns-er-0.u1" size="2097152" crc="642b656b" sha1="1785bcf1ef546728cce20db2fa458028e0af2eaa" offset="0x000000" /> |
| 19350 | 21057 | </dataarea> |
| r21545 | r21546 | |
| 19364 | 21071 | <feature name="lockout" value="D411A 9430 BA" /> |
| 19365 | 21072 | <feature name="cart_model" value="SNS-006" /> |
| 19366 | 21073 | <feature name="cart_back_label" value="" /> |
| 21074 | ||
| 21075 | <feature name="slot" value="lorom" /> | |
| 19367 | 21076 | <dataarea name="rom" size="1048576"> |
| 19368 | 21077 | <rom name="sns-arre-0.u1" size="1048576" crc="e2b8da18" sha1="2e3336721770668ddbb2687cc9da5c719fe38823" offset="0x000000" /> |
| 19369 | 21078 | </dataarea> |
| r21545 | r21546 | |
| 19384 | 21093 | <feature name="lockout" value="" /> |
| 19385 | 21094 | <feature name="cart_model" value="SNSP-006" /> |
| 19386 | 21095 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 21096 | ||
| 21097 | <feature name="slot" value="hirom" /> | |
| 19387 | 21098 | <dataarea name="rom" size="1572864"> |
| 19388 | 21099 | <rom name="sfra-r2-0 p0.u1" size="1048576" crc="1214c14d" sha1="f3429596c0174eeeafa89c63a19843217e858b91" offset="0x000000" /> |
| 19389 | 21100 | <rom name="sfra-r2-0 p1.u2" size="524288" crc="c8ee3dba" sha1="0daebdb7882ef641b2182ca0af7ea087f240c03e" offset="0x100000" /> |
| r21545 | r21546 | |
| 19407 | 21118 | <feature name="lockout" value="" /> |
| 19408 | 21119 | <feature name="cart_model" value="SHVC-006" /> |
| 19409 | 21120 | <feature name="cart_back_label" value="920214" /> |
| 21121 | ||
| 21122 | <feature name="slot" value="hirom" /> | |
| 19410 | 21123 | <dataarea name="rom" size="1572864"> |
| 19411 | 21124 | <rom name="shvc-r2-0 p0.u1" size="1048576" crc="c45199da" sha1="508803303692d2265385209f45568e52c75af077" offset="0x000000" /> |
| 19412 | 21125 | <rom name="shvc-r2-0 p1.u2" size="524288" crc="e3350924" sha1="4f48ea8a409cfe3f304d3854582bdc34d4502624" offset="0x100000" /> |
| r21545 | r21546 | |
| 19428 | 21141 | <feature name="lockout" value="" /> |
| 19429 | 21142 | <feature name="cart_model" value="SHVC-006" /> |
| 19430 | 21143 | <feature name="cart_back_label" value="901121" /> |
| 21144 | ||
| 21145 | <feature name="slot" value="lorom" /> | |
| 19431 | 21146 | <dataarea name="rom" size="1048576"> |
| 19432 | 21147 | <rom name="shvc-ra-0.u1" size="1048576" crc="e86e3c2d" sha1="56e065f20236b07ee475ce446b9ebf67e23f891e" offset="0x000000" /> |
| 19433 | 21148 | </dataarea> |
| r21545 | r21546 | |
| 19452 | 21167 | <feature name="battery" value="BATT CR2032" /> |
| 19453 | 21168 | <feature name="cart_model" value="SHVC-006" /> |
| 19454 | 21169 | <feature name="cart_back_label" value="920214" /> |
| 21170 | ||
| 21171 | <feature name="slot" value="lorom" /> | |
| 19455 | 21172 | <dataarea name="rom" size="1572864"> |
| 19456 | 21173 | <rom name="shvc-aimj-0 p0.u1" size="1048576" crc="9fc767b3" sha1="4639af9aefb31ff77217de52f1795af8bacb7f2a" offset="0x000000" /> |
| 19457 | 21174 | <rom name="shvc-aimj-0 p1.u2" size="524288" crc="a4350418" sha1="bcccd03b5e35eeef7b90121ae74a060100f3eb6e" offset="0x100000" /> |
| r21545 | r21546 | |
| 19474 | 21191 | <feature name="lockout" value="D411B 9506 B" /> |
| 19475 | 21192 | <feature name="cart_model" value="SNS-006" /> |
| 19476 | 21193 | <feature name="cart_back_label" value="" /> |
| 21194 | ||
| 21195 | <feature name="slot" value="lorom" /> | |
| 19477 | 21196 | <dataarea name="rom" size="1048576"> |
| 19478 | 21197 | <rom name="sns-arbe-0.u1" size="1048576" crc="672ebf39" sha1="ea815e91fef3f75d57e4ec1651c246cacc3f4699" offset="0x000000" /> |
| 19479 | 21198 | </dataarea> |
| r21545 | r21546 | |
| 19494 | 21213 | <feature name="lockout" value="" /> |
| 19495 | 21214 | <feature name="cart_model" value="SHVC-006" /> |
| 19496 | 21215 | <feature name="cart_back_label" value="920214" /> |
| 21216 | ||
| 21217 | <feature name="slot" value="lorom" /> | |
| 19497 | 21218 | <dataarea name="rom" size="1048576"> |
| 19498 | 21219 | <rom name="shvc-araj-0.u1" size="1048576" crc="e7637817" sha1="8f36123939cac334ffa3b6ef4b4b98239549ee38" offset="0x000000" /> |
| 19499 | 21220 | </dataarea> |
| r21545 | r21546 | |
| 19515 | 21236 | <feature name="lockout" value="D411A 9445 AA" /> |
| 19516 | 21237 | <feature name="cart_model" value="SNS-006" /> |
| 19517 | 21238 | <feature name="cart_back_label" value="" /> |
| 21239 | ||
| 21240 | <feature name="slot" value="hirom" /> | |
| 19518 | 21241 | <dataarea name="rom" size="4194304"> |
| 19519 | 21242 | <rom name="sns-aroe-0 p0.u1" size="2097152" crc="75170365" sha1="28d0498f29865758d805c527a6d926898f6a9cb7" offset="0x000000" /> |
| 19520 | 21243 | <rom name="sns-aroe-0 p3.u2" size="2097152" crc="bddf5c64" sha1="57cc1bdeb5d2014561e67f2f6213a02d2438e643" offset="0x200000" /> |
| r21545 | r21546 | |
| 19535 | 21258 | <feature name="lockout" value="D411 9209 BB" /> |
| 19536 | 21259 | <feature name="cart_model" value="SNS-006" /> |
| 19537 | 21260 | <feature name="cart_back_label" value="" /> |
| 21261 | ||
| 21262 | <feature name="slot" value="lorom" /> | |
| 19538 | 21263 | <dataarea name="rom" size="1048576"> |
| 19539 | 21264 | <rom name="sns-rb-0.u1" size="1048576" crc="ca988f59" sha1="86541ccb1b3e886794ef2165d93d018b158569e2" offset="0x000000" /> |
| 19540 | 21265 | </dataarea> |
| r21545 | r21546 | |
| 19554 | 21279 | <feature name="lockout" value="" /> |
| 19555 | 21280 | <feature name="cart_model" value="SNS-006" /> |
| 19556 | 21281 | <feature name="cart_back_label" value="" /> |
| 21282 | ||
| 21283 | <feature name="slot" value="lorom" /> | |
| 19557 | 21284 | <dataarea name="rom" size="524288"> |
| 19558 | 21285 | <rom name="sns-rr-0.u1" size="524288" crc="20367643" sha1="62e46f8997b3f5a47d2a26abd455f172e742476d" offset="0x000000" /> |
| 19559 | 21286 | </dataarea> |
| r21545 | r21546 | |
| 19574 | 21301 | <feature name="lockout" value="" /> |
| 19575 | 21302 | <feature name="cart_model" value="SHVC-006" /> |
| 19576 | 21303 | <feature name="cart_back_label" value="920214" /> |
| 21304 | ||
| 21305 | <feature name="slot" value="lorom" /> | |
| 19577 | 21306 | <dataarea name="rom" size="1048576"> |
| 19578 | 21307 | <rom name="shvc-dv-0.u1" size="1048576" crc="82399957" sha1="457b8faddaed4e8733a067d9c1e33d4f6abfeb0c" offset="0x000000" /> |
| 19579 | 21308 | </dataarea> |
| r21545 | r21546 | |
| 19593 | 21322 | <feature name="lockout" value="" /> |
| 19594 | 21323 | <feature name="cart_model" value="SNS-006" /> |
| 19595 | 21324 | <feature name="cart_back_label" value="SNS-USA/CAN" /> |
| 21325 | ||
| 21326 | <feature name="slot" value="lorom" /> | |
| 19596 | 21327 | <dataarea name="rom" size="1048576"> |
| 19597 | 21328 | <rom name="sns-dv-0.u1" size="1048576" crc="5980d75d" sha1="881dbd1700914d3897182b3ecb05f558a64b6750" offset="0x000000" /> |
| 19598 | 21329 | </dataarea> |
| r21545 | r21546 | |
| 19612 | 21343 | <feature name="lockout" value="" /> |
| 19613 | 21344 | <feature name="cart_model" value="SNSP-006" /> |
| 19614 | 21345 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 21346 | ||
| 21347 | <feature name="slot" value="lorom" /> | |
| 19615 | 21348 | <dataarea name="rom" size="1048576"> |
| 19616 | 21349 | <rom name="spal-vr-0.u1" size="1048576" crc="beebef08" sha1="9d8e99199d12cdd3951ae146756046ac7949cdd6" offset="0x000000" /> |
| 19617 | 21350 | </dataarea> |
| r21545 | r21546 | |
| 19632 | 21365 | <feature name="lockout" value="D411A 9251 CA" /> |
| 19633 | 21366 | <feature name="cart_model" value="SNS-006" /> |
| 19634 | 21367 | <feature name="cart_back_label" value="" /> |
| 21368 | ||
| 21369 | <feature name="slot" value="lorom" /> | |
| 19635 | 21370 | <dataarea name="rom" size="1048576"> |
| 19636 | 21371 | <rom name="sns-vr-0.u1" size="1048576" crc="f5ab5d91" sha1="f6b6cd466d1a50a4f8608f4af1b773f317aaf964" offset="0x000000" /> |
| 19637 | 21372 | </dataarea> |
| r21545 | r21546 | |
| 19655 | 21390 | <feature name="battery" value="BATT CR2032" /> |
| 19656 | 21391 | <feature name="cart_model" value="SNS-006" /> |
| 19657 | 21392 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 21393 | ||
| 21394 | <feature name="slot" value="hirom" /> | |
| 19658 | 21395 | <dataarea name="rom" size="1572864"> |
| 19659 | 21396 | <rom name="sns-e9-0 p0.u1" size="1048576" crc="5772eb00" sha1="c30d123c870ab4d892285e3e58c0806423efd249" offset="0x000000" /> |
| 19660 | 21397 | <rom name="sns-e9-0 p1.u2" size="524288" crc="d0d0f793" sha1="988d89628cf6317b9d4d97ee6421b44acd752094" offset="0x100000" /> |
| r21545 | r21546 | |
| 19676 | 21413 | <feature name="lockout" value="" /> |
| 19677 | 21414 | <feature name="cart_model" value="SNSP-006" /> |
| 19678 | 21415 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 21416 | ||
| 21417 | <feature name="slot" value="lorom" /> | |
| 19679 | 21418 | <dataarea name="rom" size="1048576"> |
| 19680 | 21419 | <rom name="spal-rn-0.u1" size="1048576" crc="b02daf39" sha1="61430be47083d7e7f5879a69247dd17ddaff50d1" offset="0x000000" /> |
| 19681 | 21420 | </dataarea> |
| r21545 | r21546 | |
| 19697 | 21436 | <feature name="lockout" value="" /> |
| 19698 | 21437 | <feature name="cart_model" value="SHVC-006" /> |
| 19699 | 21438 | <feature name="cart_back_label" value="920214" /> |
| 21439 | ||
| 21440 | <feature name="slot" value="lorom" /> | |
| 19700 | 21441 | <dataarea name="rom" size="1048576"> |
| 19701 | 21442 | <rom name="shvc-rn-0.u1" size="1048576" crc="a206384c" sha1="f0673d5446e42c4dbf1c177f9ad02ee2f5ba36fc" offset="0x000000" /> |
| 19702 | 21443 | </dataarea> |
| r21545 | r21546 | |
| 19716 | 21457 | <feature name="lockout" value="D411 9214 BB" /> |
| 19717 | 21458 | <feature name="cart_model" value="SNS-006" /> |
| 19718 | 21459 | <feature name="cart_back_label" value="" /> |
| 21460 | ||
| 21461 | <feature name="slot" value="lorom" /> | |
| 19719 | 21462 | <dataarea name="rom" size="1048576"> |
| 19720 | 21463 | <rom name="sns-rk-0.u1" size="1048576" crc="4c68a3c7" sha1="cb544a7ac485cf0337f6f8494a935da3100e07a3" offset="0x000000" /> |
| 19721 | 21464 | </dataarea> |
| r21545 | r21546 | |
| 19736 | 21479 | <feature name="lockout" value="" /> |
| 19737 | 21480 | <feature name="cart_model" value="SHVC-006" /> |
| 19738 | 21481 | <feature name="cart_back_label" value="920214" /> |
| 21482 | ||
| 21483 | <feature name="slot" value="hirom" /> | |
| 19739 | 21484 | <dataarea name="rom" size="2097152"> |
| 19740 | 21485 | <rom name="shvc-a7rj-0.u1" size="2097152" crc="31f18dda" sha1="a907f7ece8a8d89126c466079712282d675486ef" offset="0x000000" /> |
| 19741 | 21486 | </dataarea> |
| r21545 | r21546 | |
| 19759 | 21504 | <feature name="battery" value="BATT CR2032" /> |
| 19760 | 21505 | <feature name="cart_model" value="SHVC-006" /> |
| 19761 | 21506 | <feature name="cart_back_label" value="" /> |
| 21507 | ||
| 21508 | <feature name="slot" value="hirom" /> | |
| 19762 | 21509 | <dataarea name="rom" size="4194304"> |
| 19763 | 21510 | <rom name="shvc-ar6j-0.u1" size="4194304" crc="5047e0d4" sha1="bcd2fc38b4e4bf6b811b00301f349e85ca48fe1a" offset="0x000000" /> |
| 19764 | 21511 | </dataarea> |
| r21545 | r21546 | |
| 19784 | 21531 | <feature name="lockout" value="" /> |
| 19785 | 21532 | <feature name="cart_model" value="SHVC-006" /> |
| 19786 | 21533 | <feature name="cart_back_label" value="920214" /> |
| 21534 | ||
| 21535 | <feature name="slot" value="lorom" /> | |
| 19787 | 21536 | <dataarea name="rom" size="1572864"> |
| 19788 | 21537 | <rom name="shvc-rx-0 p0.u1" size="1048576" crc="adb7477d" sha1="17fe25d055eecfd1a84123fa86e902f76aeb22cc" offset="0x000000" /> |
| 19789 | 21538 | <rom name="shvc-rx-0 p1.u2" size="524288" crc="851e8b3e" sha1="793936f95da877f1467a5fd16a3ec7e32f74f36d" offset="0x100000" /> |
| r21545 | r21546 | |
| 19808 | 21557 | <feature name="lockout" value="" /> |
| 19809 | 21558 | <feature name="cart_model" value="SHVC-006" /> |
| 19810 | 21559 | <feature name="cart_back_label" value="920414" /> |
| 21560 | ||
| 21561 | <feature name="slot" value="lorom_cx4" /> | |
| 19811 | 21562 | <dataarea name="rom" size="1572864"> |
| 19812 | 21563 | <rom name="shvc-arxj-0 p0.u1" size="1048576" crc="b4f3d5ca" sha1="1ed5d6d1e2634d09061941402aae7ac30e33d4d7" offset="0x000000" /> |
| 19813 | 21564 | <rom name="shvc-arxj-0 p1.u2" size="524288" crc="2d4cb9cc" sha1="df88b80678c254fba0da7b0d6b875129c1f5a299" offset="0x100000" /> |
| 19814 | 21565 | </dataarea> |
| 21566 | <dataarea name="addon" size="3072"> | |
| 21567 | <rom name="cx4.u3" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 21568 | </dataarea> | |
| 19815 | 21569 | </part> |
| 19816 | 21570 | </software> |
| 19817 | 21571 | |
| r21545 | r21546 | |
| 19831 | 21585 | <feature name="lockout" value="" /> |
| 19832 | 21586 | <feature name="cart_model" value="SHVC-006" /> |
| 19833 | 21587 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 21588 | ||
| 21589 | <feature name="slot" value="lorom_cx4" /> | |
| 19834 | 21590 | <dataarea name="rom" size="2097152"> |
| 19835 | 21591 | <rom name="shvc-ar3j-0.u1" size="2097152" crc="e476912b" sha1="8e0156fc7d6af6f36b08a5e399c0284c6c5d81b8" offset="0x000000" /> |
| 19836 | 21592 | </dataarea> |
| 21593 | <dataarea name="addon" size="3072"> | |
| 21594 | <rom name="cx4.u2" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 21595 | </dataarea> | |
| 19837 | 21596 | </part> |
| 19838 | 21597 | </software> |
| 19839 | 21598 | |
| r21545 | r21546 | |
| 19853 | 21612 | <feature name="lockout" value="" /> |
| 19854 | 21613 | <feature name="cart_model" value="SHVC-006" /> |
| 19855 | 21614 | <feature name="cart_back_label" value="920214" /> |
| 21615 | ||
| 21616 | <feature name="slot" value="lorom" /> | |
| 19856 | 21617 | <dataarea name="rom" size="1310720"> |
| 19857 | 21618 | <rom name="shvc-rq-0 p0.u1" size="1048576" crc="5041be0a" sha1="aa76b5d38d206436b5edfa8a7ef07aa7e8c73816" offset="0x000000" /> |
| 19858 | 21619 | <rom name="shvc-rq-0 p1.u2" size="262144" crc="bcb81283" sha1="9c165449e9e7084f62dbefe976451bb1f3adf568" offset="0x100000" /> |
| r21545 | r21546 | |
| 19875 | 21636 | <feature name="lockout" value="D411A 9351 BA" /> |
| 19876 | 21637 | <feature name="cart_model" value="SNS-006" /> |
| 19877 | 21638 | <feature name="cart_back_label" value="" /> |
| 21639 | ||
| 21640 | <feature name="slot" value="lorom" /> | |
| 19878 | 21641 | <dataarea name="rom" size="1572864"> |
| 19879 | 21642 | <rom name="sns-8d-0 p0.u1" size="1048576" crc="8f8bd2aa" sha1="243bc64838d6c4148a3d29a2b8216cf8643170c4" offset="0x000000" /> |
| 19880 | 21643 | <rom name="sns-8d-0 p1.u2" size="524288" crc="27d26c37" sha1="4e0b2aeb8dbd2eb53d0f46933d54c5e81f02f0d6" offset="0x100000" /> |
| r21545 | r21546 | |
| 19896 | 21659 | <feature name="lockout" value="" /> |
| 19897 | 21660 | <feature name="cart_model" value="SHVC-006" /> |
| 19898 | 21661 | <feature name="cart_back_label" value="920214" /> |
| 21662 | ||
| 21663 | <feature name="slot" value="lorom" /> | |
| 19899 | 21664 | <dataarea name="rom" size="1048576"> |
| 19900 | 21665 | <rom name="shvc-vp-0.u1" size="1048576" crc="c7daa598" sha1="79eac4cc3c50a08bfd56aed1b27417f3d13a3447" offset="0x000000" /> |
| 19901 | 21666 | </dataarea> |
| r21545 | r21546 | |
| 19918 | 21683 | <feature name="lockout" value="" /> |
| 19919 | 21684 | <feature name="cart_model" value="SHVC-006" /> |
| 19920 | 21685 | <feature name="cart_back_label" value="920214" /> |
| 21686 | ||
| 21687 | <feature name="slot" value="lorom" /> | |
| 19921 | 21688 | <dataarea name="rom" size="1572864"> |
| 19922 | 21689 | <rom name="shvc-6x-0 p0.u1" size="1048576" crc="1ff96db7" sha1="7a5be3fbac04a268cdeb69bcb229b25e425efe6c" offset="0x000000" /> |
| 19923 | 21690 | <rom name="shvc-6x-0 p1.u2" size="524288" crc="34ea8b6a" sha1="7d184726a22cd9fd9135e356297af86bfb0954bc" offset="0x100000" /> |
| r21545 | r21546 | |
| 19942 | 21709 | <feature name="battery" value="BATT CR2032" /> |
| 19943 | 21710 | <feature name="cart_model" value="SNS-006" /> |
| 19944 | 21711 | <feature name="cart_back_label" value="" /> |
| 21712 | ||
| 21713 | <feature name="slot" value="hirom" /> | |
| 19945 | 21714 | <dataarea name="rom" size="1572864"> |
| 19946 | 21715 | <rom name="sns-s3-0 p0.u1" size="1048576" crc="408dc89e" sha1="0bc2e9d8a72894ef0848fdf0d5863f5e24957a6e" offset="0x000000" /> |
| 19947 | 21716 | <rom name="sns-s3-0 p1.u2" size="524288" crc="7e897b30" sha1="55ea211d0aa19d4d4b6c1e8750aee7fcffbd8ddd" offset="0x100000" /> |
| r21545 | r21546 | |
| 19968 | 21737 | <feature name="battery" value="BATT CR2032" /> |
| 19969 | 21738 | <feature name="cart_model" value="SHVC-006" /> |
| 19970 | 21739 | <feature name="cart_back_label" value="901121" /> |
| 21740 | ||
| 21741 | <feature name="slot" value="lorom" /> | |
| 19971 | 21742 | <dataarea name="rom" size="1048576"> |
| 19972 | 21743 | <rom name="shvc-rs-0.u1" size="1048576" crc="a6d82435" sha1="d00960176aa980dbd7bff4062e52b7450b9986dd" offset="0x000000" /> |
| 19973 | 21744 | </dataarea> |
| r21545 | r21546 | |
| 19994 | 21765 | <feature name="cart_revision" value="A" /> |
| 19995 | 21766 | <feature name="cart_model" value="SHVC-006" /> |
| 19996 | 21767 | <feature name="cart_back_label" value="920214" /> |
| 21768 | ||
| 21769 | <feature name="slot" value="lorom" /> | |
| 19997 | 21770 | <dataarea name="rom" size="1048576"> |
| 19998 | 21771 | <rom name="shvc-rs-1.u1" size="1048576" crc="9684526d" sha1="6ab826e716869d4065307186a09925dde7cd488d" offset="0x000000" /> |
| 19999 | 21772 | </dataarea> |
| r21545 | r21546 | |
| 20020 | 21793 | <feature name="battery" value="BATT CR2032" /> |
| 20021 | 21794 | <feature name="cart_model" value="SHVC-006" /> |
| 20022 | 21795 | <feature name="cart_back_label" value="920214" /> |
| 21796 | ||
| 21797 | <feature name="slot" value="hirom" /> | |
| 20023 | 21798 | <dataarea name="rom" size="2097152"> |
| 20024 | 21799 | <rom name="shvc-2l-0.u1" size="2097152" crc="54a585bc" sha1="0d3423a9d7e315a15ff8a3be588c65bd110e3d65" offset="0x000000" /> |
| 20025 | 21800 | </dataarea> |
| r21545 | r21546 | |
| 20047 | 21822 | <feature name="battery" value="BATT CR2032" /> |
| 20048 | 21823 | <feature name="cart_model" value="SHVC-006" /> |
| 20049 | 21824 | <feature name="cart_back_label" value="920214" /> |
| 21825 | ||
| 21826 | <feature name="slot" value="hirom" /> | |
| 20050 | 21827 | <dataarea name="rom" size="2097152"> |
| 20051 | 21828 | <rom name="shvc-2l-0 p0.u1" size="1048576" crc="98453e17" sha1="01d54630d7caa1710cc4af7b68db262fe92b8305" offset="0x000000" /> |
| 20052 | 21829 | <rom name="shvc-2l-0 p1.u2" size="1048576" crc="aad14245" sha1="9dde7ac6352ba1b57fc7241ac883aecb661b85ab" offset="0x100000" /> |
| r21545 | r21546 | |
| 20074 | 21851 | <feature name="battery" value="BATT CR2032" /> |
| 20075 | 21852 | <feature name="cart_model" value="SHVC-006" /> |
| 20076 | 21853 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 21854 | ||
| 21855 | <feature name="slot" value="hirom" /> | |
| 20077 | 21856 | <dataarea name="rom" size="4194304"> |
| 20078 | 21857 | <rom name="shvc-al3j-0.u1" size="4194304" crc="5399bddb" sha1="71b404b4f775c86b924f26203dc00d7deb72ce58" offset="0x000000" /> |
| 20079 | 21858 | </dataarea> |
| r21545 | r21546 | |
| 20101 | 21880 | <feature name="cart_revision" value="A" /> |
| 20102 | 21881 | <feature name="cart_model" value="SHVC-006" /> |
| 20103 | 21882 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 21883 | ||
| 21884 | <feature name="slot" value="hirom" /> | |
| 20104 | 21885 | <dataarea name="rom" size="4194304"> |
| 20105 | 21886 | <rom name="shvc-al3j-1.u1" size="4194304" crc="6c50c2cf" sha1="ed50ac054f664175a2004d3b7423daad3021fb7b" offset="0x000000" /> |
| 20106 | 21887 | </dataarea> |
| r21545 | r21546 | |
| 20126 | 21907 | <feature name="battery" value="BATT CR2032" /> |
| 20127 | 21908 | <feature name="cart_model" value="SHVC-006" /> |
| 20128 | 21909 | <feature name="cart_back_label" value="920214" /> |
| 21910 | ||
| 21911 | <feature name="slot" value="lorom" /> | |
| 20129 | 21912 | <dataarea name="rom" size="1048576"> |
| 20130 | 21913 | <rom name="shvc-ardj-0.u1" size="1048576" crc="e20870ee" sha1="2b91726ad2a25147a0e9b8fbacc6ebb670b2648d" offset="0x000000" /> |
| 20131 | 21914 | </dataarea> |
| r21545 | r21546 | |
| 20152 | 21935 | <feature name="battery" value="BATT CR2032" /> |
| 20153 | 21936 | <feature name="cart_model" value="SHVC-028" /> |
| 20154 | 21937 | <feature name="cart_back_label" value="G736879 BSC-JPN" /> |
| 21938 | ||
| 21939 | <feature name="slot" value="lorom_bsx" /> | |
| 20155 | 21940 | <dataarea name="rom" size="2097152"> |
| 20156 | 21941 | <rom name="shvc-zr2j-0.u1" size="2097152" crc="675b6382" sha1="95f31dfb31200e31e80007cc66a32e2c1a7b02be" offset="0x000000" /> |
| 20157 | 21942 | </dataarea> |
| r21545 | r21546 | |
| 20177 | 21962 | <feature name="battery" value="BATT CR2032" /> |
| 20178 | 21963 | <feature name="cart_model" value="SHVC-006" /> |
| 20179 | 21964 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 21965 | ||
| 21966 | <feature name="slot" value="hirom" /> | |
| 20180 | 21967 | <dataarea name="rom" size="4194304"> |
| 20181 | 21968 | <rom name="shvc-a0rj-0.u1" size="4194304" crc="5d8cb7ac" sha1="0db32658302252bc18a8c3ad61ddba6ffa115e7f" offset="0x000000" /> |
| 20182 | 21969 | </dataarea> |
| r21545 | r21546 | |
| 20200 | 21987 | <feature name="lockout" value="D411A 9323 CB" /> |
| 20201 | 21988 | <feature name="cart_model" value="SNS-006" /> |
| 20202 | 21989 | <feature name="cart_back_label" value="" /> |
| 21990 | ||
| 21991 | <feature name="slot" value="lorom" /> | |
| 20203 | 21992 | <dataarea name="rom" size="1048576"> |
| 20204 | 21993 | <rom name="sns-ru-0 p0.u1" size="524288" crc="4458f0f0" sha1="3b6c0d5a67cb6c6fe6decf028b6df883abe0ea77" offset="0x000000" /> |
| 20205 | 21994 | <rom name="sns-ru-0 p1.u2" size="524288" crc="90b17d51" sha1="d38e4aae7c3da9ae110ffc61c320d58d34a56e8d" offset="0x080000" /> |
| r21545 | r21546 | |
| 20221 | 22010 | <feature name="lockout" value="" /> |
| 20222 | 22011 | <feature name="cart_model" value="SHVC-006" /> |
| 20223 | 22012 | <feature name="cart_back_label" value="920214" /> |
| 22013 | ||
| 22014 | <feature name="slot" value="lorom" /> | |
| 20224 | 22015 | <dataarea name="rom" size="1048576"> |
| 20225 | 22016 | <rom name="shvc-rb-0.u1" size="1048576" crc="a6f0693d" sha1="19ca57776d3b3cdbc8cc3444cb26e7de1e40e9b9" offset="0x000000" /> |
| 20226 | 22017 | </dataarea> |
| r21545 | r21546 | |
| 20242 | 22033 | <feature name="lockout" value="" /> |
| 20243 | 22034 | <feature name="cart_model" value="SHVC-006" /> |
| 20244 | 22035 | <feature name="cart_back_label" value="" /> |
| 22036 | ||
| 22037 | <feature name="slot" value="hirom" /> | |
| 20245 | 22038 | <dataarea name="rom" size="2097152"> |
| 20246 | 22039 | <rom name="shvc-rw-0.u1" size="2097152" crc="0db2d9ab" sha1="13c3f829dd73f49ac68ff49473aac6dff94b8432" offset="0x000000" /> |
| 20247 | 22040 | </dataarea> |
| r21545 | r21546 | |
| 20265 | 22058 | <feature name="battery" value="BATT CR2032" /> |
| 20266 | 22059 | <feature name="cart_model" value="SHVC-006" /> |
| 20267 | 22060 | <feature name="cart_back_label" value="920214" /> |
| 22061 | ||
| 22062 | <feature name="slot" value="lorom" /> | |
| 20268 | 22063 | <dataarea name="rom" size="1048576"> |
| 20269 | 22064 | <rom name="shvc-amzj-0.u1" size="1048576" crc="a8119995" sha1="52dd37c4a48310570f9f887320b8b83122bbb5f8" offset="0x000000" /> |
| 20270 | 22065 | </dataarea> |
| r21545 | r21546 | |
| 20291 | 22086 | <feature name="battery" value="BATT CR2032" /> |
| 20292 | 22087 | <feature name="cart_model" value="SHVC-028" /> |
| 20293 | 22088 | <feature name="cart_back_label" value="G736879 BSC-JPN, G744238 BSC-JPN-1" /> |
| 22089 | ||
| 22090 | <feature name="slot" value="hirom_bsx" /> | |
| 20294 | 22091 | <dataarea name="rom" size="1048576"> |
| 20295 | 22092 | <rom name="shvc-zs5j-0.u1" size="1048576" crc="133e1c5b" sha1="a6ad0f89c3e75327d70aa0f0239c7b06f151e0a4" offset="0x000000" /> |
| 20296 | 22093 | </dataarea> |
| r21545 | r21546 | |
| 20315 | 22112 | <feature name="lockout" value="D411A 9439 BA" /> |
| 20316 | 22113 | <feature name="cart_model" value="SNS-006" /> |
| 20317 | 22114 | <feature name="cart_back_label" value="" /> |
| 22115 | ||
| 22116 | <feature name="slot" value="hirom" /> | |
| 20318 | 22117 | <dataarea name="rom" size="4194304"> |
| 20319 | 22118 | <rom name="sns-a7se-0 p0.u1" size="2097152" crc="6839419b" sha1="f9691db82715e3f96e630859ec88d011530b41f4" offset="0x000000" /> |
| 20320 | 22119 | <rom name="sns-a7se-0 p3.u2" size="2097152" crc="653f29b3" sha1="8109475be5cc166c24e2713e6dafb8f0c14f4cfd" offset="0x200000" /> |
| r21545 | r21546 | |
| 20339 | 22138 | <feature name="lockout" value="" /> |
| 20340 | 22139 | <feature name="cart_model" value="SHVC-006" /> |
| 20341 | 22140 | <feature name="cart_back_label" value="920214" /> |
| 22141 | ||
| 22142 | <feature name="slot" value="hirom" /> | |
| 20342 | 22143 | <dataarea name="rom" size="4194304"> |
| 20343 | 22144 | <rom name="shvc-a7sj-0 p0.u1" size="2097152" crc="e3a622dc" sha1="ea7728dc2cc0694155084c97f20539fc42f75cc0" offset="0x000000" /> |
| 20344 | 22145 | <rom name="shvc-a7sj-0 p3.u2" size="2097152" crc="653f29b3" sha1="8109475be5cc166c24e2713e6dafb8f0c14f4cfd" offset="0x200000" /> |
| r21545 | r21546 | |
| 20365 | 22166 | <feature name="battery" value="BATT CR2032" /> |
| 20366 | 22167 | <feature name="cart_model" value="SHVC-006" /> |
| 20367 | 22168 | <feature name="cart_back_label" value="920214" /> |
| 22169 | ||
| 22170 | <feature name="slot" value="hirom" /> | |
| 20368 | 22171 | <dataarea name="rom" size="1572864"> |
| 20369 | 22172 | <rom name="shvc-s3-0 p0.u1" size="1048576" crc="89ef2495" sha1="86dea6793cc8820a3240fe33bbcd2d896924d33a" offset="0x000000" /> |
| 20370 | 22173 | <rom name="shvc-s3-0 p1.u2" size="524288" crc="50030353" sha1="661e1bc712817f175e15d26b700897817cf44048" offset="0x100000" /> |
| r21545 | r21546 | |
| 20392 | 22195 | <feature name="battery" value="BATT CR2032" /> |
| 20393 | 22196 | <feature name="cart_model" value="SHVC-006" /> |
| 20394 | 22197 | <feature name="cart_back_label" value="920214" /> |
| 22198 | ||
| 22199 | <feature name="slot" value="hirom" /> | |
| 20395 | 22200 | <dataarea name="rom" size="3145728"> |
| 20396 | 22201 | <rom name="shvc-as4j-0 p0.u1" size="2097152" crc="1f560642" sha1="c36b299e6b29bc13d54a9263dea3904f7f0bbd52" offset="0x000000" /> |
| 20397 | 22202 | <rom name="shvc-as4j-0 p3.u2" size="1048576" crc="e0e4f9ed" sha1="c4702bb00142b82b7f32650d16527193ecdcc2ae" offset="0x200000" /> |
| r21545 | r21546 | |
| 20415 | 22220 | <feature name="lockout" value="" /> |
| 20416 | 22221 | <feature name="cart_model" value="SHVC-006" /> |
| 20417 | 22222 | <feature name="cart_back_label" value="920214" /> |
| 22223 | ||
| 22224 | <feature name="slot" value="hirom" /> | |
| 20418 | 22225 | <dataarea name="rom" size="1048576"> |
| 20419 | 22226 | <rom name="shvc-affj-0.u1" size="1048576" crc="04e9d205" sha1="d4854d3566e546d0c8d05a3b2d5c12ec9a1e5777" offset="0x000000" /> |
| 20420 | 22227 | </dataarea> |
| r21545 | r21546 | |
| 20439 | 22246 | <feature name="battery" value="BATT CR2032" /> |
| 20440 | 22247 | <feature name="cart_model" value="SHVC-006" /> |
| 20441 | 22248 | <feature name="cart_back_label" value="920214" /> |
| 22249 | ||
| 22250 | <feature name="slot" value="lorom" /> | |
| 20442 | 22251 | <dataarea name="rom" size="1310720"> |
| 20443 | 22252 | <rom name="shvc-io-0 p0.u1" size="1048576" crc="52298dee" sha1="2bb75bf9643b5826663e6c2c4ebbb0f65b342052" offset="0x000000" /> |
| 20444 | 22253 | <rom name="shvc-io-0 p1.u2" size="262144" crc="bbc1452b" sha1="8954b650c26435d3cc0182b9b1cf777df96e8de4" offset="0x100000" /> |
| r21545 | r21546 | |
| 20462 | 22271 | <feature name="lockout" value="" /> |
| 20463 | 22272 | <feature name="cart_model" value="SNSP-006" /> |
| 20464 | 22273 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 22274 | ||
| 22275 | <feature name="slot" value="hirom" /> | |
| 20465 | 22276 | <dataarea name="rom" size="3145728"> |
| 20466 | 22277 | <rom name="spal-zw-0 p0.u1" size="2097152" crc="f2c4d593" sha1="baedcb0e04e81309f755c88cb63c86c222cd79de" offset="0x000000" /> |
| 20467 | 22278 | <rom name="spal-zw-0 p3.u2" size="1048576" crc="db423a58" sha1="db7cc1bce35bfb0e14dc7c93f42468d630a458f5" offset="0x200000" /> |
| r21545 | r21546 | |
| 20484 | 22295 | <feature name="lockout" value="" /> |
| 20485 | 22296 | <feature name="cart_model" value="SNS-006" /> |
| 20486 | 22297 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 22298 | ||
| 22299 | <feature name="slot" value="hirom" /> | |
| 20487 | 22300 | <dataarea name="rom" size="3145728"> |
| 20488 | 22301 | <rom name="sns-zw-0 p0.u1" size="2097152" crc="a11f7086" sha1="73caa035e9683c79d66db27d13698ec8cf23ff66" offset="0x000000" /> |
| 20489 | 22302 | <rom name="sns-zw-0 p3.u2" size="1048576" crc="db423a58" sha1="db7cc1bce35bfb0e14dc7c93f42468d630a458f5" offset="0x200000" /> |
| r21545 | r21546 | |
| 20504 | 22317 | <feature name="lockout" value="" /> |
| 20505 | 22318 | <feature name="cart_model" value="SNS-006" /> |
| 20506 | 22319 | <feature name="cart_back_label" value="" /> |
| 22320 | ||
| 22321 | <feature name="slot" value="lorom" /> | |
| 20507 | 22322 | <dataarea name="rom" size="2097152"> |
| 20508 | 22323 | <rom name="sns-axde-0.u1" size="2097152" crc="98d7611e" sha1="59e3920bcda8a16b16decdf274456ac1c3ff613e" offset="0x000000" /> |
| 20509 | 22324 | </dataarea> |
| r21545 | r21546 | |
| 20528 | 22343 | <feature name="cart_revision" value="A" /> |
| 20529 | 22344 | <feature name="cart_model" value="SHVC-040" /> |
| 20530 | 22345 | <feature name="cart_back_label" value="G744238 BSC-JPN-1" /> |
| 22346 | ||
| 22347 | <feature name="slot" value="lorom_sa1" /> | |
| 20531 | 22348 | <dataarea name="rom" size="2097152"> |
| 20532 | 22349 | <rom name="shvc-zx3j-0.u1" size="2097152" crc="c61efffd" sha1="1016623c23e9bf123597b2c0dcc0b14a1693d408" offset="0x000000" /> |
| 20533 | 22350 | </dataarea> |
| r21545 | r21546 | |
| 20553 | 22370 | <feature name="battery" value="BATT CR2032" /> |
| 20554 | 22371 | <feature name="cart_model" value="SHVC-006" /> |
| 20555 | 22372 | <feature name="cart_back_label" value="901121" /> |
| 22373 | ||
| 22374 | <feature name="slot" value="lorom" /> | |
| 20556 | 22375 | <dataarea name="rom" size="1048576"> |
| 20557 | 22376 | <rom name="shvc-kg-0.u1" size="1048576" crc="17b698ab" sha1="cde38d9613947feea6e7a0d21363605fb9d21723" offset="0x000000" /> |
| 20558 | 22377 | </dataarea> |
| r21545 | r21546 | |
| 20581 | 22400 | <feature name="battery" value="BATT CR2032" /> |
| 20582 | 22401 | <feature name="cart_model" value="SHVC-006" /> |
| 20583 | 22402 | <feature name="cart_back_label" value="920214" /> |
| 22403 | ||
| 22404 | <feature name="slot" value="lorom_dsp" /> | |
| 20584 | 22405 | <dataarea name="rom" size="1048576"> |
| 20585 | 22406 | <rom name="shvc-x2-0.u1" size="1048576" crc="4dc3d903" sha1="a504b74d1e256f97bc05a7dd836a2457ae6f525e" offset="0x000000" /> |
| 20586 | 22407 | </dataarea> |
| 22408 | <dataarea name="addon" size="10240"> | |
| 22409 | <rom name="dsp3.u3" size="10240" crc="6b86728a" sha1="1b133741fad810eb7320c21ecfdd427d25a46da1" offset="0x000000" /> | |
| 22410 | </dataarea> | |
| 20587 | 22411 | <dataarea name="nvram" size="8192"> |
| 20588 | 22412 | </dataarea> |
| 20589 | 22413 | </part> |
| r21545 | r21546 | |
| 20603 | 22427 | <feature name="lockout" value="" /> |
| 20604 | 22428 | <feature name="cart_model" value="SHVC-006" /> |
| 20605 | 22429 | <feature name="cart_back_label" value="920214" /> |
| 22430 | ||
| 22431 | <feature name="slot" value="lorom" /> | |
| 20606 | 22432 | <dataarea name="rom" size="2097152"> |
| 20607 | 22433 | <rom name="shvc-hl-0.u1" size="2097152" crc="323438eb" sha1="164aeaabc62910736f58449b58fe1ba231b63ccf" offset="0x000000" /> |
| 20608 | 22434 | </dataarea> |
| r21545 | r21546 | |
| 20623 | 22449 | <feature name="lockout" value="" /> |
| 20624 | 22450 | <feature name="cart_model" value="SHVC-006" /> |
| 20625 | 22451 | <feature name="cart_back_label" value="920214" /> |
| 22452 | ||
| 22453 | <feature name="slot" value="lorom" /> | |
| 20626 | 22454 | <dataarea name="rom" size="524288"> |
| 20627 | 22455 | <rom name="shvc-gm-0.u1" size="524288" crc="7e1dc952" sha1="efbf8ddfc2b403a51f480c9b5038427968936e6f" offset="0x000000" /> |
| 20628 | 22456 | </dataarea> |
| r21545 | r21546 | |
| 20643 | 22471 | <feature name="lockout" value="" /> |
| 20644 | 22472 | <feature name="cart_model" value="SHVC-006" /> |
| 20645 | 22473 | <feature name="cart_back_label" value="901121" /> |
| 22474 | ||
| 22475 | <feature name="slot" value="lorom" /> | |
| 20646 | 22476 | <dataarea name="rom" size="1048576"> |
| 20647 | 22477 | <rom name="shvc-bs-0.u1" size="1048576" crc="aae842d2" sha1="50902e52bdc65c6da11c582acd42d5a231c54486" offset="0x000000" /> |
| 20648 | 22478 | </dataarea> |
| r21545 | r21546 | |
| 20662 | 22492 | <feature name="lockout" value="D411A 9447 CB" /> |
| 20663 | 22493 | <feature name="cart_model" value="SNS-006" /> |
| 20664 | 22494 | <feature name="cart_back_label" value="" /> |
| 22495 | ||
| 22496 | <feature name="slot" value="lorom" /> | |
| 20665 | 22497 | <dataarea name="rom" size="2097152"> |
| 20666 | 22498 | <rom name="sns-asqe-0.u1" size="2097152" crc="a6579e03" sha1="a6c4e9fbd6b8a18e5219d958292f3c33b552511e" offset="0x000000" /> |
| 20667 | 22499 | </dataarea> |
| r21545 | r21546 | |
| 20683 | 22515 | <feature name="battery" value="BATT CR2032" /> |
| 20684 | 22516 | <feature name="cart_model" value="SNSP-006" /> |
| 20685 | 22517 | <feature name="cart_back_label" value="" /> |
| 22518 | ||
| 22519 | <feature name="slot" value="hirom" /> | |
| 20686 | 22520 | <dataarea name="rom" size="3145728"> |
| 20687 | 22521 | <rom name="spal-aeof-0.u1" size="3145728" crc="7425bb91" sha1="8a430c9d6a3dcef974252fe8d946a0d619bb1a61" offset="0x000000" /> |
| 20688 | 22522 | </dataarea> |
| r21545 | r21546 | |
| 20706 | 22540 | <feature name="battery" value="BATT CR2032" /> |
| 20707 | 22541 | <feature name="cart_model" value="SNSP-006" /> |
| 20708 | 22542 | <feature name="cart_back_label" value="" /> |
| 22543 | ||
| 22544 | <feature name="slot" value="hirom" /> | |
| 20709 | 22545 | <dataarea name="rom" size="3145728"> |
| 20710 | 22546 | <rom name="spal-aeod-0.u1" size="3145728" crc="27f60e77" sha1="5e5c2082526690d05f962c3ffbd7e080c681bfa4" offset="0x000000" /> |
| 20711 | 22547 | </dataarea> |
| r21545 | r21546 | |
| 20730 | 22566 | <feature name="battery" value="BATT CR2032" /> |
| 20731 | 22567 | <feature name="cart_model" value="SNS-006" /> |
| 20732 | 22568 | <feature name="cart_back_label" value="" /> |
| 22569 | ||
| 22570 | <feature name="slot" value="hirom" /> | |
| 20733 | 22571 | <dataarea name="rom" size="3145728"> |
| 20734 | 22572 | <rom name="sns-aeoe-0.u1" size="3145728" crc="a5c0045e" sha1="79e7738630fff5699217ef58ecc421bc8fcbcd89" offset="0x000000" /> |
| 20735 | 22573 | </dataarea> |
| r21545 | r21546 | |
| 20754 | 22592 | <feature name="battery" value="BATT CR2032" /> |
| 20755 | 22593 | <feature name="cart_model" value="SNSP-006" /> |
| 20756 | 22594 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 22595 | ||
| 22596 | <feature name="slot" value="hirom" /> | |
| 20757 | 22597 | <dataarea name="rom" size="2097152"> |
| 20758 | 22598 | <rom name="sfrg-k2-0.u1" size="2097152" crc="b069bb3a" sha1="ab8a31bfb4cf0ce19b96893a31442ffbfd8d0beb" offset="0x000000" /> |
| 20759 | 22599 | </dataarea> |
| r21545 | r21546 | |
| 20779 | 22619 | <feature name="battery" value="BATT CR2032" /> |
| 20780 | 22620 | <feature name="cart_model" value="SNS-006" /> |
| 20781 | 22621 | <feature name="cart_back_label" value="" /> |
| 22622 | ||
| 22623 | <feature name="slot" value="hirom" /> | |
| 20782 | 22624 | <dataarea name="rom" size="2097152"> |
| 20783 | 22625 | <rom name="sns-k2-0.u1" size="2097152" crc="d0176b24" sha1="8133041a363e3cc68cedef40b49b6d20d03c505d" offset="0x000000" /> |
| 20784 | 22626 | </dataarea> |
| r21545 | r21546 | |
| 20805 | 22647 | <feature name="battery" value="BATT CR2032" /> |
| 20806 | 22648 | <feature name="cart_model" value="SNS-006" /> |
| 20807 | 22649 | <feature name="cart_back_label" value="" /> |
| 22650 | ||
| 22651 | <feature name="slot" value="hirom" /> | |
| 20808 | 22652 | <dataarea name="rom" size="2097152"> |
| 20809 | 22653 | <rom name="sns-k2-0 p0.u1" size="1048576" crc="2be27b19" sha1="afa19294c070d9a542a7ebab48c6fcc3610040bc" offset="0x000000" /> |
| 20810 | 22654 | <rom name="sns-k2-0 p1.u2" size="1048576" crc="16ab5918" sha1="c00b95337595517eb514f468be272f8c964c8a17" offset="0x100000" /> |
| r21545 | r21546 | |
| 20832 | 22676 | <feature name="battery" value="BATT CR2032" /> |
| 20833 | 22677 | <feature name="cart_model" value="SHVC-006" /> |
| 20834 | 22678 | <feature name="cart_back_label" value="920214" /> |
| 22679 | ||
| 22680 | <feature name="slot" value="hirom" /> | |
| 20835 | 22681 | <dataarea name="rom" size="2097152"> |
| 20836 | 22682 | <rom name="shvc-k2-0.u1" size="2097152" crc="b8049e3c" sha1="b78a9a844d165345631cea1b5246c8fcbcdbc162" offset="0x000000" /> |
| 20837 | 22683 | </dataarea> |
| r21545 | r21546 | |
| 20859 | 22705 | <feature name="battery" value="BATT CR2032" /> |
| 20860 | 22706 | <feature name="cart_model" value="SHVC-006" /> |
| 20861 | 22707 | <feature name="cart_back_label" value="920214" /> |
| 22708 | ||
| 22709 | <feature name="slot" value="hirom" /> | |
| 20862 | 22710 | <dataarea name="rom" size="2097152"> |
| 20863 | 22711 | <rom name="shvc-k2-0 p0.u1" size="1048576" crc="259cfd2a" sha1="5bee3bf7159aca59fd4d2b77e97b096fe72f8044" offset="0x000000" /> |
| 20864 | 22712 | <rom name="shvc-k2-0 p1.u2" size="1048576" crc="4e99646e" sha1="5861118bc3d4041313f94dfc6d1aaaae900dd796" offset="0x100000" /> |
| r21545 | r21546 | |
| 20886 | 22734 | <feature name="battery" value="BATT CR2032" /> |
| 20887 | 22735 | <feature name="cart_model" value="SHVC-006" /> |
| 20888 | 22736 | <feature name="cart_back_label" value="920214" /> |
| 22737 | ||
| 22738 | <feature name="slot" value="hirom" /> | |
| 20889 | 22739 | <dataarea name="rom" size="4194304"> |
| 20890 | 22740 | <rom name="shvc-a3dj-0.u1" size="4194304" crc="863ed0b8" sha1="209c55fd2a8d7963905e3048b7d40094d6bea965" offset="0x000000" /> |
| 20891 | 22741 | </dataarea> |
| r21545 | r21546 | |
| 20913 | 22763 | <feature name="battery" value="BATT CR2032" /> |
| 20914 | 22764 | <feature name="cart_model" value="SHVC-006" /> |
| 20915 | 22765 | <feature name="cart_back_label" value="920214" /> |
| 22766 | ||
| 22767 | <feature name="slot" value="hirom" /> | |
| 20916 | 22768 | <dataarea name="rom" size="4194304"> |
| 20917 | 22769 | <rom name="shvc-a3dj-0 p0.u1" size="2097152" crc="58216f82" sha1="6c379dc16246122ee48ce7acb90bc5a313abaa80" offset="0x000000" /> |
| 20918 | 22770 | <rom name="shvc-a3dj-0 p3.u2" size="2097152" crc="77da06fa" sha1="daf71888ec9181632bff7f7ea575dc26a3daf957" offset="0x200000" /> |
| r21545 | r21546 | |
| 20937 | 22789 | <feature name="battery" value="BATT CR2032" /> |
| 20938 | 22790 | <feature name="cart_model" value="SNSP-006" /> |
| 20939 | 22791 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 22792 | ||
| 22793 | <feature name="slot" value="lorom" /> | |
| 20940 | 22794 | <dataarea name="rom" size="524288"> |
| 20941 | 22795 | <rom name="spal-8s-0.u1" size="524288" crc="dcc702d4" sha1="99d9c978cc54817bb57bfb60d9b5493f6af01750" offset="0x000000" /> |
| 20942 | 22796 | </dataarea> |
| r21545 | r21546 | |
| 20959 | 22813 | <feature name="lockout" value="" /> |
| 20960 | 22814 | <feature name="cart_model" value="SHVC-006" /> |
| 20961 | 22815 | <feature name="cart_back_label" value="920214" /> |
| 22816 | ||
| 22817 | <feature name="slot" value="lorom" /> | |
| 20962 | 22818 | <dataarea name="rom" size="1048576"> |
| 20963 | 22819 | <rom name="shvc-as3j-0.u1" size="1048576" crc="dee271af" sha1="b12acf4078e2ade9769b8fead71c17a313565d1f" offset="0x000000" /> |
| 20964 | 22820 | </dataarea> |
| r21545 | r21546 | |
| 20977 | 22833 | <feature name="lockout" value="" /> |
| 20978 | 22834 | <feature name="cart_model" value="SNSP-006" /> |
| 20979 | 22835 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 22836 | ||
| 22837 | <feature name="slot" value="hirom" /> | |
| 20980 | 22838 | <dataarea name="rom" size="2097152"> |
| 20981 | 22839 | <rom name="spal-aqfp-0.u1" size="2097152" crc="ddd55e27" sha1="b612314468f18009b98c165ca90a49332a532e93" offset="0x000000" /> |
| 20982 | 22840 | </dataarea> |
| r21545 | r21546 | |
| 20996 | 22854 | <feature name="lockout" value="" /> |
| 20997 | 22855 | <feature name="cart_model" value="SNS-006" /> |
| 20998 | 22856 | <feature name="cart_back_label" value="" /> |
| 22857 | ||
| 22858 | <feature name="slot" value="hirom" /> | |
| 20999 | 22859 | <dataarea name="rom" size="2097152"> |
| 21000 | 22860 | <rom name="sns-aqfe-0.u1" size="2097152" crc="52916c9d" sha1="f7afc24ba47086e29e54b6d819542dc058b534f8" offset="0x000000" /> |
| 21001 | 22861 | </dataarea> |
| r21545 | r21546 | |
| 21020 | 22880 | <feature name="battery" value="BATT CR2032" /> |
| 21021 | 22881 | <feature name="cart_model" value="SHVC-006" /> |
| 21022 | 22882 | <feature name="cart_back_label" value="920214" /> |
| 22883 | ||
| 22884 | <feature name="slot" value="lorom" /> | |
| 21023 | 22885 | <dataarea name="rom" size="524288"> |
| 21024 | 22886 | <rom name="shvc-kz-0.u1" size="524288" crc="efa078f5" sha1="3a28d30464beb1f9cd03d6300a8924405fa46740" offset="0x000000" /> |
| 21025 | 22887 | </dataarea> |
| r21545 | r21546 | |
| 21047 | 22909 | <feature name="battery" value="BATT CR2032" /> |
| 21048 | 22910 | <feature name="cart_model" value="SHVC-006" /> |
| 21049 | 22911 | <feature name="cart_back_label" value="920214" /> |
| 22912 | ||
| 22913 | <feature name="slot" value="lorom" /> | |
| 21050 | 22914 | <dataarea name="rom" size="1572864"> |
| 21051 | 22915 | <rom name="shvc-me-0 p0.u1" size="1048576" crc="e2cda0cd" sha1="8b762cde91600450f85eeee50b6cdefd8de64493" offset="0x000000" /> |
| 21052 | 22916 | <rom name="shvc-me-0 p1.u2" size="524288" crc="dbf2f4f7" sha1="a91b5252a5aceedb03182c2ba004c01bd52b4e67" offset="0x100000" /> |
| r21545 | r21546 | |
| 21072 | 22936 | <feature name="lockout" value="" /> |
| 21073 | 22937 | <feature name="battery" value="BATT CR2032" /> |
| 21074 | 22938 | <feature name="cart_model" value="SHVC-006" /> |
| 22939 | ||
| 22940 | <feature name="slot" value="lorom" /> | |
| 21075 | 22941 | <dataarea name="rom" size="2097152"> |
| 21076 | 22942 | <rom name="shvc-amxj-0.u1" size="2097152" crc="4dd73cba" sha1="fb8a7005b62549a09de00ca83a795ca1a1560a7d" offset="0x000000" /> |
| 21077 | 22943 | </dataarea> |
| r21545 | r21546 | |
| 21098 | 22964 | <feature name="cart_revision" value="A" /> |
| 21099 | 22965 | <feature name="cart_model" value="SHVC-006" /> |
| 21100 | 22966 | <feature name="cart_back_label" value="920214" /> |
| 22967 | ||
| 22968 | <feature name="slot" value="lorom" /> | |
| 21101 | 22969 | <dataarea name="rom" size="2097152"> |
| 21102 | 22970 | <rom name="shvc-amxj-1.u1" size="2097152" crc="77d02030" sha1="1c03587a05b24555d9dc3f6d3afd1bb4bd104090" offset="0x000000" /> |
| 21103 | 22971 | </dataarea> |
| r21545 | r21546 | |
| 21124 | 22992 | <feature name="battery" value="BATT CR2032" /> |
| 21125 | 22993 | <feature name="cart_model" value="SHVC-006" /> |
| 21126 | 22994 | <feature name="cart_back_label" value="920214" /> |
| 22995 | ||
| 22996 | <feature name="slot" value="lorom" /> | |
| 21127 | 22997 | <dataarea name="rom" size="2097152"> |
| 21128 | 22998 | <rom name="shvc-ze-0 p0.u1" size="1048576" crc="bbc320c7" sha1="42ec461da6243b78135c361fdd3d7182fc9b8414" offset="0x000000" /> |
| 21129 | 22999 | <rom name="shvc-ze-0 p1.u2" size="1048576" crc="8395d452" sha1="a0ef34e2d89a24b05b7c1b8e38fcfbb4757d96c4" offset="0x100000" /> |
| r21545 | r21546 | |
| 21151 | 23021 | <feature name="cart_revision" value="B" /> |
| 21152 | 23022 | <feature name="cart_model" value="SHVC-006" /> |
| 21153 | 23023 | <feature name="cart_back_label" value="920214" /> |
| 23024 | ||
| 23025 | <feature name="slot" value="lorom" /> | |
| 21154 | 23026 | <dataarea name="rom" size="2097152"> |
| 21155 | 23027 | <rom name="shvc-ze-2.u1" size="2097152" crc="e38228a7" sha1="84bb8a37b2575762d825d820d76175071bee1ca2" offset="0x000000" /> |
| 21156 | 23028 | </dataarea> |
| r21545 | r21546 | |
| 21177 | 23049 | <feature name="battery" value="BATT CR2032" /> |
| 21178 | 23050 | <feature name="cart_model" value="SHVC-006" /> |
| 21179 | 23051 | <feature name="cart_back_label" value="920214" /> |
| 23052 | ||
| 23053 | <feature name="slot" value="hirom" /> | |
| 21180 | 23054 | <dataarea name="rom" size="2097152"> |
| 21181 | 23055 | <rom name="shvc-m5-0.u1" size="2097152" crc="68aea5b8" sha1="6d28a77ead1eef3139b0d89eb0ab0599ed3cb70b" offset="0x000000" /> |
| 21182 | 23056 | </dataarea> |
| r21545 | r21546 | |
| 21204 | 23078 | <feature name="battery" value="BATT CR2032" /> |
| 21205 | 23079 | <feature name="cart_model" value="SHVC-006" /> |
| 21206 | 23080 | <feature name="cart_back_label" value="920214" /> |
| 23081 | ||
| 23082 | <feature name="slot" value="hirom" /> | |
| 21207 | 23083 | <dataarea name="rom" size="2097152"> |
| 21208 | 23084 | <rom name="shvc-m5-0 p0.u1" size="1048576" crc="dbbfbf70" sha1="ea3bb459df0dfe41879b4d3bb231ce1debc232ce" offset="0x000000" /> |
| 21209 | 23085 | <rom name="shvc-m5-0 p1.u2" size="1048576" crc="d06f4694" sha1="d6ca6160620ac45ab121a302ac6d94d30266dc9d" offset="0x100000" /> |
| r21545 | r21546 | |
| 21230 | 23106 | <feature name="battery" value="BATT CR2032" /> |
| 21231 | 23107 | <feature name="cart_model" value="SHVC-006" /> |
| 21232 | 23108 | <feature name="cart_back_label" value="901121" /> |
| 23109 | ||
| 23110 | <feature name="slot" value="lorom" /> | |
| 21233 | 23111 | <dataarea name="rom" size="524288"> |
| 21234 | 23112 | <rom name="shvc-ms-0.u1" size="524288" crc="899841e5" sha1="9a7aa70ded2103dde2923a486ead4dedf028c6c3" offset="0x000000" /> |
| 21235 | 23113 | </dataarea> |
| r21545 | r21546 | |
| 21252 | 23130 | <feature name="lockout" value="" /> |
| 21253 | 23131 | <feature name="cart_model" value="SHVC-006" /> |
| 21254 | 23132 | <feature name="cart_back_label" value="920214" /> |
| 23133 | ||
| 23134 | <feature name="slot" value="lorom" /> | |
| 21255 | 23135 | <dataarea name="rom" size="524288"> |
| 21256 | 23136 | <rom name="shvc-as-0.u1" size="524288" crc="d01ab6a8" sha1="078c359681a39c0e2b8261f053ea9e85f68d5202" offset="0x000000" /> |
| 21257 | 23137 | </dataarea> |
| r21545 | r21546 | |
| 21276 | 23156 | <feature name="battery" value="BATT CR2032" /> |
| 21277 | 23157 | <feature name="cart_model" value="SHVC-006" /> |
| 21278 | 23158 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 23159 | ||
| 23160 | <feature name="slot" value="hirom" /> | |
| 21279 | 23161 | <dataarea name="rom" size="1572864"> |
| 21280 | 23162 | <rom name="shvc-ayqj-0 p0.u1" size="1048576" crc="0e5020da" sha1="1b3fcdafde3eefde011fd02568de4cdf33338731" offset="0x000000" /> |
| 21281 | 23163 | <rom name="shvc-ayqj-0 p1.u2" size="524288" crc="5143b2de" sha1="a3a8c4a45080fbd98488a3139580c65a36cd5175" offset="0x100000" /> |
| r21545 | r21546 | |
| 21298 | 23180 | <feature name="lockout" value="" /> |
| 21299 | 23181 | <feature name="cart_model" value="SNS-006" /> |
| 21300 | 23182 | <feature name="cart_back_label" value="" /> |
| 23183 | ||
| 23184 | <feature name="slot" value="lorom" /> | |
| 21301 | 23185 | <dataarea name="rom" size="1048576"> |
| 21302 | 23186 | <rom name="sns-4p-0.u1" size="1048576" crc="597c2bfe" sha1="ef7df519280dbb3e7eec4e922ec5d79e80f1dfbb" offset="0x000000" /> |
| 21303 | 23187 | </dataarea> |
| r21545 | r21546 | |
| 21321 | 23205 | <feature name="battery" value="BATT CR2032" /> |
| 21322 | 23206 | <feature name="cart_model" value="SHVC-006" /> |
| 21323 | 23207 | <feature name="cart_back_label" value="920214" /> |
| 23208 | ||
| 23209 | <feature name="slot" value="lorom" /> | |
| 21324 | 23210 | <dataarea name="rom" size="2097152"> |
| 21325 | 23211 | <rom name="shvc-s8-0.u1" size="2097152" crc="67e1756b" sha1="e2f0994691744d52174d7ea368fb21f9acf95a86" offset="0x000000" /> |
| 21326 | 23212 | </dataarea> |
| r21545 | r21546 | |
| 21345 | 23231 | <feature name="battery" value="BATT CR2032" /> |
| 21346 | 23232 | <feature name="cart_model" value="SNS-006" /> |
| 21347 | 23233 | <feature name="cart_back_label" value="" /> |
| 23234 | ||
| 23235 | <feature name="slot" value="lorom" /> | |
| 21348 | 23236 | <dataarea name="rom" size="1048576"> |
| 21349 | 23237 | <rom name="sns-an-0.u1" size="1048576" crc="d08c05df" sha1="b0f4468c99a010aff44ae165893cca5e4c242771" offset="0x000000" /> |
| 21350 | 23238 | </dataarea> |
| r21545 | r21546 | |
| 21368 | 23256 | <feature name="battery" value="BATT CR2032" /> |
| 21369 | 23257 | <feature name="cart_model" value="SNSP-006" /> |
| 21370 | 23258 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 23259 | ||
| 23260 | <feature name="slot" value="lorom" /> | |
| 21371 | 23261 | <dataarea name="rom" size="524288"> |
| 21372 | 23262 | <rom name="sfra-sc-0.u1" size="524288" crc="5d026339" sha1="af13de6ddf7d33a2d29e9d1b40cec58823edcf42" offset="0x000000" /> |
| 21373 | 23263 | </dataarea> |
| r21545 | r21546 | |
| 21405 | 23295 | <feature name="cart_model" value="SNSP-006" /> |
| 21406 | 23296 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 21407 | 23297 | --> |
| 23298 | ||
| 23299 | <feature name="slot" value="lorom" /> | |
| 21408 | 23300 | <dataarea name="rom" size="524288"> |
| 21409 | 23301 | <rom name="sfrg-sc-0.u1" size="524288" crc="451e4708" sha1="eb55aaabb8ecab6c750b5a14d8a9a67a03968d6f" offset="0x000000" /> |
| 21410 | 23302 | </dataarea> |
| r21545 | r21546 | |
| 21430 | 23322 | <feature name="battery" value="BATT CR2032" /> |
| 21431 | 23323 | <feature name="cart_model" value="SHVC-006" /> |
| 21432 | 23324 | <feature name="cart_back_label" value="901121" /> |
| 23325 | ||
| 23326 | <feature name="slot" value="lorom" /> | |
| 21433 | 23327 | <dataarea name="rom" size="524288"> |
| 21434 | 23328 | <rom name="shvc-sc-0.u1" size="524288" crc="a39fd8d8" sha1="de4592a75dd58e2e9116bcc4669507d00bcbfe00" offset="0x000000" /> |
| 21435 | 23329 | </dataarea> |
| r21545 | r21546 | |
| 21453 | 23347 | <feature name="battery" value="BATT CR2032" /> |
| 21454 | 23348 | <feature name="cart_model" value="SNSP-006" /> |
| 21455 | 23349 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 23350 | ||
| 23351 | <feature name="slot" value="hirom" /> | |
| 21456 | 23352 | <dataarea name="rom" size="2097152"> |
| 21457 | 23353 | <rom name="spal-awwp-0.u1" size="2097152" crc="a1c28940" sha1="56ebb8c7e7ee6aad62b9e8a4bdc5c6d89dae40c2" offset="0x000000" /> |
| 21458 | 23354 | </dataarea> |
| r21545 | r21546 | |
| 21478 | 23374 | <feature name="battery" value="BATT CR2032" /> |
| 21479 | 23375 | <feature name="cart_model" value="SHVC-006" /> |
| 21480 | 23376 | <feature name="cart_back_label" value="920214" /> |
| 23377 | ||
| 23378 | <feature name="slot" value="hirom" /> | |
| 21481 | 23379 | <dataarea name="rom" size="2097152"> |
| 21482 | 23380 | <rom name="shvc-awwj-0.u1" size="2097152" crc="b0e89cc6" sha1="5cd2b71045f12e9955546b8f06136619b2e1eb0e" offset="0x000000" /> |
| 21483 | 23381 | </dataarea> |
| r21545 | r21546 | |
| 21503 | 23401 | <feature name="battery" value="BATT CR2032" /> |
| 21504 | 23402 | <feature name="cart_model" value="SHVC-006" /> |
| 21505 | 23403 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 23404 | ||
| 23405 | <feature name="slot" value="hirom" /> | |
| 21506 | 23406 | <dataarea name="rom" size="2097152"> |
| 21507 | 23407 | <rom name="shvc-alij-0.u1" size="2097152" crc="03503a0b" sha1="46ff3f8a9b2e85ee786d16ee7211b34967ef4567" offset="0x000000" /> |
| 21508 | 23408 | </dataarea> |
| r21545 | r21546 | |
| 21528 | 23428 | <feature name="battery" value="BATT CR2032" /> |
| 21529 | 23429 | <feature name="cart_model" value="SHVC-006" /> |
| 21530 | 23430 | <feature name="cart_back_label" value="901121" /> |
| 23431 | ||
| 23432 | <feature name="slot" value="lorom" /> | |
| 21531 | 23433 | <dataarea name="rom" size="1048576"> |
| 21532 | 23434 | <rom name="shvc-se-0.u1" size="1048576" crc="b3e856a5" sha1="9200bcbff8c576e7b058c304764f820974331d94" offset="0x000000" /> |
| 21533 | 23435 | </dataarea> |
| r21545 | r21546 | |
| 21553 | 23455 | <feature name="battery" value="BATT CR2032" /> |
| 21554 | 23456 | <feature name="cart_model" value="SHVC-006" /> |
| 21555 | 23457 | <feature name="cart_back_label" value="920214" /> |
| 23458 | ||
| 23459 | <feature name="slot" value="lorom" /> | |
| 21556 | 23460 | <dataarea name="rom" size="1048576"> |
| 21557 | 23461 | <rom name="shvc-se-1.u1" size="1048576" crc="214ebb97" sha1="bac6bd1f523d923fbd983f23c8752ad4ec8c536c" offset="0x000000" /> |
| 21558 | 23462 | </dataarea> |
| r21545 | r21546 | |
| 21574 | 23478 | <feature name="lockout" value="" /> |
| 21575 | 23479 | <feature name="cart_model" value="SNS-006" /> |
| 21576 | 23480 | <feature name="cart_back_label" value="" /> |
| 23481 | ||
| 23482 | <feature name="slot" value="lorom" /> | |
| 21577 | 23483 | <dataarea name="rom" size="1048576"> |
| 21578 | 23484 | <rom name="sns-bn-0.u1" size="1048576" crc="ed1c03c2" sha1="60021b603f6e778171a2dfae2a0fcbc3ea723c38" offset="0x000000" /> |
| 21579 | 23485 | </dataarea> |
| r21545 | r21546 | |
| 21594 | 23500 | <feature name="lockout" value="" /> |
| 21595 | 23501 | <feature name="cart_model" value="SHVC-006" /> |
| 21596 | 23502 | <feature name="cart_back_label" value="920214" /> |
| 23503 | ||
| 23504 | <feature name="slot" value="lorom" /> | |
| 21597 | 23505 | <dataarea name="rom" size="524288"> |
| 21598 | 23506 | <rom name="shvc-si-0.u1" size="524288" crc="0866a769" sha1="aaa8ee733cd5e60ffab85ce0948c561b11d24173" offset="0x000000" /> |
| 21599 | 23507 | </dataarea> |
| r21545 | r21546 | |
| 21613 | 23521 | <feature name="lockout" value="" /> |
| 21614 | 23522 | <feature name="cart_model" value="SNSP-006" /> |
| 21615 | 23523 | <feature name="cart_back_label" value="" /> |
| 23524 | ||
| 23525 | <feature name="slot" value="lorom" /> | |
| 21616 | 23526 | <dataarea name="rom" size="1048576"> |
| 21617 | 23527 | <rom name="spal-lz-0.u1" size="1048576" crc="4a25d0c8" sha1="967875d587b02533018f3d29f0715c107d31f19b" offset="0x000000" /> |
| 21618 | 23528 | </dataarea> |
| r21545 | r21546 | |
| 21632 | 23542 | <feature name="lockout" value="" /> |
| 21633 | 23543 | <feature name="cart_model" value="SNS-006" /> |
| 21634 | 23544 | <feature name="cart_back_label" value="" /> |
| 23545 | ||
| 23546 | <feature name="slot" value="lorom" /> | |
| 21635 | 23547 | <dataarea name="rom" size="1048576"> |
| 21636 | 23548 | <rom name="sns-lz-0.u1" size="1048576" crc="f13b00b0" sha1="8426a16f7d8656c8d2ce4ac3151ec96b433f938d" offset="0x000000" /> |
| 21637 | 23549 | </dataarea> |
| r21545 | r21546 | |
| 21656 | 23568 | <feature name="battery" value="BATT CR2032" /> |
| 21657 | 23569 | <feature name="cart_model" value="SHVC-006" /> |
| 21658 | 23570 | <feature name="cart_back_label" value="920214" /> |
| 23571 | ||
| 23572 | <feature name="slot" value="lorom" /> | |
| 21659 | 23573 | <dataarea name="rom" size="1572864"> |
| 21660 | 23574 | <rom name="shvc-uz-0 p0.u1" size="1048576" crc="1d1ea0c1" sha1="c39af96b55bf8ef2b51dade0459b5e66784568c3" offset="0x000000" /> |
| 21661 | 23575 | <rom name="shvc-uz-0 p1.u2" size="524288" crc="84001790" sha1="28e8a23aaf7cfb0968af4467b13b68f3ba48f853" offset="0x100000" /> |
| r21545 | r21546 | |
| 21678 | 23592 | <feature name="lockout" value="D411 C151 08 BA" /> |
| 21679 | 23593 | <feature name="cart_model" value="SNS-006" /> |
| 21680 | 23594 | <feature name="cart_back_label" value="" /> |
| 23595 | ||
| 23596 | <feature name="slot" value="lorom" /> | |
| 21681 | 23597 | <dataarea name="rom" size="1048576"> |
| 21682 | 23598 | <rom name="sns-jb-0.u1" size="1048576" crc="3cfe77ab" sha1="14fc687b5a8437ec0b3515c4d46aed579a8ef58b" offset="0x000000" /> |
| 21683 | 23599 | </dataarea> |
| r21545 | r21546 | |
| 21698 | 23614 | <feature name="lockout" value="" /> |
| 21699 | 23615 | <feature name="cart_model" value="SHVC-006" /> |
| 21700 | 23616 | <feature name="cart_back_label" value="901121" /> |
| 23617 | ||
| 23618 | <feature name="slot" value="lorom" /> | |
| 21701 | 23619 | <dataarea name="rom" size="524288"> |
| 21702 | 23620 | <rom name="shvc-tv-0.u1" size="524288" crc="3147ad34" sha1="cc88454c2bff47862f1764eb50d3a386a1236652" offset="0x000000" /> |
| 21703 | 23621 | </dataarea> |
| r21545 | r21546 | |
| 21716 | 23634 | <feature name="lockout" value="" /> |
| 21717 | 23635 | <feature name="cart_model" value="SNSP-006" /> |
| 21718 | 23636 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 23637 | ||
| 23638 | <feature name="slot" value="lorom" /> | |
| 21719 | 23639 | <dataarea name="rom" size="2097152"> |
| 21720 | 23640 | <rom name="spal-a8rp-0.u1" size="2097152" crc="3a7462bb" sha1="fb40c59d48d7cf292ff87b363238b6aa1eb75dc9" offset="0x000000" /> |
| 21721 | 23641 | </dataarea> |
| r21545 | r21546 | |
| 21737 | 23657 | <feature name="lockout" value="D411A 9444 AA" /> |
| 21738 | 23658 | <feature name="cart_model" value="SNS-006" /> |
| 21739 | 23659 | <feature name="cart_back_label" value="" /> |
| 23660 | ||
| 23661 | <feature name="slot" value="hirom" /> | |
| 21740 | 23662 | <dataarea name="rom" size="1572864"> |
| 21741 | 23663 | <rom name="sns-2c-0 p0.u1" size="1048576" crc="f1d37284" sha1="794818c250a19aa90ffa95ebd092a1ce3c6cc8b9" offset="0x000000" /> |
| 21742 | 23664 | <rom name="sns-2c-0 p1.u2" size="524288" crc="a1e30150" sha1="695bda6a22714bc4a043a6030db8a28a8ddd9dff" offset="0x100000" /> |
| r21545 | r21546 | |
| 21761 | 23683 | <feature name="battery" value="BATT CR2032" /> |
| 21762 | 23684 | <feature name="cart_model" value="SHVC-006" /> |
| 21763 | 23685 | <feature name="cart_back_label" value="901121" /> |
| 23686 | ||
| 23687 | <feature name="slot" value="lorom" /> | |
| 21764 | 23688 | <dataarea name="rom" size="1048576"> |
| 21765 | 23689 | <rom name="shvc-so-0.u1" size="1048576" crc="cd6dbc1c" sha1="9a6f58044b267e659df5ca51d1dea8f7ab8b4f5e" offset="0x000000" /> |
| 21766 | 23690 | </dataarea> |
| r21545 | r21546 | |
| 21786 | 23710 | <feature name="battery" value="BATT CR2032" /> |
| 21787 | 23711 | <feature name="cart_model" value="SNSP-006" /> |
| 21788 | 23712 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 23713 | ||
| 23714 | <feature name="slot" value="hirom" /> | |
| 21789 | 23715 | <dataarea name="rom" size="1048576"> |
| 21790 | 23716 | <rom name="sfrg-so-0.u1" size="1048576" crc="fe28d2c1" sha1="3278e5d375a0e206f711c89cd92a9b80dfbbd95e" offset="0x000000" /> |
| 21791 | 23717 | </dataarea> |
| r21545 | r21546 | |
| 21810 | 23736 | <feature name="battery" value="BATT CR2032" /> |
| 21811 | 23737 | <feature name="cart_model" value="SNS-006" /> |
| 21812 | 23738 | <feature name="cart_back_label" value="" /> |
| 23739 | ||
| 23740 | <feature name="slot" value="lorom" /> | |
| 21813 | 23741 | <dataarea name="rom" size="1048576"> |
| 21814 | 23742 | <rom name="sns-so-0.u1" size="1048576" crc="31b965db" sha1="f2832eb02547c39cae3bdaab5c2a53e4f8b31810" offset="0x000000" /> |
| 21815 | 23743 | </dataarea> |
| r21545 | r21546 | |
| 21836 | 23764 | <feature name="battery" value="BATT CR2032" /> |
| 21837 | 23765 | <feature name="cart_model" value="SHVC-040" /> |
| 21838 | 23766 | <feature name="cart_back_label" value="G744238 BSC-JPN-1" /> |
| 23767 | ||
| 23768 | <feature name="slot" value="lorom_bsx" /> | |
| 21839 | 23769 | <dataarea name="rom" size="3145728"> |
| 21840 | 23770 | <rom name="shvc-zsnj-0.u1" size="3145728" crc="5ebf7246" sha1="a9b124948a19bb5a295ec208fca8180476bdfebb" offset="0x000000" /> |
| 21841 | 23771 | </dataarea> |
| r21545 | r21546 | |
| 21857 | 23787 | <feature name="lockout" value="D411A 9402 CB" /> |
| 21858 | 23788 | <feature name="cart_model" value="SNS-006" /> |
| 21859 | 23789 | <feature name="cart_back_label" value="" /> |
| 23790 | ||
| 23791 | <feature name="slot" value="lorom" /> | |
| 21860 | 23792 | <dataarea name="rom" size="1048576"> |
| 21861 | 23793 | <rom name="sns-5a-0.u1" size="1048576" crc="f4bb0888" sha1="2209e636b0ae9bba7b1a915e4a549c0a5c12e3dd" offset="0x000000" /> |
| 21862 | 23794 | </dataarea> |
| r21545 | r21546 | |
| 21878 | 23810 | <feature name="lockout" value="" /> |
| 21879 | 23811 | <feature name="cart_model" value="SHVC-006" /> |
| 21880 | 23812 | <feature name="cart_back_label" value="920214" /> |
| 23813 | ||
| 23814 | <feature name="slot" value="lorom" /> | |
| 21881 | 23815 | <dataarea name="rom" size="1048576"> |
| 21882 | 23816 | <rom name="shvc-bt-0.u1" size="1048576" crc="f2dd3be4" sha1="422df5740fed48974bca584c3cced0b65c6efffe" offset="0x000000" /> |
| 21883 | 23817 | </dataarea> |
| r21545 | r21546 | |
| 21899 | 23833 | <feature name="lockout" value="" /> |
| 21900 | 23834 | <feature name="cart_model" value="SHVC-006" /> |
| 21901 | 23835 | <feature name="cart_back_label" value="920214" /> |
| 23836 | ||
| 23837 | <feature name="slot" value="lorom" /> | |
| 21902 | 23838 | <dataarea name="rom" size="262144"> |
| 21903 | 23839 | <rom name="shvc-ic-0.u1" size="262144" crc="07fafcd0" sha1="3f6c584d818f45a5aa241cbda88b7139ef2d0462" offset="0x000000" /> |
| 21904 | 23840 | </dataarea> |
| r21545 | r21546 | |
| 21918 | 23854 | <feature name="lockout" value="" /> |
| 21919 | 23855 | <feature name="cart_model" value="SNS-006" /> |
| 21920 | 23856 | <feature name="cart_back_label" value="" /> |
| 23857 | ||
| 23858 | <feature name="slot" value="lorom" /> | |
| 21921 | 23859 | <dataarea name="rom" size="1048576"> |
| 21922 | 23860 | <rom name="sns-at-0.u1" size="1048576" crc="11202781" sha1="a5f8b381c3abe29ddb6c5513fb14a905227a6984" offset="0x000000" /> |
| 21923 | 23861 | </dataarea> |
| r21545 | r21546 | |
| 21937 | 23875 | <feature name="lockout" value="D411A 9453 AA" /> |
| 21938 | 23876 | <feature name="cart_model" value="SNS-006" /> |
| 21939 | 23877 | <feature name="cart_back_label" value="" /> |
| 23878 | ||
| 23879 | <feature name="slot" value="lorom" /> | |
| 21940 | 23880 | <dataarea name="rom" size="2097152"> |
| 21941 | 23881 | <rom name="sns-adme-0.u1" size="2097152" crc="c99e174e" sha1="cbaf541f9a1b62e7151f0407a1a4c6266a5610f5" offset="0x000000" /> |
| 21942 | 23882 | </dataarea> |
| r21545 | r21546 | |
| 21955 | 23895 | <feature name="lockout" value="" /> |
| 21956 | 23896 | <feature name="cart_model" value="SNSP-006(-01)" /> |
| 21957 | 23897 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 23898 | ||
| 23899 | <feature name="slot" value="lorom" /> | |
| 21958 | 23900 | <dataarea name="rom" size="2097152"> |
| 21959 | 23901 | <rom name="spal-amcp-0.u1" size="2097152" crc="d2b0d5fe" sha1="cc83ec37d7669834047510d6bbde1e0eee4667c9" offset="0x000000" /> |
| 21960 | 23902 | </dataarea> |
| r21545 | r21546 | |
| 21974 | 23916 | <feature name="lockout" value="" /> |
| 21975 | 23917 | <feature name="cart_model" value="SNS-006" /> |
| 21976 | 23918 | <feature name="cart_back_label" value="" /> |
| 23919 | ||
| 23920 | <feature name="slot" value="lorom" /> | |
| 21977 | 23921 | <dataarea name="rom" size="1048576"> |
| 21978 | 23922 | <rom name="sns-mn-0.u1" size="1048576" crc="ae878ccb" sha1="1365a9dc47e8150f171098691478d557be740c1a" offset="0x000000" /> |
| 21979 | 23923 | </dataarea> |
| r21545 | r21546 | |
| 21993 | 23937 | <feature name="lockout" value="D411A 9339 B" /> |
| 21994 | 23938 | <feature name="cart_model" value="SNS-006" /> |
| 21995 | 23939 | <feature name="cart_back_label" value="" /> |
| 23940 | ||
| 23941 | <feature name="slot" value="lorom" /> | |
| 21996 | 23942 | <dataarea name="rom" size="2097152"> |
| 21997 | 23943 | <rom name="sns-lu-0.u1" size="2097152" crc="d4874966" sha1="a32b98885a9502a9b4262f4221ad75b155294b20" offset="0x000000" /> |
| 21998 | 23944 | </dataarea> |
| r21545 | r21546 | |
| 22016 | 23962 | <feature name="battery" value="BATT CR2032" /> |
| 22017 | 23963 | <feature name="cart_model" value="SHVC-006" /> |
| 22018 | 23964 | <feature name="cart_back_label" value="920214" /> |
| 23965 | ||
| 23966 | <feature name="slot" value="lorom" /> | |
| 22019 | 23967 | <dataarea name="rom" size="2097152"> |
| 22020 | 23968 | <rom name="shvc-asaj-0.u1" size="2097152" crc="fefa00ea" sha1="caa18f371ae35f1c9c9a5e6c2d4dae9057cc74a9" offset="0x000000" /> |
| 22021 | 23969 | </dataarea> |
| r21545 | r21546 | |
| 22042 | 23990 | <feature name="battery" value="BATT CR2032" /> |
| 22043 | 23991 | <feature name="cart_model" value="SHVC-006" /> |
| 22044 | 23992 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 23993 | ||
| 23994 | <feature name="slot" value="lorom" /> | |
| 22045 | 23995 | <dataarea name="rom" size="4194304"> |
| 22046 | 23996 | <rom name="shvc-akqj-0.u1" size="4194304" crc="1dc14e8b" sha1="4ae544954b122deb36ace85a6f7a6b579382f408" offset="0x000000" /> |
| 22047 | 23997 | </dataarea> |
| r21545 | r21546 | |
| 22078 | 24028 | --> |
| 22079 | 24029 | <feature name="cart_model" value="SHVC-006" /> |
| 22080 | 24030 | <feature name="cart_back_label" value="920214" /> |
| 24031 | ||
| 24032 | <feature name="slot" value="lorom_sfx" /> | |
| 22081 | 24033 | <dataarea name="rom" size="1048576"> |
| 22082 | 24034 | <rom name="shvc-fo-0.u1" size="1048576" crc="41a60b3f" sha1="a2dceab341ef20c836d4d3426f37f0ec396bbdcb" offset="0x000000" /> |
| 22083 | 24035 | </dataarea> |
| r21545 | r21546 | |
| 22115 | 24067 | <!-- end of epoxy version --> |
| 22116 | 24068 | <feature name="cart_model" value="SNS-006" /> |
| 22117 | 24069 | <feature name="cart_back_label" value="" /> |
| 24070 | ||
| 24071 | <feature name="slot" value="lorom_sfx" /> | |
| 22118 | 24072 | <dataarea name="rom" size="1048576"> |
| 22119 | 24073 | <rom name="sns-fo-0.u1" size="1048576" crc="0bae0941" sha1="1f5355534ccfaf26ae6c8f055f3e4768f9d72a7e" offset="0x000000" /> |
| 22120 | 24074 | </dataarea> |
| r21545 | r21546 | |
| 22143 | 24097 | <feature name="cart_revision" value="B" /> |
| 22144 | 24098 | <feature name="cart_model" value="SNS-006" /> |
| 22145 | 24099 | <feature name="cart_back_label" value="" /> |
| 24100 | ||
| 24101 | <feature name="slot" value="lorom_sfx" /> | |
| 22146 | 24102 | <dataarea name="rom" size="1048576"> |
| 22147 | 24103 | <rom name="sns-fo-2.u1" size="1048576" crc="8fc4e6d0" sha1="cf08148cd8f26d51f8c67c956179dfc594e7a4f1" offset="0x000000" /> |
| 22148 | 24104 | </dataarea> |
| r21545 | r21546 | |
| 22170 | 24126 | <feature name="battery" value="BATT CR2032" /> |
| 22171 | 24127 | <feature name="cart_model" value="SHVC-006" /> |
| 22172 | 24128 | <feature name="cart_back_label" value="" /> |
| 24129 | ||
| 24130 | <feature name="slot" value="lorom_sdd1" /> | |
| 22173 | 24131 | <dataarea name="rom" size="6291456"> |
| 22174 | 24132 | <rom name="shvc-arfj-0 p0.u1" size="4194304" crc="143af3f1" sha1="72dbe771061fb94001b1c72ed4ccf3728244d5c2" offset="0x000000" /> |
| 22175 | 24133 | <rom name="shvc-arfj-0 p3.u2" size="2097152" crc="51877c67" sha1="86dcd84f4f45e4e5cf2da4a9f8f02e4ad3efe3a0" offset="0x400000" /> |
| r21545 | r21546 | |
| 22191 | 24149 | <feature name="lockout" value="" /> |
| 22192 | 24150 | <feature name="cart_model" value="SNSP-006" /> |
| 22193 | 24151 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 24152 | ||
| 24153 | <feature name="slot" value="lorom" /> | |
| 22194 | 24154 | <dataarea name="rom" size="2097152"> |
| 22195 | 24155 | <rom name="spal-agtp-0.u1" size="2097152" crc="af4d4439" sha1="d2a5e71e75b4d3cde71c5cca19403155d1dae4d3" offset="0x000000" /> |
| 22196 | 24156 | </dataarea> |
| r21545 | r21546 | |
| 22213 | 24173 | <feature name="battery" value="none" /> |
| 22214 | 24174 | <feature name="cart_model" value="SNSP-006(-02)" /> |
| 22215 | 24175 | <feature name="cart_back_label" value="02-SNSP-FAH" /> |
| 24176 | ||
| 24177 | <feature name="slot" value="lorom_sfx" /> | |
| 22216 | 24178 | <dataarea name="rom" size="1048576"> |
| 22217 | 24179 | <rom name="spal-fo-0.u1" size="1048576" crc="865f1a71" sha1="7ba89019f33f690715bdbd52e13d888228ee4b9c" offset="0x000000" /> |
| 22218 | 24180 | </dataarea> |
| r21545 | r21546 | |
| 22238 | 24200 | <feature name="cart_revision" value="A" /> |
| 22239 | 24201 | <feature name="cart_model" value="SNSP-006(-02)" /> |
| 22240 | 24202 | <feature name="cart_back_label" value="02-SNSP-FAH" /> |
| 24203 | ||
| 24204 | <feature name="slot" value="lorom_sfx" /> | |
| 22241 | 24205 | <dataarea name="rom" size="1048576"> |
| 22242 | 24206 | <rom name="spal-fo-1.u1" size="1048576" crc="ba64da2b" sha1="0510647f8cf9b87fac1c08a7009932ceeae1e0bd" offset="0x000000" /> |
| 22243 | 24207 | </dataarea> |
| r21545 | r21546 | |
| 22262 | 24226 | <feature name="battery" value="none" /> |
| 22263 | 24227 | <feature name="cart_model" value="SNSP-006" /> |
| 22264 | 24228 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 24229 | ||
| 24230 | <feature name="slot" value="lorom_sfx" /> | |
| 22265 | 24231 | <dataarea name="rom" size="1048576"> |
| 22266 | 24232 | <rom name="sfrg-fo-0.u1" size="1048576" crc="b48ca238" sha1="7c365c325b3ce27a17fc88744b6928741fab1996" offset="0x000000" /> |
| 22267 | 24233 | </dataarea> |
| r21545 | r21546 | |
| 22283 | 24249 | <feature name="lockout" value="D411A 9252 CA" /> |
| 22284 | 24250 | <feature name="cart_model" value="SNS-006" /> |
| 22285 | 24251 | <feature name="cart_back_label" value="" /> |
| 24252 | ||
| 24253 | <feature name="slot" value="lorom" /> | |
| 22286 | 24254 | <dataarea name="rom" size="524288"> |
| 22287 | 24255 | <rom name="sns-5s-0.u1" size="524288" crc="4ea9f93f" sha1="048e58cdb7ca20f3b346dc2432d07498ab301817" offset="0x000000" /> |
| 22288 | 24256 | </dataarea> |
| r21545 | r21546 | |
| 22303 | 24271 | <feature name="lockout" value="D411A 9441 CB" /> |
| 22304 | 24272 | <feature name="cart_model" value="SNS-006" /> |
| 22305 | 24273 | <feature name="cart_back_label" value="" /> |
| 24274 | ||
| 24275 | <feature name="slot" value="lorom" /> | |
| 22306 | 24276 | <dataarea name="rom" size="1048576"> |
| 22307 | 24277 | <rom name="sns-as2e-0.u1" size="1048576" crc="70d9c906" sha1="48e8c7fde8f4d1ebd3b348ff96af8e3a1ea003fe" offset="0x000000" /> |
| 22308 | 24278 | </dataarea> |
| r21545 | r21546 | |
| 22321 | 24291 | <feature name="u2" value="U2 S-DD1" /> |
| 22322 | 24292 | <feature name="cart_model" value="SNSP-006" /> |
| 22323 | 24293 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 24294 | ||
| 24295 | <feature name="slot" value="lorom_sdd1" /> | |
| 22324 | 24296 | <dataarea name="rom" size="4194304"> |
| 22325 | 24297 | <rom name="spal-auzp-0.u1" size="4194304" crc="2f109101" sha1="73b3c0af2f169423cbbf2a672e6414f35388e04e" offset="0x000000" /> |
| 22326 | 24298 | </dataarea> |
| r21545 | r21546 | |
| 22341 | 24313 | <feature name="u2" value="U2 S-DD1" /> |
| 22342 | 24314 | <feature name="cart_model" value="SNS-006" /> |
| 22343 | 24315 | <feature name="cart_back_label" value="" /> |
| 24316 | ||
| 24317 | <feature name="slot" value="lorom_sdd1" /> | |
| 22344 | 24318 | <dataarea name="rom" size="4194304"> |
| 22345 | 24319 | <rom name="sns-auze-0.u1" size="4194304" crc="9c59ddff" sha1="f4ede150b5281f7f5d7e3188c6d9163c2bc66475" offset="0x000000" /> |
| 22346 | 24320 | </dataarea> |
| r21545 | r21546 | |
| 22359 | 24333 | <feature name="lockout" value="" /> |
| 22360 | 24334 | <feature name="cart_model" value="SNSP-006" /> |
| 22361 | 24335 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 24336 | ||
| 24337 | <feature name="slot" value="lorom" /> | |
| 22362 | 24338 | <dataarea name="rom" size="2097152"> |
| 22363 | 24339 | <rom name="spal-s2-0.u1" size="2097152" crc="8b93f566" sha1="5fd528793373dacb085224b2e6ca3eac305d65a9" offset="0x000000" /> |
| 22364 | 24340 | </dataarea> |
| r21545 | r21546 | |
| 22379 | 24355 | <feature name="lockout" value="" /> |
| 22380 | 24356 | <feature name="cart_model" value="SNSP-006" /> |
| 22381 | 24357 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 24358 | ||
| 24359 | <feature name="slot" value="lorom" /> | |
| 22382 | 24360 | <dataarea name="rom" size="2097152"> |
| 22383 | 24361 | <rom name="spal-s2-0 p0.u1" size="1048576" crc="96a87d4c" sha1="f4a815d1d54a154c3c0b24c029c8acc35afbafb2" offset="0x000000" /> |
| 22384 | 24362 | <rom name="spal-s2-0 p1.u2" size="1048576" crc="03d700ac" sha1="993d2e9a055bf0f8d87ed52cf8f3530f551b3be5" offset="0x100000" /> |
| r21545 | r21546 | |
| 22400 | 24378 | <feature name="lockout" value="" /> |
| 22401 | 24379 | <feature name="cart_model" value="SHVC-006" /> |
| 22402 | 24380 | <feature name="cart_back_label" value="920214" /> |
| 24381 | ||
| 24382 | <feature name="slot" value="lorom" /> | |
| 22403 | 24383 | <dataarea name="rom" size="2097152"> |
| 22404 | 24384 | <rom name="shvc-s2-0.u1" size="2097152" crc="5556c5c9" sha1="b01d39475ad1cf0bc914c6b3865ef9295a9ece3d" offset="0x000000" /> |
| 22405 | 24385 | </dataarea> |
| r21545 | r21546 | |
| 22422 | 24402 | <feature name="lockout" value="" /> |
| 22423 | 24403 | <feature name="cart_model" value="SHVC-006" /> |
| 22424 | 24404 | <feature name="cart_back_label" value="920214" /> |
| 24405 | ||
| 24406 | <feature name="slot" value="lorom" /> | |
| 22425 | 24407 | <dataarea name="rom" size="2097152"> |
| 22426 | 24408 | <rom name="shvc-s2-0 p0.u1" size="1048576" crc="07f0cd71" sha1="47fa3e5897a3e336e9914bdf4b70e5d5073c00be" offset="0x000000" /> |
| 22427 | 24409 | <rom name="shvc-s2-0 p1.u2" size="1048576" crc="7138cb94" sha1="3186e66bb2e806204b36258bf52ffa8fbb2988e3" offset="0x100000" /> |
| r21545 | r21546 | |
| 22444 | 24426 | <feature name="lockout" value="" /> |
| 22445 | 24427 | <feature name="cart_model" value="SNS-006" /> |
| 22446 | 24428 | <feature name="cart_back_label" value="" /> |
| 24429 | ||
| 24430 | <feature name="slot" value="lorom" /> | |
| 22447 | 24431 | <dataarea name="rom" size="2097152"> |
| 22448 | 24432 | <rom name="sns-s2-0 p0.u1" size="1048576" crc="b42c22cb" sha1="8dfa220f0ab72cdd20fa7f468272f097a41f9a96" offset="0x000000" /> |
| 22449 | 24433 | <rom name="sns-s2-0 p1.u2" size="1048576" crc="e94aa33b" sha1="0b25656e0bd0245d7f3816409fafb0122a0d325f" offset="0x100000" /> |
| r21545 | r21546 | |
| 22467 | 24451 | <feature name="cart_revision" value="A" /> |
| 22468 | 24452 | <feature name="cart_model" value="SNSP-006" /> |
| 22469 | 24453 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 24454 | ||
| 24455 | <feature name="slot" value="hirom" /> | |
| 22470 | 24456 | <dataarea name="rom" size="2621440"> |
| 22471 | 24457 | <rom name="spal-ti-1 p1.u1" size="1048576" crc="68dc7dd6" sha1="817d8aafd434876268eed988bd977fcb6a0672e6" offset="0x000000" /> |
| 22472 | 24458 | <rom name="spal-ti-1 p2.u2" size="1048576" crc="29f0267c" sha1="57c5983467ad1a6293f6911a0d28e2bc713fd416" offset="0x100000" /> |
| r21545 | r21546 | |
| 22503 | 24489 | <feature name="cart_model" value="SHVC-006" /> |
| 22504 | 24490 | <feature name="cart_back_label" value="920214" /> |
| 22505 | 24491 | --> |
| 24492 | ||
| 24493 | <feature name="slot" value="hirom" /> | |
| 22506 | 24494 | <dataarea name="rom" size="2621440"> |
| 22507 | 24495 | <rom name="shvc-ti-0 p0.u1" size="2097152" crc="62704671" sha1="acac25bbd0cfb69b38805774566c379daf055873" offset="0x000000" /> |
| 22508 | 24496 | <rom name="shvc-ti-0 p3.u2" size="524288" crc="6056387f" sha1="31d0f2276b124bee206695ac6b2048918c25efcc" offset="0x200000" /> |
| r21545 | r21546 | |
| 22528 | 24516 | <feature name="lockout" value="" /> |
| 22529 | 24517 | <feature name="cart_model" value="SHVC-006" /> |
| 22530 | 24518 | <feature name="cart_back_label" value="920214" /> |
| 24519 | ||
| 24520 | <feature name="slot" value="hirom" /> | |
| 22531 | 24521 | <dataarea name="rom" size="2621440"> |
| 22532 | 24522 | <rom name="shvc-ti-0 p1.u1" size="1048576" crc="85e15c3f" sha1="01c00cfd47296e4fca7ca6ef631b561a444538c2" offset="0x000000" /> |
| 22533 | 24523 | <rom name="shvc-ti-0 p2.u2" size="1048576" crc="20ace25a" sha1="55757c35bb51cb5974586cea4e732e74de7988a0" offset="0x100000" /> |
| r21545 | r21546 | |
| 22551 | 24541 | <feature name="lockout" value="" /> |
| 22552 | 24542 | <feature name="cart_model" value="SNS-006" /> |
| 22553 | 24543 | <feature name="cart_back_label" value="" /> |
| 24544 | ||
| 24545 | <feature name="slot" value="hirom" /> | |
| 22554 | 24546 | <dataarea name="rom" size="2621440"> |
| 22555 | 24547 | <rom name="sns-ti-0 p0.u1" size="2097152" crc="bd9d41e0" sha1="c905ee39982ec4ffe8092ef1c0f8dfd8809575b7" offset="0x000000" /> |
| 22556 | 24548 | <rom name="sns-ti-0 p3.u2" size="524288" crc="6056387f" sha1="31d0f2276b124bee206695ac6b2048918c25efcc" offset="0x200000" /> |
| r21545 | r21546 | |
| 22574 | 24566 | <feature name="lockout" value="D411A 9316 AA" /> |
| 22575 | 24567 | <feature name="cart_model" value="SNS-006" /> |
| 22576 | 24568 | <feature name="cart_back_label" value="" /> |
| 24569 | ||
| 24570 | <feature name="slot" value="hirom" /> | |
| 22577 | 24571 | <dataarea name="rom" size="2621440"> |
| 22578 | 24572 | <rom name="sns-ti-0 p1.u1" size="1048576" crc="2e14314d" sha1="ea70b5b5788444ea60adf8b08c57ffc19c519e09" offset="0x000000" /> |
| 22579 | 24573 | <rom name="sns-ti-0 p2.u2" size="1048576" crc="20ace25a" sha1="55757c35bb51cb5974586cea4e732e74de7988a0" offset="0x100000" /> |
| r21545 | r21546 | |
| 22597 | 24591 | <feature name="u2" value="U2 S-DD1" /> |
| 22598 | 24592 | <feature name="cart_model" value="SHVC-006" /> |
| 22599 | 24593 | <feature name="cart_back_label" value="G741832 SHVC-JPN-1" /> |
| 24594 | ||
| 24595 | <feature name="slot" value="lorom_sdd1" /> | |
| 22600 | 24596 | <dataarea name="rom" size="4194304"> |
| 22601 | 24597 | <rom name="shvc-auzj-0.u1" size="4194304" crc="7455a7cf" sha1="a0db1045fb308d6a2975a4d305b69f877be727a4" offset="0x000000" /> |
| 22602 | 24598 | </dataarea> |
| r21545 | r21546 | |
| 22618 | 24614 | <feature name="lockout" value="" /> |
| 22619 | 24615 | <feature name="cart_model" value="SNS-006" /> |
| 22620 | 24616 | <feature name="cart_back_label" value="" /> |
| 24617 | ||
| 24618 | <feature name="slot" value="hirom" /> | |
| 22621 | 24619 | <dataarea name="rom" size="3145728"> |
| 22622 | 24620 | <rom name="sns-ahye-0 p0.u1" size="2097152" crc="4e5d57d0" sha1="a4c54d8e44133f0f28160ee3763398fc6b8e0bfe" offset="0x000000" /> |
| 22623 | 24621 | <rom name="sns-ahye-0 p3.u2" size="1048576" crc="5eaaa9c5" sha1="9077895ab60fcc7c401e9419285a51b35f781116" offset="0x200000" /> |
| r21545 | r21546 | |
| 22638 | 24636 | <feature name="lockout" value="" /> |
| 22639 | 24637 | <feature name="cart_model" value="SNS-006" /> |
| 22640 | 24638 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 24639 | ||
| 24640 | <feature name="slot" value="lorom" /> | |
| 22641 | 24641 | <dataarea name="rom" size="1048576"> |
| 22642 | 24642 | <rom name="sns-9s-0.u1" size="1048576" crc="63e8b7d5" sha1="5f7cccebdee92131fa25ec8bb853a35807cd2e8b" offset="0x000000" /> |
| 22643 | 24643 | </dataarea> |
| r21545 | r21546 | |
| 22657 | 24657 | <feature name="lockout" value="" /> |
| 22658 | 24658 | <feature name="cart_model" value="SNS-006" /> |
| 22659 | 24659 | <feature name="cart_back_label" value="" /> |
| 24660 | ||
| 24661 | <feature name="slot" value="lorom" /> | |
| 22660 | 24662 | <dataarea name="rom" size="1048576"> |
| 22661 | 24663 | <rom name="sns-sg-0.u1" size="1048576" crc="d054e288" sha1="110e46dc4d6301c3b41f8a9337e4ba78719b7917" offset="0x000000" /> |
| 22662 | 24664 | </dataarea> |
| r21545 | r21546 | |
| 22682 | 24684 | <feature name="battery" value="BATT CR2032" /> |
| 22683 | 24685 | <feature name="cart_model" value="SNSP-006(-03)" /> |
| 22684 | 24686 | <feature name="cart_back_label" value="03-SNSP-FAH" /> |
| 24687 | ||
| 24688 | <feature name="slot" value="lorom_sfx" /> | |
| 22685 | 24689 | <dataarea name="rom" size="1048576"> |
| 22686 | 24690 | <rom name="spal-cq-0.u1" size="1048576" crc="24935769" sha1="de21be64fde447d9c6a2f1b063d2f2e0d4034ca0" offset="0x000000" /> |
| 22687 | 24691 | </dataarea> |
| r21545 | r21546 | |
| 22712 | 24716 | <feature name="battery" value="BATT CR2032" /> |
| 22713 | 24717 | <feature name="cart_model" value="SHVC-006" /> |
| 22714 | 24718 | <feature name="cart_back_label" value="920214" /> |
| 24719 | ||
| 24720 | <feature name="slot" value="lorom_dsp" /> | |
| 22715 | 24721 | <dataarea name="rom" size="1572864"> |
| 22716 | 24722 | <rom name="shvc-3d-0 p0.u1" size="1048576" crc="2a5b2522" sha1="55cf51865a2c7c0c4132404fca563167c336be8d" offset="0x000000" /> |
| 22717 | 24723 | <rom name="shvc-3d-0 p1.u2" size="524288" crc="bb1afba8" sha1="e52b4a6f30171d1c42910e5ab2137f2ac1e1c838" offset="0x100000" /> |
| 22718 | 24724 | </dataarea> |
| 24725 | <dataarea name="addon" size="10240"> | |
| 24726 | <rom name="dsp1a.u4" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 24727 | </dataarea> | |
| 22719 | 24728 | <dataarea name="nvram" size="8192"> |
| 22720 | 24729 | </dataarea> |
| 22721 | 24730 | </part> |
| r21545 | r21546 | |
| 22737 | 24746 | <feature name="lockout" value="" /> |
| 22738 | 24747 | <feature name="cart_model" value="SNSP-006" /> |
| 22739 | 24748 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 24749 | ||
| 24750 | <feature name="slot" value="hirom_dsp" /> | |
| 22740 | 24751 | <dataarea name="rom" size="524288"> |
| 22741 | 24752 | <rom name="spal-az-0.u1" size="524288" crc="0b57c764" sha1="f70567b9dc858bdb66d73d539390b7f74f00ff8a" offset="0x000000" /> |
| 22742 | 24753 | </dataarea> |
| 24754 | <dataarea name="addon" size="10240"> | |
| 24755 | <rom name="dsp1.u2" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 24756 | </dataarea> | |
| 22743 | 24757 | </part> |
| 22744 | 24758 | </software> |
| 22745 | 24759 | |
| r21545 | r21546 | |
| 22761 | 24775 | <feature name="lockout" value="" /> |
| 22762 | 24776 | <feature name="cart_model" value="SHVC-006" /> |
| 22763 | 24777 | <feature name="cart_back_label" value="920214" /> |
| 24778 | ||
| 24779 | <feature name="slot" value="hirom_dsp" /> | |
| 22764 | 24780 | <dataarea name="rom" size="524288"> |
| 22765 | 24781 | <rom name="shvc-az-0.u1" size="524288" crc="971e74ba" sha1="ffb81b82ea027673cbfc26f6ebd9f05c2d60d6c8" offset="0x000000" /> |
| 22766 | 24782 | </dataarea> |
| 24783 | <dataarea name="addon" size="10240"> | |
| 24784 | <rom name="dsp1a.u2" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 24785 | </dataarea> | |
| 22767 | 24786 | </part> |
| 22768 | 24787 | </software> |
| 22769 | 24788 | |
| r21545 | r21546 | |
| 22786 | 24805 | <feature name="lockout" value="" /> |
| 22787 | 24806 | <feature name="cart_model" value="SHVC-006" /> |
| 22788 | 24807 | <feature name="cart_back_label" value="920214" /> |
| 24808 | ||
| 24809 | <feature name="slot" value="hirom_dsp" /> | |
| 22789 | 24810 | <dataarea name="rom" size="1310720"> |
| 22790 | 24811 | <rom name="shvc-aadj-0 p0.u1" size="1048576" crc="cff65a3d" sha1="1e36d1e57d8e62cc85425c6a330afbd1e68d4ede" offset="0x000000" /> |
| 22791 | 24812 | <rom name="shvc-aadj-0 p1.u2" size="262144" crc="f8583eb1" sha1="162d9de84509c33a86ac2a5f2605ce1308774be6" offset="0x100000" /> |
| 22792 | 24813 | </dataarea> |
| 24814 | <dataarea name="addon" size="10240"> | |
| 24815 | <rom name="dsp1b.u3" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 24816 | </dataarea> | |
| 22793 | 24817 | </part> |
| 22794 | 24818 | </software> |
| 22795 | 24819 | |
| r21545 | r21546 | |
| 22812 | 24836 | <feature name="battery" value="BATT CR2032" /> |
| 22813 | 24837 | <feature name="cart_model" value="SHVC-006" /> |
| 22814 | 24838 | <feature name="cart_back_label" value="920214" /> |
| 24839 | ||
| 24840 | <feature name="slot" value="hirom" /> | |
| 22815 | 24841 | <dataarea name="rom" size="1572864"> |
| 22816 | 24842 | <rom name="shvc-g2-0 p0.u1" size="1048576" crc="2541e8b6" sha1="ad0d57b0e53b33a16b8c02ccc002d58998dbccda" offset="0x000000" /> |
| 22817 | 24843 | <rom name="shvc-g2-0 p1.u2" size="524288" crc="be38e2df" sha1="9ffa19dc95510910a75ad661abf290a9d43a9dbf" offset="0x100000" /> |
| r21545 | r21546 | |
| 22837 | 24863 | <feature name="battery" value="BATT CR2032" /> |
| 22838 | 24864 | <feature name="cart_model" value="SNS-006" /> |
| 22839 | 24865 | <feature name="cart_back_label" value="" /> |
| 24866 | ||
| 24867 | <feature name="slot" value="lorom" /> | |
| 22840 | 24868 | <dataarea name="rom" size="524288"> |
| 22841 | 24869 | <rom name="sns-ub-0.u1" size="524288" crc="aa760fec" sha1="1e2f8914636a6e22717bd4dd7bb5cd01afc6c560" offset="0x000000" /> |
| 22842 | 24870 | </dataarea> |
| r21545 | r21546 | |
| 22858 | 24886 | <feature name="lockout" value="" /> |
| 22859 | 24887 | <feature name="cart_model" value="SNS-006" /> |
| 22860 | 24888 | <feature name="cart_back_label" value="" /> |
| 24889 | ||
| 24890 | <feature name="slot" value="lorom" /> | |
| 22861 | 24891 | <dataarea name="rom" size="524288"> |
| 22862 | 24892 | <rom name="sns-p-8b-0.u1" size="524288" crc="6fcea1a1" sha1="f9f0493ca8aca56859af57a2a501258f3350f3bd" offset="0x000000" /> |
| 22863 | 24893 | </dataarea> |
| r21545 | r21546 | |
| 22877 | 24907 | <feature name="lockout" value="" /> |
| 22878 | 24908 | <feature name="cart_model" value="SNS-006" /> |
| 22879 | 24909 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 24910 | ||
| 24911 | <feature name="slot" value="lorom" /> | |
| 22880 | 24912 | <dataarea name="rom" size="1048576"> |
| 22881 | 24913 | <rom name="sns-bq-0.u1" size="1048576" crc="57d9fd61" sha1="653711065aaa24a4216e359c1e1c2c23ec028912" offset="0x000000" /> |
| 22882 | 24914 | </dataarea> |
| r21545 | r21546 | |
| 22897 | 24929 | <feature name="lockout" value="" /> |
| 22898 | 24930 | <feature name="cart_model" value="SHVC-006" /> |
| 22899 | 24931 | <feature name="cart_back_label" value="920214" /> |
| 24932 | ||
| 24933 | <feature name="slot" value="hirom" /> | |
| 22900 | 24934 | <dataarea name="rom" size="524288"> |
| 22901 | 24935 | <rom name="shvc-h6-0.u1" size="524288" crc="7989891a" sha1="843364a881edf3d8cd8f799801a2a6d8f05d7a7d" offset="0x000000" /> |
| 22902 | 24936 | </dataarea> |
| r21545 | r21546 | |
| 22916 | 24950 | <feature name="lockout" value="D411A 9303 CA" /> |
| 22917 | 24951 | <feature name="cart_model" value="SNS-006" /> |
| 22918 | 24952 | <feature name="cart_back_label" value="" /> |
| 24953 | ||
| 24954 | <feature name="slot" value="hirom" /> | |
| 22919 | 24955 | <dataarea name="rom" size="524288"> |
| 22920 | 24956 | <rom name="sns-h6-0.u1" size="524288" crc="63a8e2c6" sha1="5b99127cb3c60c5ebce11d9b91bd09914ebc53f2" offset="0x000000" /> |
| 22921 | 24957 | </dataarea> |
| r21545 | r21546 | |
| 22943 | 24979 | <feature name="cart_model" value="SNSP-006" /> |
| 22944 | 24980 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 22945 | 24981 | --> |
| 24982 | ||
| 24983 | <feature name="slot" value="hirom" /> | |
| 22946 | 24984 | <dataarea name="rom" size="1048576"> |
| 22947 | 24985 | <rom name="spal-m4-0.u1" size="1048576" crc="c60a4191" sha1="4e7a07b90963df9d8bbaed71bcc133a35eea3c11" offset="0x000000" /> |
| 22948 | 24986 | </dataarea> |
| r21545 | r21546 | |
| 22963 | 25001 | <feature name="lockout" value="" /> |
| 22964 | 25002 | <feature name="cart_model" value="SHVC-006" /> |
| 22965 | 25003 | <feature name="cart_back_label" value="920214" /> |
| 25004 | ||
| 25005 | <feature name="slot" value="hirom" /> | |
| 22966 | 25006 | <dataarea name="rom" size="1048576"> |
| 22967 | 25007 | <rom name="shvc-m4-0.u1" size="1048576" crc="fb259f4f" sha1="8faeb56f80e82dd042bdc84d19c526a979c6de8f" offset="0x000000" /> |
| 22968 | 25008 | </dataarea> |
| r21545 | r21546 | |
| 22982 | 25022 | <feature name="lockout" value="" /> |
| 22983 | 25023 | <feature name="cart_model" value="SNS-006" /> |
| 22984 | 25024 | <feature name="cart_back_label" value="" /> |
| 25025 | ||
| 25026 | <feature name="slot" value="hirom" /> | |
| 22985 | 25027 | <dataarea name="rom" size="1048576"> |
| 22986 | 25028 | <rom name="sns-m4-0.u1" size="1048576" crc="9c1f11e4" sha1="14e4d0b3d00fd04f996eea86daa485a35e501853" offset="0x000000" /> |
| 22987 | 25029 | </dataarea> |
| r21545 | r21546 | |
| 23004 | 25046 | <feature name="lockout" value="" /> |
| 23005 | 25047 | <feature name="cart_model" value="SHVC-006" /> |
| 23006 | 25048 | <feature name="cart_back_label" value="920214" /> |
| 25049 | ||
| 25050 | <feature name="slot" value="hirom" /> | |
| 23007 | 25051 | <dataarea name="rom" size="1572864"> |
| 23008 | 25052 | <rom name="shvc-as6j-0 p0.u1" size="1048576" crc="223f9489" sha1="f90de15e0d46edb44f5b8f06b9a3c14aa905767e" offset="0x000000" /> |
| 23009 | 25053 | <rom name="shvc-as6j-0 p1.u2" size="524288" crc="d5deb2cc" sha1="daf9bd9e3b59a42d9779a8c16ad5ba36194b34d9" offset="0x100000" /> |
| r21545 | r21546 | |
| 23024 | 25068 | <feature name="u1" value="U1 MASKROM" /> |
| 23025 | 25069 | <feature name="u2" value="U2 64K SRAM" /> |
| 23026 | 25070 | <feature name="u3" value="U3 SA1" /> |
| 25071 | ||
| 25072 | <feature name="slot" value="lorom_sa1" /> | |
| 23027 | 25073 | <dataarea name="rom" size="1048576"> |
| 23028 | 25074 | <rom name="shvc-apbj-0.u1" size="1048576" crc="fc633ecb" sha1="3a8793c4e03f457d7cfc3c0ade6c67edf091f74b" offset="0x000000" /> |
| 23029 | 25075 | </dataarea> |
| r21545 | r21546 | |
| 23049 | 25095 | <feature name="battery" value="BATT CR2032" /> |
| 23050 | 25096 | <feature name="cart_model" value="SHVC-006" /> |
| 23051 | 25097 | <feature name="cart_back_label" value="920214" /> |
| 25098 | ||
| 25099 | <feature name="slot" value="lorom" /> | |
| 23052 | 25100 | <dataarea name="rom" size="524288"> |
| 23053 | 25101 | <rom name="shvc-aboj-0.u1" size="524288" crc="1d123be6" sha1="15dfdd61cb12f636eae9fbbf4102b734b6ed58bb" offset="0x000000" /> |
| 23054 | 25102 | </dataarea> |
| r21545 | r21546 | |
| 23071 | 25119 | <feature name="lockout" value="" /> |
| 23072 | 25120 | <feature name="cart_model" value="SHVC-006" /> |
| 23073 | 25121 | <feature name="cart_back_label" value="920214" /> |
| 25122 | ||
| 25123 | <feature name="slot" value="lorom" /> | |
| 23074 | 25124 | <dataarea name="rom" size="524288"> |
| 23075 | 25125 | <rom name="shvc-bw-0.u1" size="524288" crc="383bc5d5" sha1="15d3e2a9583d61562e08a6ba16799676dc9ba0a0" offset="0x000000" /> |
| 23076 | 25126 | </dataarea> |
| r21545 | r21546 | |
| 23090 | 25140 | <feature name="lockout" value="D411A 9312 CB" /> |
| 23091 | 25141 | <feature name="cart_model" value="SNS-006" /> |
| 23092 | 25142 | <feature name="cart_back_label" value="" /> |
| 25143 | ||
| 25144 | <feature name="slot" value="lorom" /> | |
| 23093 | 25145 | <dataarea name="rom" size="524288"> |
| 23094 | 25146 | <rom name="sns-c6-0.u1" size="524288" crc="a2381221" sha1="c01b96a5b82addfdd731c6cbe39b6b9bcd7224c2" offset="0x000000" /> |
| 23095 | 25147 | </dataarea> |
| r21545 | r21546 | |
| 23108 | 25160 | <feature name="lockout" value="" /> |
| 23109 | 25161 | <feature name="cart_model" value="SNSP-006" /> |
| 23110 | 25162 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 25163 | ||
| 25164 | <feature name="slot" value="lorom" /> | |
| 23111 | 25165 | <dataarea name="rom" size="1048576"> |
| 23112 | 25166 | <rom name="spal-ad-0.u1" size="1048576" crc="5d40cb37" sha1="14f37bece9b419b59911325c4595c975e5746823" offset="0x000000" /> |
| 23113 | 25167 | </dataarea> |
| r21545 | r21546 | |
| 23127 | 25181 | <feature name="lockout" value="" /> |
| 23128 | 25182 | <feature name="cart_model" value="SNS-006" /> |
| 23129 | 25183 | <feature name="cart_back_label" value="" /> |
| 25184 | ||
| 25185 | <feature name="slot" value="lorom" /> | |
| 23130 | 25186 | <dataarea name="rom" size="1048576"> |
| 23131 | 25187 | <rom name="sns-ad-0.u1" size="1048576" crc="b64ffb12" sha1="684c1dfaff8e5999422c24d48054d96bb12da2f4" offset="0x000000" /> |
| 23132 | 25188 | </dataarea> |
| r21545 | r21546 | |
| 23147 | 25203 | <feature name="lockout" value="" /> |
| 23148 | 25204 | <feature name="cart_model" value="SHVC-006" /> |
| 23149 | 25205 | <feature name="cart_back_label" value="901121" /> |
| 25206 | ||
| 25207 | <feature name="slot" value="lorom" /> | |
| 23150 | 25208 | <dataarea name="rom" size="1048576"> |
| 23151 | 25209 | <rom name="shvc-cw-0.u1" size="1048576" crc="52fff0bf" sha1="8a7dc8ec9cc78c477251e7de24e5bd973370d3f2" offset="0x000000" /> |
| 23152 | 25210 | </dataarea> |
| r21545 | r21546 | |
| 23167 | 25225 | <feature name="lockout" value="" /> |
| 23168 | 25226 | <feature name="cart_model" value="SHVC-006" /> |
| 23169 | 25227 | <feature name="cart_back_label" value="920214" /> |
| 25228 | ||
| 25229 | <feature name="slot" value="lorom" /> | |
| 23170 | 25230 | <dataarea name="rom" size="2097152"> |
| 23171 | 25231 | <rom name="shvc-cu-0.u1" size="2097152" crc="77dafbb6" sha1="c05f88ddd689f4a0dbad6880d29413973777c48a" offset="0x000000" /> |
| 23172 | 25232 | </dataarea> |
| r21545 | r21546 | |
| 23190 | 25250 | <feature name="battery" value="BATT CR2032" /> |
| 23191 | 25251 | <feature name="cart_model" value="SHVC-006" /> |
| 23192 | 25252 | <feature name="cart_back_label" value="920214" /> |
| 25253 | ||
| 25254 | <feature name="slot" value="lorom" /> | |
| 23193 | 25255 | <dataarea name="rom" size="1048576"> |
| 23194 | 25256 | <rom name="shvc-su-0.u1" size="1048576" crc="14a03974" sha1="f6feea0f042834c86ec11a350ab06daaac69cb81" offset="0x000000" /> |
| 23195 | 25257 | </dataarea> |
| r21545 | r21546 | |
| 23216 | 25278 | <feature name="battery" value="BATT CR2032" /> |
| 23217 | 25279 | <feature name="cart_model" value="SHVC-006" /> |
| 23218 | 25280 | <feature name="cart_back_label" value="920214" /> |
| 25281 | ||
| 25282 | <feature name="slot" value="lorom" /> | |
| 23219 | 25283 | <dataarea name="rom" size="1048576"> |
| 23220 | 25284 | <rom name="shvc-qk-0.u1" size="1048576" crc="641cb02b" sha1="e2aeaaf753d9fef3e05329aaf26a5074c1f08fa8" offset="0x000000" /> |
| 23221 | 25285 | </dataarea> |
| r21545 | r21546 | |
| 23242 | 25306 | <feature name="battery" value="BATT CR2032" /> |
| 23243 | 25307 | <feature name="cart_model" value="SHVC-006" /> |
| 23244 | 25308 | <feature name="cart_back_label" value="920214" /> |
| 25309 | ||
| 25310 | <feature name="slot" value="hirom" /> | |
| 23245 | 25311 | <dataarea name="rom" size="4194304"> |
| 23246 | 25312 | <rom name="shvc-8x-0.u1" size="4194304" crc="50f2d1bc" sha1="6f02031b6b50d033958c4923ad05333ed78f22d8" offset="0x000000" /> |
| 23247 | 25313 | </dataarea> |
| r21545 | r21546 | |
| 23269 | 25335 | <feature name="cart_revision" value="A" /> |
| 23270 | 25336 | <feature name="cart_model" value="SHVC-006" /> |
| 23271 | 25337 | <feature name="cart_back_label" value="920214" /> |
| 25338 | ||
| 25339 | <feature name="slot" value="hirom" /> | |
| 23272 | 25340 | <dataarea name="rom" size="4194304"> |
| 23273 | 25341 | <rom name="shvc-8x-1.u1" size="4194304" crc="3adef543" sha1="df02860e691fbee453e345dd343c08b6da08d4ea" offset="0x000000" /> |
| 23274 | 25342 | </dataarea> |
| r21545 | r21546 | |
| 23295 | 25363 | <feature name="battery" value="BATT CR2032" /> |
| 23296 | 25364 | <feature name="cart_model" value="SHVC-006" /> |
| 23297 | 25365 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25366 | ||
| 25367 | <feature name="slot" value="hirom" /> | |
| 23298 | 25368 | <dataarea name="rom" size="4194304"> |
| 23299 | 25369 | <rom name="shvc-adnj-0.u1" size="4194304" crc="a0be8e71" sha1="5ed7ecd3aa25bb37b6605bacc6120f5ebcd9aa5f" offset="0x000000" /> |
| 23300 | 25370 | </dataarea> |
| r21545 | r21546 | |
| 23322 | 25392 | <feature name="battery" value="BATT CR2032" /> |
| 23323 | 25393 | <feature name="cart_model" value="SHVC-006" /> |
| 23324 | 25394 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25395 | ||
| 25396 | <feature name="slot" value="hirom" /> | |
| 23325 | 25397 | <dataarea name="rom" size="4194304"> |
| 23326 | 25398 | <rom name="shvc-adnj-0 p0.u1" size="2097152" crc="8f35127e" sha1="20b0d13c9f9b956d2d6353fbc3bc56650b904b39" offset="0x000000" /> |
| 23327 | 25399 | <rom name="shvc-adnj-0 p3.u2" size="2097152" crc="86751a63" sha1="0c5088d9987e9704dd855ef995c10bcb0a450972" offset="0x200000" /> |
| r21545 | r21546 | |
| 23350 | 25422 | <feature name="cart_revision" value="A" /> |
| 23351 | 25423 | <feature name="cart_model" value="SHVC-006" /> |
| 23352 | 25424 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25425 | ||
| 25426 | <feature name="slot" value="hirom" /> | |
| 23353 | 25427 | <dataarea name="rom" size="4194304"> |
| 23354 | 25428 | <rom name="shvc-adnj-1.u1" size="4194304" crc="46079c0f" sha1="710903d52ec009bb7a54cd5ccdfdc93594e440e2" offset="0x000000" /> |
| 23355 | 25429 | </dataarea> |
| r21545 | r21546 | |
| 23378 | 25452 | <feature name="cart_revision" value="A" /> |
| 23379 | 25453 | <feature name="cart_model" value="SHVC-006" /> |
| 23380 | 25454 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25455 | ||
| 25456 | <feature name="slot" value="hirom" /> | |
| 23381 | 25457 | <dataarea name="rom" size="4194304"> |
| 23382 | 25458 | <rom name="shvc-adnj-1 p0.u1" size="2097152" crc="abd23d72" sha1="3de86881b680ff1b1ee56f4dc363329b577430f8" offset="0x000000" /> |
| 23383 | 25459 | <rom name="shvc-adnj-1 p3.u2" size="2097152" crc="4c8e7c80" sha1="82db3a9e7a267e33159146dbc0ba30df38c7349a" offset="0x200000" /> |
| r21545 | r21546 | |
| 23405 | 25481 | <feature name="battery" value="BATT CR2032" /> |
| 23406 | 25482 | <feature name="cart_model" value="SHVC-006" /> |
| 23407 | 25483 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25484 | ||
| 25485 | <feature name="slot" value="hirom" /> | |
| 23408 | 25486 | <dataarea name="rom" size="4194304"> |
| 23409 | 25487 | <rom name="shvc-a3cj-0.u1" size="4194304" crc="0f712928" sha1="6fa9df8cf91f062d067c2206622e4b7244322f6f" offset="0x000000" /> |
| 23410 | 25488 | </dataarea> |
| r21545 | r21546 | |
| 23432 | 25510 | <feature name="cart_revision" value="A" /> |
| 23433 | 25511 | <feature name="cart_model" value="SHVC-006" /> |
| 23434 | 25512 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25513 | ||
| 25514 | <feature name="slot" value="hirom" /> | |
| 23435 | 25515 | <dataarea name="rom" size="4194304"> |
| 23436 | 25516 | <rom name="shvc-a3cj-1.u1" size="4194304" crc="5b337fb6" sha1="e4137a6e9d9a7ac836f8e568d44bdaf0451c664e" offset="0x000000" /> |
| 23437 | 25517 | </dataarea> |
| r21545 | r21546 | |
| 23452 | 25532 | <feature name="lockout" value="" /> |
| 23453 | 25533 | <feature name="cart_model" value="SNSP-006" /> |
| 23454 | 25534 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 23455 | <!-- Alernate cart | |
| 25535 | <!-- Alternate cart | |
| 23456 | 25536 | <info name="serial" value="SNSP-WD-NOE" /> |
| 23457 | 25537 | <feature name="pcb" value="SHVC-1A0N-10" /> |
| 23458 | 25538 | <feature name="u1" value="U1 MASK ROM(N)" /> |
| r21545 | r21546 | |
| 23461 | 25541 | <feature name="cart_model" value="SNSP-006" /> |
| 23462 | 25542 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 23463 | 25543 | --> |
| 25544 | ||
| 25545 | <feature name="slot" value="lorom" /> | |
| 23464 | 25546 | <dataarea name="rom" size="1048576"> |
| 23465 | 25547 | <rom name="spal-wd-0.u1" size="1048576" crc="b3f6009b" sha1="2f7994c5b7466ef3efca5d20c69f4139e573b8c7" offset="0x000000" /> |
| 23466 | 25548 | </dataarea> |
| r21545 | r21546 | |
| 23480 | 25562 | <feature name="lockout" value="" /> |
| 23481 | 25563 | <feature name="cart_model" value="SNS-006" /> |
| 23482 | 25564 | <feature name="cart_back_label" value="" /> |
| 25565 | ||
| 25566 | <feature name="slot" value="lorom" /> | |
| 23483 | 25567 | <dataarea name="rom" size="1048576"> |
| 23484 | 25568 | <rom name="sns-wd-0.u1" size="1048576" crc="09ed12a5" sha1="5dcaee58ba92e620055e1cee7f1c84da4e22a61a" offset="0x000000" /> |
| 23485 | 25569 | </dataarea> |
| r21545 | r21546 | |
| 23503 | 25587 | <feature name="battery" value="BATT CR2032" /> |
| 23504 | 25588 | <feature name="cart_model" value="SHVC-006" /> |
| 23505 | 25589 | <feature name="cart_back_label" value="920214" /> |
| 25590 | ||
| 25591 | <feature name="slot" value="lorom" /> | |
| 23506 | 25592 | <dataarea name="rom" size="1048576"> |
| 23507 | 25593 | <rom name="shvc-fc-0.u1" size="1048576" crc="7c94c86c" sha1="9d60d55b690c02413aa668ed9da196b4f1449e81" offset="0x000000" /> |
| 23508 | 25594 | </dataarea> |
| r21545 | r21546 | |
| 23529 | 25615 | <feature name="battery" value="BATT CR2032" /> |
| 23530 | 25616 | <feature name="cart_model" value="SHVC-006" /> |
| 23531 | 25617 | <feature name="cart_back_label" value="920214" /> |
| 25618 | ||
| 25619 | <feature name="slot" value="lorom" /> | |
| 23532 | 25620 | <dataarea name="rom" size="1572864"> |
| 23533 | 25621 | <rom name="shvc-n2-0 p0.u1" size="1048576" crc="939f2faf" sha1="34fcf1edadbc91f10453af521b94964c2552bff8" offset="0x000000" /> |
| 23534 | 25622 | <rom name="shvc-n2-0 p1.u2" size="524288" crc="b650fe91" sha1="079799a2b523917af3b01b247a72de115aa69382" offset="0x100000" /> |
| r21545 | r21546 | |
| 23555 | 25643 | <feature name="battery" value="BATT CR2032" /> |
| 23556 | 25644 | <feature name="cart_model" value="SHVC-006" /> |
| 23557 | 25645 | <feature name="cart_back_label" value="920214" /> |
| 25646 | ||
| 25647 | <feature name="slot" value="lorom" /> | |
| 23558 | 25648 | <dataarea name="rom" size="2097152"> |
| 23559 | 25649 | <rom name="shvc-n3-0.u1" size="2097152" crc="26ef22cb" sha1="3e59aaf8c9ea1a40485e6938f1bdd582c279faf5" offset="0x000000" /> |
| 23560 | 25650 | </dataarea> |
| r21545 | r21546 | |
| 23581 | 25671 | <feature name="battery" value="BATT CR2032" /> |
| 23582 | 25672 | <feature name="cart_model" value="SHVC-006" /> |
| 23583 | 25673 | <feature name="cart_back_label" value="920214" /> |
| 25674 | ||
| 25675 | <feature name="slot" value="lorom" /> | |
| 23584 | 25676 | <dataarea name="rom" size="1048576"> |
| 23585 | 25677 | <rom name="shvc-23-0.u1" size="1048576" crc="dc82850e" sha1="d3b66d5b49d2257d146a0d126e98861a7d364974" offset="0x000000" /> |
| 23586 | 25678 | </dataarea> |
| r21545 | r21546 | |
| 23603 | 25695 | <feature name="lockout" value="" /> |
| 23604 | 25696 | <feature name="cart_model" value="SHVC-006" /> |
| 23605 | 25697 | <feature name="cart_back_label" value="901121" /> |
| 25698 | ||
| 25699 | <feature name="slot" value="lorom" /> | |
| 23606 | 25700 | <dataarea name="rom" size="1048576"> |
| 23607 | 25701 | <rom name="shvc-fa-0.u1" size="1048576" crc="72d49e26" sha1="394e2e8b608b0cfdb9df6925773f784b8ac6a377" offset="0x000000" /> |
| 23608 | 25702 | </dataarea> |
| r21545 | r21546 | |
| 23623 | 25717 | <feature name="lockout" value="" /> |
| 23624 | 25718 | <feature name="cart_model" value="SHVC-006" /> |
| 23625 | 25719 | <feature name="cart_back_label" value="920214" /> |
| 25720 | ||
| 25721 | <feature name="slot" value="lorom" /> | |
| 23626 | 25722 | <dataarea name="rom" size="1048576"> |
| 23627 | 25723 | <rom name="shvc-fi-0.u1" size="1048576" crc="c4dfd188" sha1="2b87bcb40002e49d53c2b3b351776cc6673a1e14" offset="0x000000" /> |
| 23628 | 25724 | </dataarea> |
| r21545 | r21546 | |
| 23647 | 25743 | <feature name="battery" value="BATT CR2032" /> |
| 23648 | 25744 | <feature name="cart_model" value="SHVC-006" /> |
| 23649 | 25745 | <feature name="cart_back_label" value="920214" /> |
| 25746 | ||
| 25747 | <feature name="slot" value="lorom" /> | |
| 23650 | 25748 | <dataarea name="rom" size="1048576"> |
| 23651 | 25749 | <rom name="shvc-n6-0.u1" size="1048576" crc="b933d0ee" sha1="d4898c3cd9e74b3196d86ae6e7992cbde1107f52" offset="0x000000" /> |
| 23652 | 25750 | </dataarea> |
| r21545 | r21546 | |
| 23673 | 25771 | <feature name="battery" value="BATT CR2032" /> |
| 23674 | 25772 | <feature name="cart_model" value="SHVC-006" /> |
| 23675 | 25773 | <feature name="cart_back_label" value="920214" /> |
| 25774 | ||
| 25775 | <feature name="slot" value="lorom" /> | |
| 23676 | 25776 | <dataarea name="rom" size="2097152"> |
| 23677 | 25777 | <rom name="shvc-af4j-0.u1" size="2097152" crc="7c20accb" sha1="0aee41b4a21271092e811234e4b2432f3a231252" offset="0x000000" /> |
| 23678 | 25778 | </dataarea> |
| r21545 | r21546 | |
| 23700 | 25800 | <feature name="cart_revision" value="A" /> |
| 23701 | 25801 | <feature name="cart_model" value="SHVC-006" /> |
| 23702 | 25802 | <feature name="cart_back_label" value="920214" /> |
| 25803 | ||
| 25804 | <feature name="slot" value="lorom" /> | |
| 23703 | 25805 | <dataarea name="rom" size="2097152"> |
| 23704 | 25806 | <rom name="shvc-af4j-1.u1" size="2097152" crc="8ea0de90" sha1="7951c6bd66d563712e6ca57291dd9321ad00de96" offset="0x000000" /> |
| 23705 | 25807 | </dataarea> |
| r21545 | r21546 | |
| 23726 | 25828 | <feature name="battery" value="BATT CR2032" /> |
| 23727 | 25829 | <feature name="cart_model" value="SHVC-006" /> |
| 23728 | 25830 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25831 | ||
| 25832 | <feature name="slot" value="lorom" /> | |
| 23729 | 25833 | <dataarea name="rom" size="2621440"> |
| 23730 | 25834 | <rom name="shvc-a27j-0 p0.u1" size="2097152" crc="deff0722" sha1="a9c1838a653ecd655e01234bce2ae2e7fba8af7f" offset="0x000000" /> |
| 23731 | 25835 | <rom name="shvc-a27j-0 p3.u2" size="524288" crc="1a6ec29c" sha1="202fe4cc56c94578daa30d1dbcf22147d9870aa9" offset="0x200000" /> |
| r21545 | r21546 | |
| 23753 | 25857 | <feature name="battery" value="BATT CR2032" /> |
| 23754 | 25858 | <feature name="cart_model" value="SHVC-006" /> |
| 23755 | 25859 | <feature name="cart_back_label" value="920214" /> |
| 25860 | ||
| 25861 | <feature name="slot" value="hirom" /> | |
| 23756 | 25862 | <dataarea name="rom" size="3145728"> |
| 23757 | 25863 | <rom name="shvc-aqqj-0.u1" size="3145728" crc="3227f1b1" sha1="c429d948288deebcc904f5c0780af0f4f2f708e9" offset="0x000000" /> |
| 23758 | 25864 | </dataarea> |
| r21545 | r21546 | |
| 23775 | 25881 | <feature name="lockout" value="" /> |
| 23776 | 25882 | <feature name="cart_model" value="SHVC-006" /> |
| 23777 | 25883 | <feature name="cart_back_label" value="901121, 920214" /> |
| 25884 | ||
| 25885 | <feature name="slot" value="lorom" /> | |
| 23778 | 25886 | <dataarea name="rom" size="1048576"> |
| 23779 | 25887 | <rom name="shvc-fp-0.u1" size="1048576" crc="db71bf4a" sha1="4c8ca735e3b5e811db08dd947cde5284466eaf74" offset="0x000000" /> |
| 23780 | 25888 | </dataarea> |
| r21545 | r21546 | |
| 23795 | 25903 | <feature name="lockout" value="" /> |
| 23796 | 25904 | <feature name="cart_model" value="SHVC-006" /> |
| 23797 | 25905 | <feature name="cart_back_label" value="920214" /> |
| 25906 | ||
| 25907 | <feature name="slot" value="lorom" /> | |
| 23798 | 25908 | <dataarea name="rom" size="1048576"> |
| 23799 | 25909 | <rom name="shvc-ff-0.u1" size="1048576" crc="8fac5efd" sha1="0569141297f76b822c27660c1c3901d92a6fae92" offset="0x000000" /> |
| 23800 | 25910 | </dataarea> |
| r21545 | r21546 | |
| 23820 | 25930 | <feature name="battery" value="BATT CR2032" /> |
| 23821 | 25931 | <feature name="cart_model" value="SHVC-006" /> |
| 23822 | 25932 | <feature name="cart_back_label" value="920214" /> |
| 25933 | ||
| 25934 | <feature name="slot" value="hirom" /> | |
| 23823 | 25935 | <dataarea name="rom" size="1572864"> |
| 23824 | 25936 | <rom name="shvc-f3-0 p0.u1" size="1048576" crc="b3fb18da" sha1="58f1cd80e8f79395d969ecea8ebc7422a004239d" offset="0x000000" /> |
| 23825 | 25937 | <rom name="shvc-f3-0 p1.u2" size="524288" crc="807e82a6" sha1="9a971e6ba1a04fd3427ec936fb4000f6ac04dc10" offset="0x100000" /> |
| r21545 | r21546 | |
| 23847 | 25959 | <feature name="battery" value="BATT CR2032" /> |
| 23848 | 25960 | <feature name="cart_model" value="SHVC-006" /> |
| 23849 | 25961 | <feature name="cart_back_label" value="920214" /> |
| 25962 | ||
| 25963 | <feature name="slot" value="hirom" /> | |
| 23850 | 25964 | <dataarea name="rom" size="4194304"> |
| 23851 | 25965 | <rom name="shvc-ap4j-0 p0.u1" size="2097152" crc="a7a4cf62" sha1="8f15cf00bc5804f84901ec6b7de8d6e6c7c6e281" offset="0x000000" /> |
| 23852 | 25966 | <rom name="shvc-ap4j-0 p3.u2" size="2097152" crc="961ebb50" sha1="1fab9ed309546549d5bca8829e512c74f21e1b04" offset="0x200000" /> |
| r21545 | r21546 | |
| 23874 | 25988 | <feature name="battery" value="BATT CR2032" /> |
| 23875 | 25989 | <feature name="cart_model" value="SHVC-006" /> |
| 23876 | 25990 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 25991 | ||
| 25992 | <feature name="slot" value="hirom" /> | |
| 23877 | 25993 | <dataarea name="rom" size="4194304"> |
| 23878 | 25994 | <rom name="shvc-af5j-0.u1" size="4194304" crc="959db484" sha1="482fdc3aed7a61faf4562169d18a3fb70a333f27" offset="0x000000" /> |
| 23879 | 25995 | </dataarea> |
| r21545 | r21546 | |
| 23896 | 26012 | <feature name="lockout" value="" /> |
| 23897 | 26013 | <feature name="cart_model" value="SHVC-006" /> |
| 23898 | 26014 | <feature name="cart_back_label" value="901121, 920214" /> |
| 26015 | ||
| 26016 | <feature name="slot" value="lorom" /> | |
| 23899 | 26017 | <dataarea name="rom" size="524288"> |
| 23900 | 26018 | <rom name="shvc-fs-0.u1" size="524288" crc="265afe97" sha1="75cad8b252d69544a5ace94799e98c95e8eef51d" offset="0x000000" /> |
| 23901 | 26019 | </dataarea> |
| r21545 | r21546 | |
| 23919 | 26037 | <feature name="battery" value="BATT CR2032" /> |
| 23920 | 26038 | <feature name="cart_model" value="SHVC-006" /> |
| 23921 | 26039 | <feature name="cart_back_label" value="920214" /> |
| 26040 | ||
| 26041 | <feature name="slot" value="lorom" /> | |
| 23922 | 26042 | <dataarea name="rom" size="524288"> |
| 23923 | 26043 | <rom name="shvc-2s-0.u1" size="524288" crc="74c75074" sha1="775fd8ab6f66edf42f8f9e706eb5ad5ae704907b" offset="0x000000" /> |
| 23924 | 26044 | </dataarea> |
| r21545 | r21546 | |
| 23945 | 26065 | <feature name="battery" value="BATT CR2032" /> |
| 23946 | 26066 | <feature name="cart_model" value="SHVC-006" /> |
| 23947 | 26067 | <feature name="cart_back_label" value="920214" /> |
| 26068 | ||
| 26069 | <feature name="slot" value="lorom" /> | |
| 23948 | 26070 | <dataarea name="rom" size="1048576"> |
| 23949 | 26071 | <rom name="shvc-3f-0.u1" size="1048576" crc="d547c5d2" sha1="25d1a05590d9a7d77419293dc30210a292d1178b" offset="0x000000" /> |
| 23950 | 26072 | </dataarea> |
| r21545 | r21546 | |
| 23971 | 26093 | <feature name="battery" value="BATT CR2032" /> |
| 23972 | 26094 | <feature name="cart_model" value="SHVC-006" /> |
| 23973 | 26095 | <feature name="cart_back_label" value="920214" /> |
| 26096 | ||
| 26097 | <feature name="slot" value="lorom" /> | |
| 23974 | 26098 | <dataarea name="rom" size="1048576"> |
| 23975 | 26099 | <rom name="shvc-a3fj-0.u1" size="1048576" crc="bf1f2e16" sha1="aa6cb7b374e0b8e462799ec609937b6a776034ce" offset="0x000000" /> |
| 23976 | 26100 | </dataarea> |
| r21545 | r21546 | |
| 23998 | 26122 | <feature name="battery" value="BATT CR2032" /> |
| 23999 | 26123 | <feature name="cart_model" value="SHVC-006" /> |
| 24000 | 26124 | <feature name="cart_back_label" value="920214" /> |
| 26125 | ||
| 26126 | <feature name="slot" value="hirom" /> | |
| 24001 | 26127 | <dataarea name="rom" size="1572864"> |
| 24002 | 26128 | <rom name="shvc-a95j-0 p0.u1" size="1048576" crc="363185a3" sha1="3271b480e19214aa3b5687d66091dea01d3a2a49" offset="0x000000" /> |
| 24003 | 26129 | <rom name="shvc-a95j-0 p1.u2" size="524288" crc="4609f8d2" sha1="1d3982c6550554dd79106227b04d8b50c44425b6" offset="0x100000" /> |
| r21545 | r21546 | |
| 24027 | 26153 | <feature name="network2" value="CN2" /> <!-- for the SHVC unit --> |
| 24028 | 26154 | <feature name="cart_model" value="SHVC-027" /> |
| 24029 | 26155 | <feature name="cart_back_label" value="n/a" /> |
| 26156 | ||
| 26157 | <feature name="slot" value="lorom_sgb" /> | |
| 24030 | 26158 | <dataarea name="rom" size="262144"> |
| 24031 | 26159 | <rom name="sys-sgb-nt.u5" size="262144" crc="2e35edbb" sha1="6ed55c4368333b57f6a2f8bbd70ccd87ed48058e" offset="0x000000" /> |
| 24032 | 26160 | </dataarea> |
| r21545 | r21546 | |
| 24053 | 26181 | <feature name="network2" value="CN2" /> <!-- for the SHVC unit --> |
| 24054 | 26182 | <feature name="cart_model" value="SHVC-027" /> |
| 24055 | 26183 | <feature name="cart_back_label" value="n/a" /> |
| 26184 | ||
| 26185 | <feature name="slot" value="lorom_sgb" /> | |
| 24056 | 26186 | <dataarea name="rom" size="262144"> |
| 24057 | 26187 | <rom name="sys-sgb-nt.u5" size="262144" crc="2e35edbb" sha1="6ed55c4368333b57f6a2f8bbd70ccd87ed48058e" offset="0x000000" /> |
| 24058 | 26188 | </dataarea> |
| r21545 | r21546 | |
| 24080 | 26210 | <feature name="cart_revision" value="B" /> |
| 24081 | 26211 | <feature name="cart_model" value="SNSP-027, SNS-027, SHVC-027" /> <!-- Notes: respectively EU, US, JP --> |
| 24082 | 26212 | <feature name="cart_back_label" value="" /> |
| 26213 | ||
| 26214 | <feature name="slot" value="lorom_sgb" /> | |
| 24083 | 26215 | <dataarea name="rom" size="262144"> |
| 24084 | 26216 | <rom name="sys-sgb-2.u5" size="262144" crc="8a4a174f" sha1="973e10840db683cf3faf61bd443090786b3a9f04" offset="0x000000" /> |
| 24085 | 26217 | </dataarea> |
| r21545 | r21546 | |
| 24108 | 26240 | <feature name="led" value="LED2" /> <!-- green, connected to CN2? --> |
| 24109 | 26241 | <feature name="cart_model" value="SHVC-042" /> |
| 24110 | 26242 | <feature name="cart_back_label" value="SHVC-SGB2-JPN" /> |
| 26243 | ||
| 26244 | <feature name="slot" value="lorom_sgb" /> | |
| 24111 | 26245 | <dataarea name="rom" size="524288"> |
| 24112 | 26246 | <rom name="sys-sgb2-10.u4" size="524288" crc="cb176e45" sha1="e5b2922ca137051059e4269b236d07a22c07bc84" offset="0x000000" /> |
| 24113 | 26247 | </dataarea> |
| r21545 | r21546 | |
| 24131 | 26265 | <feature name="lockout" value="" /> |
| 24132 | 26266 | <feature name="cart_model" value="SHVC-006" /> |
| 24133 | 26267 | <feature name="cart_back_label" value="920214" /> |
| 26268 | ||
| 26269 | <feature name="slot" value="hirom" /> | |
| 24134 | 26270 | <dataarea name="rom" size="1572864"> |
| 24135 | 26271 | <rom name="shvc-zh-0 p0.u1" size="1048576" crc="6a2b8c0b" sha1="e7d8d382c239046033980a2503683c5b185ffab4" offset="0x000000" /> |
| 24136 | 26272 | <rom name="shvc-zh-0 p1.u2" size="524288" crc="6d0116e1" sha1="e3490a1688b6d77eabea9fe1591937b0c3012817" offset="0x100000" /> |
| r21545 | r21546 | |
| 24150 | 26286 | <feature name="lockout" value="" /> |
| 24151 | 26287 | <feature name="cart_model" value="SNSP-006" /> |
| 24152 | 26288 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 26289 | ||
| 26290 | <feature name="slot" value="lorom" /> | |
| 24153 | 26291 | <dataarea name="rom" size="1048576"> |
| 24154 | 26292 | <rom name="spal-cm-0.u1" size="1048576" crc="a00bc05e" sha1="353b3651db0447d5fcfa46d705ef61bbbd6afaf8" offset="0x000000" /> |
| 24155 | 26293 | </dataarea> |
| r21545 | r21546 | |
| 24170 | 26308 | <feature name="lockout" value="D411A 9408 BA" /> |
| 24171 | 26309 | <feature name="cart_model" value="SNS-006" /> |
| 24172 | 26310 | <feature name="cart_back_label" value="" /> |
| 26311 | ||
| 26312 | <feature name="slot" value="lorom" /> | |
| 24173 | 26313 | <dataarea name="rom" size="524288"> |
| 24174 | 26314 | <rom name="sns-jv-0.u1" size="524288" crc="c5829306" sha1="85451595f125dcbe6009b9e83a150308ed9a0750" offset="0x000000" /> |
| 24175 | 26315 | </dataarea> |
| r21545 | r21546 | |
| 24190 | 26330 | <feature name="lockout" value="" /> |
| 24191 | 26331 | <feature name="cart_model" value="SHVC-006" /> |
| 24192 | 26332 | <feature name="cart_back_label" value="920214" /> |
| 26333 | ||
| 26334 | <feature name="slot" value="lorom" /> | |
| 24193 | 26335 | <dataarea name="rom" size="1048576"> |
| 24194 | 26336 | <rom name="shvc-hx-0.u1" size="1048576" crc="da8a5ad5" sha1="b2430a8cbfc0af5b7fa6869622be7193af4899a3" offset="0x000000" /> |
| 24195 | 26337 | </dataarea> |
| r21545 | r21546 | |
| 24214 | 26356 | <feature name="battery" value="BATT CR2032" /> |
| 24215 | 26357 | <feature name="cart_model" value="SHVC-006" /> |
| 24216 | 26358 | <feature name="cart_back_label" value="920214" /> |
| 26359 | ||
| 26360 | <feature name="slot" value="lorom" /> | |
| 24217 | 26361 | <dataarea name="rom" size="1572864"> |
| 24218 | 26362 | <rom name="shvc-ik-0 p0.u1" size="1048576" crc="0c671b42" sha1="998b0b869190828d0b6fa06a84aefe62b01ff693" offset="0x000000" /> |
| 24219 | 26363 | <rom name="shvc-ik-0 p1.u2" size="524288" crc="4a92e282" sha1="949e40c8eef413dec082bb4e9b3f9f96352d78e6" offset="0x100000" /> |
| r21545 | r21546 | |
| 24238 | 26382 | <feature name="lockout" value="" /> |
| 24239 | 26383 | <feature name="cart_model" value="SHVC-006" /> |
| 24240 | 26384 | <feature name="cart_back_label" value="920214" /> |
| 26385 | ||
| 26386 | <feature name="slot" value="lorom" /> | |
| 24241 | 26387 | <dataarea name="rom" size="524288"> |
| 24242 | 26388 | <rom name="shvc-ig-0.u1" size="524288" crc="4ac5623d" sha1="8e820ce79d70d19641798fb61eec1d0be5fcca6f" offset="0x000000" /> |
| 24243 | 26389 | </dataarea> |
| r21545 | r21546 | |
| 24262 | 26408 | <feature name="battery" value="BATT CR2032" /> |
| 24263 | 26409 | <feature name="cart_model" value="SHVC-006" /> |
| 24264 | 26410 | <feature name="cart_back_label" value="901121" /> |
| 26411 | ||
| 26412 | <feature name="slot" value="lorom" /> | |
| 24265 | 26413 | <dataarea name="rom" size="1310720"> |
| 24266 | 26414 | <rom name="shvc-in-0 p0.u1" size="1048576" crc="0a8e2c40" sha1="f455ea3ddae1c94e5159af06319355eedcee6306" offset="0x000000" /> |
| 24267 | 26415 | <rom name="shvc-in-0 p1.u2" size="262144" crc="7063b1f7" sha1="243de13b8313551ae41485e0d83c91c8676f97d1" offset="0x100000" /> |
| r21545 | r21546 | |
| 24284 | 26432 | <feature name="lockout" value="" /> |
| 24285 | 26433 | <feature name="cart_model" value="SNSP-006" /> |
| 24286 | 26434 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 26435 | ||
| 26436 | <feature name="slot" value="lorom" /> | |
| 24287 | 26437 | <dataarea name="rom" size="1048576"> |
| 24288 | 26438 | <rom name="spal-acip-0.u1" size="1048576" crc="89cd72b0" sha1="1d89ba2e37af6e666567e2796e25b6314dd34c59" offset="0x000000" /> |
| 24289 | 26439 | </dataarea> |
| r21545 | r21546 | |
| 24302 | 26452 | <feature name="lockout" value="" /> |
| 24303 | 26453 | <feature name="cart_model" value="SNSP-006" /> |
| 24304 | 26454 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 26455 | ||
| 26456 | <feature name="slot" value="lorom" /> | |
| 24305 | 26457 | <dataarea name="rom" size="524288"> |
| 24306 | 26458 | <rom name="spal-j5-0.u1" size="524288" crc="8edb44ad" sha1="d6c2d84843fb34c034f3be4fb9166405970387f6" offset="0x000000" /> |
| 24307 | 26459 | </dataarea> |
| r21545 | r21546 | |
| 24326 | 26478 | <feature name="battery" value="BATT CR2032" /> |
| 24327 | 26479 | <feature name="cart_model" value="SHVC-006" /> |
| 24328 | 26480 | <feature name="cart_back_label" value="920214" /> |
| 26481 | ||
| 26482 | <feature name="slot" value="lorom" /> | |
| 24329 | 26483 | <dataarea name="rom" size="1310720"> |
| 24330 | 26484 | <rom name="shvc-lg-0 p0.u1" size="1048576" crc="2f528111" sha1="3f6bf35e5e0ea8feb8ab7969faf3772c8782f4d3" offset="0x000000" /> |
| 24331 | 26485 | <rom name="shvc-lg-0 p1.u2" size="262144" crc="8929b402" sha1="c783c4756aaa002d794b96e353327361bd6f3019" offset="0x100000" /> |
| r21545 | r21546 | |
| 24354 | 26508 | <feature name="cart_revision" value="A" /> |
| 24355 | 26509 | <feature name="cart_model" value="SHVC-006" /> |
| 24356 | 26510 | <feature name="cart_back_label" value="920214" /> |
| 26511 | ||
| 26512 | <feature name="slot" value="lorom" /> | |
| 24357 | 26513 | <dataarea name="rom" size="1310720"> |
| 24358 | 26514 | <rom name="shvc-lg-1 p0.u1" size="1048576" crc="977f7a3e" sha1="fe56add7a600f87408792b5a258a5d25f5cf96df" offset="0x000000" /> |
| 24359 | 26515 | <rom name="shvc-lg-1 p1.u2" size="262144" crc="8929b402" sha1="c783c4756aaa002d794b96e353327361bd6f3019" offset="0x100000" /> |
| r21545 | r21546 | |
| 24381 | 26537 | <feature name="battery" value="BATT CR2032" /> |
| 24382 | 26538 | <feature name="cart_model" value="SHVC-006" /> |
| 24383 | 26539 | <feature name="cart_back_label" value="920214" /> |
| 26540 | ||
| 26541 | <feature name="slot" value="lorom" /> | |
| 24384 | 26542 | <dataarea name="rom" size="1310720"> |
| 24385 | 26543 | <rom name="shvc-al2j-0 p0.u1" size="1048576" crc="d060dc70" sha1="cc9b02314ab8164d33cb858ca8dbe9718fd0624a" offset="0x000000" /> |
| 24386 | 26544 | <rom name="shvc-al2j-0 p1.u2" size="262144" crc="018cbd87" sha1="e29f59ac56b49c16e9dc6f18cd957b552041187f" offset="0x100000" /> |
| r21545 | r21546 | |
| 24407 | 26565 | <feature name="battery" value="BATT CR2032" /> |
| 24408 | 26566 | <feature name="cart_model" value="SHVC-006" /> |
| 24409 | 26567 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 26568 | ||
| 26569 | <feature name="slot" value="lorom" /> | |
| 24410 | 26570 | <dataarea name="rom" size="2097152"> |
| 24411 | 26571 | <rom name="shvc-a3xj-0.u1" size="2097152" crc="688382b6" sha1="861aaed1a8179d65c6bec306098b7502219a203d" offset="0x000000" /> |
| 24412 | 26572 | </dataarea> |
| r21545 | r21546 | |
| 24433 | 26593 | <feature name="battery" value="BATT CR2032" /> |
| 24434 | 26594 | <feature name="cart_model" value="SHVC-006" /> |
| 24435 | 26595 | <feature name="cart_back_label" value="920214" /> |
| 26596 | ||
| 26597 | <feature name="slot" value="lorom" /> | |
| 24436 | 26598 | <dataarea name="rom" size="1048576"> |
| 24437 | 26599 | <rom name="shvc-kb-0.u1" size="1048576" crc="41f92e6f" sha1="1993cf9d25569fdf6bdb4f1f8229de09eadaeada" offset="0x000000" /> |
| 24438 | 26600 | </dataarea> |
| r21545 | r21546 | |
| 24459 | 26621 | <feature name="battery" value="BATT CR2032" /> |
| 24460 | 26622 | <feature name="cart_model" value="SHVC-006" /> |
| 24461 | 26623 | <feature name="cart_back_label" value="920214" /> |
| 26624 | ||
| 26625 | <feature name="slot" value="lorom" /> | |
| 24462 | 26626 | <dataarea name="rom" size="1572864"> |
| 24463 | 26627 | <rom name="shvc-akbj-0 p0.u1" size="1048576" crc="2a14a607" sha1="0aa0e0b45dc671516558c27760150c68bc25ab87" offset="0x000000" /> |
| 24464 | 26628 | <rom name="shvc-akbj-0 p1.u2" size="524288" crc="e3dad702" sha1="8cd70d3be9078b1d89acd1bb72f03150f5ef46b3" offset="0x100000" /> |
| r21545 | r21546 | |
| 24486 | 26650 | <feature name="battery" value="BATT CR2032" /> |
| 24487 | 26651 | <feature name="cart_model" value="SHVC-006" /> |
| 24488 | 26652 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 26653 | ||
| 26654 | <feature name="slot" value="lorom" /> | |
| 24489 | 26655 | <dataarea name="rom" size="1048576"> |
| 24490 | 26656 | <rom name="shvc-a2yj-0.u1" size="1048576" crc="b269dea3" sha1="6e3448062a83dfe004ac452781deeea1b072df4c" offset="0x000000" /> |
| 24491 | 26657 | </dataarea> |
| r21545 | r21546 | |
| 24512 | 26678 | <feature name="battery" value="BATT CR2032" /> |
| 24513 | 26679 | <feature name="cart_model" value="SHVC-006" /> |
| 24514 | 26680 | <feature name="cart_back_label" value="920214" /> |
| 26681 | ||
| 26682 | <feature name="slot" value="hirom" /> | |
| 24515 | 26683 | <dataarea name="rom" size="1572864"> |
| 24516 | 26684 | <rom name="shvc-hi-0 p0.u1" size="1048576" crc="d6363fab" sha1="be9652ed89ac6998c12eb1b54714891024d9674b" offset="0x000000" /> |
| 24517 | 26685 | <rom name="shvc-hi-0 p1.u2" size="524288" crc="4b9db004" sha1="beca223e873e280a90b302aa8d9a3344fd7a5998" offset="0x100000" /> |
| r21545 | r21546 | |
| 24539 | 26707 | <feature name="battery" value="BATT CR2032" /> |
| 24540 | 26708 | <feature name="cart_model" value="SHVC-006" /> |
| 24541 | 26709 | <feature name="cart_back_label" value="920214" /> |
| 26710 | ||
| 26711 | <feature name="slot" value="hirom" /> | |
| 24542 | 26712 | <dataarea name="rom" size="1572864"> |
| 24543 | 26713 | <rom name="shvc-9h-0 p0.u1" size="1048576" crc="c6b3024a" sha1="3fafdb4c57d855a243c2df9d8cb129ec33fab102" offset="0x000000" /> |
| 24544 | 26714 | <rom name="shvc-9h-0 p1.u2" size="524288" crc="711df2fc" sha1="788e19ee975b888c4c73a2a510f8cf4ed0b39e0f" offset="0x100000" /> |
| r21545 | r21546 | |
| 24562 | 26732 | <feature name="lockout" value="" /> |
| 24563 | 26733 | <feature name="cart_model" value="SHVC-006" /> |
| 24564 | 26734 | <feature name="cart_back_label" value="920214" /> |
| 26735 | ||
| 26736 | <feature name="slot" value="lorom" /> | |
| 24565 | 26737 | <dataarea name="rom" size="524288"> |
| 24566 | 26738 | <rom name="shvc-2e-0.u1" size="524288" crc="49601821" sha1="26ea349aefa5926dc94b493284ece8052a86b7a8" offset="0x000000" /> |
| 24567 | 26739 | </dataarea> |
| r21545 | r21546 | |
| 24582 | 26754 | <feature name="lockout" value="" /> |
| 24583 | 26755 | <feature name="cart_model" value="SHVC-006" /> |
| 24584 | 26756 | <feature name="cart_back_label" value="920214" /> |
| 26757 | ||
| 26758 | <feature name="slot" value="lorom" /> | |
| 24585 | 26759 | <dataarea name="rom" size="524288"> |
| 24586 | 26760 | <rom name="shvc-sm-0.u1" size="524288" crc="3df04e29" sha1="744ae1bbde661c8f3f64c7af5433fb2901b63499" offset="0x000000" /> |
| 24587 | 26761 | </dataarea> |
| r21545 | r21546 | |
| 24605 | 26779 | <feature name="battery" value="BATT CR2032" /> |
| 24606 | 26780 | <feature name="cart_model" value="SHVC-006" /> |
| 24607 | 26781 | <feature name="cart_back_label" value="920214" /> |
| 26782 | ||
| 26783 | <feature name="slot" value="hirom" /> | |
| 24608 | 26784 | <dataarea name="rom" size="524288"> |
| 24609 | 26785 | <rom name="shvc-2a-0.u1" size="524288" crc="1a2a8732" sha1="87f848cdef31555b12684f822ad251848d2eaf0d" offset="0x000000" /> |
| 24610 | 26786 | </dataarea> |
| r21545 | r21546 | |
| 24630 | 26806 | <feature name="battery" value="BATT CR2032" /> |
| 24631 | 26807 | <feature name="cart_model" value="SHVC-006" /> |
| 24632 | 26808 | <feature name="cart_back_label" value="920214" /> |
| 26809 | ||
| 26810 | <feature name="slot" value="lorom" /> | |
| 24633 | 26811 | <dataarea name="rom" size="524288"> |
| 24634 | 26812 | <rom name="shvc-iq-0.u1" size="524288" crc="2a2cccf4" sha1="16a82776877a8bf7832d6c652252e8936c4910bf" offset="0x000000" /> |
| 24635 | 26813 | </dataarea> |
| r21545 | r21546 | |
| 24656 | 26834 | <feature name="cart_revision" value="A" /> |
| 24657 | 26835 | <feature name="cart_model" value="SHVC-006" /> |
| 24658 | 26836 | <feature name="cart_back_label" value="920214" /> |
| 26837 | ||
| 26838 | <feature name="slot" value="lorom" /> | |
| 24659 | 26839 | <dataarea name="rom" size="524288"> |
| 24660 | 26840 | <rom name="shvc-iq-1.u1" size="524288" crc="224f2944" sha1="9f026d0cd10ecdc8a2100b7b417e5365298776ab" offset="0x000000" /> |
| 24661 | 26841 | </dataarea> |
| r21545 | r21546 | |
| 24694 | 26874 | <feature name="cart_model" value="SNSP-006" /> |
| 24695 | 26875 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 24696 | 26876 | --> |
| 26877 | ||
| 26878 | <feature name="slot" value="lorom" /> | |
| 24697 | 26879 | <dataarea name="rom" size="2097152"> |
| 24698 | 26880 | <rom name="spal-4m-0.u1" size="2097152" crc="925ffa69" sha1="cc41f4b229df01a5adf44c63b6c60e766a73c1ad" offset="0x000000" /> |
| 24699 | 26881 | </dataarea> |
| r21545 | r21546 | |
| 24719 | 26901 | <feature name="battery" value="BATT CR2032" /> |
| 24720 | 26902 | <feature name="cart_model" value="SNSP-006" /> |
| 24721 | 26903 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 26904 | ||
| 26905 | <feature name="slot" value="lorom" /> | |
| 24722 | 26906 | <dataarea name="rom" size="2097152"> |
| 24723 | 26907 | <rom name="spal-4m-0 p0.u1" size="1048576" crc="f9052663" sha1="0af248760877094129cf11fa05ada7eb6eaddec9" offset="0x000000" /> |
| 24724 | 26908 | <rom name="spal-4m-0 p1.u2" size="1048576" crc="55654a35" sha1="c3f0c11fed72c0d39e00fb39fcac3c5921e525f5" offset="0x100000" /> |
| r21545 | r21546 | |
| 24760 | 26944 | <feature name="cart_model" value="SNS-006" /> |
| 24761 | 26945 | <feature name="cart_back_label" value="M/SNS-USA/CAN-1" /> |
| 24762 | 26946 | --> |
| 26947 | ||
| 26948 | <feature name="slot" value="lorom" /> | |
| 24763 | 26949 | <dataarea name="rom" size="2097152"> |
| 24764 | 26950 | <rom name="sns-4m-0.u1" size="2097152" crc="925637c7" sha1="c05817c5b7df2fbfe631563e0b37237156a8f6b6" offset="0x000000" /> |
| 24765 | 26951 | </dataarea> |
| r21545 | r21546 | |
| 24786 | 26972 | <feature name="battery" value="BATT CR2032" /> |
| 24787 | 26973 | <feature name="cart_model" value="SNS-006" /> |
| 24788 | 26974 | <feature name="cart_back_label" value="" /> |
| 26975 | ||
| 26976 | <feature name="slot" value="lorom" /> | |
| 24789 | 26977 | <dataarea name="rom" size="2097152"> |
| 24790 | 26978 | <rom name="sns-4m-0 p0.u1" size="1048576" crc="c6ae4263" sha1="29dc818673c9eb7ca3739428c126061ffa222a33" offset="0x000000" /> |
| 24791 | 26979 | <rom name="sns-4m-0 p1.u2" size="1048576" crc="10c6c521" sha1="74b60700aa424e6eec0a8bd200b2ac332e55dd19" offset="0x100000" /> |
| r21545 | r21546 | |
| 24810 | 26998 | <feature name="battery" value="BATT CR2032" /> |
| 24811 | 26999 | <feature name="cart_model" value="SNSP-006" /> |
| 24812 | 27000 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 27001 | ||
| 27002 | <feature name="slot" value="lorom" /> | |
| 24813 | 27003 | <dataarea name="rom" size="3145728"> |
| 24814 | 27004 | <rom name="spal-5m-0.u1" size="3145728" crc="8119ac3d" sha1="472b6bf7727ca09675ff84450abccddea72fb11b" offset="0x000000" /> |
| 24815 | 27005 | </dataarea> |
| r21545 | r21546 | |
| 24837 | 27027 | <feature name="battery" value="BATT CR2032" /> |
| 24838 | 27028 | <feature name="cart_model" value="SHVC-006" /> |
| 24839 | 27029 | <feature name="cart_back_label" value="920214" /> |
| 27030 | ||
| 27031 | <feature name="slot" value="lorom" /> | |
| 24840 | 27032 | <dataarea name="rom" size="2097152"> |
| 24841 | 27033 | <rom name="shvc-4m-0.u1" size="2097152" crc="232bb5b8" sha1="bee927b5ffe277ebd537b0872d2424eeac37b8e3" offset="0x000000" /> |
| 24842 | 27034 | </dataarea> |
| r21545 | r21546 | |
| 24863 | 27055 | <feature name="battery" value="BATT CR2032" /> |
| 24864 | 27056 | <feature name="cart_model" value="SNSP-006" /> |
| 24865 | 27057 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 27058 | ||
| 27059 | <feature name="slot" value="hirom_dsp" /> | |
| 24866 | 27060 | <dataarea name="rom" size="524288"> |
| 24867 | 27061 | <rom name="spal-mk-0.u1" size="524288" crc="56410e5e" sha1="27d9b4f30d39af75075691344b7bdeedbd32ac19" offset="0x000000" /> |
| 24868 | 27062 | </dataarea> |
| 27063 | <dataarea name="addon" size="10240"> | |
| 27064 | <rom name="dsp1.u3" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 27065 | </dataarea> | |
| 24869 | 27066 | <dataarea name="nvram" size="2048"> |
| 24870 | 27067 | </dataarea> |
| 24871 | 27068 | </part> |
| r21545 | r21546 | |
| 24890 | 27087 | <feature name="cart_revision" value="A" /> |
| 24891 | 27088 | <feature name="cart_model" value="SNSP-006" /> |
| 24892 | 27089 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 27090 | ||
| 27091 | <feature name="slot" value="hirom_dsp" /> | |
| 24893 | 27092 | <dataarea name="rom" size="524288"> |
| 24894 | 27093 | <rom name="spal-mk-0.u1" size="524288" crc="56410e5e" sha1="27d9b4f30d39af75075691344b7bdeedbd32ac19" offset="0x000000" /> |
| 24895 | 27094 | </dataarea> |
| 27095 | <dataarea name="addon" size="10240"> | |
| 27096 | <rom name="dsp1b.u3" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 27097 | </dataarea> | |
| 24896 | 27098 | <dataarea name="nvram" size="2048"> |
| 24897 | 27099 | </dataarea> |
| 24898 | 27100 | </part> |
| r21545 | r21546 | |
| 24918 | 27120 | <feature name="battery" value="BATT CR2032" /> |
| 24919 | 27121 | <feature name="cart_model" value="SHVC-006" /> |
| 24920 | 27122 | <feature name="cart_back_label" value="920214" /> |
| 27123 | ||
| 27124 | <feature name="slot" value="hirom_dsp" /> | |
| 24921 | 27125 | <dataarea name="rom" size="524288"> |
| 24922 | 27126 | <rom name="shvc-mk-0.u1" size="524288" crc="c8002453" sha1="cbb853bf911255c1d8eb27cd34fc7855a0dda218" offset="0x000000" /> |
| 24923 | 27127 | </dataarea> |
| 27128 | <dataarea name="addon" size="10240"> | |
| 27129 | <rom name="dsp1.u3" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 27130 | </dataarea> | |
| 24924 | 27131 | <dataarea name="nvram" size="2048"> |
| 24925 | 27132 | </dataarea> |
| 24926 | 27133 | </part> |
| r21545 | r21546 | |
| 24947 | 27154 | <feature name="cart_revision" value="A" /> |
| 24948 | 27155 | <feature name="cart_model" value="SHVC-006" /> |
| 24949 | 27156 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 27157 | ||
| 27158 | <feature name="slot" value="hirom_dsp" /> | |
| 24950 | 27159 | <dataarea name="rom" size="524288"> |
| 24951 | 27160 | <rom name="shvc-mk-0.u1" size="524288" crc="c8002453" sha1="cbb853bf911255c1d8eb27cd34fc7855a0dda218" offset="0x000000" /> |
| 24952 | 27161 | </dataarea> |
| 27162 | <dataarea name="addon" size="10240"> | |
| 27163 | <rom name="dsp1b.u3" size="10240" crc="453557e0" sha1="3a218b0e4572a8eba6d0121b17fdac9529609220" offset="0x000000" /> | |
| 27164 | </dataarea> | |
| 24953 | 27165 | <dataarea name="nvram" size="2048"> |
| 24954 | 27166 | </dataarea> |
| 24955 | 27167 | </part> |
| r21545 | r21546 | |
| 24974 | 27186 | <feature name="battery" value="BATT CR2032" /> |
| 24975 | 27187 | <feature name="cart_model" value="SNS-006" /> |
| 24976 | 27188 | <feature name="cart_back_label" value="" /> |
| 27189 | ||
| 27190 | <feature name="slot" value="hirom_dsp" /> | |
| 24977 | 27191 | <dataarea name="rom" size="524288"> |
| 24978 | 27192 | <rom name="sns-mk-0.u1" size="524288" crc="cd80db86" sha1="47e103d8398cf5b7cbb42b95df3a3c270691163b" offset="0x000000" /> |
| 24979 | 27193 | </dataarea> |
| 27194 | <dataarea name="addon" size="10240"> | |
| 27195 | <rom name="dsp1.u3" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 27196 | </dataarea> | |
| 24980 | 27197 | <dataarea name="nvram" size="2048"> |
| 24981 | 27198 | </dataarea> |
| 24982 | 27199 | </part> |
| r21545 | r21546 | |
| 24999 | 27216 | <feature name="battery" value="BATT CR2032" /> |
| 25000 | 27217 | <feature name="cart_model" value="SHVC-006" /> |
| 25001 | 27218 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 27219 | ||
| 27220 | <feature name="slot" value="lorom_sa1" /> | |
| 25002 | 27221 | <dataarea name="rom" size="4194304"> |
| 25003 | 27222 | <rom name="shvc-arwj-0.u1" size="4194304" crc="5527071e" sha1="a9cd97041c4f8acf135d1ffb0a172748b5b976de" offset="0x000000" /> |
| 25004 | 27223 | </dataarea> |
| r21545 | r21546 | |
| 25023 | 27242 | <feature name="battery" value="BATT CR2032" /> |
| 25024 | 27243 | <feature name="cart_model" value="SNS-006" /> |
| 25025 | 27244 | <feature name="cart_back_label" value="" /> |
| 27245 | ||
| 27246 | <feature name="slot" value="lorom_sa1" /> | |
| 25026 | 27247 | <dataarea name="rom" size="4194304"> |
| 25027 | 27248 | <rom name="sns-arwe-0.u1" size="4194304" crc="1b8a0625" sha1="a4f7539054c359fe3f360b0e6b72e394439fe9df" offset="0x000000" /> |
| 25028 | 27249 | </dataarea> |
| r21545 | r21546 | |
| 25046 | 27267 | <feature name="battery" value="BATT CR2032" /> |
| 25047 | 27268 | <feature name="cart_model" value="SNSP-006" /> |
| 25048 | 27269 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 27270 | ||
| 27271 | <feature name="slot" value="lorom" /> | |
| 25049 | 27272 | <dataarea name="rom" size="524288"> |
| 25050 | 27273 | <rom name="spal-mw-0.u1" size="524288" crc="3c41070f" sha1="56265120a74b55260ff7cacc00da1f21cbcb64f4" offset="0x000000" /> |
| 25051 | 27274 | </dataarea> |
| r21545 | r21546 | |
| 25070 | 27293 | <feature name="cart_revision" value="A" /> |
| 25071 | 27294 | <feature name="cart_model" value="SNSP-006" /> |
| 25072 | 27295 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 27296 | ||
| 27297 | <feature name="slot" value="lorom" /> | |
| 25073 | 27298 | <dataarea name="rom" size="524288"> |
| 25074 | 27299 | <rom name="spal-mw-1.u1" size="524288" crc="b47f5f20" sha1="46bf36be1c3a2ce9de7581323370bd2d891ad5a1" offset="0x000000" /> |
| 25075 | 27300 | </dataarea> |
| r21545 | r21546 | |
| 25108 | 27333 | <feature name="cart_model" value="SHVC-006" /> |
| 25109 | 27334 | <feature name="cart_back_label" value="901121" /> |
| 25110 | 27335 | --> |
| 27336 | ||
| 27337 | <feature name="slot" value="lorom" /> | |
| 25111 | 27338 | <dataarea name="rom" size="524288"> |
| 25112 | 27339 | <rom name="shvc-mw-0.u1" size="524288" crc="0ec0ddac" sha1="f977afabf24ed269d86366209a460450bbc37e76" offset="0x000000" /> |
| 25113 | 27340 | </dataarea> |
| r21545 | r21546 | |
| 25147 | 27374 | --> |
| 25148 | 27375 | <feature name="cart_model" value="SNS-006" /> |
| 25149 | 27376 | <feature name="cart_back_label" value="SNS-USA, SNS-USA/CAN-1" /> |
| 27377 | ||
| 27378 | <feature name="slot" value="lorom" /> | |
| 25150 | 27379 | <dataarea name="rom" size="524288"> |
| 25151 | 27380 | <rom name="sns-mw-0.u1" size="524288" crc="b19ed489" sha1="6b47bb75d16514b6a476aa0c73a683a2a4c18765" offset="0x000000" /> |
| 25152 | 27381 | </dataarea> |
| r21545 | r21546 | |
| 25174 | 27403 | <feature name="battery" value="BATT CR2032" /> |
| 25175 | 27404 | <feature name="cart_model" value="SNSP-006" /> |
| 25176 | 27405 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 27406 | ||
| 27407 | <feature name="slot" value="lorom_sfx" /> | |
| 25177 | 27408 | <dataarea name="rom" size="2097152"> |
| 25178 | 27409 | <rom name="spal-yi-0.u1" size="2097152" crc="857980b2" sha1="512e0b2ab74081fda5ff5459162948d28226fc0b" offset="0x000000" /> |
| 25179 | 27410 | </dataarea> |
| r21545 | r21546 | |
| 25202 | 27433 | <feature name="battery" value="BATT CR2032" /> |
| 25203 | 27434 | <feature name="cart_model" value="SNS-006, SNSN-006" /> |
| 25204 | 27435 | <feature name="cart_back_label" value="SNS-USA/CAN-1, SNSN-HKG" /> |
| 27436 | ||
| 27437 | <feature name="slot" value="lorom_sfx" /> | |
| 25205 | 27438 | <dataarea name="rom" size="2097152"> |
| 25206 | 27439 | <rom name="sns-y1-1.u1" size="2097152" crc="cf98ddaa" sha1="34612a93741f156d6e497462ab7f253cb8a959a0" offset="0x000000" /> |
| 25207 | 27440 | </dataarea> |
| r21545 | r21546 | |
| 25231 | 27464 | <feature name="battery" value="BATT CR2032" /> |
| 25232 | 27465 | <feature name="cart_model" value="SHVC-006" /> |
| 25233 | 27466 | <feature name="cart_back_label" value="920214" /> |
| 27467 | ||
| 27468 | <feature name="slot" value="lorom_sfx" /> | |
| 25234 | 27469 | <dataarea name="rom" size="2097152"> |
| 25235 | 27470 | <rom name="shvc-yi-0.u1" size="2097152" crc="343e0dfb" sha1="abacca9b1be88b082e7dd8a50e809aef6ab4d0ef" offset="0x000000" /> |
| 25236 | 27471 | </dataarea> |
| r21545 | r21546 | |
| 25255 | 27490 | <feature name="battery" value="BATT CR2032" /> |
| 25256 | 27491 | <feature name="cart_model" value="SNSP-006" /> |
| 25257 | 27492 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 27493 | ||
| 27494 | <feature name="slot" value="lorom" /> | |
| 25258 | 27495 | <dataarea name="rom" size="3145728"> |
| 25259 | 27496 | <rom name="spal-ri-0 p0.u1" size="2097152" crc="696b0bae" sha1="f331c55312f228aae679101ab64342b671033f53" offset="0x000000" /> |
| 25260 | 27497 | <rom name="spal-ri-0 p3.u2" size="1048576" crc="854a9f45" sha1="3d8fa28830b393f2001f095e05d08f79f8797182" offset="0x200000" /> |
| r21545 | r21546 | |
| 25284 | 27521 | <feature name="battery" value="BATT CR2032" /> |
| 25285 | 27522 | <feature name="cart_model" value="SHVC-006" /> |
| 25286 | 27523 | <feature name="cart_back_label" value="920214" /> |
| 27524 | ||
| 27525 | <feature name="slot" value="lorom" /> | |
| 25287 | 27526 | <dataarea name="rom" size="3145728"> |
| 25288 | 27527 | <rom name="shvc-ri-0 p1.u1" size="1048576" crc="4b2dd591" sha1="f5b9ae30295d0a3cdbff72b952d6ca1a5c6e482e" offset="0x000000" /> |
| 25289 | 27528 | <rom name="shvc-ri-0 p2.u2" size="1048576" crc="02c26fc2" sha1="a44746ef476e6b3c3c2314540143fc215a9579f7" offset="0x100000" /> |
| r21545 | r21546 | |
| 25312 | 27551 | <feature name="battery" value="BATT CR2032" /> |
| 25313 | 27552 | <feature name="cart_model" value="SNS-006, SHVC-006" /> |
| 25314 | 27553 | <feature name="cart_back_label" value="920214 (JP)" /> |
| 27554 | ||
| 27555 | <feature name="slot" value="lorom" /> | |
| 25315 | 27556 | <dataarea name="rom" size="3145728"> |
| 25316 | 27557 | <!-- Notes: Both US and JP cartridges have the SHVC prefix on their maskrom chips --> |
| 25317 | 27558 | <rom name="shvc-ri-0 p0.u1" size="2097152" crc="307bc318" sha1="3872f7f576aa847e3e9903f0904a4e0d15137ff0" offset="0x000000" /> |
| r21545 | r21546 | |
| 25348 | 27589 | <feature name="battery" value="BATT CR2032" /> |
| 25349 | 27590 | <feature name="cart_model" value="SHVC-006" /> |
| 25350 | 27591 | <feature name="cart_back_label" value="920214" /> |
| 27592 | ||
| 27593 | <feature name="slot" value="lorom" /> | |
| 25351 | 27594 | <dataarea name="rom" size="1048576"> |
| 25352 | 27595 | <rom name="shvc-h4-0.u1" size="1048576" crc="277ad4a1" sha1="83d5f3e3e4d0d224549269db4556ff7189203faf" offset="0x000000" /> |
| 25353 | 27596 | </dataarea> |
| r21545 | r21546 | |
| 25373 | 27616 | <feature name="battery" value="BATT CR2032" /> |
| 25374 | 27617 | <feature name="cart_model" value="SHVC-006" /> |
| 25375 | 27618 | <feature name="cart_back_label" value="920214" /> |
| 27619 | ||
| 27620 | <feature name="slot" value="hirom" /> | |
| 25376 | 27621 | <dataarea name="rom" size="1048576"> |
| 25377 | 27622 | <rom name="shvc-amdj-0.u1" size="1048576" crc="f787cb9a" sha1="cb86306630a9ae60428c7e7a09f5e06c172319de" offset="0x000000" /> |
| 25378 | 27623 | </dataarea> |
| r21545 | r21546 | |
| 25399 | 27644 | <feature name="cart_revision" value="A" /> |
| 25400 | 27645 | <feature name="cart_model" value="SHVC-006" /> |
| 25401 | 27646 | <feature name="cart_back_label" value="920214" /> |
| 27647 | ||
| 27648 | <feature name="slot" value="hirom" /> | |
| 25402 | 27649 | <dataarea name="rom" size="1048576"> |
| 25403 | 27650 | <rom name="shvc-amdj-1.u1" size="1048576" crc="8587eb6e" sha1="5442cdb949f60e002c6aaa60a7c916eb1290a7c9" offset="0x000000" /> |
| 25404 | 27651 | </dataarea> |
| r21545 | r21546 | |
| 25425 | 27672 | <feature name="cart_revision" value="B" /> |
| 25426 | 27673 | <feature name="cart_model" value="SHVC-006" /> |
| 25427 | 27674 | <feature name="cart_back_label" value="920214" /> |
| 27675 | ||
| 27676 | <feature name="slot" value="hirom" /> | |
| 25428 | 27677 | <dataarea name="rom" size="1048576"> |
| 25429 | 27678 | <rom name="shvc-amdj-2.u1" size="1048576" crc="9b9f3f71" sha1="bd0bf4aad55d00fa1e52bd8a1cb649c7a026657b" offset="0x000000" /> |
| 25430 | 27679 | </dataarea> |
| r21545 | r21546 | |
| 25450 | 27699 | <feature name="battery" value="BATT CR2032" /> |
| 25451 | 27700 | <feature name="cart_model" value="SHVC-006" /> |
| 25452 | 27701 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 27702 | ||
| 27703 | <feature name="slot" value="hirom" /> | |
| 25453 | 27704 | <dataarea name="rom" size="2097152"> |
| 25454 | 27705 | <rom name="shvc-ah6j-0.u1" size="2097152" crc="1c0c3d81" sha1="f4b17de2d326707dda139d3507c50538da04edda" offset="0x000000" /> |
| 25455 | 27706 | </dataarea> |
| r21545 | r21546 | |
| 25476 | 27727 | <feature name="battery" value="BATT CR2032" /> |
| 25477 | 27728 | <feature name="cart_model" value="SHVC-006" /> |
| 25478 | 27729 | <feature name="cart_back_label" value="920214" /> |
| 27730 | ||
| 27731 | <feature name="slot" value="lorom" /> | |
| 25479 | 27732 | <dataarea name="rom" size="1048576"> |
| 25480 | 27733 | <rom name="shvc-xd-0.u1" size="1048576" crc="86aa8a10" sha1="b6cbed12c3cdeff1e85023bf9cdef47cd70d7195" offset="0x000000" /> |
| 25481 | 27734 | </dataarea> |
| r21545 | r21546 | |
| 25501 | 27754 | <feature name="battery" value="BATT CR2032" /> |
| 25502 | 27755 | <feature name="cart_model" value="SHVC-006" /> |
| 25503 | 27756 | <feature name="cart_back_label" value="920214" /> |
| 27757 | ||
| 27758 | <feature name="slot" value="lorom" /> | |
| 25504 | 27759 | <dataarea name="rom" size="1048576"> |
| 25505 | 27760 | <rom name="shvc-anqj-0.u1" size="1048576" crc="ba1dba22" sha1="00b56744af9b5147ff38e72f12206ee0ea06ed67" offset="0x000000" /> |
| 25506 | 27761 | </dataarea> |
| r21545 | r21546 | |
| 25526 | 27781 | <feature name="battery" value="BATT CR2032" /> |
| 25527 | 27782 | <feature name="cart_model" value="SHVC-006" /> |
| 25528 | 27783 | <feature name="cart_back_label" value="901121, 920214" /> |
| 27784 | ||
| 27785 | <feature name="slot" value="lorom" /> | |
| 25529 | 27786 | <dataarea name="rom" size="1048576"> |
| 25530 | 27787 | <rom name="shvc-nm-0.u1" size="1048576" crc="d36aa90c" sha1="27a59c94b24268a976a8ab090f625b4dcb48bdc3" offset="0x000000" /> |
| 25531 | 27788 | </dataarea> |
| r21545 | r21546 | |
| 25548 | 27805 | <feature name="lockout" value="" /> |
| 25549 | 27806 | <feature name="cart_model" value="SHVC-006" /> |
| 25550 | 27807 | <feature name="cart_back_label" value="920214" /> |
| 27808 | ||
| 27809 | <feature name="slot" value="lorom" /> | |
| 25551 | 27810 | <dataarea name="rom" size="2097152"> |
| 25552 | 27811 | <rom name="shvc-2n-0.u1" size="2097152" crc="36f6378f" sha1="feb921593027dab4e83fe6d1d93ab479fb5c0695" offset="0x000000" /> |
| 25553 | 27812 | </dataarea> |
| 25554 | 27813 | </part> |
| 25555 | 27814 | </software> |
| 25556 | 27815 | |
| 25557 | <software name="nobubufu1" cloneof="nobu | |
| 27816 | <software name="nobubufu1" cloneof="nobuldrk"> | |
| 25558 | 27817 | <description>Super Nobunaga no Yabou - Bushou Fuuunroku (Jpn)</description> |
| 25559 | 27818 | <year>1991</year> |
| 25560 | 27819 | <publisher>Koei</publisher> |
| r21545 | r21546 | |
| 25571 | 27830 | <feature name="battery" value="BATT CR2032" /> |
| 25572 | 27831 | <feature name="cart_model" value="SHVC-006" /> |
| 25573 | 27832 | <feature name="cart_back_label" value="901121" /> |
| 27833 | ||
| 27834 | <feature name="slot" value="lorom" /> | |
| 25574 | 27835 | <dataarea name="rom" size="1048576"> |
| 25575 | 27836 | <rom name="shvc-iz-0.u1" size="1048576" crc="686f5a90" sha1="bd8fce89eb6759a3430f4db057954c8b2c5c6842" offset="0x000000" /> |
| 25576 | 27837 | </dataarea> |
| r21545 | r21546 | |
| 25579 | 27840 | </part> |
| 25580 | 27841 | </software> |
| 25581 | 27842 | |
| 25582 | <software name="nobuzenk"> | |
| 27843 | <software name="nobuzenk" cloneof="nobuamb"> | |
| 25583 | 27844 | <description>Super Nobunaga no Yabou - Zenkoku Ban (Jpn)</description> |
| 25584 | 27845 | <year>1993</year> |
| 25585 | 27846 | <publisher>Koei</publisher> |
| r21545 | r21546 | |
| 25596 | 27857 | <feature name="battery" value="BATT CR2032" /> |
| 25597 | 27858 | <feature name="cart_model" value="SHVC-006" /> |
| 25598 | 27859 | <feature name="cart_back_label" value="920214" /> |
| 27860 | ||
| 27861 | <feature name="slot" value="hirom" /> | |
| 25599 | 27862 | <dataarea name="rom" size="524288"> |
| 25600 | 27863 | <rom name="shvc-nz-0.u1" size="524288" crc="a644416f" sha1="92b62361d59aef006859fa574f27c8f1de523f1c" offset="0x000000" /> |
| 25601 | 27864 | </dataarea> |
| r21545 | r21546 | |
| 25617 | 27880 | <feature name="lockout" value="D411 C144 07 BA" /> |
| 25618 | 27881 | <feature name="cart_model" value="SNS-006" /> |
| 25619 | 27882 | <feature name="cart_back_label" value="" /> |
| 27883 | ||
| 27884 | <feature name="slot" value="lorom" /> | |
| 25620 | 27885 | <dataarea name="rom" size="524288"> |
| 25621 | 27886 | <rom name="sns-or-0.u1" size="524288" crc="fe263383" sha1="1784c53c1b60047337109a5a9bf6a638d77b4219" offset="0x000000" /> |
| 25622 | 27887 | </dataarea> |
| r21545 | r21546 | |
| 25640 | 27905 | <feature name="battery" value="BATT CR2032" /> |
| 25641 | 27906 | <feature name="cart_model" value="SHVC-006" /> |
| 25642 | 27907 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 27908 | ||
| 27909 | <feature name="slot" value="lorom" /> | |
| 25643 | 27910 | <dataarea name="rom" size="1048576"> |
| 25644 | 27911 | <rom name="shvc-abgj-0.u1" size="1048576" crc="4998a9d6" sha1="a29958db07c3bf3f9731da75844a0835f21b34e7" offset="0x000000" /> |
| 25645 | 27912 | </dataarea> |
| r21545 | r21546 | |
| 25663 | 27930 | <feature name="lockout" value="" /> |
| 25664 | 27931 | <feature name="cart_model" value="SHVC-006" /> |
| 25665 | 27932 | <feature name="cart_back_label" value="920214" /> |
| 27933 | ||
| 27934 | <feature name="slot" value="lorom" /> | |
| 25666 | 27935 | <dataarea name="rom" size="1048576"> |
| 25667 | 27936 | <rom name="shvc-ok-0.u1" size="1048576" crc="091617bb" sha1="077e9a7a04bc88f39157e08806ae6e048fcf2cd2" offset="0x000000" /> |
| 25668 | 27937 | </dataarea> |
| r21545 | r21546 | |
| 25686 | 27955 | <feature name="battery" value="BATT CR2032" /> |
| 25687 | 27956 | <feature name="cart_model" value="SHVC-006" /> |
| 25688 | 27957 | <feature name="cart_back_label" value="920214" /> |
| 27958 | ||
| 27959 | <feature name="slot" value="lorom" /> | |
| 25689 | 27960 | <dataarea name="rom" size="1048576"> |
| 25690 | 27961 | <rom name="shvc-qu-0.u1" size="1048576" crc="2051315b" sha1="fcb3ad9d6a41db54bdfe8806ab5b776cf098ab2d" offset="0x000000" /> |
| 25691 | 27962 | </dataarea> |
| r21545 | r21546 | |
| 25708 | 27979 | <feature name="lockout" value="" /> |
| 25709 | 27980 | <feature name="cart_model" value="SHVC-006" /> |
| 25710 | 27981 | <feature name="cart_back_label" value="920214" /> |
| 27982 | ||
| 27983 | <feature name="slot" value="lorom" /> | |
| 25711 | 27984 | <dataarea name="rom" size="524288"> |
| 25712 | 27985 | <rom name="shvc-adxj-0.u1" size="524288" crc="ed959cc9" sha1="68ca21f2e49916ce72ec58ddeb9cb89b63608e27" offset="0x000000" /> |
| 25713 | 27986 | </dataarea> |
| r21545 | r21546 | |
| 25728 | 28001 | <feature name="lockout" value="" /> |
| 25729 | 28002 | <feature name="cart_model" value="SHVC-006" /> |
| 25730 | 28003 | <feature name="cart_back_label" value="920214" /> |
| 28004 | ||
| 28005 | <feature name="slot" value="lorom" /> | |
| 25731 | 28006 | <dataarea name="rom" size="1048576"> |
| 25732 | 28007 | <rom name="shvc-3p-0.u1" size="1048576" crc="4f92f83c" sha1="59a8052068c23346731bde2eb160d31c77ac2b92" offset="0x000000" /> |
| 25733 | 28008 | </dataarea> |
| r21545 | r21546 | |
| 25749 | 28024 | <feature name="cart_revision" value="A" /> |
| 25750 | 28025 | <feature name="cart_model" value="SNS-006" /> |
| 25751 | 28026 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28027 | ||
| 28028 | <feature name="slot" value="lorom" /> | |
| 25752 | 28029 | <dataarea name="rom" size="1048576"> |
| 25753 | 28030 | <rom name="sns-xp-1.u1" size="1048576" crc="008463a0" sha1="ad9b9e8bf655ca24bc434080814e9f462d97c238" offset="0x000000" /> |
| 25754 | 28031 | </dataarea> |
| r21545 | r21546 | |
| 25773 | 28050 | <feature name="battery" value="BATT CR2032" /> |
| 25774 | 28051 | <feature name="cart_model" value="SHVC-006" /> |
| 25775 | 28052 | <feature name="cart_back_label" value="920214" /> |
| 28053 | ||
| 28054 | <feature name="slot" value="hirom" /> | |
| 25776 | 28055 | <dataarea name="rom" size="1572864"> |
| 25777 | 28056 | <rom name="shvc-m3-0 p0.u1" size="1048576" crc="a4a90415" sha1="f3c53ee15e6d2a033a53ebcdf73e7e0db6adfe37" offset="0x000000" /> |
| 25778 | 28057 | <rom name="shvc-m3-0 p1.u2" size="524288" crc="c9b894a4" sha1="f5a67af55c6eb4926df3c8c0a58bbcb2000fecf6" offset="0x100000" /> |
| r21545 | r21546 | |
| 25799 | 28078 | <feature name="battery" value="BATT CR2032" /> |
| 25800 | 28079 | <feature name="cart_model" value="SHVC-006" /> |
| 25801 | 28080 | <feature name="cart_back_label" value="920214" /> |
| 28081 | ||
| 28082 | <feature name="slot" value="hirom" /> | |
| 25802 | 28083 | <dataarea name="rom" size="2097152"> |
| 25803 | 28084 | <rom name="shvc-z4-0.u1" size="2097152" crc="e5539e76" sha1="03e11ff31db618462e0ce43b9a863957db78dca0" offset="0x000000" /> |
| 25804 | 28085 | </dataarea> |
| r21545 | r21546 | |
| 25825 | 28106 | <feature name="battery" value="BATT CR2032" /> |
| 25826 | 28107 | <feature name="cart_model" value="SHVC-006" /> |
| 25827 | 28108 | <feature name="cart_back_label" value="920214" /> |
| 28109 | ||
| 28110 | <feature name="slot" value="hirom" /> | |
| 25828 | 28111 | <dataarea name="rom" size="2621440"> |
| 25829 | 28112 | <rom name="shvc-ap9j-0 p0.u1" size="2097152" crc="39ea9228" sha1="0c49b2020a55f23604fbc6e6901b61cf2cf13283" offset="0x000000" /> |
| 25830 | 28113 | <rom name="shvc-ap9j-0 p3.u2" size="524288" crc="9b75aa16" sha1="4c000600b9ddb38b27540fbbee4d9e4b95707477" offset="0x200000" /> |
| r21545 | r21546 | |
| 25854 | 28137 | <feature name="battery" value="BATT CR2032" /> |
| 25855 | 28138 | <feature name="cart_model" value="SHVC-006" /> |
| 25856 | 28139 | <feature name="cart_back_label" value="" /> |
| 28140 | ||
| 28141 | <feature name="slot" value="hirom_spc7110" /> | |
| 25857 | 28142 | <dataarea name="rom" size="2097152"> |
| 25858 | 28143 | <rom name="shvc-ae7j-0 p.u1" size="1048576" crc="d55e270f" sha1="5158c68f8b8cf903d9efa64227cedcb5fe255dfa" offset="0x000000" /> |
| 25859 | 28144 | <rom name="shvc-ae7j-0 d.u2" size="1048576" crc="e8a36e80" sha1="473bdc4f3ae4e521dd8c89f9c8846bc98e762aa4" offset="0x100000" /> |
| r21545 | r21546 | |
| 25875 | 28160 | <feature name="lockout" value="" /> |
| 25876 | 28161 | <feature name="cart_model" value="SNSP-006" /> |
| 25877 | 28162 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 28163 | ||
| 28164 | <feature name="slot" value="lorom" /> | |
| 25878 | 28165 | <dataarea name="rom" size="1048576"> |
| 25879 | 28166 | <rom name="spal-cs-0.u1" size="1048576" crc="420bd975" sha1="a0f16ed356cf99de2e1b72fb289c9c7fce8f2ab3" offset="0x000000" /> |
| 25880 | 28167 | </dataarea> |
| r21545 | r21546 | |
| 25895 | 28182 | <feature name="lockout" value="" /> |
| 25896 | 28183 | <feature name="cart_model" value="SHVC-006" /> |
| 25897 | 28184 | <feature name="cart_back_label" value="901121" /> |
| 28185 | ||
| 28186 | <feature name="slot" value="lorom" /> | |
| 25898 | 28187 | <dataarea name="rom" size="1048576"> |
| 25899 | 28188 | <rom name="shvc-sp-0.u1" size="1048576" crc="ea0bfa66" sha1="bfd3bc23d9bf143ceaf859e830067fd49ea17b0a" offset="0x000000" /> |
| 25900 | 28189 | </dataarea> |
| r21545 | r21546 | |
| 25916 | 28205 | <feature name="battery" value="BATT CR2032" /> |
| 25917 | 28206 | <feature name="cart_model" value="SNSP-006" /> |
| 25918 | 28207 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 28208 | ||
| 28209 | <feature name="slot" value="lorom" /> | |
| 25919 | 28210 | <dataarea name="rom" size="2097152"> |
| 25920 | 28211 | <rom name="spal-4q-0.u1" size="2097152" crc="c6906f5f" sha1="658c4a3dd0b62577781df2e05a28c43806b6dbc5" offset="0x000000" /> |
| 25921 | 28212 | </dataarea> |
| r21545 | r21546 | |
| 25940 | 28231 | <feature name="lockout" value="" /> |
| 25941 | 28232 | <feature name="cart_model" value="SHVC-006" /> |
| 25942 | 28233 | <feature name="cart_back_label" value="920214" /> |
| 28234 | ||
| 28235 | <feature name="slot" value="lorom" /> | |
| 25943 | 28236 | <dataarea name="rom" size="1048576"> |
| 25944 | 28237 | <rom name="shvc-pq-0 p0.u1" size="524288" crc="b31af4d0" sha1="6589d2090f3b4d09fba4212d13c749fa19315ba9" offset="0x000000" /> |
| 25945 | 28238 | <rom name="shvc-pq-0 p1.u2" size="524288" crc="0551bf43" sha1="e5db5f145c45173be15a4827a5136a4f34172014" offset="0x080000" /> |
| r21545 | r21546 | |
| 25962 | 28255 | <feature name="cart_revision" value="A" /> |
| 25963 | 28256 | <feature name="cart_model" value="SHVC-006" /> |
| 25964 | 28257 | <feature name="cart_back_label" value="920214" /> |
| 28258 | ||
| 28259 | <feature name="slot" value="lorom" /> | |
| 25965 | 28260 | <dataarea name="rom" size="1048576"> |
| 25966 | 28261 | <rom name="shvc-pq-1.u1" size="1048576" crc="9b386875" sha1="ac5305fc7919f62f5e21712c290c119a88e0ac2e" offset="0x000000" /> |
| 25967 | 28262 | </dataarea> |
| r21545 | r21546 | |
| 25983 | 28278 | <feature name="cart_revision" value="B" /> |
| 25984 | 28279 | <feature name="cart_model" value="SHVC-006" /> |
| 25985 | 28280 | <feature name="cart_back_label" value="920214" /> |
| 28281 | ||
| 28282 | <feature name="slot" value="lorom" /> | |
| 25986 | 28283 | <dataarea name="rom" size="1048576"> |
| 25987 | 28284 | <rom name="shvc-pq-2.u1" size="1048576" crc="3addba0b" sha1="a3b87d1f5cac33c61cb92dfcfea59690249f8b81" offset="0x000000" /> |
| 25988 | 28285 | </dataarea> |
| r21545 | r21546 | |
| 26001 | 28298 | <feature name="lockout" value="" /> |
| 26002 | 28299 | <feature name="cart_model" value="SNSP-006" /> |
| 26003 | 28300 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 28301 | ||
| 28302 | <feature name="slot" value="lorom" /> | |
| 26004 | 28303 | <dataarea name="rom" size="1048576"> |
| 26005 | 28304 | <rom name="spal-sr-0.u1" size="1048576" crc="1631740d" sha1="8e51fff3b4d065099788bfa69daf27d41b4bfcf5" offset="0x000000" /> |
| 26006 | 28305 | </dataarea> |
| r21545 | r21546 | |
| 26020 | 28319 | <feature name="lockout" value="D411 C127 05 B" /> |
| 26021 | 28320 | <feature name="cart_model" value="SNS-006" /> |
| 26022 | 28321 | <feature name="cart_back_label" value="" /> |
| 28322 | ||
| 28323 | <feature name="slot" value="lorom" /> | |
| 26023 | 28324 | <dataarea name="rom" size="1048576"> |
| 26024 | 28325 | <rom name="sns-sr-0.u1" size="1048576" crc="8b22c830" sha1="44b0a3b66756b04ebc5753f78613feadb85d6b74" offset="0x000000" /> |
| 26025 | 28326 | </dataarea> |
| r21545 | r21546 | |
| 26040 | 28341 | <feature name="lockout" value="" /> |
| 26041 | 28342 | <feature name="cart_model" value="SHVC-006" /> |
| 26042 | 28343 | <feature name="cart_back_label" value="920214" /> |
| 28344 | ||
| 28345 | <feature name="slot" value="lorom" /> | |
| 26043 | 28346 | <dataarea name="rom" size="2097152"> |
| 26044 | 28347 | <rom name="shvc-4s-0.u1" size="2097152" crc="85555436" sha1="638a33a95a97360408f71cdbddcbc82452d52ed8" offset="0x000000" /> |
| 26045 | 28348 | </dataarea> |
| r21545 | r21546 | |
| 26064 | 28367 | <feature name="battery" value="BATT CR2032" /> |
| 26065 | 28368 | <feature name="cart_model" value="SHVC-006" /> |
| 26066 | 28369 | <feature name="cart_back_label" value="920214" /> |
| 28370 | ||
| 28371 | <feature name="slot" value="lorom" /> | |
| 26067 | 28372 | <dataarea name="rom" size="1572864"> |
| 26068 | 28373 | <rom name="shvc-e6-0 p0.u1" size="1048576" crc="47967377" sha1="f129cc1642e4f11a5cdf951ccda199ac8c3f6089" offset="0x000000" /> |
| 26069 | 28374 | <rom name="shvc-e6-0 p1.u2" size="524288" crc="7ff44d00" sha1="f736ce982b4997721f823d97110a2f8fcc6021ff" offset="0x100000" /> |
| r21545 | r21546 | |
| 26091 | 28396 | <feature name="battery" value="BATT CR2032" /> |
| 26092 | 28397 | <feature name="cart_model" value="SHVC-006" /> |
| 26093 | 28398 | <feature name="cart_back_label" value="920214" /> |
| 28399 | ||
| 28400 | <feature name="slot" value="lorom" /> | |
| 26094 | 28401 | <dataarea name="rom" size="1048576"> |
| 26095 | 28402 | <rom name="shvc-i3-0.u1" size="1048576" crc="757ad630" sha1="4cdf73e7f528a8c6a9f47a6e728cf9a631cd3316" offset="0x000000" /> |
| 26096 | 28403 | </dataarea> |
| r21545 | r21546 | |
| 26116 | 28423 | <feature name="battery" value="BATT CR2032" /> |
| 26117 | 28424 | <feature name="cart_model" value="SHVC-006" /> |
| 26118 | 28425 | <feature name="cart_back_label" value="920214" /> |
| 28426 | ||
| 28427 | <feature name="slot" value="hirom" /> | |
| 26119 | 28428 | <dataarea name="rom" size="1048576"> |
| 26120 | 28429 | <rom name="shvc-i4-0.u1" size="1048576" crc="b3788ad7" sha1="6040fe870205c6221ebe4d3023451e3e701620ff" offset="0x000000" /> |
| 26121 | 28430 | </dataarea> |
| r21545 | r21546 | |
| 26141 | 28450 | <feature name="battery" value="BATT CR2032" /> |
| 26142 | 28451 | <feature name="cart_model" value="SHVC-006" /> |
| 26143 | 28452 | <feature name="cart_back_label" value="901121" /> |
| 28453 | ||
| 28454 | <feature name="slot" value="lorom" /> | |
| 26144 | 28455 | <dataarea name="rom" size="1048576"> |
| 26145 | 28456 | <rom name="shvc-xl-0.u1" size="1048576" crc="0eea5dc1" sha1="e58bb9c38b6bf2ce0c116e2bbebd53746b6198ab" offset="0x000000" /> |
| 26146 | 28457 | </dataarea> |
| r21545 | r21546 | |
| 26176 | 28487 | <feature name="cart_revision" value="A" /> |
| 26177 | 28488 | <feature name="cart_model" value="SHVC-006" /> |
| 26178 | 28489 | <feature name="cart_back_label" value="901121 (XL), 920214 (XL-1)" /> |
| 28490 | ||
| 28491 | <feature name="slot" value="lorom" /> | |
| 26179 | 28492 | <dataarea name="rom" size="1048576"> |
| 26180 | 28493 | <rom name="shvc-xl-1.u1" size="1048576" crc="b8a87909" sha1="3aefcbbdbeb7e5b6c8a6c4f4bb3bf30140703074" offset="0x000000" /> |
| 26181 | 28494 | </dataarea> |
| r21545 | r21546 | |
| 26198 | 28511 | <feature name="lockout" value="" /> |
| 26199 | 28512 | <feature name="cart_model" value="SHVC-006" /> |
| 26200 | 28513 | <feature name="cart_back_label" value="920214" /> |
| 28514 | ||
| 28515 | <feature name="slot" value="lorom" /> | |
| 26201 | 28516 | <dataarea name="rom" size="1048576"> |
| 26202 | 28517 | <rom name="shvc-lr-0.u1" size="1048576" crc="7887f968" sha1="e8c0be08b9394580fad7efdc8645e7e639089dab" offset="0x000000" /> |
| 26203 | 28518 | </dataarea> |
| r21545 | r21546 | |
| 26222 | 28537 | <feature name="battery" value="BATT CR2032" /> |
| 26223 | 28538 | <feature name="cart_model" value="SHVC-006" /> |
| 26224 | 28539 | <feature name="cart_back_label" value="920214" /> |
| 28540 | ||
| 28541 | <feature name="slot" value="lorom" /> | |
| 26225 | 28542 | <dataarea name="rom" size="1572864"> |
| 26226 | 28543 | <rom name="shvc-2b-0 p0.u1" size="1048576" crc="3b3ef81c" sha1="e1a74eeaf78574508219e735df98c554ad9b9619" offset="0x000000" /> |
| 26227 | 28544 | <rom name="shvc-2b-0 p1.u2" size="524288" crc="07906452" sha1="a6d7c8140a0c760cf8d27799c92cc9273d5f08dc" offset="0x100000" /> |
| r21545 | r21546 | |
| 26244 | 28561 | <feature name="lockout" value="D411A 9316 AA" /> |
| 26245 | 28562 | <feature name="cart_model" value="SNS-006" /> |
| 26246 | 28563 | <feature name="cart_back_label" value="" /> |
| 28564 | ||
| 28565 | <feature name="slot" value="lorom" /> | |
| 26247 | 28566 | <dataarea name="rom" size="1048576"> |
| 26248 | 28567 | <rom name="sns-d9-0.u1" size="1048576" crc="3effc9e5" sha1="40cf03449d3f50c2541a5ba8aeaa8205f553cc4c" offset="0x000000" /> |
| 26249 | 28568 | </dataarea> |
| r21545 | r21546 | |
| 26263 | 28582 | <feature name="lockout" value="D411A 9327 BA" /> |
| 26264 | 28583 | <feature name="cart_model" value="SNS-006" /> |
| 26265 | 28584 | <feature name="cart_back_label" value="" /> |
| 28585 | ||
| 28586 | <feature name="slot" value="lorom" /> | |
| 26266 | 28587 | <dataarea name="rom" size="524288"> |
| 26267 | 28588 | <rom name="sns-zx-0.u1" size="524288" crc="7355c9b9" sha1="198ddfa080ffac5fbe2570b0b3e63f041247a5f4" offset="0x000000" /> |
| 26268 | 28589 | </dataarea> |
| r21545 | r21546 | |
| 26281 | 28602 | <feature name="lockout" value="" /> |
| 26282 | 28603 | <feature name="cart_model" value="SNSP-006" /> |
| 26283 | 28604 | <feature name="cart_back_label" value="SNSP-EUR, SNSP-FAH" /> |
| 28605 | ||
| 28606 | <feature name="slot" value="lorom" /> | |
| 26284 | 28607 | <dataarea name="rom" size="524288"> |
| 26285 | 28608 | <rom name="spal-fs-0.u1" size="524288" crc="442c47cb" sha1="6eb6dd6da1e8eefad24c30b59ededbd671b9db2c" offset="0x000000" /> |
| 26286 | 28609 | </dataarea> |
| r21545 | r21546 | |
| 26304 | 28627 | <feature name="battery" value="BATT CR2032" /> |
| 26305 | 28628 | <feature name="cart_model" value="SHVC-006" /> |
| 26306 | 28629 | <feature name="cart_back_label" value="901121" /> |
| 28630 | ||
| 28631 | <feature name="slot" value="lorom" /> | |
| 26307 | 28632 | <dataarea name="rom" size="1048576"> |
| 26308 | 28633 | <rom name="shvc-ss-0.u1" size="1048576" crc="3b018618" sha1="5af8fffbd98f016797b6792ce7833334b156e052" offset="0x000000" /> |
| 26309 | 28634 | </dataarea> |
| r21545 | r21546 | |
| 26325 | 28650 | <feature name="lockout" value="" /> |
| 26326 | 28651 | <feature name="cart_model" value="SNS-006" /> |
| 26327 | 28652 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28653 | ||
| 28654 | <feature name="slot" value="lorom" /> | |
| 26328 | 28655 | <dataarea name="rom" size="2097152"> |
| 26329 | 28656 | <rom name="sns-arje-0.u1" size="2097152" crc="c709ec69" sha1="9e8f9fef03a417125be8c7a07778d453f315f7c3" offset="0x000000" /> |
| 26330 | 28657 | </dataarea> |
| r21545 | r21546 | |
| 26345 | 28672 | <feature name="cart_revision" value="A" /> |
| 26346 | 28673 | <feature name="cart_model" value="SNS-006" /> |
| 26347 | 28674 | <feature name="cart_back_label" value="" /> |
| 28675 | ||
| 28676 | <feature name="slot" value="lorom" /> | |
| 26348 | 28677 | <dataarea name="rom" size="2097152"> |
| 26349 | 28678 | <rom name="sns-p-arje-1.u1" size="2097152" crc="4a5f30d8" sha1="b8dca1cd8b2ac99e46078fc91fd42ee336e761e4" offset="0x000000" /> |
| 26350 | 28679 | </dataarea> |
| r21545 | r21546 | |
| 26364 | 28693 | <feature name="cart_revision" value="A" /> |
| 26365 | 28694 | <feature name="cart_model" value="SNSP-006" /> |
| 26366 | 28695 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 28696 | ||
| 28697 | <feature name="slot" value="lorom" /> | |
| 26367 | 28698 | <dataarea name="rom" size="2097152"> |
| 26368 | 28699 | <rom name="spal-e5-1.u1" size="2097152" crc="a820caff" sha1="11e5e7c00a51c93e1f480be93650e52c37cfeaa2" offset="0x000000" /> |
| 26369 | 28700 | </dataarea> |
| r21545 | r21546 | |
| 26385 | 28716 | <feature name="lockout" value="" /> |
| 26386 | 28717 | <feature name="cart_model" value="SNS-006" /> |
| 26387 | 28718 | <feature name="cart_back_label" value="" /> |
| 28719 | ||
| 28720 | <feature name="slot" value="lorom" /> | |
| 26388 | 28721 | <dataarea name="rom" size="1572864"> |
| 26389 | 28722 | <rom name="sns-e5 p0.u1" size="1048576" crc="d1bc210a" sha1="fb6ea273a07de7b8c8bfbf44ac71268d94e9bc10" offset="0x000000" /> |
| 26390 | 28723 | <rom name="sns-e5 p1.u2" size="524288" crc="41b79a31" sha1="bc5660e78211cb7a44caf03b9568465255fd97fd" offset="0x100000" /> |
| r21545 | r21546 | |
| 26404 | 28737 | <feature name="lockout" value="" /> |
| 26405 | 28738 | <feature name="cart_model" value="SNSP-006" /> |
| 26406 | 28739 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 28740 | ||
| 28741 | <feature name="slot" value="lorom" /> | |
| 26407 | 28742 | <dataarea name="rom" size="1048576"> |
| 26408 | 28743 | <rom name="spal-v4-0.u1" size="1048576" crc="f63ec912" sha1="5b167b97a23418ca629bdbfa8abcc5c920d1fc47" offset="0x000000" /> |
| 26409 | 28744 | </dataarea> |
| r21545 | r21546 | |
| 26423 | 28758 | <feature name="cart_revision" value="A" /> |
| 26424 | 28759 | <feature name="cart_model" value="SNSP-006" /> |
| 26425 | 28760 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 28761 | ||
| 28762 | <feature name="slot" value="lorom" /> | |
| 26426 | 28763 | <dataarea name="rom" size="1048576"> |
| 26427 | 28764 | <rom name="spal-v4-1.u1" size="1048576" crc="055926be" sha1="f94c84132f4b53186d7399dd7c0af5dda27d0888" offset="0x000000" /> |
| 26428 | 28765 | </dataarea> |
| r21545 | r21546 | |
| 26442 | 28779 | <feature name="lockout" value="" /> |
| 26443 | 28780 | <feature name="cart_model" value="SNS-006" /> |
| 26444 | 28781 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28782 | ||
| 28783 | <feature name="slot" value="lorom" /> | |
| 26445 | 28784 | <dataarea name="rom" size="1048576"> |
| 26446 | 28785 | <rom name="sns-v4-0.u1" size="1048576" crc="acbcae7c" sha1="dbff9bbb155f09376c4c7fe3d68e77c4a444ae3c" offset="0x000000" /> |
| 26447 | 28786 | </dataarea> |
| r21545 | r21546 | |
| 26462 | 28801 | <feature name="cart_revision" value="A" /> |
| 26463 | 28802 | <feature name="cart_model" value="SNS-006" /> |
| 26464 | 28803 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28804 | ||
| 28805 | <feature name="slot" value="lorom" /> | |
| 26465 | 28806 | <dataarea name="rom" size="1048576"> |
| 26466 | 28807 | <rom name="sns-v4-1.u1" size="1048576" crc="be47f6c6" sha1="834b5c6b82b1ee22cc583075334800b51269624b" offset="0x000000" /> |
| 26467 | 28808 | </dataarea> |
| r21545 | r21546 | |
| 26480 | 28821 | <feature name="lockout" value="" /> |
| 26481 | 28822 | <feature name="cart_model" value="SNSP-006" /> |
| 26482 | 28823 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 28824 | ||
| 28825 | <feature name="slot" value="hirom" /> | |
| 26483 | 28826 | <dataarea name="rom" size="4194304"> |
| 26484 | 28827 | <rom name="spal-xw-0.u1" size="4194304" crc="6d86bfb0" sha1="a6ffef36948854bece1266b78224daf3e64ca47e" offset="0x000000" /> |
| 26485 | 28828 | </dataarea> |
| r21545 | r21546 | |
| 26502 | 28845 | <feature name="lockout" value="" /> |
| 26503 | 28846 | <feature name="cart_model" value="SHVC-006" /> |
| 26504 | 28847 | <feature name="cart_back_label" value="920214" /> |
| 28848 | ||
| 28849 | <feature name="slot" value="hirom" /> | |
| 26505 | 28850 | <dataarea name="rom" size="4194304"> |
| 26506 | 28851 | <rom name="shvc-xw-0 p0.u1" size="2097152" crc="df7df6ab" sha1="e869909af18f5cd5adc0ea3083a1bc451ca1f620" offset="0x000000" /> |
| 26507 | 28852 | <rom name="shvc-xw-0 p1.u2" size="2097152" crc="13e9e1f1" sha1="999e68cb7a79102ad19da2c91e4fd5c13e6c225e" offset="0x200000" /> |
| r21545 | r21546 | |
| 26524 | 28869 | <feature name="lockout" value="" /> |
| 26525 | 28870 | <feature name="cart_model" value="SNS-006" /> |
| 26526 | 28871 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28872 | ||
| 28873 | <feature name="slot" value="hirom" /> | |
| 26527 | 28874 | <dataarea name="rom" size="4194304"> |
| 26528 | 28875 | <rom name="sns-xw-0 p0.u1" size="2097152" crc="4939be29" sha1="0c9cb553f2bb713ea9ba5a6849babe79a299ba52" offset="0x000000" /> |
| 26529 | 28876 | <rom name="sns-xw-0 p1.u2" size="2097152" crc="e4ed8b6a" sha1="a5b091c5089509285ba03813c38bcb8917c62441" offset="0x200000" /> |
| r21545 | r21546 | |
| 26544 | 28891 | <feature name="lockout" value="" /> |
| 26545 | 28892 | <feature name="cart_model" value="SNS-006" /> |
| 26546 | 28893 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28894 | ||
| 28895 | <feature name="slot" value="lorom" /> | |
| 26547 | 28896 | <dataarea name="rom" size="1048576"> |
| 26548 | 28897 | <rom name="sns-eg-0.u1" size="1048576" crc="ecf79841" sha1="2c84fe80423798fb62a2d5335f53742580486dc1" offset="0x000000" /> |
| 26549 | 28898 | </dataarea> |
| r21545 | r21546 | |
| 26564 | 28913 | <feature name="lockout" value="" /> |
| 26565 | 28914 | <feature name="cart_model" value="SHVC-006" /> |
| 26566 | 28915 | <feature name="cart_back_label" value="" /> |
| 28916 | ||
| 28917 | <feature name="slot" value="lorom" /> | |
| 26567 | 28918 | <dataarea name="rom" size="524288"> |
| 26568 | 28919 | <rom name="shvc-st-0.u1" size="524288" crc="57bf1d3e" sha1="b6a079bc2e968bad25bdfb8a1ea8f30302767b07" offset="0x000000" /> |
| 26569 | 28920 | </dataarea> |
| r21545 | r21546 | |
| 26583 | 28934 | <feature name="cart_revision" value="A" /> |
| 26584 | 28935 | <feature name="cart_model" value="SNSP-006" /> |
| 26585 | 28936 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 28937 | ||
| 28938 | <feature name="slot" value="lorom" /> | |
| 26586 | 28939 | <dataarea name="rom" size="524288"> |
| 26587 | 28940 | <rom name="spal-st-1.u1" size="524288" crc="cdb03bfb" sha1="1ab6c1785c6d7e44b44d5ebb1c774673039177b9" offset="0x000000" /> |
| 26588 | 28941 | </dataarea> |
| r21545 | r21546 | |
| 26602 | 28955 | <feature name="lockout" value="" /> |
| 26603 | 28956 | <feature name="cart_model" value="SNS-006" /> |
| 26604 | 28957 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 28958 | ||
| 28959 | <feature name="slot" value="lorom" /> | |
| 26605 | 28960 | <dataarea name="rom" size="524288"> |
| 26606 | 28961 | <rom name="sns-st-0.u1" size="524288" crc="8d383776" sha1="9b2c6beb347c6487c170d4f6fc5ee537a223626e" offset="0x000000" /> |
| 26607 | 28962 | </dataarea> |
| r21545 | r21546 | |
| 26625 | 28980 | <feature name="battery" value="BATT CR2032" /> |
| 26626 | 28981 | <feature name="cart_model" value="SHVC-006" /> |
| 26627 | 28982 | <feature name="cart_back_label" value="920214" /> |
| 28983 | ||
| 28984 | <feature name="slot" value="lorom" /> | |
| 26628 | 28985 | <dataarea name="rom" size="1048576"> |
| 26629 | 28986 | <rom name="shvc-5t-0.u1" size="1048576" crc="c709b922" sha1="26f1be182eeb3d86b276269cc8fec8f1bc6dbf83" offset="0x000000" /> |
| 26630 | 28987 | </dataarea> |
| r21545 | r21546 | |
| 26650 | 29007 | <feature name="battery" value="BATT CR2032" /> |
| 26651 | 29008 | <feature name="cart_model" value="SHVC-006" /> |
| 26652 | 29009 | <feature name="cart_back_label" value="920214" /> |
| 29010 | ||
| 29011 | <feature name="slot" value="lorom" /> | |
| 26653 | 29012 | <dataarea name="rom" size="1048576"> |
| 26654 | 29013 | <rom name="shvc-t2-0.u1" size="1048576" crc="8ae5e443" sha1="3ac3c616dfe4d36496303b38275d15d7aceb8572" offset="0x000000" /> |
| 26655 | 29014 | </dataarea> |
| r21545 | r21546 | |
| 26676 | 29035 | <feature name="battery" value="BATT CR2032" /> |
| 26677 | 29036 | <feature name="cart_model" value="SHVC-006" /> |
| 26678 | 29037 | <feature name="cart_back_label" value="920214" /> |
| 29038 | ||
| 29039 | <feature name="slot" value="lorom" /> | |
| 26679 | 29040 | <dataarea name="rom" size="1048576"> |
| 26680 | 29041 | <rom name="shvc-at3j-0.u1" size="1048576" crc="329024c7" sha1="2f808a4f0db77a54895f5d2b68517331cd8e8855" offset="0x000000" /> |
| 26681 | 29042 | </dataarea> |
| r21545 | r21546 | |
| 26696 | 29057 | <feature name="lockout" value="" /> |
| 26697 | 29058 | <feature name="cart_model" value="SNSP-006" /> |
| 26698 | 29059 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 29060 | ||
| 29061 | <feature name="slot" value="lorom" /> | |
| 26699 | 29062 | <dataarea name="rom" size="524288"> |
| 26700 | 29063 | <rom name="spal-5l-0.u1" size="524288" crc="943328ba" sha1="0005a7ea368694ed6ec54f1619cb6c5799098a85" offset="0x000000" /> |
| 26701 | 29064 | </dataarea> |
| r21545 | r21546 | |
| 26714 | 29077 | <feature name="lockout" value="" /> |
| 26715 | 29078 | <feature name="cart_model" value="SNSP-006" /> |
| 26716 | 29079 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 29080 | ||
| 29081 | <feature name="slot" value="lorom" /> | |
| 26717 | 29082 | <dataarea name="rom" size="524288"> |
| 26718 | 29083 | <rom name="spal-tu-0.u1" size="524288" crc="d0a1bf12" sha1="aa89904a0e6d65e230d43c0f4f974bedc6868684" offset="0x000000" /> |
| 26719 | 29084 | </dataarea> |
| r21545 | r21546 | |
| 26733 | 29098 | <feature name="lockout" value="D411B 9532 C" /> |
| 26734 | 29099 | <feature name="cart_model" value="SNS-006" /> |
| 26735 | 29100 | <feature name="cart_back_label" value="" /> |
| 29101 | ||
| 29102 | <feature name="slot" value="lorom" /> | |
| 26736 | 29103 | <dataarea name="rom" size="2097152"> |
| 26737 | 29104 | <rom name="sns-a2te-0.u1" size="2097152" crc="d2ffabac" sha1="a70896843fb9ea0a30f4a9f9ca443135552f0157" offset="0x000000" /> |
| 26738 | 29105 | </dataarea> |
| r21545 | r21546 | |
| 26756 | 29123 | <feature name="battery" value="BATT CR2032" /> |
| 26757 | 29124 | <feature name="cart_model" value="SHVC-006" /> |
| 26758 | 29125 | <feature name="cart_back_label" value="901121" /> |
| 29126 | ||
| 29127 | <feature name="slot" value="lorom" /> | |
| 26759 | 29128 | <dataarea name="rom" size="524288"> |
| 26760 | 29129 | <rom name="shvc-ub-0.u1" size="524288" crc="90a9ea48" sha1="028ea1cd171a29a7041f71e1b968225e3aebea87" offset="0x000000" /> |
| 26761 | 29130 | </dataarea> |
| r21545 | r21546 | |
| 26780 | 29149 | <feature name="cart_model" value="SHVC-006" /> |
| 26781 | 29150 | <feature name="cart_revision" value="A" /> |
| 26782 | 29151 | <feature name="cart_back_label" value="920214" /> |
| 29152 | ||
| 29153 | <feature name="slot" value="lorom" /> | |
| 26783 | 29154 | <dataarea name="rom" size="1048576"> |
| 26784 | 29155 | <rom name="shvc-un-1.u1" size="1048576" crc="aa0a7c43" sha1="00ae5d4667e179d9677611edf6a05f50b2d3ee6f" offset="0x000000" /> |
| 26785 | 29156 | </dataarea> |
| r21545 | r21546 | |
| 26800 | 29171 | <feature name="lockout" value="" /> |
| 26801 | 29172 | <feature name="cart_model" value="SHVC-006" /> |
| 26802 | 29173 | <feature name="cart_back_label" value="901121" /> |
| 29174 | ||
| 29175 | <feature name="slot" value="lorom" /> | |
| 26803 | 29176 | <dataarea name="rom" size="1048576"> |
| 26804 | 29177 | <rom name="shvc-va-0.u1" size="1048576" crc="e46c1112" sha1="8c144c11bdd748bab238ea4c667392eeb4d9fef7" offset="0x000000" /> |
| 26805 | 29178 | </dataarea> |
| r21545 | r21546 | |
| 26821 | 29194 | <feature name="lockout" value="" /> |
| 26822 | 29195 | <feature name="cart_model" value="SHVC-006" /> |
| 26823 | 29196 | <feature name="cart_back_label" value="901121" /> |
| 29197 | ||
| 29198 | <feature name="slot" value="lorom" /> | |
| 26824 | 29199 | <dataarea name="rom" size="1048576"> |
| 26825 | 29200 | <rom name="shvc-sw-0.u1" size="1048576" crc="612b9b65" sha1="3a9b3ef5ab9668f6f1b716992c9fba6be763ecda" offset="0x000000" /> |
| 26826 | 29201 | </dataarea> |
| r21545 | r21546 | |
| 26842 | 29217 | <feature name="lockout" value="" /> |
| 26843 | 29218 | <feature name="cart_model" value="SHVC-006" /> |
| 26844 | 29219 | <feature name="cart_back_label" value="920214" /> |
| 29220 | ||
| 29221 | <feature name="slot" value="lorom" /> | |
| 26845 | 29222 | <dataarea name="rom" size="1048576"> |
| 26846 | 29223 | <rom name="shvc-s6-0.u1" size="1048576" crc="d5063ae0" sha1="16e6728c0bc25bf9905f30bd4fa33c0445c37571" offset="0x000000" /> |
| 26847 | 29224 | </dataarea> |
| r21545 | r21546 | |
| 26861 | 29238 | <feature name="lockout" value="" /> |
| 26862 | 29239 | <feature name="cart_model" value="SNS-006" /> |
| 26863 | 29240 | <feature name="cart_back_label" value="" /> |
| 29241 | ||
| 29242 | <feature name="slot" value="lorom" /> | |
| 26864 | 29243 | <dataarea name="rom" size="1048576"> |
| 26865 | 29244 | <rom name="sns-wi-0.u1" size="1048576" crc="7dd199ec" sha1="0ad1657ee7037899c19f4e4806c25b379a5c55b3" offset="0x000000" /> |
| 26866 | 29245 | </dataarea> |
| r21545 | r21546 | |
| 26885 | 29264 | <feature name="battery" value="BATT CR2032" /> |
| 26886 | 29265 | <feature name="cart_model" value="SHVC-006" /> |
| 26887 | 29266 | <feature name="cart_back_label" value="920214" /> |
| 29267 | ||
| 29268 | <feature name="slot" value="lorom" /> | |
| 26888 | 29269 | <dataarea name="rom" size="1048576"> |
| 26889 | 29270 | <rom name="shvc-q7-0.u1" size="1048576" crc="410d9f0a" sha1="47fc4a6712dcca24ef360f3e6a99b68db85cd9a4" offset="0x000000" /> |
| 26890 | 29271 | </dataarea> |
| r21545 | r21546 | |
| 26912 | 29293 | <feature name="battery" value="BATT CR2032" /> |
| 26913 | 29294 | <feature name="cart_model" value="SHVC-006" /> |
| 26914 | 29295 | <feature name="cart_back_label" value="920214" /> |
| 29296 | ||
| 29297 | <feature name="slot" value="lorom" /> | |
| 26915 | 29298 | <dataarea name="rom" size="1572864"> |
| 26916 | 29299 | <rom name="shvc-aw-0 p0.u1" size="1048576" crc="d66e4921" sha1="1e6723b5a2ed9036e1546c1273bfff7287abfba6" offset="0x000000" /> |
| 26917 | 29300 | <rom name="shvc-aw-0 p1.u2" size="524288" crc="275aa64b" sha1="765f69d1d845b64f15574d3559c4dab14b2b3d3e" offset="0x100000" /> |
| r21545 | r21546 | |
| 26941 | 29324 | <feature name="cart_model" value="SHVC-006" /> |
| 26942 | 29325 | <feature name="cart_revision" value="A" /> |
| 26943 | 29326 | <feature name="cart_back_label" value="901121" /> |
| 29327 | ||
| 29328 | <feature name="slot" value="lorom" /> | |
| 26944 | 29329 | <dataarea name="rom" size="2097152"> |
| 26945 | 29330 | <rom name="shvc-7m-0.u1" size="2097152" crc="571aef10" sha1="c1de02c52dbed3ad8bf081c21cc4b80fe1a79b2e" offset="0x000000" /> |
| 26946 | 29331 | </dataarea> |
| r21545 | r21546 | |
| 26961 | 29346 | <feature name="lockout" value="" /> |
| 26962 | 29347 | <feature name="cart_model" value="SNSP-006" /> |
| 26963 | 29348 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 29349 | ||
| 29350 | <feature name="slot" value="lorom" /> | |
| 26964 | 29351 | <dataarea name="rom" size="1048576"> |
| 26965 | 29352 | <rom name="spal-afyp-0.u1" size="1048576" crc="fd851819" sha1="98319448aebe93872eb318d6844caa0bfdf401e1" offset="0x000000" /> |
| 26966 | 29353 | </dataarea> |
| r21545 | r21546 | |
| 26979 | 29366 | <feature name="lockout" value="" /> |
| 26980 | 29367 | <feature name="cart_model" value="SNSP-006" /> |
| 26981 | 29368 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 29369 | ||
| 29370 | <feature name="slot" value="lorom" /> | |
| 26982 | 29371 | <dataarea name="rom" size="1048576"> |
| 26983 | 29372 | <rom name="spal-xv-0.u1" size="1048576" crc="32633fa6" sha1="e8de632ece8ced5d797bb213d48365a7a5c82060" offset="0x000000" /> |
| 26984 | 29373 | </dataarea> |
| r21545 | r21546 | |
| 27001 | 29390 | <feature name="lockout" value="" /> |
| 27002 | 29391 | <feature name="cart_model" value="SHVC-006" /> |
| 27003 | 29392 | <feature name="cart_back_label" value="" /> |
| 29393 | ||
| 29394 | <feature name="slot" value="hirom" /> | |
| 27004 | 29395 | <dataarea name="rom" size="1572864"> |
| 27005 | 29396 | <rom name="shvc-azzj-0 p0.u1" size="1048576" crc="b2d99882" sha1="e0b2d2172a6c50492b75a8781e663b0615b70676" offset="0x000000" /> |
| 27006 | 29397 | <rom name="shvc-azzj-0 p1.u2" size="524288" crc="f88a8df8" sha1="3ba1c112db4b6e89a23d2b4ced3edcf9b20c64b3" offset="0x100000" /> |
| r21545 | r21546 | |
| 27027 | 29418 | <feature name="battery" value="BATT CR2032" /> |
| 27028 | 29419 | <feature name="cart_model" value="SHVC-006" /> |
| 27029 | 29420 | <feature name="cart_back_label" value="920214" /> |
| 29421 | ||
| 29422 | <feature name="slot" value="hirom" /> | |
| 27030 | 29423 | <dataarea name="rom" size="1572864"> |
| 27031 | 29424 | <rom name="shvc-td-0 p0.u1" size="1048576" crc="e5eaadb9" sha1="36fa9608719217bd30bbe512ebce014773de7afb" offset="0x000000" /> |
| 27032 | 29425 | <rom name="shvc-td-0 p1.u2" size="524288" crc="3faa4a3b" sha1="3338f7495f2d7c9e85e601a576770739e39dc224" offset="0x100000" /> |
| r21545 | r21546 | |
| 27053 | 29446 | <feature name="battery" value="BATT CR2032" /> |
| 27054 | 29447 | <feature name="cart_model" value="SHVC-006" /> |
| 27055 | 29448 | <feature name="cart_back_label" value="920214" /> |
| 29449 | ||
| 29450 | <feature name="slot" value="lorom" /> | |
| 27056 | 29451 | <dataarea name="rom" size="1048576"> |
| 27057 | 29452 | <rom name="shvc-ia-0.u1" size="1048576" crc="01afec9c" sha1="8f3641977e2cbc93f851e5931fc3e3c440da109e" offset="0x000000" /> |
| 27058 | 29453 | </dataarea> |
| r21545 | r21546 | |
| 27075 | 29470 | <feature name="lockout" value="" /> |
| 27076 | 29471 | <feature name="cart_model" value="SHVC-006" /> |
| 27077 | 29472 | <feature name="cart_back_label" value="901121" /> |
| 29473 | ||
| 29474 | <feature name="slot" value="lorom" /> | |
| 27078 | 29475 | <dataarea name="rom" size="1048576"> |
| 27079 | 29476 | <rom name="shvc-h2-0.u1" size="1048576" crc="37c0ae76" sha1="090742859b1f8ca6077bee80855b53ffda4c0fa1" offset="0x000000" /> |
| 27080 | 29477 | </dataarea> |
| r21545 | r21546 | |
| 27099 | 29496 | <feature name="battery" value="BATT CR2032" /> |
| 27100 | 29497 | <feature name="cart_model" value="SHVC-006" /> |
| 27101 | 29498 | <feature name="cart_back_label" value="920214" /> |
| 29499 | ||
| 29500 | <feature name="slot" value="lorom" /> | |
| 27102 | 29501 | <dataarea name="rom" size="524288"> |
| 27103 | 29502 | <rom name="shvc-jv-0.u1" size="524288" crc="1bb2a0a4" sha1="c598ca9e5c27b9ccee2d04a6bad3379bdfe47043" offset="0x000000" /> |
| 27104 | 29503 | </dataarea> |
| r21545 | r21546 | |
| 27125 | 29524 | <feature name="battery" value="BATT CR2032" /> |
| 27126 | 29525 | <feature name="cart_model" value="SHVC-006" /> |
| 27127 | 29526 | <feature name="cart_back_label" value="920214" /> |
| 29527 | ||
| 29528 | <feature name="slot" value="lorom" /> | |
| 27128 | 29529 | <dataarea name="rom" size="1048576"> |
| 27129 | 29530 | <rom name="shvc-atkj-0.u1" size="1048576" crc="383face4" sha1="d0d5ede3df819b25b17223f740563468c3a842b5" offset="0x000000" /> |
| 27130 | 29531 | </dataarea> |
| r21545 | r21546 | |
| 27151 | 29552 | <feature name="battery" value="BATT CR2032" /> |
| 27152 | 29553 | <feature name="cart_model" value="SHVC-006" /> |
| 27153 | 29554 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 29555 | ||
| 29556 | <feature name="slot" value="hirom" /> | |
| 27154 | 29557 | <dataarea name="rom" size="6291456"> |
| 27155 | 29558 | <rom name="shvc-atvj-0 p0.u1" size="4194304" crc="2b987829" sha1="77d371264b3ff0ad028c4d7f5c77085fbb17a75e" offset="0x000000" /> |
| 27156 | 29559 | <rom name="shvc-atvj-0 p3.u2" size="2097152" crc="865d9dd2" sha1="398be3c711010d560d5f3ae49417cf941c62ac63" offset="0x400000" /> |
| r21545 | r21546 | |
| 27173 | 29576 | <feature name="lockout" value="" /> |
| 27174 | 29577 | <feature name="cart_model" value="SNS-006" /> |
| 27175 | 29578 | <feature name="cart_back_label" value="" /> |
| 29579 | ||
| 29580 | <feature name="slot" value="lorom" /> | |
| 27176 | 29581 | <dataarea name="rom" size="1048576"> |
| 27177 | 29582 | <rom name="sns-tz-0.u1" size="1048576" crc="6cc571f5" sha1="8982e64906e4c2370fd7d9c65300e331b992efb5" offset="0x000000" /> |
| 27178 | 29583 | </dataarea> |
| r21545 | r21546 | |
| 27192 | 29597 | <feature name="lockout" value="" /> |
| 27193 | 29598 | <feature name="cart_model" value="SNS-006" /> |
| 27194 | 29599 | <feature name="cart_back_label" value="" /> |
| 29600 | ||
| 29601 | <feature name="slot" value="lorom" /> | |
| 27195 | 29602 | <dataarea name="rom" size="1048576"> |
| 27196 | 29603 | <rom name="sns-p-tz-1.u1" size="1048576" crc="b17230ae" sha1="cca964090db6270c625265fa9757ec1fafee64eb" offset="0x000000" /> |
| 27197 | 29604 | </dataarea> |
| r21545 | r21546 | |
| 27216 | 29623 | <feature name="battery" value="BATT CR2032" /> |
| 27217 | 29624 | <feature name="cart_model" value="SNS-006" /> |
| 27218 | 29625 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 29626 | ||
| 29627 | <feature name="slot" value="lorom" /> | |
| 27219 | 29628 | <dataarea name="rom" size="1572864"> |
| 27220 | 29629 | <rom name="sns-7t-0 p0.u1" size="1048576" crc="7dc1be46" sha1="41923d8b758c1bdd0e5400d819401eea076f6037" offset="0x000000" /> |
| 27221 | 29630 | <rom name="sns-7t-0 p1.u2" size="524288" crc="bdda985d" sha1="77b4d89e58a73ad32b957106bc24266f406c9453" offset="0x100000" /> |
| r21545 | r21546 | |
| 27243 | 29652 | <feature name="battery" value="BATT CR2032" /> |
| 27244 | 29653 | <feature name="cart_model" value="SHVC-006" /> |
| 27245 | 29654 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 29655 | ||
| 29656 | <feature name="slot" value="lorom" /> | |
| 27246 | 29657 | <dataarea name="rom" size="2097152"> |
| 27247 | 29658 | <rom name="shvc-aw4j-0.u1" size="2097152" crc="f06c34e3" sha1="2438dd4c12a00a82c1c8df3395432cae19e72cc9" offset="0x000000" /> |
| 27248 | 29659 | </dataarea> |
| r21545 | r21546 | |
| 27268 | 29679 | <feature name="battery" value="BATT CR2032" /> |
| 27269 | 29680 | <feature name="cart_model" value="SHVC-006" /> |
| 27270 | 29681 | <feature name="cart_back_label" value="920214" /> |
| 29682 | ||
| 29683 | <feature name="slot" value="lorom" /> | |
| 27271 | 29684 | <dataarea name="rom" size="1048576"> |
| 27272 | 29685 | <rom name="shvc-na-0.u1" size="1048576" crc="3dfe85b3" sha1="983de5eba7f079555070d12be46926c83f323f1a" offset="0x000000" /> |
| 27273 | 29686 | </dataarea> |
| r21545 | r21546 | |
| 27294 | 29707 | <feature name="cart_revision" value="A" /> |
| 27295 | 29708 | <feature name="cart_model" value="SHVC-006" /> |
| 27296 | 29709 | <feature name="cart_back_label" value="920214" /> |
| 29710 | ||
| 29711 | <feature name="slot" value="lorom" /> | |
| 27297 | 29712 | <dataarea name="rom" size="1048576"> |
| 27298 | 29713 | <rom name="shvc-na-1.u1" size="1048576" crc="538717b4" sha1="13a1b147a2e158a51a3891ff07b059ff7a7ed2e5" offset="0x000000" /> |
| 27299 | 29714 | </dataarea> |
| r21545 | r21546 | |
| 27318 | 29733 | <feature name="battery" value="BATT CR2032" /> |
| 27319 | 29734 | <feature name="cart_model" value="SNS-006" /> |
| 27320 | 29735 | <feature name="cart_back_label" value="" /> |
| 29736 | ||
| 29737 | <feature name="slot" value="lorom" /> | |
| 27321 | 29738 | <dataarea name="rom" size="1048576"> |
| 27322 | 29739 | <rom name="sns-xm-0.u1" size="1048576" crc="1b6f0b43" sha1="765790e88d5b4f4202ef06a16a3d87055539745a" offset="0x000000" /> |
| 27323 | 29740 | </dataarea> |
| r21545 | r21546 | |
| 27340 | 29757 | <feature name="lockout" value="" /> |
| 27341 | 29758 | <feature name="cart_model" value="SHVC-006" /> |
| 27342 | 29759 | <feature name="cart_back_label" value="920214" /> |
| 29760 | ||
| 29761 | <feature name="slot" value="lorom" /> | |
| 27343 | 29762 | <dataarea name="rom" size="2097152"> |
| 27344 | 29763 | <rom name="shvc-ky-0.u1" size="2097152" crc="7e97e194" sha1="b1b7b0860100d98f676edc6a59d45da542efe83c" offset="0x000000" /> |
| 27345 | 29764 | </dataarea> |
| r21545 | r21546 | |
| 27359 | 29778 | <feature name="lockout" value="" /> |
| 27360 | 29779 | <feature name="cart_model" value="SNS-006" /> |
| 27361 | 29780 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 29781 | ||
| 29782 | <feature name="slot" value="lorom" /> | |
| 27362 | 29783 | <dataarea name="rom" size="2097152"> |
| 27363 | 29784 | <rom name="sns-ky-0.u1" size="2097152" crc="e2fe5dbf" sha1="c2460ce4aeda68f6170bdf9cfa52467b56e15ebf" offset="0x000000" /> |
| 27364 | 29785 | </dataarea> |
| r21545 | r21546 | |
| 27379 | 29800 | <feature name="lockout" value="" /> |
| 27380 | 29801 | <feature name="cart_model" value="SHVC-006" /> |
| 27381 | 29802 | <feature name="cart_back_label" value="920214" /> |
| 29803 | ||
| 29804 | <feature name="slot" value="lorom" /> | |
| 27382 | 29805 | <dataarea name="rom" size="1048576"> |
| 27383 | 29806 | <rom name="shvc-tm-0.u1" size="1048576" crc="bdba1b55" sha1="514e7fb70e1e5e06c5a873262e145a555655d62d" offset="0x000000" /> |
| 27384 | 29807 | </dataarea> |
| r21545 | r21546 | |
| 27398 | 29821 | <feature name="lockout" value="" /> |
| 27399 | 29822 | <feature name="cart_model" value="SNSP-006" /> |
| 27400 | 29823 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 29824 | ||
| 29825 | <feature name="slot" value="lorom" /> | |
| 27401 | 29826 | <dataarea name="rom" size="1048576"> |
| 27402 | 29827 | <rom name="spal-mh-0.u1" size="1048576" crc="b0a3441e" sha1="59add584f16b607607348e65c245ca6ad7a5fcb8" offset="0x000000" /> |
| 27403 | 29828 | </dataarea> |
| r21545 | r21546 | |
| 27417 | 29842 | <feature name="lockout" value="" /> |
| 27418 | 29843 | <feature name="cart_model" value="SNS-006" /> |
| 27419 | 29844 | <feature name="cart_back_label" value="SNS-USA/CAN" /> |
| 29845 | ||
| 29846 | <feature name="slot" value="lorom" /> | |
| 27420 | 29847 | <dataarea name="rom" size="1048576"> |
| 27421 | 29848 | <rom name="sns-tm-0.u1" size="1048576" crc="5940bd99" sha1="4f8fc0f45023e0339e501054b253c33f479a001a" offset="0x000000" /> |
| 27422 | 29849 | </dataarea> |
| r21545 | r21546 | |
| 27441 | 29868 | <feature name="battery" value="BATT CR2032" /> |
| 27442 | 29869 | <feature name="cart_model" value="SHVC-006" /> |
| 27443 | 29870 | <feature name="cart_back_label" value="920214" /> |
| 29871 | ||
| 29872 | <feature name="slot" value="lorom" /> | |
| 27444 | 29873 | <dataarea name="rom" size="1310720"> |
| 27445 | 29874 | <rom name="shvc-tk-0 p0.u1" size="1048576" crc="a4a81bfc" sha1="ea2c4967090292871126bb1b210c55495234b710" offset="0x000000" /> |
| 27446 | 29875 | <rom name="shvc-tk-0 p1.u2" size="262144" crc="e06d0ca6" sha1="692cf488b3ca0e1d68abe65ab10d730ab1beeda7" offset="0x100000" /> |
| r21545 | r21546 | |
| 27467 | 29896 | <feature name="battery" value="BATT CR2032" /> |
| 27468 | 29897 | <feature name="cart_model" value="SHVC-006" /> |
| 27469 | 29898 | <feature name="cart_back_label" value="920214" /> |
| 29899 | ||
| 29900 | <feature name="slot" value="hirom" /> | |
| 27470 | 29901 | <dataarea name="rom" size="3145728"> |
| 27471 | 29902 | <rom name="shvc-atej-0.u1" size="3145728" crc="d71810e7" sha1="3da60f628f094428cbf178d635171a4e7cafbefc" offset="0x000000" /> |
| 27472 | 29903 | </dataarea> |
| r21545 | r21546 | |
| 27493 | 29924 | <feature name="cart_revision" value="A" /> |
| 27494 | 29925 | <feature name="cart_model" value="SHVC-006" /> |
| 27495 | 29926 | <feature name="cart_back_label" value="920214" /> |
| 29927 | ||
| 29928 | <feature name="slot" value="hirom" /> | |
| 27496 | 29929 | <dataarea name="rom" size="3145728"> |
| 27497 | 29930 | <rom name="shvc-atej-1.u1" size="3145728" crc="dafed69c" sha1="a8fd598eb0c8607311fa82b1da43132d75d10c83" offset="0x000000" /> |
| 27498 | 29931 | </dataarea> |
| r21545 | r21546 | |
| 27518 | 29951 | <feature name="battery" value="BATT CR2032" /> |
| 27519 | 29952 | <feature name="cart_model" value="SHVC-006" /> |
| 27520 | 29953 | <feature name="cart_back_label" value="920214" /> |
| 29954 | ||
| 29955 | <feature name="slot" value="hirom" /> | |
| 27521 | 29956 | <dataarea name="rom" size="2097152"> |
| 27522 | 29957 | <rom name="shvc-amuj-0.u1" size="2097152" crc="69d9caa9" sha1="94c9654a5f5854f0541228334b9ee080b6282ee8" offset="0x000000" /> |
| 27523 | 29958 | </dataarea> |
| r21545 | r21546 | |
| 27543 | 29978 | <feature name="battery" value="BATT CR2032" /> |
| 27544 | 29979 | <feature name="cart_model" value="SHVC-006" /> |
| 27545 | 29980 | <feature name="cart_back_label" value="920214" /> |
| 29981 | ||
| 29982 | <feature name="slot" value="lorom" /> | |
| 27546 | 29983 | <dataarea name="rom" size="2097152"> |
| 27547 | 29984 | <rom name="shvc-aktj-0.u1" size="2097152" crc="e43b7d79" sha1="4f9d7fa5e504264f7f4281af3050d86a226e0710" offset="0x000000" /> |
| 27548 | 29985 | </dataarea> |
| r21545 | r21546 | |
| 27572 | 30009 | <feature name="battery" value="BATT CR2032" /> |
| 27573 | 30010 | <feature name="cart_model" value="SHVC-006" /> |
| 27574 | 30011 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 30012 | ||
| 30013 | <feature name="slot" value="hirom_spcrtc" /> | |
| 27575 | 30014 | <dataarea name="rom" size="5242880"> |
| 27576 | 30015 | <rom name="shvc-azrj-0 p.u1" size="1048576" crc="baf082e8" sha1="f204088dc2addf0fcad980106ed508d37e94ccb5" offset="0x000000" /> |
| 27577 | 30016 | <rom name="shvc-azrj-0 d.u2" size="4194304" crc="d3d26f16" sha1="3bd8c4f98642e40fa6054850a7fc94c8ead85078" offset="0x100000" /> |
| r21545 | r21546 | |
| 27593 | 30032 | <feature name="lockout" value="" /> |
| 27594 | 30033 | <feature name="cart_model" value="SNSP-006" /> |
| 27595 | 30034 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 30035 | ||
| 30036 | <feature name="slot" value="lorom" /> | |
| 27596 | 30037 | <dataarea name="rom" size="1048576"> |
| 27597 | 30038 | <rom name="spal-tn-0.u1" size="1048576" crc="151109f6" sha1="ef023929960059c5c9e9b4d83a8f94f2ef38f331" offset="0x000000" /> |
| 27598 | 30039 | </dataarea> |
| r21545 | r21546 | |
| 27611 | 30052 | <feature name="lockout" value="" /> |
| 27612 | 30053 | <feature name="cart_model" value="SNSP-006" /> |
| 27613 | 30054 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 30055 | ||
| 30056 | <feature name="slot" value="lorom" /> | |
| 27614 | 30057 | <dataarea name="rom" size="1048576"> |
| 27615 | 30058 | <rom name="spal-tp-0.u1" size="1048576" crc="6ee8f433" sha1="83790fadbf049ed9065a9973f1edee5ce5efd93c" offset="0x000000" /> |
| 27616 | 30059 | </dataarea> |
| r21545 | r21546 | |
| 27633 | 30076 | <feature name="battery" value="BATT CR2032" /> |
| 27634 | 30077 | <feature name="cart_model" value="SNSP-006" /> |
| 27635 | 30078 | <feature name="cart_back_label" value="" /> |
| 30079 | ||
| 30080 | <feature name="slot" value="hirom" /> | |
| 27636 | 30081 | <dataarea name="rom" size="4194304"> |
| 27637 | 30082 | <rom name="spal-aqtf-0.u1" size="4194304" crc="614a7090" sha1="4f8a5771cb11757a31a026e5892b9434a3a405cb" offset="0x000000" /> |
| 27638 | 30083 | </dataarea> |
| r21545 | r21546 | |
| 27657 | 30102 | <feature name="battery" value="BATT CR2032" /> |
| 27658 | 30103 | <feature name="cart_model" value="SNSP-006" /> |
| 27659 | 30104 | <feature name="cart_back_label" value="" /> |
| 30105 | ||
| 30106 | <feature name="slot" value="hirom" /> | |
| 27660 | 30107 | <dataarea name="rom" size="4194304"> |
| 27661 | 30108 | <rom name="spal-aqtd-0.u1" size="4194304" crc="ffc21cb9" sha1="018701e5ce385e0b32e61b8f8bb2f9abf8abf8f0" offset="0x000000" /> |
| 27662 | 30109 | </dataarea> |
| r21545 | r21546 | |
| 27678 | 30125 | <feature name="lockout" value="" /> |
| 27679 | 30126 | <feature name="cart_model" value="SNSP-006" /> |
| 27680 | 30127 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 30128 | ||
| 30129 | <feature name="slot" value="lorom" /> | |
| 27681 | 30130 | <dataarea name="rom" size="1048576"> |
| 27682 | 30131 | <rom name="spal-atfp-0.u1" size="1048576" crc="523e4153" sha1="97acf69826f035e8530568763f55432c40898cf3" offset="0x000000" /> |
| 27683 | 30132 | </dataarea> |
| r21545 | r21546 | |
| 27698 | 30147 | <feature name="lockout" value="" /> |
| 27699 | 30148 | <feature name="cart_model" value="SNS-006" /> |
| 27700 | 30149 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 30150 | ||
| 30151 | <feature name="slot" value="lorom" /> | |
| 27701 | 30152 | <dataarea name="rom" size="1048576"> |
| 27702 | 30153 | <rom name="sns-atfe-0.u1" size="1048576" crc="6c852ef3" sha1="940e7f557e1dbadfdb38190975a2c4e1f712cb3f" offset="0x000000" /> |
| 27703 | 30154 | </dataarea> |
| r21545 | r21546 | |
| 27718 | 30169 | <feature name="lockout" value="" /> |
| 27719 | 30170 | <feature name="cart_model" value="SNS-006" /> |
| 27720 | 30171 | <feature name="cart_back_label" value="" /> |
| 30172 | ||
| 30173 | <feature name="slot" value="lorom" /> | |
| 27721 | 30174 | <dataarea name="rom" size="1048576"> |
| 27722 | 30175 | <rom name="sns-27-0.u1" size="1048576" crc="ce3392b1" sha1="43ce6065dfa9d3fbd3c6bcae9e23d160ae738eae" offset="0x000000" /> |
| 27723 | 30176 | </dataarea> |
| r21545 | r21546 | |
| 27736 | 30189 | <feature name="lockout" value="" /> |
| 27737 | 30190 | <feature name="cart_model" value="SNSP-006" /> |
| 27738 | 30191 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 30192 | ||
| 30193 | <feature name="slot" value="lorom" /> | |
| 27739 | 30194 | <dataarea name="rom" size="1048576"> |
| 27740 | 30195 | <rom name="spal-aylp-0.u1" size="1048576" crc="7417e83b" sha1="08e01f9ad5b6148e1a4355c80e2b23d8b2463443" offset="0x000000" /> |
| 27741 | 30196 | </dataarea> |
| r21545 | r21546 | |
| 27759 | 30214 | <feature name="battery" value="BATT CR2032" /> |
| 27760 | 30215 | <feature name="cart_model" value="SHVC-006" /> |
| 27761 | 30216 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 30217 | ||
| 30218 | <feature name="slot" value="lorom" /> | |
| 27762 | 30219 | <dataarea name="rom" size="2097152"> |
| 27763 | 30220 | <rom name="shvc-atqj-0.u1" size="2097152" crc="6797884a" sha1="6e5ac2f8b46fe59e84d246e39f2831542e8eecff" offset="0x000000" /> |
| 27764 | 30221 | </dataarea> |
| r21545 | r21546 | |
| 27780 | 30237 | <feature name="lockout" value="D411A 9243 BA" /> |
| 27781 | 30238 | <feature name="cart_model" value="SNS-006" /> |
| 27782 | 30239 | <feature name="cart_back_label" value="" /> |
| 30240 | ||
| 30241 | <feature name="slot" value="lorom" /> | |
| 27783 | 30242 | <dataarea name="rom" size="1048576"> |
| 27784 | 30243 | <rom name="sns-xt-0.u1" size="1048576" crc="838d0304" sha1="b1f11f8816c2de7f0055e680d710ee8adefe2735" offset="0x000000" /> |
| 27785 | 30244 | </dataarea> |
| r21545 | r21546 | |
| 27799 | 30258 | <feature name="lockout" value="" /> |
| 27800 | 30259 | <feature name="cart_model" value="SNSP-006" /> |
| 27801 | 30260 | <feature name="cart_back_label" value="" /> |
| 30261 | ||
| 30262 | <feature name="slot" value="hirom" /> | |
| 27802 | 30263 | <dataarea name="rom" size="2097152"> |
| 27803 | 30264 | <rom name="spal-aj9p-0.u1" size="2097152" crc="cc0be7cc" sha1="13413592f805d80a51d5c5cdbfabf7345599f97d" offset="0x000000" /> |
| 27804 | 30265 | </dataarea> |
| r21545 | r21546 | |
| 27818 | 30279 | <feature name="lockout" value="" /> |
| 27819 | 30280 | <feature name="cart_model" value="SNS-006" /> |
| 27820 | 30281 | <feature name="cart_back_label" value="SNS-USA/CAN-1-M" /> |
| 30282 | ||
| 30283 | <feature name="slot" value="hirom" /> | |
| 27821 | 30284 | <dataarea name="rom" size="2097152"> |
| 27822 | 30285 | <rom name="sns-p-aj9e-0.u1" size="2097152" crc="9951d9ee" sha1="dedf3e40c1e7e0a546a3cc44b917d7e99d7d65eb" offset="0x000000" /> |
| 27823 | 30286 | </dataarea> |
| r21545 | r21546 | |
| 27840 | 30303 | <feature name="battery" value="BATT CR2032" /> |
| 27841 | 30304 | <feature name="cart_model" value="SNS-006" /> |
| 27842 | 30305 | <feature name="cart_back_label" value="" /> |
| 30306 | ||
| 30307 | <feature name="slot" value="lorom" /> | |
| 27843 | 30308 | <dataarea name="rom" size="2097152"> |
| 27844 | 30309 | <rom name="sns-9n-0.u1" size="2097152" crc="ec26f75b" sha1="ea8eaa3a726de927bb0f999bcd2883eef1e011dc" offset="0x000000" /> |
| 27845 | 30310 | </dataarea> |
| r21545 | r21546 | |
| 27861 | 30326 | <feature name="lockout" value="" /> |
| 27862 | 30327 | <feature name="cart_model" value="SNSP-006" /> |
| 27863 | 30328 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 30329 | ||
| 30330 | <feature name="slot" value="lorom" /> | |
| 27864 | 30331 | <dataarea name="rom" size="2097152"> |
| 27865 | 30332 | <rom name="spal-at6p-0.u1" size="2097152" crc="2c170983" sha1="58f828d678629cecf437feb44a3d30f9ca48f640" offset="0x000000" /> |
| 27866 | 30333 | </dataarea> |
| r21545 | r21546 | |
| 27888 | 30355 | --> |
| 27889 | 30356 | <feature name="cart_model" value="SNSP-006" /> |
| 27890 | 30357 | <feature name="cart_back_label" value="SNSP-FAH, SNSP-NOE" /> |
| 30358 | ||
| 30359 | <feature name="slot" value="lorom" /> | |
| 27891 | 30360 | <dataarea name="rom" size="1048576"> |
| 27892 | 30361 | <rom name="spal-ta-0.u1" size="1048576" crc="38cd6bb0" sha1="6748bcf849410d3b4797499447e76e51eba6d6a2" offset="0x000000" /> |
| 27893 | 30362 | </dataarea> |
| r21545 | r21546 | |
| 27908 | 30377 | <feature name="lockout" value="" /> |
| 27909 | 30378 | <feature name="cart_model" value="SHVC-006" /> |
| 27910 | 30379 | <feature name="cart_back_label" value="920214" /> |
| 30380 | ||
| 30381 | <feature name="slot" value="lorom" /> | |
| 27911 | 30382 | <dataarea name="rom" size="1048576"> |
| 27912 | 30383 | <rom name="shvc-ta-0.u1" size="1048576" crc="854fac00" sha1="388c11e761fe4cae2ba8cdcc1c518159b2a2db8c" offset="0x000000" /> |
| 27913 | 30384 | </dataarea> |
| r21545 | r21546 | |
| 27929 | 30400 | <feature name="cart_revision" value="A" /> |
| 27930 | 30401 | <feature name="cart_model" value="SHVC-006" /> |
| 27931 | 30402 | <feature name="cart_back_label" value="920214" /> |
| 30403 | ||
| 30404 | <feature name="slot" value="lorom" /> | |
| 27932 | 30405 | <dataarea name="rom" size="1048576"> |
| 27933 | 30406 | <rom name="shvc-ta-1.u1" size="1048576" crc="8f0d2c90" sha1="4aad2f83fc05e44baf050cafeff3e35069712305" offset="0x000000" /> |
| 27934 | 30407 | </dataarea> |
| r21545 | r21546 | |
| 27948 | 30421 | <feature name="lockout" value="" /> |
| 27949 | 30422 | <feature name="cart_model" value="SNS-006" /> |
| 27950 | 30423 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 30424 | ||
| 30425 | <feature name="slot" value="lorom" /> | |
| 27951 | 30426 | <dataarea name="rom" size="1048576"> |
| 27952 | 30427 | <rom name="sns-ta-0.u1" size="1048576" crc="ab48d27a" sha1="04bf92b242ba965c453b6eb13d522afb7db7996b" offset="0x000000" /> |
| 27953 | 30428 | </dataarea> |
| r21545 | r21546 | |
| 27967 | 30442 | <feature name="lockout" value="" /> |
| 27968 | 30443 | <feature name="cart_model" value="SNSP-006" /> |
| 27969 | 30444 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 30445 | ||
| 30446 | <feature name="slot" value="lorom" /> | |
| 27970 | 30447 | <dataarea name="rom" size="1048576"> |
| 27971 | 30448 | <rom name="spal-5z-0.u1" size="1048576" crc="ae78b20e" sha1="5adc0e760353db9ac4e060deb8eb9755f94b461d" offset="0x000000" /> |
| 27972 | 30449 | </dataarea> |
| r21545 | r21546 | |
| 27992 | 30469 | <feature name="cart_revision" value="A" /> |
| 27993 | 30470 | <feature name="cart_model" value="SHVC-006" /> |
| 27994 | 30471 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 30472 | ||
| 30473 | <feature name="slot" value="lorom" /> | |
| 27995 | 30474 | <dataarea name="rom" size="4194304"> |
| 27996 | 30475 | <rom name="shvc-am8j-1.u1" size="4194304" crc="ae9f3602" sha1="f46f5b0d964bbf5393763b9ebb8e7c50a9e5c9e7" offset="0x000000" /> |
| 27997 | 30476 | </dataarea> |
| r21545 | r21546 | |
| 28013 | 30492 | <feature name="lockout" value="" /> |
| 28014 | 30493 | <feature name="cart_model" value="SNS-006" /> |
| 28015 | 30494 | <feature name="cart_back_label" value="SNS-USA/CAN-1-M" /> |
| 30495 | ||
| 30496 | <feature name="slot" value="lorom" /> | |
| 28016 | 30497 | <dataarea name="rom" size="524288"> |
| 28017 | 30498 | <rom name="sns-p-tj-0.u1" size="524288" crc="8b1dafbb" sha1="768b7b339804ddf13aaca59713a4e2c5e7ef9f3a" offset="0x000000" /> |
| 28018 | 30499 | </dataarea> |
| r21545 | r21546 | |
| 28032 | 30513 | <feature name="lockout" value="D411A 9353 CB" /> |
| 28033 | 30514 | <feature name="cart_model" value="SNS-006" /> |
| 28034 | 30515 | <feature name="cart_back_label" value="" /> |
| 30516 | ||
| 30517 | <feature name="slot" value="lorom" /> | |
| 28035 | 30518 | <dataarea name="rom" size="1048576"> |
| 28036 | 30519 | <rom name="sns-xs-0.u1" size="1048576" crc="3d005f22" sha1="1135e1be00d8ad5d99a78862fc48bcb9fc58057b" offset="0x000000" /> |
| 28037 | 30520 | </dataarea> |
| r21545 | r21546 | |
| 28054 | 30537 | <feature name="lockout" value="" /> |
| 28055 | 30538 | <feature name="cart_model" value="SNSP-006" /> |
| 28056 | 30539 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 30540 | ||
| 30541 | <feature name="slot" value="lorom_dsp" /> | |
| 28057 | 30542 | <dataarea name="rom" size="1048576"> |
| 28058 | 30543 | <rom name="spal-a3tp-0.u1" size="1048576" crc="493fdb13" sha1="777d8732023a300a2c566f2d48bc354e0aa1da7e" offset="0x000000" /> |
| 28059 | 30544 | </dataarea> |
| 30545 | <dataarea name="addon" size="10240"> | |
| 30546 | <rom name="dsp4.u2" size="10240" crc="ce0c7783" sha1="76fd25f7dc26c3b3f7868a3aa78c7684068713e5" offset="0x000000" /> | |
| 30547 | </dataarea> | |
| 28060 | 30548 | </part> |
| 28061 | 30549 | </software> |
| 28062 | 30550 | |
| r21545 | r21546 | |
| 28078 | 30566 | <feature name="battery" value="BATT CR2032" /> |
| 28079 | 30567 | <feature name="cart_model" value="SHVC-006" /> |
| 28080 | 30568 | <feature name="cart_back_label" value="920214" /> |
| 30569 | ||
| 30570 | <feature name="slot" value="lorom" /> | |
| 28081 | 30571 | <dataarea name="rom" size="1572864"> |
| 28082 | 30572 | <rom name="shvc-qc-0 p0.u1" size="1048576" crc="78b75f24" sha1="181cfd9d35c5dde8ff08923f0a2a0132ce9eb8ec" offset="0x000000" /> |
| 28083 | 30573 | <rom name="shvc-qc-0 p1.u2" size="524288" crc="01898322" sha1="ebb21166115d850ca7d06531ffe9286ba950c12d" offset="0x100000" /> |
| r21545 | r21546 | |
| 28117 | 30607 | --> |
| 28118 | 30608 | <feature name="cart_model" value="SHVC-006" /> |
| 28119 | 30609 | <feature name="cart_back_label" value="920214" /> |
| 30610 | ||
| 30611 | <feature name="slot" value="lorom" /> | |
| 28120 | 30612 | <dataarea name="rom" size="1572864"> |
| 28121 | 30613 | <rom name="shvc-tq-0 p0.u1" size="1048576" crc="dbe460f8" sha1="e8aa505a3822b2e4fe5360e898e393b82a507762" offset="0x000000" /> |
| 28122 | 30614 | <rom name="shvc-tq-0 p1.u2" size="524288" crc="402c1e74" sha1="36df7ea14f823ec0a2829be5d1db8193555225a6" offset="0x100000" /> |
| r21545 | r21546 | |
| 28146 | 30638 | <feature name="cart_revision" value="A" /> |
| 28147 | 30639 | <feature name="cart_model" value="SHVC-006" /> |
| 28148 | 30640 | <feature name="cart_back_label" value="920214" /> |
| 30641 | ||
| 30642 | <feature name="slot" value="lorom" /> | |
| 28149 | 30643 | <dataarea name="rom" size="1572864"> |
| 28150 | 30644 | <rom name="shvc-tq-1 p0.u1" size="1048576" crc="57d68794" sha1="0eb7d8bba91b2eda98d5335c23861a90441da9b6" offset="0x000000" /> |
| 28151 | 30645 | <rom name="shvc-tq-1 p1.u2" size="524288" crc="402c1e74" sha1="36df7ea14f823ec0a2829be5d1db8193555225a6" offset="0x100000" /> |
| r21545 | r21546 | |
| 28172 | 30666 | <feature name="battery" value="BATT CR2032" /> |
| 28173 | 30667 | <feature name="cart_model" value="SHVC-006" /> |
| 28174 | 30668 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 30669 | ||
| 30670 | <feature name="slot" value="lorom" /> | |
| 28175 | 30671 | <dataarea name="rom" size="3145728"> |
| 28176 | 30672 | <rom name="shvc-acqj-0.u1" size="3145728" crc="03fd7ad4" sha1="d72c79911eb1ed54a22010ed29a37748bc3334cd" offset="0x000000" /> |
| 28177 | 30673 | </dataarea> |
| r21545 | r21546 | |
| 28192 | 30688 | <feature name="lockout" value="" /> |
| 28193 | 30689 | <feature name="cart_model" value="SNSP-006" /> |
| 28194 | 30690 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 30691 | ||
| 30692 | <feature name="slot" value="hirom" /> | |
| 28195 | 30693 | <dataarea name="rom" size="4194304"> |
| 28196 | 30694 | <rom name="spal-aqhp-0.u1" size="4194304" crc="b144d588" sha1="ccf547dd741bd98762662fdffd964df5b5791092" offset="0x000000" /> |
| 28197 | 30695 | </dataarea> |
| r21545 | r21546 | |
| 28211 | 30709 | <feature name="lockout" value="" /> |
| 28212 | 30710 | <feature name="cart_model" value="SNS-006" /> |
| 28213 | 30711 | <feature name="cart_back_label" value="" /> |
| 30712 | ||
| 30713 | <feature name="slot" value="hirom" /> | |
| 28214 | 30714 | <dataarea name="rom" size="4194304"> |
| 28215 | 30715 | <rom name="sns-aqhe-0.u1" size="4194304" crc="8328822b" sha1="ffadfea439cb5ca3b84911af6b7bfee478d9f33c" offset="0x000000" /> |
| 28216 | 30716 | </dataarea> |
| r21545 | r21546 | |
| 28234 | 30734 | <feature name="battery" value="BATT CR2032" /> |
| 28235 | 30735 | <feature name="cart_model" value="SHVC-006" /> |
| 28236 | 30736 | <feature name="cart_back_label" value="920214" /> |
| 30737 | ||
| 30738 | <feature name="slot" value="lorom" /> | |
| 28237 | 30739 | <dataarea name="rom" size="3145728"> |
| 28238 | 30740 | <rom name="shvc-aegj-0.u1" size="3145728" crc="3cceed49" sha1="2fd4acdf34424a85b9371ab9bf0438de1d8f72c5" offset="0x000000" /> |
| 28239 | 30741 | </dataarea> |
| r21545 | r21546 | |
| 28258 | 30760 | <feature name="battery" value="BATT CR2032" /> |
| 28259 | 30761 | <feature name="cart_model" value="SNS-006" /> |
| 28260 | 30762 | <feature name="cart_back_label" value="" /> |
| 30763 | ||
| 30764 | <feature name="slot" value="lorom" /> | |
| 28261 | 30765 | <dataarea name="rom" size="1048576"> |
| 28262 | 30766 | <rom name="sns-w8-0.u1" size="1048576" crc="26177842" sha1="9331e9803706ab2298ee57bb4b4f65bff6d7b00e" offset="0x000000" /> |
| 28263 | 30767 | </dataarea> |
| r21545 | r21546 | |
| 28283 | 30787 | <feature name="battery" value="BATT CR2032" /> |
| 28284 | 30788 | <feature name="cart_model" value="SHVC-006" /> |
| 28285 | 30789 | <feature name="cart_back_label" value="920214" /> |
| 30790 | ||
| 30791 | <feature name="slot" value="lorom" /> | |
| 28286 | 30792 | <dataarea name="rom" size="1048576"> |
| 28287 | 30793 | <rom name="shvc-2o-0.u1" size="1048576" crc="bbbff8d8" sha1="4cb107cbef4fa5907ed0f2123de7a475bad7aa34" offset="0x000000" /> |
| 28288 | 30794 | </dataarea> |
| r21545 | r21546 | |
| 28303 | 30809 | <feature name="lockout" value="" /> |
| 28304 | 30810 | <feature name="cart_model" value="SNSP-006" /> |
| 28305 | 30811 | <feature name="cart_back_label" value="SNSP-UKV" /> |
| 30812 | ||
| 30813 | <feature name="slot" value="lorom" /> | |
| 28306 | 30814 | <dataarea name="rom" size="2097152"> |
| 28307 | 30815 | <rom name="spal-te-0.u1" size="2097152" crc="c2423607" sha1="db535c28ba961787e19718849441e1f4fa1234b6" offset="0x000000" /> |
| 28308 | 30816 | </dataarea> |
| r21545 | r21546 | |
| 28327 | 30835 | <feature name="battery" value="BATT CR2032" /> |
| 28328 | 30836 | <feature name="cart_model" value="SHVC-006" /> |
| 28329 | 30837 | <feature name="cart_back_label" value="920214" /> |
| 30838 | ||
| 30839 | <feature name="slot" value="lorom" /> | |
| 28330 | 30840 | <dataarea name="rom" size="1048576"> |
| 28331 | 30841 | <rom name="shvc-t7-0.u1" size="1048576" crc="91867af4" sha1="9991b9ed49c7fe663deeb9ec51b54a216b957a1f" offset="0x000000" /> |
| 28332 | 30842 | </dataarea> |
| r21545 | r21546 | |
| 28350 | 30860 | <feature name="lockout" value="D411A 9415 B" /> |
| 28351 | 30861 | <feature name="cart_model" value="SNS-006" /> |
| 28352 | 30862 | <feature name="cart_back_label" value="" /> |
| 30863 | ||
| 30864 | <feature name="slot" value="lorom" /> | |
| 28353 | 30865 | <dataarea name="rom" size="1572864"> |
| 28354 | 30866 | <rom name="sns-hp-0 p0.u1" size="1048576" crc="43c1b8ae" sha1="a9e6ac2b68fd369e591884c9a7042aac7b6e5225" offset="0x000000" /> |
| 28355 | 30867 | <!-- the second rom should be good but the size needs to be confirmed --> |
| r21545 | r21546 | |
| 28370 | 30882 | <feature name="lockout" value="" /> |
| 28371 | 30883 | <feature name="cart_model" value="SNSP-006" /> |
| 28372 | 30884 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 30885 | ||
| 30886 | <feature name="slot" value="hirom" /> | |
| 28373 | 30887 | <dataarea name="rom" size="4194304"> |
| 28374 | 30888 | <rom name="snsp-p-a3zp.u1" size="4194304" crc="1c4c54d2" sha1="ee419f3a567e1f0d88d568df641d1af16d4db148" offset="0x000000" /> |
| 28375 | 30889 | </dataarea> |
| r21545 | r21546 | |
| 28389 | 30903 | <feature name="lockout" value="" /> |
| 28390 | 30904 | <feature name="cart_model" value="SNS-006" /> |
| 28391 | 30905 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 30906 | ||
| 30907 | <feature name="slot" value="hirom" /> | |
| 28392 | 30908 | <dataarea name="rom" size="4194304"> |
| 28393 | 30909 | <rom name="sns-a3ze.u1" size="4194304" crc="f5bfe41e" sha1="09c094ca1114bcb6d5917e989686ca79b96cf9ea" offset="0x000000" /> |
| 28394 | 30910 | </dataarea> |
| r21545 | r21546 | |
| 28412 | 30928 | <feature name="battery" value="BATT CR2032" /> |
| 28413 | 30929 | <feature name="cart_model" value="SHVC-006" /> |
| 28414 | 30930 | <feature name="cart_back_label" value="920214" /> |
| 30931 | ||
| 30932 | <feature name="slot" value="lorom" /> | |
| 28415 | 30933 | <dataarea name="rom" size="524288"> |
| 28416 | 30934 | <rom name="shvc-u2-0.u1" size="524288" crc="69ab65c5" sha1="640901b943a59873c3a675468ac27302d9c1a0c7" offset="0x000000" /> |
| 28417 | 30935 | </dataarea> |
| r21545 | r21546 | |
| 28437 | 30955 | <feature name="battery" value="BATT CR2032" /> |
| 28438 | 30956 | <feature name="cart_model" value="SHVC-006" /> |
| 28439 | 30957 | <feature name="cart_back_label" value="920214" /> |
| 30958 | ||
| 30959 | <feature name="slot" value="lorom" /> | |
| 28440 | 30960 | <dataarea name="rom" size="2097152"> |
| 28441 | 30961 | <rom name="shvc-au2j-0.u1" size="2097152" crc="58a4c4fa" sha1="7bd29d705ab9a807eeaa641eb930ecdc17a7cfb2" offset="0x000000" /> |
| 28442 | 30962 | </dataarea> |
| r21545 | r21546 | |
| 28459 | 30979 | <feature name="lockout" value="" /> |
| 28460 | 30980 | <feature name="cart_model" value="SHVC-006" /> |
| 28461 | 30981 | <feature name="cart_back_label" value="920214" /> |
| 30982 | ||
| 30983 | <feature name="slot" value="lorom" /> | |
| 28462 | 30984 | <dataarea name="rom" size="1048576"> |
| 28463 | 30985 | <rom name="shvc-u7-0.u1" size="1048576" crc="71b24bee" sha1="3488bba31a1fcfcb82671c7d6b3402151ad78b9f" offset="0x000000" /> |
| 28464 | 30986 | </dataarea> |
| r21545 | r21546 | |
| 28479 | 31001 | <feature name="lockout" value="" /> |
| 28480 | 31002 | <feature name="cart_model" value="SHVC-006" /> |
| 28481 | 31003 | <feature name="cart_back_label" value="901121" /> |
| 31004 | ||
| 31005 | <feature name="slot" value="lorom" /> | |
| 28482 | 31006 | <dataarea name="rom" size="524288"> |
| 28483 | 31007 | <rom name="shvc-um-0.u1" size="524288" crc="3495adf0" sha1="fa8c12862bcd350336e17bcce5ac1284ef1072c5" offset="0x000000" /> |
| 28484 | 31008 | </dataarea> |
| r21545 | r21546 | |
| 28502 | 31026 | <feature name="battery" value="BATT CR2032" /> |
| 28503 | 31027 | <feature name="cart_model" value="SHVC-006" /> |
| 28504 | 31028 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 31029 | ||
| 31030 | <feature name="slot" value="lorom" /> | |
| 28505 | 31031 | <dataarea name="rom" size="2097152"> |
| 28506 | 31032 | <rom name="shvc-a6uj-0.u1" size="2097152" crc="0689ee4a" sha1="f703dcdeb633f32557f4ea5d78111f24cf66e8ff" offset="0x000000" /> |
| 28507 | 31033 | </dataarea> |
| r21545 | r21546 | |
| 28526 | 31052 | <feature name="battery" value="BATT CR2032" /> |
| 28527 | 31053 | <feature name="cart_model" value="SNS-006" /> |
| 28528 | 31054 | <feature name="cart_back_label" value="" /> |
| 31055 | ||
| 31056 | <feature name="slot" value="lorom" /> | |
| 28529 | 31057 | <dataarea name="rom" size="1048576"> |
| 28530 | 31058 | <rom name="sns-qk-0.u1" size="1048576" crc="95724a2f" sha1="08aa3634b5cf3b912b1afc74d6ef6183e8c65299" offset="0x000000" /> |
| 28531 | 31059 | </dataarea> |
| r21545 | r21546 | |
| 28550 | 31078 | <feature name="battery" value="BATT CR2032" /> |
| 28551 | 31079 | <feature name="cart_model" value="SNS-006" /> |
| 28552 | 31080 | <feature name="cart_back_label" value="" /> |
| 31081 | ||
| 31082 | <feature name="slot" value="hirom" /> | |
| 28553 | 31083 | <dataarea name="rom" size="2097152"> |
| 28554 | 31084 | <rom name="sns-ql-0.u1" size="2097152" crc="3c3c63e6" sha1="e63bcbed001c63011df0ac043bc56d0fe323482f" offset="0x000000" /> |
| 28555 | 31085 | </dataarea> |
| r21545 | r21546 | |
| 28572 | 31102 | <feature name="lockout" value="" /> |
| 28573 | 31103 | <feature name="cart_model" value="SHVC-006" /> |
| 28574 | 31104 | <feature name="cart_back_label" value="" /> |
| 31105 | ||
| 31106 | <feature name="slot" value="hirom" /> | |
| 28575 | 31107 | <dataarea name="rom" size="2097152"> |
| 28576 | 31108 | <rom name="shvc-aucj-0.u1" size="2097152" crc="b574c939" sha1="1bee4ffd169648ce693a127f06ad6e8f7c2fa2c6" offset="0x000000" /> |
| 28577 | 31109 | </dataarea> |
| r21545 | r21546 | |
| 28594 | 31126 | <feature name="battery" value="BATT CR2032" /> |
| 28595 | 31127 | <feature name="cart_model" value="SNS-006" /> |
| 28596 | 31128 | <feature name="cart_back_label" value="" /> |
| 31129 | ||
| 31130 | <feature name="slot" value="lorom" /> | |
| 28597 | 31131 | <dataarea name="rom" size="2097152"> |
| 28598 | 31132 | <rom name="sns-4l-0.u1" size="2097152" crc="383858c7" sha1="cb249cf7301bdd985e6fe4bc4c942bf4f86d7d83" offset="0x000000" /> |
| 28599 | 31133 | </dataarea> |
| r21545 | r21546 | |
| 28614 | 31148 | <feature name="lockout" value="" /> |
| 28615 | 31149 | <feature name="cart_model" value="SNSP-006" /> |
| 28616 | 31150 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 31151 | ||
| 31152 | <feature name="slot" value="lorom" /> | |
| 28617 | 31153 | <dataarea name="rom" size="1048576"> |
| 28618 | 31154 | <rom name="spal-8z-0.u1" size="1048576" crc="de31d87a" sha1="3518bf0c7539f2441a8e73ad1c59a0e9971489b6" offset="0x000000" /> |
| 28619 | 31155 | </dataarea> |
| r21545 | r21546 | |
| 28632 | 31168 | <feature name="lockout" value="" /> |
| 28633 | 31169 | <feature name="cart_model" value="SNSP-006" /> |
| 28634 | 31170 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 31171 | ||
| 31172 | <feature name="slot" value="lorom" /> | |
| 28635 | 31173 | <dataarea name="rom" size="1048576"> |
| 28636 | 31174 | <rom name="spal-8v-0.u1" size="1048576" crc="01b3114a" sha1="9b41348b640f49cbf0e7ab7f553d36b6f00aba95" offset="0x000000" /> |
| 28637 | 31175 | </dataarea> |
| r21545 | r21546 | |
| 28654 | 31192 | <feature name="battery" value="BATT CR2032" /> |
| 28655 | 31193 | <feature name="cart_model" value="SNSP-006" /> |
| 28656 | 31194 | <feature name="cart_back_label" value="920214" /> |
| 31195 | ||
| 31196 | <feature name="slot" value="lorom" /> | |
| 28657 | 31197 | <dataarea name="rom" size="1048576"> |
| 28658 | 31198 | <rom name="spal-vx-0.u1" size="1048576" crc="ecb8a53a" sha1="9347bdc49b2196bebf01a695530cd0f1e79911d3" offset="0x000000" /> |
| 28659 | 31199 | </dataarea> |
| r21545 | r21546 | |
| 28676 | 31216 | <feature name="lockout" value="" /> |
| 28677 | 31217 | <feature name="cart_model" value="SHVC-006" /> |
| 28678 | 31218 | <feature name="cart_back_label" value="920214" /> |
| 31219 | ||
| 31220 | <feature name="slot" value="lorom" /> | |
| 28679 | 31221 | <dataarea name="rom" size="1048576"> |
| 28680 | 31222 | <rom name="shvc-vj-0.u1" size="1048576" crc="ff3a1dfe" sha1="0def68b7ad2fcb2c8836ac26b5e3099143c6fe4e" offset="0x000000" /> |
| 28681 | 31223 | </dataarea> |
| r21545 | r21546 | |
| 28699 | 31241 | <feature name="battery" value="BATT CR2032" /> |
| 28700 | 31242 | <feature name="cart_model" value="SHVC-006" /> |
| 28701 | 31243 | <feature name="cart_back_label" value="920214" /> |
| 31244 | ||
| 31245 | <feature name="slot" value="lorom" /> | |
| 28702 | 31246 | <dataarea name="rom" size="1048576"> |
| 28703 | 31247 | <rom name="shvc-vt-0.u1" size="1048576" crc="a3f4af43" sha1="b5e340fcf5476a0d395fd7a9b12382cde399d636" offset="0x000000" /> |
| 28704 | 31248 | </dataarea> |
| r21545 | r21546 | |
| 28724 | 31268 | <feature name="battery" value="none" /> |
| 28725 | 31269 | <feature name="cart_model" value="SNSP-006" /> |
| 28726 | 31270 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 31271 | ||
| 31272 | <feature name="slot" value="lorom_sfx" /> | |
| 28727 | 31273 | <dataarea name="rom" size="524288"> |
| 28728 | 31274 | <rom name="spal-4v-0.u1" size="524288" crc="c6867604" sha1="92daba15d422654c29c01457b572c07f06a2c1bc" offset="0x000000" /> |
| 28729 | 31275 | </dataarea> |
| r21545 | r21546 | |
| 28751 | 31297 | <feature name="battery" value="none" /> |
| 28752 | 31298 | <feature name="cart_model" value="SHVC-006" /> |
| 28753 | 31299 | <feature name="cart_back_label" value="920214" /> |
| 31300 | ||
| 31301 | <feature name="slot" value="lorom_sfx" /> | |
| 28754 | 31302 | <dataarea name="rom" size="524288"> |
| 28755 | 31303 | <rom name="shvc-4v-0.u1" size="524288" crc="51e8a19c" sha1="1479432ea185db8ecb109f6e5422e1464b5bdf3c" offset="0x000000" /> |
| 28756 | 31304 | </dataarea> |
| r21545 | r21546 | |
| 28775 | 31323 | <feature name="lockout" value="" /> |
| 28776 | 31324 | <feature name="cart_model" value="SHVC-006" /> |
| 28777 | 31325 | <feature name="cart_back_label" value="920214" /> |
| 31326 | ||
| 31327 | <feature name="slot" value="lorom" /> | |
| 28778 | 31328 | <dataarea name="rom" size="1310720"> |
| 28779 | 31329 | <rom name="shvc-awlj-0 p0.u1" size="1048576" crc="b45d3a56" sha1="c08f7e057c93f547e202473d1014beddf8233166" offset="0x000000" /> |
| 28780 | 31330 | <rom name="shvc-awlj-0 p1.u2" size="262144" crc="2fa9fe46" sha1="da911d0064c1eb3aae152ab4bd20dce70aac52f4" offset="0x100000" /> |
| r21545 | r21546 | |
| 28799 | 31349 | <feature name="battery" value="BATT CR2032" /> |
| 28800 | 31350 | <feature name="cart_model" value="SHVC-006" /> |
| 28801 | 31351 | <feature name="cart_back_label" value="920214" /> |
| 31352 | ||
| 31353 | <feature name="slot" value="lorom" /> | |
| 28802 | 31354 | <dataarea name="rom" size="1048576"> |
| 28803 | 31355 | <rom name="shvc-ow-0.u1" size="1048576" crc="05eafa58" sha1="90941d796f88a5e5f9d0af32a434bc65ca40c173" offset="0x000000" /> |
| 28804 | 31356 | </dataarea> |
| r21545 | r21546 | |
| 28823 | 31375 | <feature name="battery" value="BATT CR2032" /> |
| 28824 | 31376 | <feature name="cart_model" value="SNS-006" /> |
| 28825 | 31377 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 31378 | ||
| 31379 | <feature name="slot" value="lorom" /> | |
| 28826 | 31380 | <dataarea name="rom" size="1048576"> |
| 28827 | 31381 | <rom name="sns-65-0.u1" size="1048576" crc="2d1004f1" sha1="1d814276114bd5cafb6ab041305ce83e8093dc10" offset="0x000000" /> |
| 28828 | 31382 | </dataarea> |
| r21545 | r21546 | |
| 28843 | 31397 | <feature name="lockout" value="" /> |
| 28844 | 31398 | <feature name="cart_model" value="SNSP-006" /> |
| 28845 | 31399 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 31400 | ||
| 31401 | <feature name="slot" value="lorom" /> | |
| 28846 | 31402 | <dataarea name="rom" size="2097152"> |
| 28847 | 31403 | <rom name="spal-awkp-0.u1" size="2097152" crc="d90530ac" sha1="50e581458ae7643d2ff950e88a3d3461b0576946" offset="0x000000" /> |
| 28848 | 31404 | </dataarea> |
| r21545 | r21546 | |
| 28862 | 31418 | <feature name="lockout" value="" /> |
| 28863 | 31419 | <feature name="cart_model" value="SNS-006" /> |
| 28864 | 31420 | <feature name="cart_back_label" value="" /> |
| 31421 | ||
| 31422 | <feature name="slot" value="lorom" /> | |
| 28865 | 31423 | <dataarea name="rom" size="2097152"> |
| 28866 | 31424 | <rom name="sns-awke-0.u1" size="2097152" crc="a47884d0" sha1="2661eeaa061c3d86ad4189dd45eb41276d4af31e" offset="0x000000" /> |
| 28867 | 31425 | </dataarea> |
| r21545 | r21546 | |
| 28885 | 31443 | <feature name="battery" value="BATT CR2032" /> |
| 28886 | 31444 | <feature name="cart_model" value="SNS-006" /> |
| 28887 | 31445 | <feature name="cart_back_label" value="" /> |
| 31446 | ||
| 31447 | <feature name="slot" value="lorom" /> | |
| 28888 | 31448 | <dataarea name="rom" size="1572864"> |
| 28889 | 31449 | <rom name="sns-awze-0 p0.u1" size="1048576" crc="8489bbd7" sha1="83fc4af72d649bf873b18bcb0be230aabe83a4ba" offset="0x000000" /> |
| 28890 | 31450 | <rom name="sns-awze-0 p1.u2" size="524288" crc="4f85ce12" sha1="97569ff28b35394553dc76d30de67cc3a5e2762b" offset="0x100000" /> |
| r21545 | r21546 | |
| 28908 | 31468 | <feature name="lockout" value="" /> |
| 28909 | 31469 | <feature name="cart_model" value="SHVC-006" /> |
| 28910 | 31470 | <feature name="cart_back_label" value="920214" /> |
| 31471 | ||
| 31472 | <feature name="slot" value="lorom" /> | |
| 28911 | 31473 | <dataarea name="rom" size="1048576"> |
| 28912 | 31474 | <rom name="shvc-awhj-0.u1" size="1048576" crc="5fc89932" sha1="a40f2ca85f532f74e769fa3d3265121d3a98666d" offset="0x000000" /> |
| 28913 | 31475 | </dataarea> |
| r21545 | r21546 | |
| 28926 | 31488 | <feature name="lockout" value="" /> |
| 28927 | 31489 | <feature name="cart_model" value="SNSP-006" /> |
| 28928 | 31490 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 31491 | ||
| 31492 | <feature name="slot" value="lorom" /> | |
| 28929 | 31493 | <dataarea name="rom" size="1048576"> |
| 28930 | 31494 | <rom name="spal-6d-0.u1" size="1048576" crc="33fbcd2d" sha1="c81dad063c65caedf40db1adb2ed2d03cec8caa7" offset="0x000000" /> |
| 28931 | 31495 | </dataarea> |
| r21545 | r21546 | |
| 28945 | 31509 | <feature name="lockout" value="" /> |
| 28946 | 31510 | <feature name="cart_model" value="SNS-006" /> |
| 28947 | 31511 | <feature name="cart_back_label" value="SNS-USA/CAN-1-M" /> |
| 31512 | ||
| 31513 | <feature name="slot" value="lorom" /> | |
| 28948 | 31514 | <dataarea name="rom" size="524288"> |
| 28949 | 31515 | <rom name="sns-p-xf-0.u1" size="524288" crc="d6a5984c" sha1="749e92f33ad803ce51d9faaf92670dfbe64a5770" offset="0x000000" /> |
| 28950 | 31516 | </dataarea> |
| r21545 | r21546 | |
| 28963 | 31529 | <feature name="lockout" value="" /> |
| 28964 | 31530 | <feature name="cart_model" value="SNSP-006" /> |
| 28965 | 31531 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 31532 | ||
| 31533 | <feature name="slot" value="lorom" /> | |
| 28966 | 31534 | <dataarea name="rom" size="1048576"> |
| 28967 | 31535 | <rom name="spal-wx-0.u1" size="1048576" crc="b7a66353" sha1="2a1877df758372edd5673491fada6f29ab527bde" offset="0x000000" /> |
| 28968 | 31536 | </dataarea> |
| r21545 | r21546 | |
| 28981 | 31549 | <feature name="lockout" value="" /> |
| 28982 | 31550 | <feature name="cart_model" value="SNSP-006" /> |
| 28983 | 31551 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 31552 | ||
| 31553 | <feature name="slot" value="lorom" /> | |
| 28984 | 31554 | <dataarea name="rom" size="1048576"> |
| 28985 | 31555 | <rom name="spal-azwp-0.u1" size="1048576" crc="762d214f" sha1="de8a253d1282841e9037e7208323687fc86ed5c6" offset="0x000000" /> |
| 28986 | 31556 | </dataarea> |
| r21545 | r21546 | |
| 29000 | 31570 | <feature name="lockout" value="" /> |
| 29001 | 31571 | <feature name="cart_model" value="SNSP-006" /> |
| 29002 | 31572 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 31573 | ||
| 31574 | <feature name="slot" value="lorom" /> | |
| 29003 | 31575 | <dataarea name="rom" size="1048576"> |
| 29004 | 31576 | <rom name="spal-4w-0.u1" size="1048576" crc="6e939dd3" sha1="df2c8428cd7093f1b4624d47ccbe868207e7aaf0" offset="0x000000" /> |
| 29005 | 31577 | </dataarea> |
| r21545 | r21546 | |
| 29031 | 31603 | <feature name="cart_revision" value="Ø" /> |
| 29032 | 31604 | <feature name="cart_model" value="SHVC-006" /> |
| 29033 | 31605 | <feature name="cart_back_label" value="920214" /> |
| 31606 | ||
| 31607 | <feature name="slot" value="lorom_sfx" /> | |
| 29034 | 31608 | <dataarea name="rom" size="1048576"> |
| 29035 | 31609 | <rom name="shvc-cq-1.u1" size="1048576" crc="017c68c5" sha1="b51199fa2afb0a161d6afdabfa0575513913dde1" offset="0x000000" /> |
| 29036 | 31610 | </dataarea> |
| r21545 | r21546 | |
| 29052 | 31626 | <feature name="lockout" value="D411A 9231 CA" /> |
| 29053 | 31627 | <feature name="cart_model" value="SNS-006" /> |
| 29054 | 31628 | <feature name="cart_back_label" value="" /> |
| 31629 | ||
| 31630 | <feature name="slot" value="lorom" /> | |
| 29055 | 31631 | <dataarea name="rom" size="524288"> |
| 29056 | 31632 | <rom name="sns-wg-0.u1" size="524288" crc="1637d1a5" sha1="4e09d2dc7bb60973f4ed4a3f7f34f1f3bd672a57" offset="0x000000" /> |
| 29057 | 31633 | </dataarea> |
| r21545 | r21546 | |
| 29070 | 31646 | <feature name="lockout" value="" /> |
| 29071 | 31647 | <feature name="cart_model" value="SNSP-006" /> |
| 29072 | 31648 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 31649 | ||
| 31650 | <feature name="slot" value="lorom" /> | |
| 29073 | 31651 | <dataarea name="rom" size="1048576"> |
| 29074 | 31652 | <rom name="sfrg-wc-0.u1" size="1048576" crc="c8a95814" sha1="4573a4db25707dec5468c0b4cfebfe54a56ddfca" offset="0x000000" /> |
| 29075 | 31653 | </dataarea> |
| r21545 | r21546 | |
| 29090 | 31668 | <feature name="lockout" value="" /> |
| 29091 | 31669 | <feature name="cart_model" value="SHVC-006" /> |
| 29092 | 31670 | <feature name="cart_back_label" value="920214" /> |
| 31671 | ||
| 31672 | <feature name="slot" value="lorom" /> | |
| 29093 | 31673 | <dataarea name="rom" size="1048576"> |
| 29094 | 31674 | <rom name="shvc-wc-0.u1" size="1048576" crc="42299cea" sha1="0cfeb3a4ff98b62708c9af2e951b49976b2bee90" offset="0x000000" /> |
| 29095 | 31675 | </dataarea> |
| r21545 | r21546 | |
| 29113 | 31693 | <feature name="battery" value="BATT CR2032" /> |
| 29114 | 31694 | <feature name="cart_model" value="SHVC-006" /> |
| 29115 | 31695 | <feature name="cart_back_label" value="920214" /> |
| 31696 | ||
| 31697 | <feature name="slot" value="hirom" /> | |
| 29116 | 31698 | <dataarea name="rom" size="2097152"> |
| 29117 | 31699 | <rom name="shvc-wj-0.u1" size="2097152" crc="e0af8150" sha1="b59127e1ee0838bfeb7c1a21f08ef6f2f593c335" offset="0x000000" /> |
| 29118 | 31700 | </dataarea> |
| r21545 | r21546 | |
| 29139 | 31721 | <feature name="cart_revision" value="A" /> |
| 29140 | 31722 | <feature name="cart_model" value="SHVC-006" /> |
| 29141 | 31723 | <feature name="cart_back_label" value="920214" /> |
| 31724 | ||
| 31725 | <feature name="slot" value="hirom" /> | |
| 29142 | 31726 | <dataarea name="rom" size="2097152"> |
| 29143 | 31727 | <rom name="shvc-wj-1.u1" size="2097152" crc="5b30edd9" sha1="1f32446666090ca2d1b63ca06c39848ca2f5e324" offset="0x000000" /> |
| 29144 | 31728 | </dataarea> |
| r21545 | r21546 | |
| 29165 | 31749 | <feature name="battery" value="BATT CR2032" /> |
| 29166 | 31750 | <feature name="cart_model" value="SHVC-006" /> |
| 29167 | 31751 | <feature name="cart_back_label" value="920214" /> |
| 31752 | ||
| 31753 | <feature name="slot" value="hirom" /> | |
| 29168 | 31754 | <dataarea name="rom" size="3145728"> |
| 29169 | 31755 | <rom name="shvc-awpj-0 p0.u1" size="2097152" crc="70680a89" sha1="7497765b11b9e9bd69562f0bfeeae4030d12fbc3" offset="0x000000" /> |
| 29170 | 31756 | <rom name="shvc-awpj-0 p3.u2" size="1048576" crc="8ea20be5" sha1="d94ee3bac42931a29269aa76ec2aed1e14f0e836" offset="0x200000" /> |
| r21545 | r21546 | |
| 29193 | 31779 | <feature name="battery" value="none" /> |
| 29194 | 31780 | <feature name="cart_model" value="SNSP-006(-03)" /> |
| 29195 | 31781 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 31782 | ||
| 31783 | <feature name="slot" value="lorom_sfx" /> | |
| 29196 | 31784 | <dataarea name="rom" size="2097152"> |
| 29197 | 31785 | <rom name="spal-axsp-0.u1" size="2097152" crc="0f8378a6" sha1="dc7f33e6bb587d7290f6a2587bb31af15724dfa3" offset="0x000000" /> |
| 29198 | 31786 | </dataarea> |
| r21545 | r21546 | |
| 29219 | 31807 | <feature name="battery" value="BATT CR2032" /> |
| 29220 | 31808 | <feature name="cart_model" value="SNS-006" /> |
| 29221 | 31809 | <feature name="cart_back_label" value="" /> |
| 31810 | ||
| 31811 | <feature name="slot" value="hirom" /> | |
| 29222 | 31812 | <dataarea name="rom" size="2097152"> |
| 29223 | 31813 | <rom name="shvc-wq-0.u1" size="2097152" crc="630f8d0d" sha1="b144609c720df7303bf03d566d28a376dc59b559" offset="0x000000" /> |
| 29224 | 31814 | </dataarea> |
| r21545 | r21546 | |
| 29244 | 31834 | <feature name="battery" value="BATT CR2032" /> |
| 29245 | 31835 | <feature name="cart_model" value="SHVC-006" /> |
| 29246 | 31836 | <feature name="cart_back_label" value="920214" /> |
| 31837 | ||
| 31838 | <feature name="slot" value="lorom" /> | |
| 29247 | 31839 | <dataarea name="rom" size="1048576"> |
| 29248 | 31840 | <rom name="shvc-w5-0.u1" size="1048576" crc="547cf7b9" sha1="358879670b8fad1c94f52a5c6be37039b417b2aa" offset="0x000000" /> |
| 29249 | 31841 | </dataarea> |
| r21545 | r21546 | |
| 29270 | 31862 | <feature name="battery" value="BATT CR2032" /> |
| 29271 | 31863 | <feature name="cart_model" value="SHVC-006" /> |
| 29272 | 31864 | <feature name="cart_back_label" value="920214" /> |
| 31865 | ||
| 31866 | <feature name="slot" value="lorom" /> | |
| 29273 | 31867 | <dataarea name="rom" size="3145728"> |
| 29274 | 31868 | <rom name="shvc-aw6j-0 p0.u1" size="2097152" crc="66f68148" sha1="4bc2e1be5a3ca3f4d30399d81c504a876d4fd4bc" offset="0x000000" /> |
| 29275 | 31869 | <rom name="shvc-aw6j-0 p3.u2" size="1048576" crc="61cb127a" sha1="dec3ff886b72dd839d2632fc0ae9afd999864f55" offset="0x200000" /> |
| r21545 | r21546 | |
| 29294 | 31888 | <feature name="lockout" value="" /> |
| 29295 | 31889 | <feature name="cart_model" value="SHVC-006" /> |
| 29296 | 31890 | <feature name="cart_back_label" value="920214" /> |
| 31891 | ||
| 31892 | <feature name="slot" value="hirom" /> | |
| 29297 | 31893 | <dataarea name="rom" size="1048576"> |
| 29298 | 31894 | <rom name="shvc-6w-0.u1" size="1048576" crc="cc47b8f9" sha1="0dad8a2226c3fda0eeba96b37fb24eeb8d198513" offset="0x000000" /> |
| 29299 | 31895 | </dataarea> |
| r21545 | r21546 | |
| 29316 | 31912 | <feature name="battery" value="BATT CR2032" /> |
| 29317 | 31913 | <feature name="cart_model" value="SNSP-006" /> |
| 29318 | 31914 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 31915 | ||
| 31916 | <feature name="slot" value="hirom" /> | |
| 29319 | 31917 | <dataarea name="rom" size="1048576"> |
| 29320 | 31918 | <rom name="spal-5w-0.u1" size="1048576" crc="6d16f5e7" sha1="3e199976050b0e6f53b8529409671354948d450f" offset="0x000000" /> |
| 29321 | 31919 | </dataarea> |
| r21545 | r21546 | |
| 29341 | 31939 | <feature name="battery" value="BATT CR2032" /> |
| 29342 | 31940 | <feature name="cart_model" value="SHVC-006" /> |
| 29343 | 31941 | <feature name="cart_back_label" value="920214" /> |
| 31942 | ||
| 31943 | <feature name="slot" value="hirom" /> | |
| 29344 | 31944 | <dataarea name="rom" size="1048576"> |
| 29345 | 31945 | <rom name="shvc-5w-0.u1" size="1048576" crc="cab690a1" sha1="8304e45d14c752e0b31baa416fd9b88187dda144" offset="0x000000" /> |
| 29346 | 31946 | </dataarea> |
| r21545 | r21546 | |
| 29361 | 31961 | <feature name="lockout" value="" /> |
| 29362 | 31962 | <feature name="cart_model" value="SNSP-006" /> |
| 29363 | 31963 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 31964 | ||
| 31965 | <feature name="slot" value="hirom" /> | |
| 29364 | 31966 | <dataarea name="rom" size="2097152"> |
| 29365 | 31967 | <rom name="spal-wz-0.u1" size="2097152" crc="fbb6e0d8" sha1="151a24269c72ce4a2d6ee40978409d2ddc112e07" offset="0x000000" /> |
| 29366 | 31968 | </dataarea> |
| r21545 | r21546 | |
| 29383 | 31985 | <feature name="lockout" value="" /> |
| 29384 | 31986 | <feature name="cart_model" value="SHVC-006" /> |
| 29385 | 31987 | <feature name="cart_back_label" value="920214" /> |
| 31988 | ||
| 31989 | <feature name="slot" value="hirom" /> | |
| 29386 | 31990 | <dataarea name="rom" size="2097152"> |
| 29387 | 31991 | <rom name="shvc-wz-0 p0.u1" size="1048576" crc="1adf00da" sha1="8a8b8083197edb2683217a4806137a88f5c5abc6" offset="0x000000" /> |
| 29388 | 31992 | <rom name="shvc-wz-0 p1.u2" size="1048576" crc="237f02c2" sha1="7bdfe558e330de56fbc6c1a40f0522192169200a" offset="0x100000" /> |
| r21545 | r21546 | |
| 29415 | 32019 | --> |
| 29416 | 32020 | <feature name="cart_model" value="SNSP-006" /> |
| 29417 | 32021 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 32022 | ||
| 32023 | <feature name="slot" value="lorom" /> | |
| 29418 | 32024 | <dataarea name="rom" size="1048576"> |
| 29419 | 32025 | <rom name="spal-lb-0.u1" size="1048576" crc="2642234d" sha1="fb9c8f6bd892a7f1798b508e8b2623511ab6d3ff" offset="0x000000" /> |
| 29420 | 32026 | </dataarea> |
| r21545 | r21546 | |
| 29439 | 32045 | <feature name="battery" value="BATT CR2032" /> |
| 29440 | 32046 | <feature name="cart_model" value="SNS-006" /> |
| 29441 | 32047 | <feature name="cart_back_label" value="" /> |
| 32048 | ||
| 32049 | <feature name="slot" value="lorom" /> | |
| 29442 | 32050 | <dataarea name="rom" size="524288"> |
| 29443 | 32051 | <rom name="sns-ws-0.u1" size="524288" crc="591cbb2d" sha1="8e870c7273a825854272e0d1b276aa7e0d9fad41" offset="0x000000" /> |
| 29444 | 32052 | </dataarea> |
| r21545 | r21546 | |
| 29465 | 32073 | <feature name="battery" value="BATT CR2032" /> |
| 29466 | 32074 | <feature name="cart_model" value="SHVC-006" /> |
| 29467 | 32075 | <feature name="cart_back_label" value="920214" /> |
| 32076 | ||
| 32077 | <feature name="slot" value="lorom" /> | |
| 29468 | 32078 | <dataarea name="rom" size="524288"> |
| 29469 | 32079 | <rom name="shvc-wo-0.u1" size="524288" crc="a3096a8e" sha1="9437591e9a8cdfc352b61fa21efb0f59a909b1f7" offset="0x000000" /> |
| 29470 | 32080 | </dataarea> |
| r21545 | r21546 | |
| 29491 | 32101 | <feature name="battery" value="BATT CR2032" /> |
| 29492 | 32102 | <feature name="cart_model" value="SNS-006" /> |
| 29493 | 32103 | <feature name="cart_back_label" value="" /> |
| 32104 | ||
| 32105 | <feature name="slot" value="hirom" /> | |
| 29494 | 32106 | <dataarea name="rom" size="2097152"> |
| 29495 | 32107 | <rom name="shvc-bwcj-0.u1" size="2097152" crc="a24f85ff" sha1="0221237f39f26c776c5488ab7c61b8c72bfba3a9" offset="0x000000" /> |
| 29496 | 32108 | </dataarea> |
| r21545 | r21546 | |
| 29511 | 32123 | <feature name="lockout" value="" /> |
| 29512 | 32124 | <feature name="cart_model" value="SNSP-006" /> |
| 29513 | 32125 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 32126 | ||
| 32127 | <feature name="slot" value="lorom" /> | |
| 29514 | 32128 | <dataarea name="rom" size="1048576"> |
| 29515 | 32129 | <rom name="spal-wf-0.u1" size="1048576" crc="17c027c4" sha1="75502b4dc282d1ca3db8a51d8aa4a5603f06db2f" offset="0x000000" /> |
| 29516 | 32130 | </dataarea> |
| r21545 | r21546 | |
| 29531 | 32145 | <feature name="lockout" value="" /> |
| 29532 | 32146 | <feature name="cart_model" value="SHVC-006" /> |
| 29533 | 32147 | <feature name="cart_back_label" value="920214" /> |
| 32148 | ||
| 32149 | <feature name="slot" value="lorom" /> | |
| 29534 | 32150 | <dataarea name="rom" size="1048576"> |
| 29535 | 32151 | <rom name="shvc-wf-0.u1" size="1048576" crc="d35543c2" sha1="0f0fd38896ffcb9bdd4c150b7ce1e67631bb50c8" offset="0x000000" /> |
| 29536 | 32152 | </dataarea> |
| r21545 | r21546 | |
| 29550 | 32166 | <feature name="lockout" value="" /> |
| 29551 | 32167 | <feature name="cart_model" value="SNS-006" /> |
| 29552 | 32168 | <feature name="cart_back_label" value="" /> |
| 32169 | ||
| 32170 | <feature name="slot" value="lorom" /> | |
| 29553 | 32171 | <dataarea name="rom" size="1048576"> |
| 29554 | 32172 | <rom name="sns-wf-0.u1" size="1048576" crc="676cb638" sha1="2562c4fbeacce6f0ce0dc85f082f3aef733a598a" offset="0x000000" /> |
| 29555 | 32173 | </dataarea> |
| r21545 | r21546 | |
| 29569 | 32187 | <feature name="lockout" value="" /> |
| 29570 | 32188 | <feature name="cart_model" value="SNS-006" /> |
| 29571 | 32189 | <feature name="cart_back_label" value="" /> |
| 32190 | ||
| 32191 | <feature name="slot" value="hirom" /> | |
| 29572 | 32192 | <dataarea name="rom" size="3145728"> |
| 29573 | 32193 | <rom name="sns-awve-0.u1" size="3145728" crc="1ba08495" sha1="194885009c5ffddc1ce310ad06ad9b9cc12a3c47" offset="0x000000" /> |
| 29574 | 32194 | </dataarea> |
| r21545 | r21546 | |
| 29589 | 32209 | <feature name="lockout" value="" /> |
| 29590 | 32210 | <feature name="cart_model" value="SNS-006, SHVC-006" /> |
| 29591 | 32211 | <feature name="cart_back_label" value="" /> |
| 32212 | ||
| 32213 | <feature name="slot" value="lorom" /> | |
| 29592 | 32214 | <dataarea name="rom" size="524288"> |
| 29593 | 32215 | <!-- Notes: Both US and JP cartridges have the prefix SNS on their maskrom chips --> |
| 29594 | 32216 | <rom name="sns-xz-0.u1" size="524288" crc="99627bb0" sha1="b25fddc4a239051b07b996f685fbce8e8354fea0" offset="0x000000" /> |
| r21545 | r21546 | |
| 29610 | 32232 | <feature name="lockout" value="" /> |
| 29611 | 32233 | <feature name="cart_model" value="SNS-006" /> |
| 29612 | 32234 | <feature name="cart_back_label" value="" /> |
| 32235 | ||
| 32236 | <feature name="slot" value="lorom" /> | |
| 29613 | 32237 | <dataarea name="rom" size="1048576"> |
| 29614 | 32238 | <rom name="sns-x7-0.u1" size="1048576" crc="e83eceea" sha1="35a29b2db17dbd4650fd425b66e31b01aeda3d58" offset="0x000000" /> |
| 29615 | 32239 | </dataarea> |
| r21545 | r21546 | |
| 29634 | 32258 | <feature name="battery" value="BATT CR2032" /> |
| 29635 | 32259 | <feature name="cart_model" value="SHVC-006" /> |
| 29636 | 32260 | <feature name="cart_back_label" value="920214" /> |
| 32261 | ||
| 32262 | <feature name="slot" value="lorom" /> | |
| 29637 | 32263 | <dataarea name="rom" size="1572864"> |
| 29638 | 32264 | <rom name="shvc-xk-0 p0.u1" size="1048576" crc="caebf98e" sha1="630b5052202df37f3edc2548bafe74af35033f1c" offset="0x000000" /> |
| 29639 | 32265 | <rom name="shvc-xk-0 p1.u2" size="524288" crc="be1110cb" sha1="51ccc5d3942b601e59ce87d98809e9072178b9fd" offset="0x100000" /> |
| r21545 | r21546 | |
| 29658 | 32284 | <feature name="lockout" value="" /> |
| 29659 | 32285 | <feature name="cart_model" value="SHVC-006" /> |
| 29660 | 32286 | <feature name="cart_back_label" value="920214" /> |
| 32287 | ||
| 32288 | <feature name="slot" value="lorom" /> | |
| 29661 | 32289 | <dataarea name="rom" size="1048576"> |
| 29662 | 32290 | <rom name="shvc-sh-0.u1" size="1048576" crc="56ec4655" sha1="b774ef60f88820a719a0af591eb4ff0feccc57c3" offset="0x000000" /> |
| 29663 | 32291 | </dataarea> |
| r21545 | r21546 | |
| 29681 | 32309 | <feature name="battery" value="BATT CR2032" /> |
| 29682 | 32310 | <feature name="cart_model" value="SHVC-006" /> |
| 29683 | 32311 | <feature name="cart_back_label" value="920214" /> |
| 32312 | ||
| 32313 | <feature name="slot" value="lorom" /> | |
| 29684 | 32314 | <dataarea name="rom" size="1048576"> |
| 29685 | 32315 | <rom name="shvc-3g-0.u1" size="1048576" crc="e386d2be" sha1="1ac159270b5b9026081abf45290c6c83f734d235" offset="0x000000" /> |
| 29686 | 32316 | </dataarea> |
| r21545 | r21546 | |
| 29707 | 32337 | <feature name="battery" value="BATT CR2032" /> |
| 29708 | 32338 | <feature name="cart_model" value="SHVC-006" /> |
| 29709 | 32339 | <feature name="cart_back_label" value="920214" /> |
| 32340 | ||
| 32341 | <feature name="slot" value="lorom" /> | |
| 29710 | 32342 | <dataarea name="rom" size="1572864"> |
| 29711 | 32343 | <rom name="shvc-32-0 p0.u1" size="1048576" crc="386a97d7" sha1="20e5057369ed8ccb41e217a761377c28c6d347cd" offset="0x000000" /> |
| 29712 | 32344 | <rom name="shvc-32-0 p1.u2" size="524288" crc="adc4b105" sha1="d066c889e44294d00c526c0fee2e558b2fb55a97" offset="0x100000" /> |
| r21545 | r21546 | |
| 29731 | 32363 | <feature name="lockout" value="" /> |
| 29732 | 32364 | <feature name="cart_model" value="SHVC-006" /> |
| 29733 | 32365 | <feature name="cart_back_label" value="901121" /> |
| 32366 | ||
| 32367 | <feature name="slot" value="lorom" /> | |
| 29734 | 32368 | <dataarea name="rom" size="1048576"> |
| 29735 | 32369 | <rom name="shvc-rh-0.u1" size="1048576" crc="52948f3c" sha1="25208aa414ea5f1c25fd7332be54590b565320d5" offset="0x000000" /> |
| 29736 | 32370 | </dataarea> |
| r21545 | r21546 | |
| 29754 | 32388 | <feature name="battery" value="BATT CR2032" /> |
| 29755 | 32389 | <feature name="cart_model" value="SHVC-006" /> |
| 29756 | 32390 | <feature name="cart_back_label" value="901121" /> |
| 32391 | ||
| 32392 | <feature name="slot" value="lorom" /> | |
| 29757 | 32393 | <dataarea name="rom" size="1048576"> |
| 29758 | 32394 | <rom name="shvc-ys-0.u1" size="1048576" crc="8e39a006" sha1="ac2e080c47a98bdf1196aeb6ec06736795a3ae74" offset="0x000000" /> |
| 29759 | 32395 | </dataarea> |
| r21545 | r21546 | |
| 29778 | 32414 | <feature name="battery" value="BATT CR2032" /> |
| 29779 | 32415 | <feature name="cart_model" value="SNS-006" /> |
| 29780 | 32416 | <feature name="cart_back_label" value="" /> |
| 32417 | ||
| 32418 | <feature name="slot" value="lorom" /> | |
| 29781 | 32419 | <dataarea name="rom" size="1048576"> |
| 29782 | 32420 | <rom name="sns-ys-0.u1" size="1048576" crc="64a91e64" sha1="0b677af3c10afc4cf4fee26225e70e3967f9b757" offset="0x000000" /> |
| 29783 | 32421 | </dataarea> |
| r21545 | r21546 | |
| 29804 | 32442 | <feature name="battery" value="BATT CR2032" /> |
| 29805 | 32443 | <feature name="cart_model" value="SHVC-006" /> |
| 29806 | 32444 | <feature name="cart_back_label" value="920214" /> |
| 32445 | ||
| 32446 | <feature name="slot" value="lorom" /> | |
| 29807 | 32447 | <dataarea name="rom" size="1572864"> |
| 29808 | 32448 | <rom name="shvc-y4-0 p0.u1" size="1048576" crc="7e8ff00b" sha1="6590ddca1ae75ab5b9b9122a2298fa5843a91490" offset="0x000000" /> |
| 29809 | 32449 | <rom name="shvc-y4-0 p1.u2" size="524288" crc="794b4735" sha1="3ae2c3ff7338ec1e3d1906a5ab5fc49d40794046" offset="0x100000" /> |
| r21545 | r21546 | |
| 29827 | 32467 | <feature name="lockout" value="" /> |
| 29828 | 32468 | <feature name="cart_model" value="SHVC-006" /> |
| 29829 | 32469 | <feature name="cart_back_label" value="920214" /> |
| 32470 | ||
| 32471 | <feature name="slot" value="lorom" /> | |
| 29830 | 32472 | <dataarea name="rom" size="2097152"> |
| 29831 | 32473 | <rom name="shvc-yy-0.u1" size="2097152" crc="ec96d517" sha1="629090e5f085848548dd085de79952249e1fcaec" offset="0x000000" /> |
| 29832 | 32474 | </dataarea> |
| r21545 | r21546 | |
| 29849 | 32491 | <feature name="lockout" value="" /> |
| 29850 | 32492 | <feature name="cart_model" value="SHVC-006" /> |
| 29851 | 32493 | <feature name="cart_back_label" value="920214" /> |
| 32494 | ||
| 32495 | <feature name="slot" value="lorom" /> | |
| 29852 | 32496 | <dataarea name="rom" size="2097152"> |
| 29853 | 32497 | <rom name="shvc-yy-0 p0.u1" size="1048576" crc="f7f0eb1f" sha1="63a9696844ec7ba40471e49c8118ba5254c79c44" offset="0x000000" /> |
| 29854 | 32498 | <rom name="shvc-yy-0 p1.u2" size="1048576" crc="7f99cc14" sha1="e168e613301ea90a1694d91a726f5f53e9c90ab8" offset="0x100000" /> |
| r21545 | r21546 | |
| 29871 | 32515 | <feature name="lockout" value="" /> |
| 29872 | 32516 | <feature name="cart_model" value="SHVC-006" /> |
| 29873 | 32517 | <feature name="cart_back_label" value="920214" /> |
| 32518 | ||
| 32519 | <feature name="slot" value="lorom" /> | |
| 29874 | 32520 | <dataarea name="rom" size="2097152"> |
| 29875 | 32521 | <rom name="shvc-ayyj-0.u1" size="2097152" crc="535cccac" sha1="158cf857f54a45edd2e8360495546faae35ede05" offset="0x000000" /> |
| 29876 | 32522 | </dataarea> |
| r21545 | r21546 | |
| 29892 | 32538 | <feature name="lockout" value="" /> |
| 29893 | 32539 | <feature name="cart_model" value="SHVC-006" /> |
| 29894 | 32540 | <feature name="cart_back_label" value="920214" /> |
| 32541 | ||
| 32542 | <feature name="slot" value="lorom" /> | |
| 29895 | 32543 | <dataarea name="rom" size="2097152"> |
| 29896 | 32544 | <rom name="shvc-y2-0.u1" size="2097152" crc="eef45a93" sha1="54198529c9d989b7dbaf767d5185e9557f178292" offset="0x000000" /> |
| 29897 | 32545 | </dataarea> |
| r21545 | r21546 | |
| 29912 | 32560 | <feature name="lockout" value="" /> |
| 29913 | 32561 | <feature name="cart_model" value="SHVC-006" /> |
| 29914 | 32562 | <feature name="cart_back_label" value="920214" /> |
| 32563 | ||
| 32564 | <feature name="slot" value="lorom" /> | |
| 29915 | 32565 | <dataarea name="rom" size="1048576"> |
| 29916 | 32566 | <rom name="shvc-uu-0.u1" size="1048576" crc="d7e68d2e" sha1="a9fd8dd63ca6488f24aceceb482a13631122bd6d" offset="0x000000" /> |
| 29917 | 32567 | </dataarea> |
| r21545 | r21546 | |
| 29936 | 32586 | <feature name="battery" value="BATT CR2032" /> |
| 29937 | 32587 | <feature name="cart_model" value="SHVC-006" /> |
| 29938 | 32588 | <feature name="cart_back_label" value="901121" /> |
| 32589 | ||
| 32590 | <feature name="slot" value="lorom" /> | |
| 29939 | 32591 | <dataarea name="rom" size="1048576"> |
| 29940 | 32592 | <rom name="shvc-zl-0.u1" size="1048576" crc="3322effc" sha1="e7e852f0159ce612e3911164878a9b08b3cb9060" offset="0x000000" /> |
| 29941 | 32593 | </dataarea> |
| r21545 | r21546 | |
| 29963 | 32615 | <feature name="cart_revision" value="A" /> |
| 29964 | 32616 | <feature name="cart_model" value="SHVC-006" /> |
| 29965 | 32617 | <feature name="cart_back_label" value="901121" /> |
| 32618 | ||
| 32619 | <feature name="slot" value="lorom" /> | |
| 29966 | 32620 | <dataarea name="rom" size="1048576"> |
| 29967 | 32621 | <rom name="shvc-zl-1.u1" size="1048576" crc="4400d798" sha1="52f470c80157f6843839c39e3bf52afbb42fb957" offset="0x000000" /> |
| 29968 | 32622 | </dataarea> |
| r21545 | r21546 | |
| 29990 | 32644 | <feature name="cart_revision" value="B" /> |
| 29991 | 32645 | <feature name="cart_model" value="SHVC-006" /> |
| 29992 | 32646 | <feature name="cart_back_label" value="920214" /> |
| 32647 | ||
| 32648 | <feature name="slot" value="lorom" /> | |
| 29993 | 32649 | <dataarea name="rom" size="1048576"> |
| 29994 | 32650 | <rom name="shvc-zl-2.u1" size="1048576" crc="b28b2f77" sha1="6d9fa9006c160a0c81db913bcd0ea3e7cc249bc9" offset="0x000000" /> |
| 29995 | 32651 | </dataarea> |
| r21545 | r21546 | |
| 30014 | 32670 | <feature name="lockout" value="" /> |
| 30015 | 32671 | <feature name="cart_model" value="SHVC-006" /> |
| 30016 | 32672 | <feature name="cart_back_label" value="920214" /> |
| 32673 | ||
| 32674 | <feature name="slot" value="hirom" /> | |
| 30017 | 32675 | <dataarea name="rom" size="2097152"> |
| 30018 | 32676 | <rom name="shvc-jp-0 p0.u1" size="1048576" crc="8ec533d0" sha1="29eaed3fe21b0bc09451c2cf6ab776f0f6585d44" offset="0x000000" /> |
| 30019 | 32677 | <rom name="shvc-jp-0 p1.u2" size="1048576" crc="6ea392ff" sha1="23134e90f35bf76013920c30ad441152a968842f" offset="0x100000" /> |
| r21545 | r21546 | |
| 30035 | 32693 | <feature name="lockout" value="" /> |
| 30036 | 32694 | <feature name="cart_model" value="SHVC-006" /> |
| 30037 | 32695 | <feature name="cart_back_label" value="920214" /> |
| 32696 | ||
| 32697 | <feature name="slot" value="hirom" /> | |
| 30038 | 32698 | <dataarea name="rom" size="3145728"> |
| 30039 | 32699 | <rom name="shvc-aprj-0.u1" size="3145728" crc="9b040c00" sha1="9bf4e716113f6919927152cd1ed6510cb84554a8" offset="0x000000" /> |
| 30040 | 32700 | </dataarea> |
| r21545 | r21546 | |
| 30054 | 32714 | <feature name="lockout" value="D411A 9420 CC" /> |
| 30055 | 32715 | <feature name="cart_model" value="SNS-006" /> |
| 30056 | 32716 | <feature name="cart_back_label" value="" /> |
| 32717 | ||
| 32718 | <feature name="slot" value="lorom" /> | |
| 30057 | 32719 | <dataarea name="rom" size="2097152"> |
| 30058 | 32720 | <rom name="sns-azke-0.u1" size="2097152" crc="5397d5bc" sha1="622edfe3a7b2c65724c2d78fb3d692775cd1fde1" offset="0x000000" /> |
| 30059 | 32721 | </dataarea> |
| r21545 | r21546 | |
| 30073 | 32735 | <feature name="lockout" value="D411A 9351 BA" /> |
| 30074 | 32736 | <feature name="cart_model" value="SNS-006" /> |
| 30075 | 32737 | <feature name="cart_back_label" value="" /> |
| 32738 | ||
| 32739 | <feature name="slot" value="lorom" /> | |
| 30076 | 32740 | <dataarea name="rom" size="1048576"> |
| 30077 | 32741 | <rom name="sns-z8-0.u1" size="1048576" crc="3c10daf1" sha1="9bd08892addb4772595cdb1a4f508427f42e213c" offset="0x000000" /> |
| 30078 | 32742 | </dataarea> |
| r21545 | r21546 | |
| 30105 | 32769 | <feature name="lockout" value="D411A 9239 CA" /> |
| 30106 | 32770 | <feature name="cart_model" value="SNS-006" /> |
| 30107 | 32771 | <feature name="cart_back_label" value="" /> |
| 32772 | ||
| 32773 | <feature name="slot" value="lorom" /> | |
| 30108 | 32774 | <dataarea name="rom" size="524288"> |
| 30109 | 32775 | <rom name="sns-by-0.u1" size="524288" crc="6810aa95" sha1="3a1238f88cafe6e25b07a10682fb93bdd559f771" offset="0x000000" /> |
| 30110 | 32776 | </dataarea> |
| r21545 | r21546 | |
| 30126 | 32792 | <feature name="cart_revision" value="A" /> <!-- Notes: confirmation needed --> |
| 30127 | 32793 | <feature name="cart_model" value="SNS-006" /> |
| 30128 | 32794 | <feature name="cart_back_label" value="" /> |
| 32795 | ||
| 32796 | <feature name="slot" value="lorom" /> | |
| 30129 | 32797 | <dataarea name="rom" size="2097152"> |
| 30130 | 32798 | <rom name="sns-9d-1.u1" size="2097152" crc="012ef33d" sha1="a789268ab40a5bbc35f58743c936a87e0cbcda5c" offset="0x000000" /> |
| 30131 | 32799 | </dataarea> |
| r21545 | r21546 | |
| 30149 | 32817 | <feature name="battery" value="BATT CR2032" /> |
| 30150 | 32818 | <feature name="cart_model" value="SNSP-006" /> |
| 30151 | 32819 | <feature name="cart_back_label" value="" /> |
| 32820 | ||
| 32821 | <feature name="slot" value="hirom" /> | |
| 30152 | 32822 | <dataarea name="rom" size="4194304"> |
| 30153 | 32823 | <rom name="spal-adnp-1.u1" size="4194304" crc="17657db6" sha1="6f246abae39820e3267704bdf342ad1d27121f19" offset="0x000000" /> |
| 30154 | 32824 | </dataarea> |
| r21545 | r21546 | |
| 30176 | 32846 | <feature name="cart_revision" value="A" /> |
| 30177 | 32847 | <feature name="cart_model" value="SHVC-006" /> |
| 30178 | 32848 | <feature name="cart_back_label" value="920214" /> |
| 32849 | ||
| 32850 | <feature name="slot" value="lorom" /> | |
| 30179 | 32851 | <dataarea name="rom" size="1048576"> |
| 30180 | 32852 | <rom name="shvc-es-1.u1" size="1048576" crc="b913cdc1" sha1="cdb07b41703b22ed535fb264ceb6317effb0f837" offset="0x000000" /> |
| 30181 | 32853 | </dataarea> |
| r21545 | r21546 | |
| 30195 | 32867 | <feature name="u2?" value="?" /> <!-- program ROM? --> |
| 30196 | 32868 | <feature name="network" value="158047" /> <!-- slot for a snes cart on the back --> |
| 30197 | 32869 | <feature name="cart_model" value="n/a" /> <!-- can be plugged in any snes model, twice the height of a standard cart --> |
| 32870 | ||
| 32871 | <feature name="slot" value="lorom" /> | |
| 30198 | 32872 | <dataarea name="rom" size="32768"> |
| 30199 | 32873 | <rom name="game saver (europe) (v1.7) (unl).sfc" size="32768" crc="f2225203" sha1="eb4bda191200e8bd4a1d6aa29d00b9afb0c92c1d" offset="0x000000" /> |
| 30200 | 32874 | </dataarea> |
| r21545 | r21546 | |
| 30219 | 32893 | <feature name="cart_revision" value="A" /> |
| 30220 | 32894 | <feature name="cart_model" value="SHVC-006" /> |
| 30221 | 32895 | <feature name="cart_back_label" value="920214" /> |
| 32896 | ||
| 32897 | <feature name="slot" value="lorom" /> | |
| 30222 | 32898 | <dataarea name="rom" size="1572864"> |
| 30223 | 32899 | <rom name="shvc-gn-1 p0.u1" size="1048576" crc="7296a468" sha1="2e0262fb9e41e7eee0ccf7bbbcc30f66a0a10b7f" offset="0x000000" /> |
| 30224 | 32900 | <rom name="shvc-gn-1 p1.u2" size="524288" crc="7379b893" sha1="159a759e5a6186cdaea187bcf4903dfaa9fdbf6c" offset="0x100000" /> |
| r21545 | r21546 | |
| 30244 | 32920 | <feature name="battery" value="BATT CR2032" /> |
| 30245 | 32921 | <feature name="cart_model" value="SHVC-006" /> |
| 30246 | 32922 | <feature name="cart_back_label" value="" /> |
| 32923 | ||
| 32924 | <feature name="slot" value="lorom" /> | |
| 30247 | 32925 | <dataarea name="rom" size="1048576"> |
| 30248 | 32926 | <rom name="shvc-gl-1.u1" size="1048576" crc="702446b7" sha1="a466448804ebef9c4b20aeaae7438c51f135bddc" offset="0x000000" /> |
| 30249 | 32927 | </dataarea> |
| r21545 | r21546 | |
| 30272 | 32950 | <feature name="cart_revision" value="A" /> |
| 30273 | 32951 | <feature name="cart_model" value="SHVC-006" /> |
| 30274 | 32952 | <feature name="cart_back_label" value="920214" /> |
| 32953 | ||
| 32954 | <feature name="slot" value="lorom" /> | |
| 30275 | 32955 | <dataarea name="rom" size="1572864"> |
| 30276 | 32956 | <rom name="shvc-ur-1 p0.u1" size="1048576" crc="1a3cc597" sha1="a5b649636a91d84d120289f8a7d6f1ebd503ad7d" offset="0x000000" /> |
| 30277 | 32957 | <rom name="shvc-ur-1 p1.u2" size="524288" crc="2c2dd22c" sha1="445f12d1877ea092870ed97dad7e7cee54afdc3b" offset="0x100000" /> |
| r21545 | r21546 | |
| 30300 | 32980 | <feature name="cart_revision" value="B" /> |
| 30301 | 32981 | <feature name="cart_model" value="SHVC-006" /> |
| 30302 | 32982 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 32983 | ||
| 32984 | <feature name="slot" value="lorom_sa1" /> | |
| 30303 | 32985 | <dataarea name="rom" size="4194304"> |
| 30304 | 32986 | <rom name="shvc-akfj-2.u1" size="4194304" crc="1f35f230" sha1="9ae2db3bcb2699394937bc007cd6835609b7e18f" offset="0x000000" /> |
| 30305 | 32987 | </dataarea> |
| r21545 | r21546 | |
| 30321 | 33003 | <feature name="lockout" value="" /> |
| 30322 | 33004 | <feature name="cart_model" value="SNSP-006" /> |
| 30323 | 33005 | <feature name="cart_back_label" value="" /> |
| 33006 | ||
| 33007 | <feature name="slot" value="lorom" /> | |
| 30324 | 33008 | <dataarea name="rom" size="1048576"> |
| 30325 | 33009 | <rom name="sfrg-u9-0.u1" size="1048576" crc="e83a092b" sha1="e74725e4eb14757c898007b9766090074c91b731" offset="0x000000" /> |
| 30326 | 33010 | </dataarea> |
| r21545 | r21546 | |
| 30347 | 33031 | <feature name="battery" value="BATT CR2032" /> |
| 30348 | 33032 | <feature name="cart_model" value="SHVC-006" /> |
| 30349 | 33033 | <feature name="cart_back_label" value="920214" /> |
| 33034 | ||
| 33035 | <feature name="slot" value="lorom" /> | |
| 30350 | 33036 | <dataarea name="rom" size="1572864"> |
| 30351 | 33037 | <rom name="shvc-jl-1 p0.u1" size="1048576" crc="2cf17e39" sha1="0422ed14df97df5917dd67efead191ee54d596ab" offset="0x000000" /> |
| 30352 | 33038 | <rom name="shvc-jl-1 p1.u2" size="524288" crc="c6eaa3af" sha1="d76cbee8a7e7790639b0fa81af3896d2433a0e30" offset="0x100000" /> |
| r21545 | r21546 | |
| 30377 | 33063 | <feature name="cart_revision" value="A" /> |
| 30378 | 33064 | <feature name="cart_model" value="SHVC-006" /> |
| 30379 | 33065 | <feature name="cart_back_label" value="920214" /> |
| 33066 | ||
| 33067 | <feature name="slot" value="lorom" /> | |
| 30380 | 33068 | <dataarea name="rom" size="2621440"> |
| 30381 | 33069 | <rom name="shvc-ap2j-1 p0.u1" size="2097152" crc="899e6fb3" sha1="72ef52d0254f28684042ba0e4a8e9e1ef582edd4" offset="0x000000" /> |
| 30382 | 33070 | <rom name="shvc-ap2j-1 p3.u2" size="524288" crc="506c0197" sha1="cf84e58fbcfc297e7c4c05263b135e03523a8cf6" offset="0x200000" /> |
| r21545 | r21546 | |
| 30403 | 33091 | <feature name="battery" value="none" /> |
| 30404 | 33092 | <feature name="cart_model" value="SHVC-006" /> |
| 30405 | 33093 | <feature name="cart_back_label" value="G749559 SHVC-SFN-JPN" /> |
| 33094 | ||
| 33095 | <feature name="slot" value="lorom" /> | |
| 30406 | 33096 | <dataarea name="rom" size="1048576"> |
| 30407 | 33097 | <rom name="shvc-tjaj-0.u1" size="1048576" crc="355147c2" sha1="14180468cd13176d24fc3596505cdd8fa5daebbb" offset="0x000000" /> |
| 30408 | 33098 | </dataarea> |
| r21545 | r21546 | |
| 30428 | 33118 | <feature name="battery" value="none" /> |
| 30429 | 33119 | <feature name="cart_model" value="SHVC-006" /> |
| 30430 | 33120 | <feature name="cart_back_label" value="G749559 SHVC-SFN-JPN" /> |
| 33121 | ||
| 33122 | <feature name="slot" value="lorom" /> | |
| 30431 | 33123 | <dataarea name="rom" size="1048576"> |
| 30432 | 33124 | <rom name="shvc-tjbj-0.u1" size="1048576" crc="7fc1aa92" sha1="a91b3e5342d29ec124abca0cbd53719d764218b4" offset="0x000000" /> |
| 30433 | 33125 | </dataarea> |
| r21545 | r21546 | |
| 30454 | 33146 | <feature name="battery" value="none" /> |
| 30455 | 33147 | <feature name="cart_model" value="SHVC-006" /> |
| 30456 | 33148 | <feature name="cart_back_label" value="G749559 SHVC-SFN-JPN" /> |
| 33149 | ||
| 33150 | <feature name="slot" value="lorom" /> | |
| 30457 | 33151 | <dataarea name="rom" size="1048576"> |
| 30458 | 33152 | <rom name="shvc-tjdj-0.u1" size="1048576" crc="1fc1915d" sha1="52718d5ea0982905254648da88df36ab6025f2a8" offset="0x000000" /> |
| 30459 | 33153 | </dataarea> |
| r21545 | r21546 | |
| 30480 | 33174 | <feature name="battery" value="none" /> |
| 30481 | 33175 | <feature name="cart_model" value="SHVC-006" /> |
| 30482 | 33176 | <feature name="cart_back_label" value="G749559 SHVC-SFN-JPN" /> |
| 33177 | ||
| 33178 | <feature name="slot" value="lorom" /> | |
| 30483 | 33179 | <dataarea name="rom" size="1048576"> |
| 30484 | 33180 | <rom name="shvc-tjej-0.u1" size="1048576" crc="673468c8" sha1="f3344c19bccca1cf1647a72c1a113a702b5bdf8b" offset="0x000000" /> |
| 30485 | 33181 | </dataarea> |
| r21545 | r21546 | |
| 30507 | 33203 | <feature name="cart_revision" value="A" /> <!-- Notes: confirmation needed --> |
| 30508 | 33204 | <feature name="cart_model" value="SNS-006" /> |
| 30509 | 33205 | <feature name="cart_back_label" value="" /> |
| 33206 | ||
| 33207 | <feature name="slot" value="lorom" /> | |
| 30510 | 33208 | <dataarea name="rom" size="2097152"> |
| 30511 | 33209 | <rom name="sns-jr-1.u1" size="2097152" crc="12b592f2" sha1="3be613d0173682711e1da59252cb91e839551633" offset="0x000000" /> |
| 30512 | 33210 | </dataarea> |
| r21545 | r21546 | |
| 30536 | 33234 | <feature name="cart_revision" value="A" /> |
| 30537 | 33235 | <feature name="cart_model" value="SHVC-006" /> |
| 30538 | 33236 | <feature name="cart_back_label" value="920214" /> |
| 33237 | ||
| 33238 | <feature name="slot" value="hirom" /> | |
| 30539 | 33239 | <dataarea name="rom" size="1572864"> |
| 30540 | 33240 | <rom name="shvc-qj-1 p0.u1" size="1048576" crc="372d5191" sha1="dac89e3ff4ed29f0c27eb82a4287aa717086673b" offset="0x000000" /> |
| 30541 | 33241 | <rom name="shvc-qj-1 p1.u2" size="524288" crc="3768be60" sha1="1c3926dec80f9ab5d1ea783d581d706e4b19ce04" offset="0x100000" /> |
| r21545 | r21546 | |
| 30559 | 33259 | <feature name="cart_revision" value="A" /> |
| 30560 | 33260 | <feature name="cart_model" value="SNSP-006" /> |
| 30561 | 33261 | <feature name="cart_back_label" value="SNSP-FAH" /> |
| 33262 | ||
| 33263 | <feature name="slot" value="lorom" /> | |
| 30562 | 33264 | <dataarea name="rom" size="1048576"> |
| 30563 | 33265 | <rom name="spal-mi-1.u1" size="1048576" crc="d5caf96a" sha1="54c1bbf80b12c17983b830383f6bf79e2cbdc99e" offset="0x000000" /> |
| 30564 | 33266 | </dataarea> |
| r21545 | r21546 | |
| 30578 | 33280 | <feature name="lockout" value="" /> |
| 30579 | 33281 | <feature name="cart_model" value="SNSP-006" /> |
| 30580 | 33282 | <feature name="cart_back_label" value="SNSP-NOE" /> |
| 33283 | ||
| 33284 | <feature name="slot" value="lorom" /> | |
| 30581 | 33285 | <dataarea name="rom" size="1048576"> |
| 30582 | 33286 | <rom name="sfrg-mi-0.u1" size="1048576" crc="57d5f20b" sha1="775360533038a2aefec395988390e018972a4df4" offset="0x000000" /> |
| 30583 | 33287 | </dataarea> |
| r21545 | r21546 | |
| 30597 | 33301 | <feature name="lockout" value="" /> |
| 30598 | 33302 | <feature name="cart_model" value="SNSP-006" /> |
| 30599 | 33303 | <feature name="cart_back_label" value="" /> |
| 33304 | ||
| 33305 | <feature name="slot" value="lorom" /> | |
| 30600 | 33306 | <dataarea name="rom" size="1048576"> |
| 30601 | 33307 | <rom name="sita-mi-0.u1" size="1048576" crc="3bc3d913" sha1="057e6beedc34d851016a2cffe539aba899a4acdd" offset="0x000000" /> |
| 30602 | 33308 | </dataarea> |
| r21545 | r21546 | |
| 30622 | 33328 | <feature name="cart_revision" value="A" /> |
| 30623 | 33329 | <feature name="cart_model" value="SHVC-006" /> |
| 30624 | 33330 | <feature name="cart_back_label" value="" /> |
| 33331 | ||
| 33332 | <feature name="slot" value="lorom_sa1" /> | |
| 30625 | 33333 | <dataarea name="rom" size="2097152"> |
| 30626 | 33334 | <rom name="shvc-ao3j-1.u1" size="2097152" crc="c1281f9b" sha1="f417a523e79ff0d6fc36fe8940011705fc3b346a" offset="0x000000" /> |
| 30627 | 33335 | </dataarea> |
| r21545 | r21546 | |
| 30643 | 33351 | <feature name="lockout" value="" /> |
| 30644 | 33352 | <feature name="cart_model" value="SNS-006" /> |
| 30645 | 33353 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 33354 | ||
| 33355 | <feature name="slot" value="lorom" /> | |
| 30646 | 33356 | <dataarea name="rom" size="524288"> |
| 30647 | 33357 | <rom name="sns-mr-0.u1" size="524288" crc="99331ecb" sha1="9abed3a02b0692b1613475b31e16df62d1c8e558" offset="0x000000" /> |
| 30648 | 33358 | </dataarea> |
| r21545 | r21546 | |
| 30670 | 33380 | <feature name="cart_model" value="SNSP-006" /> |
| 30671 | 33381 | <feature name="cart_back_label" value="" /> |
| 30672 | 33382 | <!-- Notes: The u1 rom is a patch over the u2 rom, so this is the correct mapping --> |
| 33383 | ||
| 33384 | <feature name="slot" value="lorom" /> | |
| 30673 | 33385 | <dataarea name="rom" size="2097152"> |
| 30674 | 33386 | <rom name="spal-kx-1.u2" size="2097152" crc="047b3d88" sha1="2b820cf5ea310db54cef4a1c0918023fec986ee4" offset="0x000000" /> |
| 30675 | 33387 | <rom name="spal-kx-ext.u1" size="32768" crc="ffdb34f7" sha1="6526c6a75121fba961b6bdc4e4b0f76a81fc9995" offset="0x000000" /> |
| r21545 | r21546 | |
| 30695 | 33407 | <feature name="cart_revision" value="A" /> |
| 30696 | 33408 | <feature name="cart_model" value="SNS-006" /> |
| 30697 | 33409 | <feature name="cart_back_label" value="" /> |
| 33410 | ||
| 33411 | <feature name="slot" value="hirom" /> | |
| 30698 | 33412 | <dataarea name="rom" size="2097152"> |
| 30699 | 33413 | <rom name="sns-ah7e-1.u1" size="2097152" crc="ebf09f2b" sha1="426b3355e098c2bda6c6f4c144b1c63f512621c2" offset="0x000000" /> |
| 30700 | 33414 | </dataarea> |
| r21545 | r21546 | |
| 30719 | 33433 | <feature name="cart_revision" value="A" /> |
| 30720 | 33434 | <feature name="cart_model" value="SHVC-006" /> |
| 30721 | 33435 | <feature name="cart_back_label" value="" /> |
| 33436 | ||
| 33437 | <feature name="slot" value="lorom" /> | |
| 30722 | 33438 | <dataarea name="rom" size="524288"> |
| 30723 | 33439 | <rom name="shvc-zz-1.u1" size="524288" crc="59b6b116" sha1="9717e310aa3c83f8e2081e93f7a008764a5cbd55" offset="0x000000" /> |
| 30724 | 33440 | </dataarea> |
| r21545 | r21546 | |
| 30739 | 33455 | <feature name="lockout" value="" /> |
| 30740 | 33456 | <feature name="cart_model" value="SNS-006" /> |
| 30741 | 33457 | <feature name="cart_back_label" value="" /> |
| 33458 | ||
| 33459 | <feature name="slot" value="lorom" /> | |
| 30742 | 33460 | <dataarea name="rom" size="1048576"> |
| 30743 | 33461 | <rom name="sns-vp-1.u1" size="1048576" crc="a012d1ad" sha1="28c8e111aa8f0770048064aea86d094f2e6786fc" offset="0x000000" /> |
| 30744 | 33462 | </dataarea> |
| r21545 | r21546 | |
| 30763 | 33481 | <feature name="cart_revision" value="A" /> |
| 30764 | 33482 | <feature name="cart_model" value="SNSP-006" /> |
| 30765 | 33483 | <feature name="cart_back_label" value="" /> |
| 33484 | ||
| 33485 | <feature name="slot" value="hirom" /> | |
| 30766 | 33486 | <dataarea name="rom" size="2097152"> |
| 30767 | 33487 | <rom name="sfra-k2-1.u1" size="2097152" crc="e9334b9e" sha1="c1ff73ea67833748dbd4ecd393d3565e3ae1925d" offset="0x000000" /> |
| 30768 | 33488 | </dataarea> |
| r21545 | r21546 | |
| 30786 | 33506 | <feature name="lockout" value="" /> |
| 30787 | 33507 | <feature name="cart_model" value="SHVC-006" /> |
| 30788 | 33508 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 33509 | ||
| 33510 | <feature name="slot" value="lorom" /> | |
| 30789 | 33511 | <dataarea name="rom" size="1048576"> |
| 30790 | 33512 | <rom name="shvc-a4sj-1.u1" size="1048576" crc="5956e946" sha1="84b6baa45e93128f89145c263f82e3286b984eb6" offset="0x000000" /> |
| 30791 | 33513 | </dataarea> |
| r21545 | r21546 | |
| 30808 | 33530 | <feature name="lockout" value="" /> |
| 30809 | 33531 | <feature name="cart_model" value="SNS-006" /> |
| 30810 | 33532 | <feature name="cart_back_label" value="SNS-USA/CAN-1" /> |
| 33533 | ||
| 33534 | <feature name="slot" value="hirom" /> | |
| 30811 | 33535 | <dataarea name="rom" size="2621440"> |
| 30812 | 33536 | <rom name="sns-ti-1 p0.u1" size="2097152" crc="12f355ab" sha1="414f6ee184353b861fa5de8c7dfcc630786ae205" offset="0x000000" /> |
| 30813 | 33537 | <rom name="sns-ti-1 p3.u2" size="524288" crc="d244dcbc" sha1="37cfe528914f5b4afeb2d1d59b834ba4edfd4b70" offset="0x200000" /> |
| r21545 | r21546 | |
| 30828 | 33552 | <feature name="lockout" value="" /> |
| 30829 | 33553 | <feature name="cart_model" value="SNSP-006" /> |
| 30830 | 33554 | <feature name="cart_back_label" value="SNSP-EUR" /> |
| 33555 | ||
| 33556 | <feature name="slot" value="lorom" /> | |
| 30831 | 33557 | <dataarea name="rom" size="1048576"> |
| 30832 | 33558 | <rom name="spal-asrp-1.u1" size="1048576" crc="2ae69849" sha1="a4fd4376cda01d4984b4a5388453df0bbb533f48" offset="0x000000" /> |
| 30833 | 33559 | </dataarea> |
| r21545 | r21546 | |
| 30853 | 33579 | <feature name="cart_revision" value="A" /> |
| 30854 | 33580 | <feature name="cart_model" value="SHVC-006" /> |
| 30855 | 33581 | <feature name="cart_back_label" value="920214" /> |
| 33582 | ||
| 33583 | <feature name="slot" value="hirom" /> | |
| 30856 | 33584 | <dataarea name="rom" size="4194304"> |
| 30857 | 33585 | <rom name="shvc-ap4j-1.u1" size="4194304" crc="1a13435c" sha1="c469bf653d9505a509314a62a658b0fda4e69c24" offset="0x000000" /> |
| 30858 | 33586 | </dataarea> |
| r21545 | r21546 | |
| 30880 | 33608 | <feature name="cart_revision" value="B" /> |
| 30881 | 33609 | <feature name="cart_model" value="SHVC-006" /> |
| 30882 | 33610 | <feature name="cart_back_label" value="" /> |
| 33611 | ||
| 33612 | <feature name="slot" value="lorom" /> | |
| 30883 | 33613 | <dataarea name="rom" size="2097152"> |
| 30884 | 33614 | <rom name="shvc-al2j-2.u1" size="2097152" crc="a0e22580" sha1="eeec6a462bf067e4ce322af61c8add26197172c3" offset="0x000000" /> |
| 30885 | 33615 | </dataarea> |
| r21545 | r21546 | |
| 30908 | 33638 | <feature name="cart_revision" value="A" /> |
| 30909 | 33639 | <feature name="cart_model" value="SHVC-006" /> |
| 30910 | 33640 | <feature name="cart_back_label" value="" /> |
| 33641 | ||
| 33642 | <feature name="slot" value="lorom" /> | |
| 30911 | 33643 | <dataarea name="rom" size="1310720"> |
| 30912 | 33644 | <rom name="shvc-akyj-1 p0.u1" size="1048576" crc="94c2d558" sha1="e70d144d62840b24e95a7d4370f8d0a51b6e8e31" offset="0x000000" /> |
| 30913 | 33645 | <rom name="shvc-akyj-1 p1.u2" size="262144" crc="1a3bb369" sha1="1de4d1162424a0dfc1cb832d35d9fd94a0432578" offset="0x100000" /> |
| r21545 | r21546 | |
| 30936 | 33668 | <feature name="cart_revision" value="A" /> |
| 30937 | 33669 | <feature name="cart_model" value="SHVC-006" /> |
| 30938 | 33670 | <feature name="cart_back_label" value="920214" /> |
| 33671 | ||
| 33672 | <feature name="slot" value="hirom" /> | |
| 30939 | 33673 | <dataarea name="rom" size="524288"> |
| 30940 | 33674 | <rom name="shvc-2a-1.u1" size="524288" crc="6b23e2e4" sha1="684123a12ca1e31115bd6221d96f82461066877f" offset="0x000000" /> |
| 30941 | 33675 | </dataarea> |
| r21545 | r21546 | |
| 30963 | 33697 | <feature name="cart_revision" value="D" /> |
| 30964 | 33698 | <feature name="cart_model" value="SHVC-006" /> |
| 30965 | 33699 | <feature name="cart_back_label" value="G741812 SHVC-JPN-1" /> |
| 33700 | ||
| 33701 | <feature name="slot" value="lorom" /> | |
| 30966 | 33702 | <dataarea name="rom" size="524288"> |
| 30967 | 33703 | <rom name="shvc-iq-4.u1" size="524288" crc="f748d9a7" sha1="630fc77d51d5842c8260f537d9f1eed15b027dfe" offset="0x000000" /> |
| 30968 | 33704 | </dataarea> |
| r21545 | r21546 | |
| 30971 | 33707 | </part> |
| 30972 | 33708 | </software> |
| 30973 | 33709 | |
| 30974 | <software name="nobubufu" cloneof="nobu | |
| 33710 | <software name="nobubufu" cloneof="nobuldrk"> | |
| 30975 | 33711 | <!-- single cartridge source: Yakushi~Kabuto --> |
| 30976 | 33712 | <description>Super Nobunaga no Yabou - Bushou Fuuunroku (Jpn, Rev. A)</description> |
| 30977 | 33713 | <year>1991</year> |
| r21545 | r21546 | |
| 30990 | 33726 | <feature name="cart_revision" value="A" /> |
| 30991 | 33727 | <feature name="cart_model" value="SHVC-006" /> |
| 30992 | 33728 | <feature name="cart_back_label" value="920214" /> |
| 33729 | ||
| 33730 | <feature name="slot" value="lorom" /> | |
| 30993 | 33731 | <dataarea name="rom" size="1048576"> |
| 30994 | 33732 | <rom name="shvc-iz-1.u1" size="1048576" crc="e42ca25a" sha1="589749852c4d4133232409fd613b3f8db4bd8b9e" offset="0x000000" /> |
| 30995 | 33733 | </dataarea> |
| r21545 | r21546 | |
| 31017 | 33755 | <feature name="cart_revision" value="A" /> |
| 31018 | 33756 | <feature name="cart_model" value="SHVC-006" /> |
| 31019 | 33757 | <feature name="cart_back_label" value="" /> |
| 33758 | ||
| 33759 | <feature name="slot" value="lorom" /> | |
| 31020 | 33760 | <dataarea name="rom" size="1048576"> |
| 31021 | 33761 | <rom name="shvc-sd-1.u1" size="1048576" crc="3ba3c38b" sha1="b04dd59194287123382d99581988bd395a497035" offset="0x000000" /> |
| 31022 | 33762 | </dataarea> |
| r21545 | r21546 | |
| 31044 | 33784 | <feature name="cart_revision" value="A" /> |
| 31045 | 33785 | <feature name="cart_model" value="SHVC-006" /> |
| 31046 | 33786 | <feature name="cart_back_label" value="920214" /> |
| 33787 | ||
| 33788 | <feature name="slot" value="lorom" /> | |
| 31047 | 33789 | <dataarea name="rom" size="1048576"> |
| 31048 | 33790 | <rom name="shvc-t2-1.u1" size="1048576" crc="4ae93c10" sha1="5fa25d027940907b769578d7bf85a9d5ba94911a" offset="0x000000" /> |
| 31049 | 33791 | </dataarea> |
| r21545 | r21546 | |
| 31065 | 33807 | <feature name="lockout" value="" /> |
| 31066 | 33808 | <feature name="cart_model" value="SNSP-006" /> |
| 31067 | 33809 | <feature name="cart_back_label" value="SNSP-ESP" /> |
| 33810 | ||
| 33811 | <feature name="slot" value="lorom" /> | |
| 31068 | 33812 | <dataarea name="rom" size="2097152"> |
| 31069 | 33813 | <rom name="sesp-zn-0.u1" size="2097152" crc="e9e676c2" sha1="81fcf88a24c80189f90ffc00243992c0d58d0692" offset="0x000000" /> |
| 31070 | 33814 | </dataarea> |
| r21545 | r21546 | |
| 31088 | 33832 | <!-- to be confirmed : feature name="cart_revision" value="A" /--> |
| 31089 | 33833 | <feature name="cart_model" value="SNSP-006" /> |
| 31090 | 33834 | <feature name="cart_back_label" value="" /> |
| 33835 | ||
| 33836 | <feature name="slot" value="lorom" /> | |
| 31091 | 33837 | <dataarea name="rom" size="2097152"> |
| 31092 | 33838 | <rom name="spal-wu-1 p0.u1" size="1048576" crc="2fc0089e" sha1="e4f2a278c6929f2b5be70da095f962ee9384e76c" offset="0x000000" /> |
| 31093 | 33839 | <rom name="spal-wu-1 p1.u2" size="1048576" crc="1b25f125" sha1="71f4b1c835f3b9cbf61d846d48c7b76bcb14bbb6" offset="0x100000" /> |
| r21545 | r21546 | |
| 31103 | 33849 | <publisher><unlicensed></publisher> |
| 31104 | 33850 | <info name="serial" value="F-002" /> |
| 31105 | 33851 | <part name="cart" interface="snes_cart"> |
| 33852 | ||
| 33853 | <feature name="slot" value="lorom" /> | |
| 31106 | 33854 | <dataarea name="rom" size="32768"> |
| 31107 | 33855 | <rom name="k9513918" size="32768" crc="243c4a53" sha1="2f0bc91d8d59bc0533433a4a7501d5e59e4ce44e" offset="0x000000" /> |
| 31108 | 33856 | </dataarea> |
| r21545 | r21546 | |
| 31128 | 33876 | <feature name="cart_revision" value="A" /> |
| 31129 | 33877 | <feature name="cart_model" value="SHVC-006" /> |
| 31130 | 33878 | <feature name="cart_back_label" value="920214" /> |
| 33879 | ||
| 33880 | <feature name="slot" value="lorom" /> | |
| 31131 | 33881 | <dataarea name="rom" size="1048576"> |
| 31132 | 33882 | <rom name="shvc-3g-1.u1" size="1048576" crc="d7105424" sha1="c535fe761e106607d518edb06fe5ff468ac8c4de" offset="0x000000" /> |
| 31133 | 33883 | </dataarea> |
| r21545 | r21546 | |
| 31153 | 33903 | <feature name="battery" value="none" /> |
| 31154 | 33904 | <feature name="cart_model" value="SHVC-006" /> |
| 31155 | 33905 | <feature name="cart_back_label" value="G749559 SHVC-SFN-JPN" /> |
| 33906 | ||
| 33907 | <feature name="slot" value="lorom" /> | |
| 31156 | 33908 | <dataarea name="rom" size="1048576"> |
| 31157 | 33909 | <rom name="shvc-tobj-0.u1" size="1048576" crc="798a252f" sha1="01e4d23294dfb6c471ec6555c29fe7afd85b73f9" offset="0x000000" /> |
| 31158 | 33910 | </dataarea> |
| r21545 | r21546 | |
| 31178 | 33930 | <year>1993</year> |
| 31179 | 33931 | <publisher>Activision</publisher> |
| 31180 | 33932 | <part name="cart" interface="snes_cart"> |
| 33933 | ||
| 33934 | <feature name="slot" value="lorom" /> | |
| 31181 | 33935 | <dataarea name="rom" size="1048576"> |
| 31182 | 33936 | <rom name="mechwarrior (italy).sfc" size="1048576" crc="9136dce8" sha1="d85e61b4fa00172a7bd2e7f1fd06f939752b6238" offset="0x000000" /> |
| 31183 | 33937 | </dataarea> |
| r21545 | r21546 | |
| 31186 | 33940 | </part> |
| 31187 | 33941 | </software> |
| 31188 | 33942 | |
| 31189 | <software name="samegmcc" supported="no"> | |
| 31190 | <description>Same Game - Chara Cassette (Jpn, BSROM)</description> | |
| 31191 | <year>1996</year> | |
| 31192 | <publisher>Hudson</publisher> | |
| 31193 | <info name="serial" value="BSMC-ZS5J-JPN" /> | |
| 31194 | <info name="release" value="19960301" /> | |
| 31195 | <part name="cart" interface="snes_cart"> | |
| 31196 | <feature name="pcb" value="BSMC-CR-01" /> | |
| 31197 | <feature name="u1" value="U1 MASKROM" /> | |
| 31198 | <feature name="cart_model" value="SHVC-031" /> | |
| 31199 | <dataarea name="rom" size="524288"> | |
| 31200 | <rom name="bsmc-zs5j-0.u1" size="524288" crc="4c3439c2" sha1="c974673e0365dadc54afcf8dd2e6b41b512c6fe7" offset="0x000000" /> | |
| 31201 | </dataarea> | |
| 31202 | </part> | |
| 31203 | </software> | |
| 31204 | ||
| 31205 | 33943 | <software name="starfoxj" cloneof="starwing"> |
| 31206 | 33944 | <!-- Notes: dumped from a Super Famicom Box, CONFIRMATION NEEDED on a retail cartridge --> |
| 31207 | 33945 | <description>Star Fox (Jpn, v1.1, Super Famicom Box)</description> |
| r21545 | r21546 | |
| 31209 | 33947 | <publisher>Nintendo</publisher> |
| 31210 | 33948 | <part name="cart" interface="snes_cart"> |
| 31211 | 33949 | <feature name="enhancement" value="GSU-1" /> |
| 33950 | ||
| 33951 | <feature name="slot" value="lorom_sfx" /> | |
| 31212 | 33952 | <dataarea name="rom" size="1048576"> |
| 31213 | 33953 | <rom name="shvc-fo-1.ic20" size="1048576" crc="ad668a41" sha1="39ff7354a7fa02295c899b7a7ec3556998ac2636" offset="0x000000" /> |
| 31214 | 33954 | </dataarea> |
| r21545 | r21546 | |
| 31222 | 33962 | <year>199?</year> |
| 31223 | 33963 | <publisher><unlicensed></publisher> |
| 31224 | 33964 | <part name="cart" interface="snes_cart"> |
| 33965 | ||
| 33966 | <feature name="slot" value="lorom" /> | |
| 31225 | 33967 | <dataarea name="rom" size="2097152"> |
| 31226 | 33968 | <rom name="super big 2 (china) (unlicensed).sfc" size="2097152" crc="6865f663" sha1="9b4c25f1219335e43db59e3b511c9187ee82fd20" offset="0x000000" /> |
| 31227 | 33969 | </dataarea> |
| r21545 | r21546 | |
| 31249 | 33991 | <info name="alt_title" value="96全国高校サッカー選手権" /> |
| 31250 | 33992 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31251 | 33993 | <part name="cart" interface="snes_cart"> |
| 33994 | ||
| 33995 | <feature name="slot" value="lorom" /> | |
| 31252 | 33996 | <dataarea name="rom" size="1572864"> |
| 31253 | 33997 | <rom name="'96 zenkoku koukou soccer senshuken (japan).sfc" size="1572864" crc="05fbb855" sha1="005ccd8362dc41491f89f31fc9326a6688300e0c" offset="0x000000" /> |
| 31254 | 33998 | </dataarea> |
| r21545 | r21546 | |
| 31265 | 34009 | <info name="release" value="19930312" /> |
| 31266 | 34010 | <info name="alt_title" value="2020年 スーパーベースボール" /> |
| 31267 | 34011 | <part name="cart" interface="snes_cart"> |
| 34012 | ||
| 34013 | <feature name="slot" value="hirom" /> | |
| 31268 | 34014 | <dataarea name="rom" size="1572864"> |
| 31269 | 34015 | <rom name="2020 super baseball (japan).sfc" size="1572864" crc="e95a3dd7" sha1="fe448ae2c065dff8b0c2aacc35f9d9ee9432b04f" offset="0x000000" /> |
| 31270 | 34016 | </dataarea> |
| r21545 | r21546 | |
| 31279 | 34025 | <info name="release" value="19951222" /> |
| 31280 | 34026 | <info name="alt_title" value="サザンアイズ ~獣魔奉還~" /> |
| 31281 | 34027 | <part name="cart" interface="snes_cart"> |
| 34028 | ||
| 34029 | <feature name="slot" value="hirom" /> | |
| 31282 | 34030 | <dataarea name="rom" size="2097152"> |
| 31283 | 34031 | <rom name="3x3 eyes - juuma houkan (japan).sfc" size="2097152" crc="ad4ad163" sha1="b6214c20d83d70f6f83a79f4496486e30f424e17" offset="0x000000" /> |
| 31284 | 34032 | </dataarea> |
| r21545 | r21546 | |
| 31295 | 34043 | <info name="release" value="19920728" /> |
| 31296 | 34044 | <info name="alt_title" value="サザンアイズ 聖魔降臨伝" /> |
| 31297 | 34045 | <part name="cart" interface="snes_cart"> |
| 34046 | ||
| 34047 | <feature name="slot" value="lorom" /> | |
| 31298 | 34048 | <dataarea name="rom" size="1048576"> |
| 31299 | 34049 | <rom name="3x3 eyes - seima kourinden (japan).sfc" size="1048576" crc="fbf3c0ff" sha1="3b04986bd3ba2a5e49155cd395f51d2389bffa51" offset="0x000000" /> |
| 31300 | 34050 | </dataarea> |
| r21545 | r21546 | |
| 31311 | 34061 | <info name="release" value="19950714" /> |
| 31312 | 34062 | <info name="alt_title" value="4人将棋" /> |
| 31313 | 34063 | <part name="cart" interface="snes_cart"> |
| 34064 | ||
| 34065 | <feature name="slot" value="lorom" /> | |
| 31314 | 34066 | <dataarea name="rom" size="524288"> |
| 31315 | 34067 | <rom name="4-nin shougi (japan).sfc" size="524288" crc="9008c18a" sha1="c8f24de4078170d14c729083a29758f05051c27b" offset="0x000000" /> |
| 31316 | 34068 | </dataarea> |
| r21545 | r21546 | |
| 31325 | 34077 | <info name="release" value="19921221" /> |
| 31326 | 34078 | <info name="alt_title" value="46億年物語 ―はるかなるエデンへ―" /> |
| 31327 | 34079 | <part name="cart" interface="snes_cart"> |
| 34080 | ||
| 34081 | <feature name="slot" value="lorom" /> | |
| 31328 | 34082 | <dataarea name="rom" size="1572864"> |
| 31329 | 34083 | <rom name="46 okunen monogatari - harukanaru eden e (japan).sfc" size="1572864" crc="b090235a" sha1="6a9c8fb28eb524fc26561f9e193380edab3a8a58" offset="0x000000" /> |
| 31330 | 34084 | </dataarea> |
| r21545 | r21546 | |
| 31339 | 34093 | <publisher>Ocean</publisher> |
| 31340 | 34094 | <sharedfeat name="compatibility" value="PAL"/> |
| 31341 | 34095 | <part name="cart" interface="snes_cart"> |
| 34096 | ||
| 34097 | <feature name="slot" value="lorom" /> | |
| 31342 | 34098 | <dataarea name="rom" size="2097152"> |
| 31343 | 34099 | <rom name="90 minutes - european prime goal (europe) (beta).sfc" size="2097152" crc="1bc71881" sha1="8190236d93471bb78e0cda16a90ea0fee847b3f8" offset="0x000000" /> |
| 31344 | 34100 | </dataarea> |
| r21545 | r21546 | |
| 31353 | 34109 | <publisher>Ocean</publisher> |
| 31354 | 34110 | <sharedfeat name="compatibility" value="PAL"/> |
| 31355 | 34111 | <part name="cart" interface="snes_cart"> |
| 34112 | ||
| 34113 | <feature name="slot" value="lorom" /> | |
| 31356 | 34114 | <dataarea name="rom" size="2097152"> |
| 31357 | 34115 | <rom name="90 minutes - european prime goal (europe).sfc" size="2097152" crc="1ad61bd0" sha1="c46a2a6aacd0e338f11b7ef0abf8c79cc81433fe" offset="0x000000" /> |
| 31358 | 34116 | </dataarea> |
| r21545 | r21546 | |
| 31366 | 34124 | <year>1995</year> |
| 31367 | 34125 | <publisher>Viacom New Media</publisher> |
| 31368 | 34126 | <part name="cart" interface="snes_cart"> |
| 34127 | ||
| 34128 | <feature name="slot" value="lorom" /> | |
| 31369 | 34129 | <dataarea name="rom" size="2097152"> |
| 31370 | 34130 | <rom name="aaahh!!! real monsters (europe).sfc" size="2097152" crc="946313fb" sha1="ed042967a8528405ba7c67f9bad0af624e8c8497" offset="0x000000" /> |
| 31371 | 34131 | </dataarea> |
| r21545 | r21546 | |
| 31381 | 34141 | <info name="alt_title" value="abcマンデーナイトフットボール" /> |
| 31382 | 34142 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31383 | 34143 | <part name="cart" interface="snes_cart"> |
| 34144 | ||
| 34145 | <feature name="slot" value="lorom" /> | |
| 31384 | 34146 | <dataarea name="rom" size="1048576"> |
| 31385 | 34147 | <rom name="abc monday night football (japan).sfc" size="1048576" crc="24d4cfe9" sha1="da723818ef4162532b20ee60061aa784ae6762e3" offset="0x000000" /> |
| 31386 | 34148 | </dataarea> |
| r21545 | r21546 | |
| 31397 | 34159 | <info name="release" value="19931126" /> |
| 31398 | 34160 | <info name="alt_title" value="アクセルブリッド" /> |
| 31399 | 34161 | <part name="cart" interface="snes_cart"> |
| 34162 | ||
| 34163 | <feature name="slot" value="lorom" /> | |
| 31400 | 34164 | <dataarea name="rom" size="2097152"> |
| 31401 | 34165 | <rom name="accele brid (japan).sfc" size="2097152" crc="4a736c38" sha1="8c9b8623d51d646631c0e5bc592440db4cfd1eab" offset="0x000000" /> |
| 31402 | 34166 | </dataarea> |
| r21545 | r21546 | |
| 31412 | 34176 | <info name="alt_title" value="エースをねらえ!" /> |
| 31413 | 34177 | <part name="cart" interface="snes_cart"> |
| 31414 | 34178 | <feature name="enhancement" value="DSP1 A" /> |
| 34179 | ||
| 34180 | <feature name="slot" value="hirom_dsp" /> | |
| 31415 | 34181 | <dataarea name="rom" size="1048576"> |
| 31416 | 34182 | <rom name="ace o nerae! (japan).sfc" size="1048576" crc="6c5f1a18" sha1="065bf1bbf4662383e2e42105ad76e0ed93213a57" offset="0x000000" /> |
| 31417 | 34183 | </dataarea> |
| 34184 | <dataarea name="addon" size="10240"> | |
| 34185 | <rom name="dsp1a.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 34186 | </dataarea> | |
| 31418 | 34187 | </part> |
| 31419 | 34188 | </software> |
| 31420 | 34189 | |
| r21545 | r21546 | |
| 31426 | 34195 | <info name="release" value="19920911" /> |
| 31427 | 34196 | <info name="alt_title" value="アクロバットミッション" /> |
| 31428 | 34197 | <part name="cart" interface="snes_cart"> |
| 34198 | ||
| 34199 | <feature name="slot" value="lorom" /> | |
| 31429 | 34200 | <dataarea name="rom" size="1048576"> |
| 31430 | 34201 | <rom name="acrobat mission (japan).sfc" size="1048576" crc="0da18a10" sha1="9d48223f671c372be0aed43c51ec65e9b3cf59db" offset="0x000000" /> |
| 31431 | 34202 | </dataarea> |
| r21545 | r21546 | |
| 31440 | 34211 | <info name="release" value="19930409" /> |
| 31441 | 34212 | <info name="alt_title" value="アクションパチ夫" /> |
| 31442 | 34213 | <part name="cart" interface="snes_cart"> |
| 34214 | ||
| 34215 | <feature name="slot" value="lorom" /> | |
| 31443 | 34216 | <dataarea name="rom" size="1048576"> |
| 31444 | 34217 | <rom name="action pachio (japan).sfc" size="1048576" crc="c752f5df" sha1="9c46102986c2f9b7d068ac610eca74adf262ec47" offset="0x000000" /> |
| 31445 | 34218 | </dataarea> |
| r21545 | r21546 | |
| 31451 | 34224 | <year>1991</year> |
| 31452 | 34225 | <publisher>Enix</publisher> |
| 31453 | 34226 | <part name="cart" interface="snes_cart"> |
| 34227 | ||
| 34228 | <feature name="slot" value="lorom" /> | |
| 31454 | 34229 | <dataarea name="rom" size="1048576"> |
| 31455 | 34230 | <rom name="actraiser (europe).sfc" size="1048576" crc="09097b2b" sha1="b76621e0b9d882c8b8463203f5423ca7d45cc5bf" offset="0x000000" /> |
| 31456 | 34231 | </dataarea> |
| r21545 | r21546 | |
| 31464 | 34239 | <year>1991</year> |
| 31465 | 34240 | <publisher>Enix</publisher> |
| 31466 | 34241 | <part name="cart" interface="snes_cart"> |
| 34242 | ||
| 34243 | <feature name="slot" value="lorom" /> | |
| 31467 | 34244 | <dataarea name="rom" size="1048576"> |
| 31468 | 34245 | <rom name="actraiser (germany).sfc" size="1048576" crc="29a78af9" sha1="2be890711dec987ca1375c0b5d0844997de96566" offset="0x000000" /> |
| 31469 | 34246 | </dataarea> |
| r21545 | r21546 | |
| 31478 | 34255 | <publisher>Enix</publisher> |
| 31479 | 34256 | <sharedfeat name="compatibility" value="PAL"/> |
| 31480 | 34257 | <part name="cart" interface="snes_cart"> |
| 34258 | ||
| 34259 | <feature name="slot" value="hirom" /> | |
| 31481 | 34260 | <dataarea name="rom" size="1572864"> |
| 31482 | 34261 | <rom name="actraiser 2 (europe) (en,fr,de).sfc" size="1572864" crc="630e16a1" sha1="6cb1b7f7e904d4c1681647f10e3d1a89a44b89b6" offset="0x000000" /> |
| 31483 | 34262 | </dataarea> |
| r21545 | r21546 | |
| 31489 | 34268 | <year>1996</year> |
| 31490 | 34269 | <publisher>Ocean</publisher> |
| 31491 | 34270 | <part name="cart" interface="snes_cart"> |
| 34271 | ||
| 34272 | <feature name="slot" value="lorom" /> | |
| 31492 | 34273 | <dataarea name="rom" size="2097152"> |
| 31493 | 34274 | <rom name="addams family values (europe) (en,fr,de).sfc" size="2097152" crc="ae38adb6" sha1="1f4de5b9ff27ca58a451e5cbcc43ef0ab1efd015" offset="0x000000" /> |
| 31494 | 34275 | </dataarea> |
| r21545 | r21546 | |
| 31503 | 34284 | <info name="release" value="19921023" /> |
| 31504 | 34285 | <info name="alt_title" value="アダムス・ファミリー" /> |
| 31505 | 34286 | <part name="cart" interface="snes_cart"> |
| 34287 | ||
| 34288 | <feature name="slot" value="lorom" /> | |
| 31506 | 34289 | <dataarea name="rom" size="1048576"> |
| 31507 | 34290 | <rom name="addams family, the (japan).sfc" size="1048576" crc="cd80351c" sha1="d5eafc54dd0a237b1c3f00d02882772033e95365" offset="0x000000" /> |
| 31508 | 34291 | </dataarea> |
| r21545 | r21546 | |
| 31514 | 34297 | <year>1993</year> |
| 31515 | 34298 | <publisher>Ocean</publisher> |
| 31516 | 34299 | <part name="cart" interface="snes_cart"> |
| 34300 | ||
| 34301 | <feature name="slot" value="lorom" /> | |
| 31517 | 34302 | <dataarea name="rom" size="1048576"> |
| 31518 | 34303 | <rom name="addams family, the - pugsley's scavenger hunt (europe).sfc" size="1048576" crc="644e7fbf" sha1="9bf639171147edd8d57de059f53308007deb1a91" offset="0x000000" /> |
| 31519 | 34304 | </dataarea> |
| r21545 | r21546 | |
| 31525 | 34310 | <year>1993</year> |
| 31526 | 34311 | <publisher>Ocean</publisher> |
| 31527 | 34312 | <part name="cart" interface="snes_cart"> |
| 34313 | ||
| 34314 | <feature name="slot" value="lorom" /> | |
| 31528 | 34315 | <dataarea name="rom" size="1048576"> |
| 31529 | 34316 | <rom name="addams family, the - pugsley's scavenger hunt (usa) (beta).sfc" size="1048576" crc="64d68066" sha1="1ff69c922300d7562e357fba6fd6efeb1b8ac0a4" offset="0x000000" /> |
| 31530 | 34317 | </dataarea> |
| r21545 | r21546 | |
| 31537 | 34324 | <publisher>Konami</publisher> |
| 31538 | 34325 | <sharedfeat name="compatibility" value="PAL"/> |
| 31539 | 34326 | <part name="cart" interface="snes_cart"> |
| 34327 | ||
| 34328 | <feature name="slot" value="lorom" /> | |
| 31540 | 34329 | <dataarea name="rom" size="2097152"> |
| 31541 | 34330 | <rom name="adventures of batman & robin, the (europe).sfc" size="2097152" crc="96b0c568" sha1="4d5afc2d11b141ddc33753b6fb84847d2f2261ba" offset="0x000000" /> |
| 31542 | 34331 | </dataarea> |
| r21545 | r21546 | |
| 31549 | 34338 | <publisher>DTMC</publisher> |
| 31550 | 34339 | <sharedfeat name="compatibility" value="PAL"/> |
| 31551 | 34340 | <part name="cart" interface="snes_cart"> |
| 34341 | ||
| 34342 | <feature name="slot" value="lorom" /> | |
| 31552 | 34343 | <dataarea name="rom" size="1048576"> |
| 31553 | 34344 | <rom name="adventures of dr. franken, the (europe) (en,fr,de,es,it,nl,sv).sfc" size="1048576" crc="e4925f15" sha1="715223e622579f9e94fe00b0e3bdd6d9ce3ca9f9" offset="0x000000" /> |
| 31554 | 34345 | </dataarea> |
| r21545 | r21546 | |
| 31563 | 34354 | <info name="release" value="19920228" /> |
| 31564 | 34355 | <info name="alt_title" value="ロケッティア" /> |
| 31565 | 34356 | <part name="cart" interface="snes_cart"> |
| 34357 | ||
| 34358 | <feature name="slot" value="lorom" /> | |
| 31566 | 34359 | <dataarea name="rom" size="1048576"> |
| 31567 | 34360 | <rom name="adventures of the rocketeer, the (japan).sfc" size="1048576" crc="cbc4868e" sha1="296b8626cd256335c4a57a38e6ade874763e1f5e" offset="0x000000" /> |
| 31568 | 34361 | </dataarea> |
| r21545 | r21546 | |
| 31575 | 34368 | <publisher>Infogrames</publisher> |
| 31576 | 34369 | <sharedfeat name="compatibility" value="PAL"/> |
| 31577 | 34370 | <part name="cart" interface="snes_cart"> |
| 34371 | ||
| 34372 | <feature name="slot" value="lorom" /> | |
| 31578 | 34373 | <dataarea name="rom" size="2097152"> |
| 31579 | 34374 | <rom name="adventures of tintin, the - prisoners of the sun (europe) (en,fr,de,es).sfc" size="2097152" crc="a94a47be" sha1="c5a18d06aa1e411c73cd97572716f8d712bccb8a" offset="0x000000" /> |
| 31580 | 34375 | </dataarea> |
| r21545 | r21546 | |
| 31586 | 34381 | <year>1993</year> |
| 31587 | 34382 | <publisher>Sunsoft</publisher> |
| 31588 | 34383 | <part name="cart" interface="snes_cart"> |
| 34384 | ||
| 34385 | <feature name="slot" value="lorom" /> | |
| 31589 | 34386 | <dataarea name="rom" size="1048576"> |
| 31590 | 34387 | <rom name="aero the acro-bat (europe).sfc" size="1048576" crc="fa0ce63a" sha1="b647b6362c27bd1506aea1e771228d5813e3bb6c" offset="0x000000" /> |
| 31591 | 34388 | </dataarea> |
| r21545 | r21546 | |
| 31597 | 34394 | <year>1993</year> |
| 31598 | 34395 | <publisher>Absolute Entertainment</publisher> |
| 31599 | 34396 | <part name="cart" interface="snes_cart"> |
| 34397 | ||
| 34398 | <feature name="slot" value="lorom" /> | |
| 31600 | 34399 | <dataarea name="rom" size="1048576"> |
| 31601 | 34400 | <rom name="aguri suzuki f-1 super driving (europe).sfc" size="1048576" crc="c8382f39" sha1="8f4ba3bdfe097e24235ee7db56e92ede09cc0e07" offset="0x000000" /> |
| 31602 | 34401 | </dataarea> |
| r21545 | r21546 | |
| 31610 | 34409 | <year>1995</year> |
| 31611 | 34410 | <publisher>CyberSoft</publisher> |
| 31612 | 34411 | <part name="cart" interface="snes_cart"> |
| 34412 | ||
| 34413 | <feature name="slot" value="lorom" /> | |
| 31613 | 34414 | <dataarea name="rom" size="1048576"> |
| 31614 | 34415 | <rom name="air cavalry (europe).sfc" size="1048576" crc="b3f57cc6" sha1="0f526a429170ebb8a7981a2b4df42203d4eca71d" offset="0x000000" /> |
| 31615 | 34416 | </dataarea> |
| r21545 | r21546 | |
| 31624 | 34425 | <info name="release" value="19920405" /> |
| 31625 | 34426 | <info name="alt_title" value="エアーマネジメント 大空に賭ける" /> |
| 31626 | 34427 | <part name="cart" interface="snes_cart"> |
| 34428 | ||
| 34429 | <feature name="slot" value="lorom" /> | |
| 31627 | 34430 | <dataarea name="rom" size="1048576"> |
| 31628 | 34431 | <rom name="air management - oozora ni kakeru (japan) (rev 1).sfc" size="1048576" crc="a533bc97" sha1="acaaed5a29e434472f4751b740e644a036dee67a" offset="0x000000" /> |
| 31629 | 34432 | </dataarea> |
| r21545 | r21546 | |
| 31641 | 34444 | <info name="alt_title" value="赤川次郎 魔女たちの眠り" /> |
| 31642 | 34445 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31643 | 34446 | <part name="cart" interface="snes_cart"> |
| 34447 | ||
| 34448 | <feature name="slot" value="hirom" /> | |
| 31644 | 34449 | <dataarea name="rom" size="3145728"> |
| 31645 | 34450 | <rom name="akagawa jirou majo-tachi no nemuri (japan).sfc" size="3145728" crc="167e4c15" sha1="772c4e683771ba7e3a0eba7a26b1690d13980c6a" offset="0x000000" /> |
| 31646 | 34451 | </dataarea> |
| r21545 | r21546 | |
| 31657 | 34462 | <info name="release" value="19960809" /> |
| 31658 | 34463 | <info name="alt_title" value="赤ずきんチャチャ" /> |
| 31659 | 34464 | <part name="cart" interface="snes_cart"> |
| 34465 | ||
| 34466 | <feature name="slot" value="hirom" /> | |
| 31660 | 34467 | <dataarea name="rom" size="1572864"> |
| 31661 | 34468 | <rom name="akazukin chacha (japan).sfc" size="1572864" crc="eef47b5e" sha1="a061d1b32303ec808983c473095ab50e1a9c1b2e" offset="0x000000" /> |
| 31662 | 34469 | </dataarea> |
| r21545 | r21546 | |
| 31674 | 34481 | <info name="alt_title" value="悪魔城ドラキュラXX" /> |
| 31675 | 34482 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31676 | 34483 | <part name="cart" interface="snes_cart"> |
| 34484 | ||
| 34485 | <feature name="slot" value="lorom" /> | |
| 31677 | 34486 | <dataarea name="rom" size="2097152"> |
| 31678 | 34487 | <rom name="akumajou dracula xx (japan).sfc" size="2097152" crc="0aa75fa8" sha1="28fcb0acd1c02ada4e81fc84552b8ff1eea79420" offset="0x000000" /> |
| 31679 | 34488 | </dataarea> |
| r21545 | r21546 | |
| 31685 | 34494 | <year>1994</year> |
| 31686 | 34495 | <publisher>Mindscape</publisher> |
| 31687 | 34496 | <part name="cart" interface="snes_cart"> |
| 34497 | ||
| 34498 | <feature name="slot" value="lorom" /> | |
| 31688 | 34499 | <dataarea name="rom" size="1048576"> |
| 31689 | 34500 | <rom name="al unser jr.'s road to the top (europe).sfc" size="1048576" crc="4cf5d45f" sha1="94d1c2e49a2af4169ef7bd01653edb71f39a4c53" offset="0x000000" /> |
| 31690 | 34501 | </dataarea> |
| r21545 | r21546 | |
| 31696 | 34507 | <year>1994</year> |
| 31697 | 34508 | <publisher>Capcom</publisher> |
| 31698 | 34509 | <part name="cart" interface="snes_cart"> |
| 34510 | ||
| 34511 | <feature name="slot" value="lorom" /> | |
| 31699 | 34512 | <dataarea name="rom" size="1310720"> |
| 31700 | 34513 | <rom name="aladdin (europe).sfc" size="1310720" crc="44ff6e78" sha1="fd155afd8ffa81b0dc6e7990a18212538882e626" offset="0x000000" /> |
| 31701 | 34514 | </dataarea> |
| r21545 | r21546 | |
| 31707 | 34520 | <year>1994</year> |
| 31708 | 34521 | <publisher>Capcom</publisher> |
| 31709 | 34522 | <part name="cart" interface="snes_cart"> |
| 34523 | ||
| 34524 | <feature name="slot" value="lorom" /> | |
| 31710 | 34525 | <dataarea name="rom" size="1310720"> |
| 31711 | 34526 | <rom name="aladdin (france).sfc" size="1310720" crc="63069939" sha1="d0fc2d457dde02cb28b4d1c7248c97d1711e2fe2" offset="0x000000" /> |
| 31712 | 34527 | </dataarea> |
| r21545 | r21546 | |
| 31718 | 34533 | <year>1994</year> |
| 31719 | 34534 | <publisher>Capcom</publisher> |
| 31720 | 34535 | <part name="cart" interface="snes_cart"> |
| 34536 | ||
| 34537 | <feature name="slot" value="lorom" /> | |
| 31721 | 34538 | <dataarea name="rom" size="1310720"> |
| 31722 | 34539 | <rom name="aladdin (spain).sfc" size="1310720" crc="90ee8c61" sha1="db4c5ae21420aa79f4519b542b03962a9293464d" offset="0x000000" /> |
| 31723 | 34540 | </dataarea> |
| r21545 | r21546 | |
| 31729 | 34546 | <year>1993</year> |
| 31730 | 34547 | <publisher>Capcom</publisher> |
| 31731 | 34548 | <part name="cart" interface="snes_cart"> |
| 34549 | ||
| 34550 | <feature name="slot" value="lorom" /> | |
| 31732 | 34551 | <dataarea name="rom" size="1310720"> |
| 31733 | 34552 | <rom name="aladdin (usa) (beta).sfc" size="1310720" crc="52fdfab4" sha1="48dda773437cd755c31d2422f1dfd3a3fd6ee76b" offset="0x000000" /> |
| 31734 | 34553 | </dataarea> |
| r21545 | r21546 | |
| 31740 | 34559 | <year>1994</year> |
| 31741 | 34560 | <publisher>Minscape</publisher> |
| 31742 | 34561 | <part name="cart" interface="snes_cart"> |
| 34562 | ||
| 34563 | <feature name="slot" value="lorom" /> | |
| 31743 | 34564 | <dataarea name="rom" size="1048576"> |
| 31744 | 34565 | <rom name="alfred chicken (europe).sfc" size="1048576" crc="e344627b" sha1="10b4bb69733286b1997de882383e4eaf2a574210" offset="0x000000" /> |
| 31745 | 34566 | </dataarea> |
| r21545 | r21546 | |
| 31755 | 34576 | <info name="alt_title" value="アリスのペイントアドベンチャー" /> |
| 31756 | 34577 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31757 | 34578 | <part name="cart" interface="snes_cart"> |
| 34579 | ||
| 34580 | <feature name="slot" value="hirom" /> | |
| 31758 | 34581 | <dataarea name="rom" size="1048576"> |
| 31759 | 34582 | <rom name="alice no paint adventure (japan).sfc" size="1048576" crc="05798da8" sha1="18b6fadbcee0741001537ad3f62c8477a2b664cf" offset="0x000000" /> |
| 31760 | 34583 | </dataarea> |
| r21545 | r21546 | |
| 31769 | 34592 | <info name="release" value="19930709" /> |
| 31770 | 34593 | <info name="alt_title" value="エイリアン3" /> |
| 31771 | 34594 | <part name="cart" interface="snes_cart"> |
| 34595 | ||
| 34596 | <feature name="slot" value="lorom" /> | |
| 31772 | 34597 | <dataarea name="rom" size="1048576"> |
| 31773 | 34598 | <rom name="alien 3 (japan).sfc" size="1048576" crc="8a21b63f" sha1="c719da33015b96c78a5233351bae7b9dd466c4eb" offset="0x000000" /> |
| 31774 | 34599 | </dataarea> |
| r21545 | r21546 | |
| 31780 | 34605 | <year>1993</year> |
| 31781 | 34606 | <publisher>LJN</publisher> |
| 31782 | 34607 | <part name="cart" interface="snes_cart"> |
| 34608 | ||
| 34609 | <feature name="slot" value="lorom" /> | |
| 31783 | 34610 | <dataarea name="rom" size="1048576"> |
| 31784 | 34611 | <rom name="alien 3 (usa) (beta).sfc" size="1048576" crc="77713c95" sha1="61fada9c94a7a834edf0567f12a90d336611a9c7" offset="0x000000" /> |
| 31785 | 34612 | </dataarea> |
| r21545 | r21546 | |
| 31791 | 34618 | <year>1993</year> |
| 31792 | 34619 | <publisher>Activision</publisher> |
| 31793 | 34620 | <part name="cart" interface="snes_cart"> |
| 34621 | ||
| 34622 | <feature name="slot" value="lorom" /> | |
| 31794 | 34623 | <dataarea name="rom" size="1048576"> |
| 31795 | 34624 | <rom name="alien vs. predator (europe).sfc" size="1048576" crc="a31d1f58" sha1="2beffd4d63ff4a868660c21c69650d9456908745" offset="0x000000" /> |
| 31796 | 34625 | </dataarea> |
| r21545 | r21546 | |
| 31805 | 34634 | <info name="release" value="19930108" /> |
| 31806 | 34635 | <info name="alt_title" value="イリアンVS.プレデター" /> |
| 31807 | 34636 | <part name="cart" interface="snes_cart"> |
| 34637 | ||
| 34638 | <feature name="slot" value="lorom" /> | |
| 31808 | 34639 | <dataarea name="rom" size="1048576"> |
| 31809 | 34640 | <rom name="aliens vs. predator (japan).sfc" size="1048576" crc="2d5876ff" sha1="e8f13b51c7700c721a4a916e77e24429a3afb749" offset="0x000000" /> |
| 31810 | 34641 | </dataarea> |
| r21545 | r21546 | |
| 31816 | 34647 | <year>1994</year> |
| 31817 | 34648 | <publisher>Malibu Games</publisher> |
| 31818 | 34649 | <part name="cart" interface="snes_cart"> |
| 34650 | ||
| 34651 | <feature name="slot" value="lorom" /> | |
| 31819 | 34652 | <dataarea name="rom" size="524288"> |
| 31820 | 34653 | <rom name="all-american championship football (europe).sfc" size="524288" crc="ebefbde2" sha1="97d942604ce1a2fa40c89b8c19bad765ec660d8a" offset="0x000000" /> |
| 31821 | 34654 | </dataarea> |
| r21545 | r21546 | |
| 31830 | 34663 | <info name="release" value="19950317" /> |
| 31831 | 34664 | <info name="alt_title" value="スパイダーマン リーサルフォーズ" /> |
| 31832 | 34665 | <part name="cart" interface="snes_cart"> |
| 34666 | ||
| 34667 | <feature name="slot" value="hirom" /> | |
| 31833 | 34668 | <dataarea name="rom" size="1572864"> |
| 31834 | 34669 | <rom name="amazing spider-man, the - lethal foes (japan).sfc" size="1572864" crc="82f7f710" sha1="94763d6fc3216082e33cafbecb1e737ef3c5bda9" offset="0x000000" /> |
| 31835 | 34670 | </dataarea> |
| r21545 | r21546 | |
| 31844 | 34679 | <info name="release" value="19921120" /> |
| 31845 | 34680 | <info name="alt_title" value="アメリカ横断ウルトラクイズ" /> |
| 31846 | 34681 | <part name="cart" interface="snes_cart"> |
| 34682 | ||
| 34683 | <feature name="slot" value="lorom" /> | |
| 31847 | 34684 | <dataarea name="rom" size="1048576"> |
| 31848 | 34685 | <rom name="america oudan ultra quiz (japan).sfc" size="1048576" crc="9624e6ed" sha1="7d53b77c51c7c7e964f40e12b641a405d2e68b2a" offset="0x000000" /> |
| 31849 | 34686 | </dataarea> |
| r21545 | r21546 | |
| 31859 | 34696 | <info name="alt_title" value="アメリカンバトルドーム" /> |
| 31860 | 34697 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31861 | 34698 | <part name="cart" interface="snes_cart"> |
| 34699 | ||
| 34700 | <feature name="slot" value="lorom" /> | |
| 31862 | 34701 | <dataarea name="rom" size="1048576"> |
| 31863 | 34702 | <rom name="american battle dome (japan).sfc" size="1048576" crc="61753981" sha1="8c5a3f81a59b788118473eef9a68007acf942a87" offset="0x000000" /> |
| 31864 | 34703 | </dataarea> |
| r21545 | r21546 | |
| 31873 | 34712 | <info name="release" value="19940331" /> |
| 31874 | 34713 | <info name="alt_title" value="アンドレ・アガシ テニス" /> |
| 31875 | 34714 | <part name="cart" interface="snes_cart"> |
| 34715 | ||
| 34716 | <feature name="slot" value="lorom" /> | |
| 31876 | 34717 | <dataarea name="rom" size="524288"> |
| 31877 | 34718 | <rom name="andre agassi tennis (japan).sfc" size="524288" crc="d9879a39" sha1="0916428789c5cdfd7b92504f7ae5dc7782f9f9e5" offset="0x000000" /> |
| 31878 | 34719 | </dataarea> |
| r21545 | r21546 | |
| 31887 | 34728 | <info name="release" value="19951208" /> |
| 31888 | 34729 | <info name="alt_title" value="アンジェリーク プレミアムボックス" /> |
| 31889 | 34730 | <part name="cart" interface="snes_cart"> |
| 34731 | ||
| 34732 | <feature name="slot" value="hirom" /> | |
| 31890 | 34733 | <dataarea name="rom" size="2097152"> |
| 31891 | 34734 | <rom name="angelique (japan) (premium box).sfc" size="2097152" crc="3da108c4" sha1="9b3e83b337ac40918e648c6a917f93af8e31459b" offset="0x000000" /> |
| 31892 | 34735 | </dataarea> |
| r21545 | r21546 | |
| 31903 | 34746 | <info name="release" value="19940923" /> |
| 31904 | 34747 | <info name="alt_title" value="アンジェリーク" /> |
| 31905 | 34748 | <part name="cart" interface="snes_cart"> |
| 34749 | ||
| 34750 | <feature name="slot" value="hirom" /> | |
| 31906 | 34751 | <dataarea name="rom" size="2097152"> |
| 31907 | 34752 | <rom name="angelique (japan).sfc" size="2097152" crc="ec3edb9e" sha1="4824bccebfd0f4f89e89993e0edb81d604105e38" offset="0x000000" /> |
| 31908 | 34753 | </dataarea> |
| r21545 | r21546 | |
| 31920 | 34765 | <info name="release" value="19960329" /> |
| 31921 | 34766 | <info name="alt_title" value="アンジェリーク ヴォイス・ファン タジー with ボイサーくん" /> |
| 31922 | 34767 | <part name="cart" interface="snes_cart"> |
| 34768 | ||
| 34769 | <feature name="slot" value="hirom" /> | |
| 31923 | 34770 | <dataarea name="rom" size="3145728"> |
| 31924 | 34771 | <rom name="angelique - voice fantasy (japan).sfc" size="3145728" crc="ea6ae8a9" sha1="e48ab2ea6c673cf8170ac8f41625482524f3406e" offset="0x000000" /> |
| 31925 | 34772 | </dataarea> |
| r21545 | r21546 | |
| 31936 | 34783 | <info name="release" value="19941222" /> |
| 31937 | 34784 | <info name="alt_title" value="アニマル武乱伝 ブルータル" /> |
| 31938 | 34785 | <part name="cart" interface="snes_cart"> |
| 34786 | ||
| 34787 | <feature name="slot" value="lorom" /> | |
| 31939 | 34788 | <dataarea name="rom" size="2097152"> |
| 31940 | 34789 | <rom name="animal buranden - brutal (japan).sfc" size="2097152" crc="78eca50d" sha1="c6f5bd4c9bca100c49735a3f79fcb97ed8d7c379" offset="0x000000" /> |
| 31941 | 34790 | </dataarea> |
| r21545 | r21546 | |
| 31948 | 34797 | <publisher>Konami</publisher> |
| 31949 | 34798 | <sharedfeat name="compatibility" value="PAL"/> |
| 31950 | 34799 | <part name="cart" interface="snes_cart"> |
| 34800 | ||
| 34801 | <feature name="slot" value="lorom" /> | |
| 31951 | 34802 | <dataarea name="rom" size="1048576"> |
| 31952 | 34803 | <rom name="animaniacs (europe).sfc" size="1048576" crc="c28a80f6" sha1="f3c3c701ab80f0431938b74154c2d1b3c3dd33c7" offset="0x000000" /> |
| 31953 | 34804 | </dataarea> |
| r21545 | r21546 | |
| 31963 | 34814 | <info name="alt_title" value="アニマニアクス" /> |
| 31964 | 34815 | <sharedfeat name="compatibility" value="NTSC"/> |
| 31965 | 34816 | <part name="cart" interface="snes_cart"> |
| 34817 | ||
| 34818 | <feature name="slot" value="lorom" /> | |
| 31966 | 34819 | <dataarea name="rom" size="1048576"> |
| 31967 | 34820 | <rom name="animaniacs (japan).sfc" size="1048576" crc="d93e07a8" sha1="382dabaed7bb03880582546ea9501e33eee4cb6d" offset="0x000000" /> |
| 31968 | 34821 | </dataarea> |
| r21545 | r21546 | |
| 31977 | 34830 | <info name="release" value="19960614" /> |
| 31978 | 34831 | <info name="alt_title" value="アラビアンナイト ~砂漠の精霊王~" /> |
| 31979 | 34832 | <part name="cart" interface="snes_cart"> |
| 34833 | ||
| 34834 | <feature name="slot" value="hirom" /> | |
| 31980 | 34835 | <dataarea name="rom" size="2621440"> |
| 31981 | 34836 | <rom name="arabian nights - sabaku no seirei ou (japan).sfc" size="2621440" crc="b6dbf57b" sha1="4c06a9a1f5598869852b9f008136e38e2a39baab" offset="0x000000" /> |
| 31982 | 34837 | </dataarea> |
| r21545 | r21546 | |
| 31993 | 34848 | <info name="release" value="19940325" /> |
| 31994 | 34849 | <info name="alt_title" value="あらいぐまラスカル" /> |
| 31995 | 34850 | <part name="cart" interface="snes_cart"> |
| 34851 | ||
| 34852 | <feature name="slot" value="hirom" /> | |
| 31996 | 34853 | <dataarea name="rom" size="1048576"> |
| 31997 | 34854 | <rom name="araiguma rascal (japan).sfc" size="1048576" crc="de13ec70" sha1="9dd44e7f063b07de7ecee22914f4b273033ea697" offset="0x000000" /> |
| 31998 | 34855 | </dataarea> |
| r21545 | r21546 | |
| 32004 | 34861 | <year>1997</year> |
| 32005 | 34862 | <publisher>Williams</publisher> |
| 32006 | 34863 | <part name="cart" interface="snes_cart"> |
| 34864 | ||
| 34865 | <feature name="slot" value="lorom" /> | |
| 32007 | 34866 | <dataarea name="rom" size="524288"> |
| 32008 | 34867 | <rom name="arcade's greatest hits (europe).sfc" size="524288" crc="dc69693f" sha1="85d66209d3fe24d19bf72c762f09fd2d3f30311d" offset="0x000000" /> |
| 32009 | 34868 | </dataarea> |
| r21545 | r21546 | |
| 32016 | 34875 | <publisher>Midway</publisher> |
| 32017 | 34876 | <info name="release" value="199610xx" /> |
| 32018 | 34877 | <part name="cart" interface="snes_cart"> |
| 34878 | ||
| 34879 | <feature name="slot" value="lorom" /> | |
| 32019 | 34880 | <dataarea name="rom" size="524288"> |
| 32020 | 34881 | <rom name="arcade's greatest hits (usa).sfc" size="524288" crc="471b12b0" sha1="d6219e7078f58ffccba64c24fc7fa1fc06bdfb30" offset="000000" /> |
| 32021 | 34882 | </dataarea> |
| r21545 | r21546 | |
| 32027 | 34888 | <year>1998</year> |
| 32028 | 34889 | <publisher>Williams</publisher> |
| 32029 | 34890 | <part name="cart" interface="snes_cart"> |
| 34891 | ||
| 34892 | <feature name="slot" value="lorom" /> | |
| 32030 | 34893 | <dataarea name="rom" size="524288"> |
| 32031 | 34894 | <rom name="arcade's greatest hits - the atari collection 1 (europe).sfc" size="524288" crc="d562233e" sha1="a2d55e5d9fa13a90da776ba48b008b6ac7f9724d" offset="0x000000" /> |
| 32032 | 34895 | </dataarea> |
| r21545 | r21546 | |
| 32041 | 34904 | <info name="release" value="19931022" /> |
| 32042 | 34905 | <info name="alt_title" value="アークス・スピリッツ" /> |
| 32043 | 34906 | <part name="cart" interface="snes_cart"> |
| 34907 | ||
| 34908 | <feature name="slot" value="lorom" /> | |
| 32044 | 34909 | <dataarea name="rom" size="1310720"> |
| 32045 | 34910 | <rom name="arcus spirits (japan).sfc" size="1310720" crc="c9067671" sha1="d9b029a4d22c75113a051c7eb7bf6ea0ecdcba8d" offset="0x000000" /> |
| 32046 | 34911 | </dataarea> |
| r21545 | r21546 | |
| 32052 | 34917 | <year>1996</year> |
| 32053 | 34918 | <publisher>Titus</publisher> |
| 32054 | 34919 | <part name="cart" interface="snes_cart"> |
| 34920 | ||
| 34921 | <feature name="slot" value="lorom" /> | |
| 32055 | 34922 | <dataarea name="rom" size="1048576"> |
| 32056 | 34923 | <rom name="ardy lightfoot (europe).sfc" size="1048576" crc="d239398f" sha1="2902d66c27420aabd0270ff772244eaf30368781" offset="0x000000" /> |
| 32057 | 34924 | </dataarea> |
| r21545 | r21546 | |
| 32063 | 34930 | <year>1993</year> |
| 32064 | 34931 | <publisher>ASCII Entertainment</publisher> |
| 32065 | 34932 | <part name="cart" interface="snes_cart"> |
| 34933 | ||
| 34934 | <feature name="slot" value="lorom" /> | |
| 32066 | 34935 | <dataarea name="rom" size="1048576"> |
| 32067 | 34936 | <rom name="ardy lightfoot (japan) (beta).sfc" size="1048576" crc="f73a6e33" sha1="f7f6950698ecb2fb38a3beb79555b1db39dd9740" offset="0x000000" /> |
| 32068 | 34937 | </dataarea> |
| r21545 | r21546 | |
| 32078 | 34947 | <info name="alt_title" value="アルディライトフット" /> |
| 32079 | 34948 | <sharedfeat name="compatibility" value="NTSC"/> |
| 32080 | 34949 | <part name="cart" interface="snes_cart"> |
| 34950 | ||
| 34951 | <feature name="slot" value="lorom" /> | |
| 32081 | 34952 | <dataarea name="rom" size="1048576"> |
| 32082 | 34953 | <rom name="ardy lightfoot (japan).sfc" size="1048576" crc="2aa7777b" sha1="75b727ba61bb8622b859b5e1c102e85f1c335ac7" offset="0x000000" /> |
| 32083 | 34954 | </dataarea> |
| r21545 | r21546 | |
| 32089 | 34960 | <year>1994</year> |
| 32090 | 34961 | <publisher>Yanoman Games</publisher> |
| 32091 | 34962 | <part name="cart" interface="snes_cart"> |
| 34963 | ||
| 34964 | <feature name="slot" value="lorom" /> | |
| 32092 | 34965 | <dataarea name="rom" size="2097152"> |
| 32093 | 34966 | <rom name="aretha ii - ariel no fushigi na tabi (japan) (beta) (alt 1).sfc" size="2097152" crc="7b164161" sha1="2d682d2def490a6a7c622644e5bbf2a314b3a10a" offset="0x000000" /> |
| 32094 | 34967 | </dataarea> |
| r21545 | r21546 | |
| 32102 | 34975 | <year>1994</year> |
| 32103 | 34976 | <publisher>Yanoman Games</publisher> |
| 32104 | 34977 | <part name="cart" interface="snes_cart"> |
| 34978 | ||
| 34979 | <feature name="slot" value="lorom" /> | |
| 32105 | 34980 | <dataarea name="rom" size="2097152"> |
| 32106 | 34981 | <rom name="aretha ii - ariel no fushigi na tabi (japan) (beta).sfc" size="2097152" crc="7f5a6f91" sha1="8fec486ae1a20434d53a04d9e8bcca25922f700d" offset="0x000000" /> |
| 32107 | 34982 | </dataarea> |
| r21545 | r21546 | |
| 32118 | 34993 | <info name="release" value="19941202" /> |
| 32119 | 34994 | <info name="alt_title" value="アレサII アリエルの不思議な旅" /> |
| 32120 | 34995 | <part name="cart" interface="snes_cart"> |
| 34996 | ||
| 34997 | <feature name="slot" value="lorom" /> | |
| 32121 | 34998 | <dataarea name="rom" size="2097152"> |
| 32122 | 34999 | <rom name="aretha ii - ariel no fushigi na tabi (japan).sfc" size="2097152" crc="ff63ec26" sha1="1eb540648749f760ea23e6fb6c3ae3ad0b7ca1a5" offset="0x000000" /> |
| 32123 | 35000 | </dataarea> |
| r21545 | r21546 | |
| 32131 | 35008 | <year>1997</year> |
| 32132 | 35009 | <publisher>Nintendo</publisher> |
| 32133 | 35010 | <part name="cart" interface="snes_cart"> |
| 35011 | ||
| 35012 | <feature name="slot" value="lorom" /> | |
| 32134 | 35013 | <dataarea name="rom" size="524288"> |
| 32135 | 35014 | <rom name="arkanoid - doh it again (europe).sfc" size="524288" crc="d436489b" sha1="621454564f7c494b6953be2066d73641096c84f1" offset="0x000000" /> |
| 32136 | 35015 | </dataarea> |
| r21545 | r21546 | |
| 32143 | 35022 | <publisher>Takara</publisher> |
| 32144 | 35023 | <sharedfeat name="compatibility" value="PAL"/> |
| 32145 | 35024 | <part name="cart" interface="snes_cart"> |
| 35025 | ||
| 35026 | <feature name="slot" value="hirom" /> | |
| 32146 | 35027 | <dataarea name="rom" size="2097152"> |
| 32147 | 35028 | <rom name="art of fighting (europe).sfc" size="2097152" crc="143051a5" sha1="e8ee828ba3961cc76edbaf74bb26a63ab274956e" offset="0x000000" /> |
| 32148 | 35029 | </dataarea> |
| r21545 | r21546 | |
| 32157 | 35038 | <info name="release" value="19940805" /> |
| 32158 | 35039 | <info name="alt_title" value="うごく絵 Ver2.0 アリョール" /> |
| 32159 | 35040 | <part name="cart" interface="snes_cart"> |
| 35041 | ||
| 35042 | <feature name="slot" value="lorom" /> | |
| 32160 | 35043 | <dataarea name="rom" size="1048576"> |
| 32161 | 35044 | <rom name="aryol (japan).sfc" size="1048576" crc="43b1aad9" sha1="108774bfbb16f11d9884587f98a4a76077e7b12f" offset="0x000000" /> |
| 32162 | 35045 | </dataarea> |
| r21545 | r21546 | |
| 32171 | 35054 | <info name="release" value="19950922" /> |
| 32172 | 35055 | <info name="alt_title" value="朝日新聞連載 加藤一二三九段将棋 心技流" /> |
| 32173 | 35056 | <part name="cart" interface="snes_cart"> |
| 35057 | ||
| 35058 | <feature name="slot" value="lorom" /> | |
| 32174 | 35059 | <dataarea name="rom" size="1048576"> |
| 32175 | 35060 | <rom name="asahi shinbun rensai - katou hifumi kudan shougi - shingiryuu (japan).sfc" size="1048576" crc="506a8f77" sha1="eb1f8139d1490c268eb2c2cca3634bf1676e1c48" offset="0x000000" /> |
| 32176 | 35061 | </dataarea> |
| r21545 | r21546 | |
| 32187 | 35072 | <info name="release" value="19940318" /> |
| 32188 | 35073 | <info name="alt_title" value="あさめしまえにゃんこ" /> |
| 32189 | 35074 | <part name="cart" interface="snes_cart"> |
| 35075 | ||
| 35076 | <feature name="slot" value="lorom" /> | |
| 32190 | 35077 | <dataarea name="rom" size="1048576"> |
| 32191 | 35078 | <rom name="asameshimae nyanko (japan).sfc" size="1048576" crc="24fe792f" sha1="da6ac0d2c305c6c6fb8ab281560d2cf65648f048" offset="0x000000" /> |
| 32192 | 35079 | </dataarea> |
| r21545 | r21546 | |
| 32201 | 35088 | <info name="release" value="19921127" /> |
| 32202 | 35089 | <info name="alt_title" value="あしたのジョー" /> |
| 32203 | 35090 | <part name="cart" interface="snes_cart"> |
| 35091 | ||
| 35092 | <feature name="slot" value="lorom" /> | |
| 32204 | 35093 | <dataarea name="rom" size="1048576"> |
| 32205 | 35094 | <rom name="ashita no joe (japan).sfc" size="1048576" crc="6b54be97" sha1="36a58cf915f394875b1ff6cb9bca539e0cb4bda0" offset="0x000000" /> |
| 32206 | 35095 | </dataarea> |
| r21545 | r21546 | |
| 32215 | 35104 | <info name="release" value="19950324" /> |
| 32216 | 35105 | <info name="alt_title" value="ジ・アトラス" /> |
| 32217 | 35106 | <part name="cart" interface="snes_cart"> |
| 35107 | ||
| 35108 | <feature name="slot" value="lorom" /> | |
| 32218 | 35109 | <dataarea name="rom" size="2097152"> |
| 32219 | 35110 | <rom name="atlas, the - renaissance voyager (japan).sfc" size="2097152" crc="19e09c6b" sha1="1d8b3fb116749f6faa7503b9991f85da8382c4a2" offset="0x000000" /> |
| 32220 | 35111 | </dataarea> |
| r21545 | r21546 | |
| 32228 | 35119 | <year>1992</year> |
| 32229 | 35120 | <publisher>Konami</publisher> |
| 32230 | 35121 | <part name="cart" interface="snes_cart"> |
| 35122 | ||
| 35123 | <feature name="slot" value="lorom" /> | |
| 32231 | 35124 | <dataarea name="rom" size="1048576"> |
| 32232 | 35125 | <rom name="axelay (usa) (sample).sfc" size="1048576" crc="a0677d80" sha1="bbed960711272c5970e8a41189ede55e7a7c5c49" offset="0x000000" /> |
| 32233 | 35126 | </dataarea> |
| r21545 | r21546 | |
| 32239 | 35132 | <year>1993</year> |
| 32240 | 35133 | <publisher>Electronic Arts</publisher> |
| 32241 | 35134 | <part name="cart" interface="snes_cart"> |
| 35135 | ||
| 35136 | <feature name="slot" value="lorom" /> | |
| 32242 | 35137 | <dataarea name="rom" size="1048576"> |
| 32243 | 35138 | <rom name="b.o.b. (europe).sfc" size="1048576" crc="8d56598b" sha1="81fefad465c138d3aa0b7e38a61daf6576a60a9e" offset="0x000000" /> |
| 32244 | 35139 | </dataarea> |
| r21545 | r21546 | |
| 32253 | 35148 | <info name="release" value="19960202" /> |
| 32254 | 35149 | <info name="alt_title" value="幕末降臨伝ONI" /> |
| 32255 | 35150 | <part name="cart" interface="snes_cart"> |
| 35151 | ||
| 35152 | <feature name="slot" value="hirom" /> | |
| 32256 | 35153 | <dataarea name="rom" size="4194304"> |
| 32257 | 35154 | <rom name="bakumatsu kourinden oni (japan).sfc" size="4194304" crc="1cf3c877" sha1="a24edc1cdb730792f2d1d2a474121fec24a64cf9" offset="0x000000" /> |
| 32258 | 35155 | </dataarea> |
| r21545 | r21546 | |
| 32269 | 35166 | <info name="release" value="19941028" /> |
| 32270 | 35167 | <info name="alt_title" value="投ドッチャーズ バンプス島は大さわぎ" /> |
| 32271 | 35168 | <part name="cart" interface="snes_cart"> |
| 35169 | ||
| 35170 | <feature name="slot" value="hirom" /> | |
| 32272 | 35171 | <dataarea name="rom" size="1048576"> |
| 32273 | 35172 | <rom name="bakutou dochers - bumps-jima wa oosawagi (japan).sfc" size="1048576" crc="94bfcc92" sha1="9635b097fbd93f90ce68da9483347002ad2beb02" offset="0x000000" /> |
| 32274 | 35173 | </dataarea> |
| r21545 | r21546 | |
| 32284 | 35183 | <info name="alt_title" value="ボール・ブレット・ガン サバイバルゲー ム" /> |
| 32285 | 35184 | <sharedfeat name="compatibility" value="NTSC"/> |
| 32286 | 35185 | <part name="cart" interface="snes_cart"> |
| 35186 | ||
| 35187 | <feature name="slot" value="lorom" /> | |
| 32287 | 35188 | <dataarea name="rom" size="1572864"> |
| 32288 | 35189 | <rom name="ball bullet gun (japan).sfc" size="1572864" crc="c1e2bb56" sha1="03d23158c196e84368374e153b97c3ef2d1a8166" offset="0x000000" /> |
| 32289 | 35190 | </dataarea> |
| r21545 | r21546 | |
| 32300 | 35201 | <info name="release" value="19921127" /> |
| 32301 | 35202 | <info name="alt_title" value="バルバロッサ" /> |
| 32302 | 35203 | <part name="cart" interface="snes_cart"> |
| 35204 | ||
| 35205 | <feature name="slot" value="lorom" /> | |
| 32303 | 35206 | <dataarea name="rom" size="1048576"> |
| 32304 | 35207 | <rom name="barbarossa (japan).sfc" size="1048576" crc="5283e505" sha1="7501fa2f205b4ba5123228ce6be23182aa1e1be1" offset="0x000000" /> |
| 32305 | 35208 | </dataarea> |
| r21545 | r21546 | |
| 32314 | 35217 | <publisher>Hi Tech Expressions</publisher> |
| 32315 | 35218 | <info name="release" value="199402xx" /> |
| 32316 | 35219 | <part name="cart" interface="snes_cart"> |
| 35220 | ||
| 35221 | <feature name="slot" value="lorom" /> | |
| 32317 | 35222 | <dataarea name="rom" size="1048576"> |
| 32318 | 35223 | <rom name="barbie vacation adventure (usa) (proto).sfc" size="1048576" crc="8ce1ba79" sha1="a03b948527267da11e908c41a41fab69d45ca766" offset="0x000000" /> |
| 32319 | 35224 | </dataarea> |
| r21545 | r21546 | |
| 32328 | 35233 | <info name="release" value="19940930" /> |
| 32329 | 35234 | <info name="alt_title" value="バークレーのパワーダンク" /> |
| 32330 | 35235 | <part name="cart" interface="snes_cart"> |
| 35236 | ||
| 35237 | <feature name="slot" value="lorom" /> | |
| 32331 | 35238 | <dataarea name="rom" size="1572864"> |
| 32332 | 35239 | <rom name="barkley no power dunk (japan).sfc" size="1572864" crc="8aff96d0" sha1="eaaa4e4d6316df1e71e1b2a9c81911b52765ad56" offset="0x000000" /> |
| 32333 | 35240 | </dataarea> |
| r21545 | r21546 | |
| 32339 | 35246 | <year>1994</year> |
| 32340 | 35247 | <publisher>Accolade</publisher> |
| 32341 | 35248 | <part name="cart" interface="snes_cart"> |
| 35249 | ||
| 35250 | <feature name="slot" value="lorom" /> | |
| 32342 | 35251 | <dataarea name="rom" size="1572864"> |
| 32343 | 35252 | <rom name="barkley shut up and jam! (europe).sfc" size="1572864" crc="29fbd13d" sha1="00a4567aa3b1a190bf12000f6063118bbc3cb5a1" offset="0x000000" /> |
| 32344 | 35253 | </dataarea> |
| r21545 | r21546 | |
| 32353 | 35262 | <info name="release" value="19950728" /> |
| 32354 | 35263 | <info name="alt_title" value="バスマスターズ クラシック" /> |
| 32355 | 35264 | <part name="cart" interface="snes_cart"> |
| 35265 | ||
| 35266 | <feature name="slot" value="lorom" /> | |
| 32356 | 35267 | <dataarea name="rom" size="1572864"> |
| 32357 | 35268 | <rom name="bass masters classic (japan).sfc" size="1572864" crc="925206ea" sha1="c55dd321bd4239f42ff6a6b08318dcf7b449ccf9" offset="0x000000" /> |
| 32358 | 35269 | </dataarea> |
| r21545 | r21546 | |
| 32364 | 35275 | <year>1996</year> |
| 32365 | 35276 | <publisher>Black Pearl</publisher> |
| 32366 | 35277 | <part name="cart" interface="snes_cart"> |
| 35278 | ||
| 35279 | <feature name="slot" value="lorom" /> | |
| 32367 | 35280 | <dataarea name="rom" size="2097152"> |
| 32368 | 35281 | <rom name="bass masters classic - pro edition (europe).sfc" size="2097152" crc="a2d4b003" sha1="2214e10e3b5b481eb86a3ef55c178fdb6d678f7e" offset="0x000000" /> |
| 32369 | 35282 | </dataarea> |
| r21545 | r21546 | |
| 32378 | 35291 | <info name="release" value="19940128" /> |
| 32379 | 35292 | <info name="alt_title" value="バスタード!!―暗黒の破壊神―" /> |
| 32380 | 35293 | <part name="cart" interface="snes_cart"> |
| 35294 | ||
| 35295 | <feature name="slot" value="lorom" /> | |
| 32381 | 35296 | <dataarea name="rom" size="1572864"> |
| 32382 | 35297 | <rom name="bastard!! - ankoku no hakaishin (japan).sfc" size="1572864" crc="6742d51c" sha1="5512a076116639e36e1bfde38ca86b126ca0d867" offset="0x000000" /> |
| 32383 | 35298 | </dataarea> |
| r21545 | r21546 | |
| 32392 | 35307 | <info name="release" value="19951027" /> |
| 32393 | 35308 | <info name="alt_title" value="バットマン フォーエヴァー" /> |
| 32394 | 35309 | <part name="cart" interface="snes_cart"> |
| 35310 | ||
| 35311 | <feature name="slot" value="hirom" /> | |
| 32395 | 35312 | <dataarea name="rom" size="3145728"> |
| 32396 | 35313 | <rom name="batman forever (japan).sfc" size="3145728" crc="903348f5" sha1="07cc822e9ca7040af19491bd75dcc18d8641e3cf" offset="0x000000" /> |
| 32397 | 35314 | </dataarea> |
| r21545 | r21546 | |
| 32406 | 35323 | <info name="release" value="19941209" /> |
| 32407 | 35324 | <info name="alt_title" value="バトルクロス" /> |
| 32408 | 35325 | <part name="cart" interface="snes_cart"> |
| 35326 | ||
| 35327 | <feature name="slot" value="lorom" /> | |
| 32409 | 35328 | <dataarea name="rom" size="1048576"> |
| 32410 | 35329 | <rom name="battle cross (japan).sfc" size="1048576" crc="5f5e9b0b" sha1="b7e3bb4ff5baa7b4714cb39e11ee021f9c270c74" offset="0x000000" /> |
| 32411 | 35330 | </dataarea> |
| r21545 | r21546 | |
| 32420 | 35339 | <info name="release" value="19941222" /> |
| 32421 | 35340 | <info name="alt_title" value="バトルジョッキー" /> |
| 32422 | 35341 | <part name="cart" interface="snes_cart"> |
| 35342 | ||
| 35343 | <feature name="slot" value="hirom" /> | |
| 32423 | 35344 | <dataarea name="rom" size="1048576"> |
| 32424 | 35345 | <rom name="battle jockey (japan).sfc" size="1048576" crc="d79c1ec5" sha1="1470da5fc6424477df3a863d1da64fc26368d2b0" offset="0x000000" /> |
| 32425 | 35346 | </dataarea> |
| r21545 | r21546 | |
| 32434 | 35355 | <info name="release" value="19931119" /> |
| 32435 | 35356 | <info name="alt_title" value="バトル・マスター 究極の戦士たち" /> |
| 32436 | 35357 | <part name="cart" interface="snes_cart"> |
| 35358 | ||
| 35359 | <feature name="slot" value="lorom" /> | |
| 32437 | 35360 | <dataarea name="rom" size="2097152"> |
| 32438 | 35361 | <rom name="battle master - kyuukyoku no senshi-tachi (japan).sfc" size="2097152" crc="dbf76bfd" sha1="b8db74d502389b761165382a62106c824ca17c50" offset="0x000000" /> |
| 32439 | 35362 | </dataarea> |
| r21545 | r21546 | |
| 32448 | 35371 | <info name="release" value="19950224" /> |
| 32449 | 35372 | <info name="alt_title" value="バトルピンボール" /> |
| 32450 | 35373 | <part name="cart" interface="snes_cart"> |
| 35374 | ||
| 35375 | <feature name="slot" value="lorom" /> | |
| 32451 | 35376 | <dataarea name="rom" size="1310720"> |
| 32452 | 35377 | <rom name="battle pinball (japan).sfc" size="1310720" crc="54901522" sha1="29c0b3b20da445f715e1a8df489efc8e407ee7c1" offset="0x000000" /> |
| 32453 | 35378 | </dataarea> |
| r21545 | r21546 | |
| 32462 | 35387 | <info name="release" value="19950317" /> |
| 32463 | 35388 | <info name="alt_title" value="バトルレーサース" /> |
| 32464 | 35389 | <part name="cart" interface="snes_cart"> |
| 35390 | ||
| 35391 | <feature name="slot" value="lorom" /> | |
| 32465 | 35392 | <dataarea name="rom" size="1048576"> |
| 32466 | 35393 | <rom name="battle racers (japan).sfc" size="1048576" crc="64b76ceb" sha1="02f3a5b09490987848e4b882122b19ff430ec7d7" offset="0x000000" /> |
| 32467 | 35394 | </dataarea> |
| r21545 | r21546 | |
| 32478 | 35405 | <info name="release" value="19950901" /> |
| 32479 | 35406 | <info name="alt_title" value="バトルロボット烈伝" /> |
| 32480 | 35407 | <part name="cart" interface="snes_cart"> |
| 35408 | ||
| 35409 | <feature name="slot" value="hirom" /> | |
| 32481 | 35410 | <dataarea name="rom" size="3145728"> |
| 32482 | 35411 | <rom name="battle robot retsuden (japan).sfc" size="3145728" crc="b72bf1f2" sha1="229289e40479648c63b1e6b81aab7bdb583926cd" offset="0x000000" /> |
| 32483 | 35412 | </dataarea> |
| r21545 | r21546 | |
| 32494 | 35423 | <info name="release" value="19951222" /> |
| 32495 | 35424 | <info name="alt_title" value="バトルサブマリン" /> |
| 32496 | 35425 | <part name="cart" interface="snes_cart"> |
| 35426 | ||
| 35427 | <feature name="slot" value="lorom" /> | |
| 32497 | 35428 | <dataarea name="rom" size="1048576"> |
| 32498 | 35429 | <rom name="battle submarine (japan).sfc" size="1048576" crc="da2ad2fe" sha1="21131dcf2cded93dc8d4e604b36f51f3ab5c2a9d" offset="0x000000" /> |
| 32499 | 35430 | </dataarea> |
| r21545 | r21546 | |
| 32508 | 35439 | <info name="release" value="19950519" /> |
| 32509 | 35440 | <info name="alt_title" value="バトルタイクーン" /> |
| 32510 | 35441 | <part name="cart" interface="snes_cart"> |
| 35442 | ||
| 35443 | <feature name="slot" value="hirom" /> | |
| 32511 | 35444 | <dataarea name="rom" size="3145728"> |
| 32512 | 35445 | <rom name="battle tycoon - flash hiders sfx (japan) (rev 1).sfc" size="3145728" crc="92afab02" sha1="1959552f9f18335d9e1afb2c98763511fffd1be8" offset="0x000000" /> |
| 32513 | 35446 | </dataarea> |
| r21545 | r21546 | |
| 32524 | 35457 | <info name="release" value="19940715" /> |
| 32525 | 35458 | <info name="alt_title" value="バトルゼクウ伝" /> |
| 32526 | 35459 | <part name="cart" interface="snes_cart"> |
| 35460 | ||
| 35461 | <feature name="slot" value="lorom" /> | |
| 32527 | 35462 | <dataarea name="rom" size="1572864"> |
| 32528 | 35463 | <rom name="battle zeque den (japan).sfc" size="1572864" crc="8cac063c" sha1="fa4bcb5526ee40e3ffc37a28b8be0d51b7c387a5" offset="0x000000" /> |
| 32529 | 35464 | </dataarea> |
| r21545 | r21546 | |
| 32538 | 35473 | <info name="release" value="19930226" /> |
| 32539 | 35474 | <info name="alt_title" value="バトルテック" /> |
| 32540 | 35475 | <part name="cart" interface="snes_cart"> |
| 35476 | ||
| 35477 | <feature name="slot" value="lorom" /> | |
| 32541 | 35478 | <dataarea name="rom" size="1048576"> |
| 32542 | 35479 | <rom name="battletech (japan).sfc" size="1048576" crc="fa29e335" sha1="29dcb93667033aa611a52dd8906a9bce7bd09896" offset="0x000000" /> |
| 32543 | 35480 | </dataarea> |
| r21545 | r21546 | |
| 32554 | 35491 | <info name="release" value="19960223" /> |
| 32555 | 35492 | <info name="alt_title" value="バトルテック3050" /> |
| 32556 | 35493 | <part name="cart" interface="snes_cart"> |
| 35494 | ||
| 35495 | <feature name="slot" value="hirom" /> | |
| 32557 | 35496 | <dataarea name="rom" size="1572864"> |
| 32558 | 35497 | <rom name="battletech 3050 (japan).sfc" size="1572864" crc="56c7eb66" sha1="82edc06f026abd169eb1f40d154e61f43fff3541" offset="0x000000" /> |
| 32559 | 35498 | </dataarea> |
| r21545 | r21546 | |
| 32568 | 35507 | <info name="release" value="19940107" /> |
| 32569 | 35508 | <info name="alt_title" value="バトルトード イン バトルマニアック" /> |
| 32570 | 35509 | <part name="cart" interface="snes_cart"> |
| 35510 | ||
| 35511 | <feature name="slot" value="lorom" /> | |
| 32571 | 35512 | <dataarea name="rom" size="1048576"> |
| 32572 | 35513 | <rom name="battletoads in battlemaniacs (japan).sfc" size="1048576" crc="48f15b03" sha1="433b6c7f09de42c869601a35129809ae3e8e5fe8" offset="0x000000" /> |
| 32573 | 35514 | </dataarea> |
| r21545 | r21546 | |
| 32579 | 35520 | <year>1993</year> |
| 32580 | 35521 | <publisher>Tradewest</publisher> |
| 32581 | 35522 | <part name="cart" interface="snes_cart"> |
| 35523 | ||
| 35524 | <feature name="slot" value="lorom" /> | |
| 32582 | 35525 | <dataarea name="rom" size="1048576"> |
| 32583 | 35526 | <rom name="battletoads in battlemaniacs (usa) (beta).sfc" size="1048576" crc="1783e3a2" sha1="650680fa4da5d4f0b319451b4e3bd5b828585cfb" offset="0x000000" /> |
| 32584 | 35527 | </dataarea> |
| r21545 | r21546 | |
| 32594 | 35537 | <info name="alt_title" value="バズー!魔法世界" /> |
| 32595 | 35538 | <sharedfeat name="compatibility" value="NTSC"/> |
| 32596 | 35539 | <part name="cart" interface="snes_cart"> |
| 35540 | ||
| 35541 | <feature name="slot" value="lorom" /> | |
| 32597 | 35542 | <dataarea name="rom" size="1572864"> |
| 32598 | 35543 | <rom name="bazoe! mahou sekai (japan).sfc" size="1572864" crc="d5b09eef" sha1="5e4af718ae159244102a3afc53456f6c34caff91" offset="0x000000" /> |
| 32599 | 35544 | </dataarea> |
| r21545 | r21546 | |
| 32607 | 35552 | <year>1994</year> |
| 32608 | 35553 | <publisher>Hudson</publisher> |
| 32609 | 35554 | <part name="cart" interface="snes_cart"> |
| 35555 | ||
| 35556 | <feature name="slot" value="lorom" /> | |
| 32610 | 35557 | <dataarea name="rom" size="1048576"> |
| 32611 | 35558 | <rom name="beauty and the beast (europe) (beta).sfc" size="1048576" crc="fff9deab" sha1="4129133e5ba6752321ec3cdd61a1b4ff740928f1" offset="0x000000" /> |
| 32612 | 35559 | </dataarea> |
| r21545 | r21546 | |
| 32618 | 35565 | <year>1994</year> |
| 32619 | 35566 | <publisher>Hudson</publisher> |
| 32620 | 35567 | <part name="cart" interface="snes_cart"> |
| 35568 | ||
| 35569 | <feature name="slot" value="lorom" /> | |
| 32621 | 35570 | <dataarea name="rom" size="1048576"> |
| 32622 | 35571 | <rom name="beauty and the beast (europe).sfc" size="1048576" crc="2e70c844" sha1="9cbdf2a2c8e136768130f04b060589d90964c1fb" offset="0x000000" /> |
| 32623 | 35572 | </dataarea> |
| r21545 | r21546 | |
| 32629 | 35578 | <year>1994</year> |
| 32630 | 35579 | <publisher>Viacom New Media</publisher> |
| 32631 | 35580 | <part name="cart" interface="snes_cart"> |
| 35581 | ||
| 35582 | <feature name="slot" value="lorom" /> | |
| 32632 | 35583 | <dataarea name="rom" size="1572864"> |
| 32633 | 35584 | <rom name="beavis and butt-head (europe).sfc" size="1572864" crc="f77f160b" sha1="e026a63ee8d32a90d723a8df8a2d8febfdf1381e" offset="0x000000" /> |
| 32634 | 35585 | </dataarea> |
| r21545 | r21546 | |
| 32640 | 35591 | <year>1994</year> |
| 32641 | 35592 | <publisher>Hi Tech Expressions</publisher> |
| 32642 | 35593 | <part name="cart" interface="snes_cart"> |
| 35594 | ||
| 35595 | <feature name="slot" value="lorom" /> | |
| 32643 | 35596 | <dataarea name="rom" size="524288"> |
| 32644 | 35597 | <rom name="beethoven - the ultimate canine caper! (europe).sfc" size="524288" crc="4d1352ad" sha1="3b33dfe11d5f964340a278d3e857127f773d2eb9" offset="0x000000" /> |
| 32645 | 35598 | </dataarea> |
| r21545 | r21546 | |
| 32654 | 35607 | <info name="release" value="19921211" /> |
| 32655 | 35608 | <info name="alt_title" value="弁慶外伝 沙の章" /> |
| 32656 | 35609 | <part name="cart" interface="snes_cart"> |
| 35610 | ||
| 35611 | <feature name="slot" value="lorom" /> | |
| 32657 | 35612 | <dataarea name="rom" size="1572864"> |
| 32658 | 35613 | <rom name="benkei gaiden - suna no shou (japan).sfc" size="1572864" crc="2743017d" sha1="05a71b38a66f285564ec8447ff4877db74387860" offset="0x000000" /> |
| 32659 | 35614 | </dataarea> |
| r21545 | r21546 | |
| 32667 | 35622 | <year>1994</year> |
| 32668 | 35623 | <publisher>Electro Brain</publisher> |
| 32669 | 35624 | <part name="cart" interface="snes_cart"> |
| 35625 | ||
| 35626 | <feature name="slot" value="lorom" /> | |
| 32670 | 35627 | <dataarea name="rom" size="1048576"> |
| 32671 | 35628 | <rom name="best of the best - championship karate (europe) (beta).sfc" size="1048576" crc="20aa9b78" sha1="19a03de573f848c2dafd7ba212dc9f3efc8b82aa" offset="0x000000" /> |
| 32672 | 35629 | </dataarea> |
| r21545 | r21546 | |
| 32678 | 35635 | <year>1994</year> |
| 32679 | 35636 | <publisher>Electro Brain</publisher> |
| 32680 | 35637 | <part name="cart" interface="snes_cart"> |
| 35638 | ||
| 35639 | <feature name="slot" value="lorom" /> | |
| 32681 | 35640 | <dataarea name="rom" size="1048576"> |
| 32682 | 35641 | <rom name="best of the best - championship karate (europe).sfc" size="1048576" crc="d63831a5" sha1="51975e91bcb109384dfe4f7f0068da325354a358" offset="0x000000" /> |
| 32683 | 35642 | </dataarea> |
| r21545 | r21546 | |
| 32692 | 35651 | <info name="release" value="19960614" /> |
| 32693 | 35652 | <info name="alt_title" value="ベストショットプロゴルフ" /> |
| 32694 | 35653 | <part name="cart" interface="snes_cart"> |
| 35654 | ||
| 35655 | <feature name="slot" value="hirom" /> | |
| 32695 | 35656 | <dataarea name="rom" size="4194304"> |
| 32696 | 35657 | <rom name="best shot pro golf (japan).sfc" size="4194304" crc="256d4bc4" sha1="578911b49827fc2fa020af75a9b1e88f963cb2ba" offset="0x000000" /> |
| 32697 | 35658 | </dataarea> |
| r21545 | r21546 | |
| 32708 | 35669 | <info name="release" value="19950721" /> |
| 32709 | 35670 | <info name="alt_title" value="ビッグ一撃!パチスロ大攻略2 ユ ニバーサル・コレクション" /> |
| 32710 | 35671 | <part name="cart" interface="snes_cart"> |
| 35672 | ||
| 35673 | <feature name="slot" value="hirom" /> | |
| 32711 | 35674 | <dataarea name="rom" size="1572864"> |
| 32712 | 35675 | <rom name="big ichigeki! pachi-slot daikouryaku 2 - universal collection (japan).sfc" size="1572864" crc="3aee8812" sha1="ce0b6476692569be42834bbe7f78b0c08873908f" offset="0x000000" /> |
| 32713 | 35676 | </dataarea> |
| r21545 | r21546 | |
| 32721 | 35684 | <year>1995</year> |
| 32722 | 35685 | <publisher>JVC</publisher> |
| 32723 | 35686 | <part name="cart" interface="snes_cart"> |
| 35687 | ||
| 35688 | <feature name="slot" value="lorom" /> | |
| 32724 | 35689 | <dataarea name="rom" size="1048576"> |
| 32725 | 35690 | <rom name="big sky trooper (europe).sfc" size="1048576" crc="1b565be7" sha1="ce7cbdbc846c99cc2de9a9412d60d5d028e85933" offset="0x000000" /> |
| 32726 | 35691 | </dataarea> |
| r21545 | r21546 | |
| 32734 | 35699 | <year>1995</year> |
| 32735 | 35700 | <publisher>JVC</publisher> |
| 32736 | 35701 | <part name="cart" interface="snes_cart"> |
| 35702 | ||
| 35703 | <feature name="slot" value="lorom" /> | |
| 32737 | 35704 | <dataarea name="rom" size="1048576"> |
| 32738 | 35705 | <rom name="big sky trooper (usa) (beta).sfc" size="1048576" crc="7955ebfe" sha1="4f78bcaebdef55328f663f9cb74683e44747e303" offset="0x000000" /> |
| 32739 | 35706 | </dataarea> |
| r21545 | r21546 | |
| 32751 | 35718 | <info name="alt_title" value="バイク大好き!走り屋 魂" /> |
| 32752 | 35719 | <part name="cart" interface="snes_cart"> |
| 32753 | 35720 | <feature name="enhancement" value="DSP1" /> |
| 35721 | ||
| 35722 | <feature name="slot" value="hirom_dsp" /> | |
| 32754 | 35723 | <dataarea name="rom" size="524288"> |
| 32755 | 35724 | <rom name="bike daisuki! hashiriya tamashii (japan).sfc" size="524288" crc="b363fc99" sha1="d0457fc27adff1b0ad236535f60f91711b15f0db" offset="0x000000" /> |
| 32756 | 35725 | </dataarea> |
| 35726 | <dataarea name="addon" size="10240"> | |
| 35727 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 35728 | </dataarea> | |
| 32757 | 35729 | <dataarea name="nvram" size="2048"> |
| 32758 | 35730 | </dataarea> |
| 32759 | 35731 | </part> |
| r21545 | r21546 | |
| 32765 | 35737 | <publisher>Konami</publisher> |
| 32766 | 35738 | <sharedfeat name="compatibility" value="PAL"/> |
| 32767 | 35739 | <part name="cart" interface="snes_cart"> |
| 35740 | ||
| 35741 | <feature name="slot" value="lorom" /> | |
| 32768 | 35742 | <dataarea name="rom" size="1048576"> |
| 32769 | 35743 | <rom name="biker mice from mars (europe).sfc" size="1048576" crc="1a06db31" sha1="6c96e44379ee4cef5556b52cb8205b4a8d50a09b" offset="0x000000" /> |
| 32770 | 35744 | </dataarea> |
| r21545 | r21546 | |
| 32777 | 35751 | <publisher>Activision</publisher> |
| 32778 | 35752 | <sharedfeat name="compatibility" value="PAL"/> |
| 32779 | 35753 | <part name="cart" interface="snes_cart"> |
| 35754 | ||
| 35755 | <feature name="slot" value="lorom" /> | |
| 32780 | 35756 | <dataarea name="rom" size="1048576"> |
| 32781 | 35757 | <rom name="bio metal (europe).sfc" size="1048576" crc="e901a947" sha1="4c4017369fafbad7afd34548b4a94217117a0a03" offset="0x000000" /> |
| 32782 | 35758 | </dataarea> |
| r21545 | r21546 | |
| 32791 | 35767 | <info name="release" value="19930319" /> |
| 32792 | 35768 | <info name="alt_title" value="バイオメタル" /> |
| 32793 | 35769 | <part name="cart" interface="snes_cart"> |
| 35770 | ||
| 35771 | <feature name="slot" value="lorom" /> | |
| 32794 | 35772 | <dataarea name="rom" size="1048576"> |
| 32795 | 35773 | <rom name="bio metal (japan).sfc" size="1048576" crc="8ba3d382" sha1="9b1277be93aa06c9c0a2ecae99c5c357ffc5c879" offset="0x000000" /> |
| 32796 | 35774 | </dataarea> |
| r21545 | r21546 | |
| 32805 | 35783 | <info name="release" value="19931225" /> |
| 32806 | 35784 | <info name="alt_title" value="美神伝説 Zoku" /> |
| 32807 | 35785 | <part name="cart" interface="snes_cart"> |
| 35786 | ||
| 35787 | <feature name="slot" value="lorom" /> | |
| 32808 | 35788 | <dataarea name="rom" size="2097152"> |
| 32809 | 35789 | <rom name="bishin densetsu zoku (japan).sfc" size="2097152" crc="f02dcb37" sha1="853a97e7f381d5347e4c0aa24ddddb09a55ff29f" offset="0x000000" /> |
| 32810 | 35790 | </dataarea> |
| r21545 | r21546 | |
| 32819 | 35799 | <info name="release" value="19930730" /> |
| 32820 | 35800 | <info name="alt_title" value="美少女雀士スーチーパイ" /> |
| 32821 | 35801 | <part name="cart" interface="snes_cart"> |
| 35802 | ||
| 35803 | <feature name="slot" value="lorom" /> | |
| 32822 | 35804 | <dataarea name="rom" size="2097152"> |
| 32823 | 35805 | <rom name="bishoujo janshi suchie-pai (japan) (rev 1).sfc" size="2097152" crc="80e66c55" sha1="b81012726129a8eb98e43cc08e507cd197d89080" offset="0x000000" /> |
| 32824 | 35806 | </dataarea> |
| r21545 | r21546 | |
| 32833 | 35815 | <info name="release" value="19930730" /> |
| 32834 | 35816 | <info name="alt_title" value="美少女雀士スーチーパイ" /> |
| 32835 | 35817 | <part name="cart" interface="snes_cart"> |
| 35818 | ||
| 35819 | <feature name="slot" value="lorom" /> | |
| 32836 | 35820 | <dataarea name="rom" size="2097152"> |
| 32837 | 35821 | <rom name="bishoujo janshi suchie-pai (japan).sfc" size="2097152" crc="11713982" sha1="39625b53c9fa9d3f6ac0ee317e6179105a919a90" offset="0x000000" /> |
| 32838 | 35822 | </dataarea> |
| r21545 | r21546 | |
| 32847 | 35831 | <info name="release" value="19950922" /> |
| 32848 | 35832 | <info name="alt_title" value="美少女戦士セーラームーン アナザーストーリー" /> |
| 32849 | 35833 | <part name="cart" interface="snes_cart"> |
| 35834 | ||
| 35835 | <feature name="slot" value="hirom" /> | |
| 32850 | 35836 | <dataarea name="rom" size="3145728"> |
| 32851 | 35837 | <rom name="bishoujo senshi sailormoon - another story (japan).sfc" size="3145728" crc="02a442b8" sha1="137f84ba5d0736b887213e0c0cabd0649bbbafc7" offset="0x000000" /> |
| 32852 | 35838 | </dataarea> |
| r21545 | r21546 | |
| 32863 | 35849 | <info name="release" value="19940715" /> |
| 32864 | 35850 | <info name="alt_title" value="美少女戦士セーラームーンS こんどはパズルでおしおきよ!!" /> |
| 32865 | 35851 | <part name="cart" interface="snes_cart"> |
| 35852 | ||
| 35853 | <feature name="slot" value="lorom" /> | |
| 32866 | 35854 | <dataarea name="rom" size="524288"> |
| 32867 | 35855 | <rom name="bishoujo senshi sailormoon s - kondo wa puzzle de oshioki yo! (japan).sfc" size="524288" crc="10f03e3c" sha1="feab726c9a8a664435ae177a163c36b09e694d85" offset="0x000000" /> |
| 32868 | 35856 | </dataarea> |
| r21545 | r21546 | |
| 32877 | 35865 | <info name="release" value="19950224" /> |
| 32878 | 35866 | <info name="alt_title" value="美少女戦士セーラームーンS くるっくりん" /> |
| 32879 | 35867 | <part name="cart" interface="snes_cart"> |
| 35868 | ||
| 35869 | <feature name="slot" value="lorom" /> | |
| 32880 | 35870 | <dataarea name="rom" size="524288"> |
| 32881 | 35871 | <rom name="bishoujo senshi sailormoon s - kurukkurin (japan).sfc" size="524288" crc="e4a271bf" sha1="be191914942b08a4834bdd33a98c4770ece23167" offset="0x000000" /> |
| 32882 | 35872 | </dataarea> |
| 32883 | 35873 | </part> |
| 32884 | 35874 | </software> |
| 32885 | 35875 | |
| 32886 | <software name="sailrfp2" supported="no"> | |
| 32887 | <description>Bishoujo Senshi Sailormoon Sailorstars - Fuwafuwa Panic 2 (Jpn)</description> | |
| 32888 | <!-- ST --> | |
| 32889 | <year>1996</year> | |
| 32890 | <publisher>Bandai</publisher> | |
| 32891 | <info name="serial" value="SFT-0112" /> | |
| 32892 | <info name="release" value="19960927" /> | |
| 32893 | <info name="alt_title" value="美少女戦士セーラームーン セー ラースターズ ~ふわふわパニック2" /> | |
| 32894 | <part name="cart" interface="snes_cart"> | |
| 32895 | <dataarea name="rom" size="1048576"> | |
| 32896 | <rom name="bishoujo senshi sailormoon sailorstars - fuwafuwa panic 2 (japan).st" size="1048576" crc="bb5c4238" sha1="f72ea67468cf34360042bdd7974fd588a2407566" offset="0x000000" /> | |
| 32897 | </dataarea> | |
| 32898 | </part> | |
| 32899 | </software> | |
| 32900 | ||
| 32901 | 35876 | <software name="sailorfp"> |
| 32902 | 35877 | <description>Bishoujo Senshi Sailormoon Super S - Fuwafuwa Panic (Jpn)</description> |
| 32903 | 35878 | <year>1995</year> |
| r21545 | r21546 | |
| 32906 | 35881 | <info name="release" value="19951208" /> |
| 32907 | 35882 | <info name="alt_title" value="美少女戦士セーラームーンSuper S ふわふわパニック" /> |
| 32908 | 35883 | <part name="cart" interface="snes_cart"> |
| 35884 | ||
| 35885 | <feature name="slot" value="lorom" /> | |
| 32909 | 35886 | <dataarea name="rom" size="1048576"> |
| 32910 | 35887 | <rom name="bishoujo senshi sailormoon super s - fuwafuwa panic (japan).sfc" size="1048576" crc="b6b92ae0" sha1="9986e5834d62cbefcc9a9878c7f7b55a12b05024" offset="0x000000" /> |
| 32911 | 35888 | </dataarea> |
| r21545 | r21546 | |
| 32920 | 35897 | <info name="release" value="19960329" /> |
| 32921 | 35898 | <info name="alt_title" value="美少女戦士セーラームーンSuper S 全員参加!!主役争奪戦" /> |
| 32922 | 35899 | <part name="cart" interface="snes_cart"> |
| 35900 | ||
| 35901 | <feature name="slot" value="hirom" /> | |
| 32923 | 35902 | <dataarea name="rom" size="3145728"> |
| 32924 | 35903 | <rom name="bishoujo senshi sailormoon super s - zenin sanka!! shuyaku soudatsusen (japan).sfc" size="3145728" crc="25440331" sha1="1ada34177e7384612ae83464288f3860e4c4426e" offset="0x000000" /> |
| 32925 | 35904 | </dataarea> |
| r21545 | r21546 | |
| 32934 | 35913 | <info name="release" value="19960329" /> |
| 32935 | 35914 | <info name="alt_title" value="美少女レスラー列伝 ブリザード Yuki 乱入!!" /> |
| 32936 | 35915 | <part name="cart" interface="snes_cart"> |
| 35916 | ||
| 35917 | <feature name="slot" value="lorom" /> | |
| 32937 | 35918 | <dataarea name="rom" size="2621440"> |
| 32938 | 35919 | <rom name="bishoujo wrestler retsuden - blizzard yuki rannyuu!! (japan).sfc" size="2621440" crc="f4d20413" sha1="de5fc2caae6803bfcb2eaf831a346b0e422a4e77" offset="0x000000" /> |
| 32939 | 35920 | </dataarea> |
| r21545 | r21546 | |
| 32947 | 35928 | <year>1994</year> |
| 32948 | 35929 | <publisher>Interplay</publisher> |
| 32949 | 35930 | <part name="cart" interface="snes_cart"> |
| 35931 | ||
| 35932 | <feature name="slot" value="lorom" /> | |
| 32950 | 35933 | <dataarea name="rom" size="1048576"> |
| 32951 | 35934 | <rom name="blackthorne (usa) (beta) (ces version).sfc" size="1048576" crc="b39af3fa" sha1="d10550fb9976bbede23952e7db163cb341d80d91" offset="0x000000" /> |
| 32952 | 35935 | </dataarea> |
| r21545 | r21546 | |
| 32961 | 35944 | <info name="release" value="19950811" /> |
| 32962 | 35945 | <info name="alt_title" value="ブラックソーン 復讐の黒き棘" /> |
| 32963 | 35946 | <part name="cart" interface="snes_cart"> |
| 35947 | ||
| 35948 | <feature name="slot" value="lorom" /> | |
| 32964 | 35949 | <dataarea name="rom" size="1048576"> |
| 32965 | 35950 | <rom name="blackthorne - fukushuu no kuroki toge (japan).sfc" size="1048576" crc="edf476b3" sha1="f7b38c81596973336e72cf4b8a5c575e23ded515" offset="0x000000" /> |
| 32966 | 35951 | </dataarea> |
| r21545 | r21546 | |
| 32972 | 35957 | <year>1992</year> |
| 32973 | 35958 | <publisher>Namco</publisher> |
| 32974 | 35959 | <part name="cart" interface="snes_cart"> |
| 35960 | ||
| 35961 | <feature name="slot" value="lorom" /> | |
| 32975 | 35962 | <dataarea name="rom" size="524288"> |
| 32976 | 35963 | <rom name="blazing skies (europe).sfc" size="524288" crc="beb16e2d" sha1="9fef44a31c73b505d267868ff2091aea4c4f584c" offset="0x000000" /> |
| 32977 | 35964 | </dataarea> |
| r21545 | r21546 | |
| 32986 | 35973 | <info name="release" value="19951117" /> |
| 32987 | 35974 | <info name="alt_title" value="ブロックくずし" /> |
| 32988 | 35975 | <part name="cart" interface="snes_cart"> |
| 35976 | ||
| 35977 | <feature name="slot" value="lorom" /> | |
| 32989 | 35978 | <dataarea name="rom" size="524288"> |
| 32990 | 35979 | <rom name="block kuzushi (japan).sfc" size="524288" crc="5cce2e55" sha1="f783453422ab69cbc8a21838da036d34cff6a07e" offset="0x000000" /> |
| 32991 | 35980 | </dataarea> |
| r21545 | r21546 | |
| 32997 | 35986 | <year>1993</year> |
| 32998 | 35987 | <publisher>Titus</publisher> |
| 32999 | 35988 | <part name="cart" interface="snes_cart"> |
| 35989 | ||
| 35990 | <feature name="slot" value="lorom" /> | |
| 33000 | 35991 | <dataarea name="rom" size="524288"> |
| 33001 | 35992 | <rom name="blues brothers, the (europe) (beta).sfc" size="524288" crc="1351da2a" sha1="e97b319729bb8fdf0883c349c009b76f01210e68" offset="0x000000" /> |
| 33002 | 35993 | </dataarea> |
| r21545 | r21546 | |
| 33011 | 36002 | <info name="release" value="19930326" /> |
| 33012 | 36003 | <info name="alt_title" value="ブルースブラザーズ" /> |
| 33013 | 36004 | <part name="cart" interface="snes_cart"> |
| 36005 | ||
| 36006 | <feature name="slot" value="lorom" /> | |
| 33014 | 36007 | <dataarea name="rom" size="524288"> |
| 33015 | 36008 | <rom name="blues brothers, the (japan).sfc" size="524288" crc="362620d2" sha1="bd052490d6d57b92841fe4e97eddaa159e660d78" offset="0x000000" /> |
| 33016 | 36009 | </dataarea> |
| r21545 | r21546 | |
| 33025 | 36018 | <info name="release" value="19960809" /> |
| 33026 | 36019 | <info name="alt_title" value="牧場物語" /> |
| 33027 | 36020 | <part name="cart" interface="snes_cart"> |
| 36021 | ||
| 36022 | <feature name="slot" value="lorom" /> | |
| 33028 | 36023 | <dataarea name="rom" size="2097152"> |
| 33029 | 36024 | <rom name="bokujou monogatari (japan) (rev 1).sfc" size="2097152" crc="9485ec0f" sha1="de85f5bd02c91c6f9f56dc626f81e44eeb990037" offset="0x000000" /> |
| 33030 | 36025 | </dataarea> |
| r21545 | r21546 | |
| 33041 | 36036 | <info name="release" value="19901201" /> |
| 33042 | 36037 | <info name="alt_title" value="ボンバザル" /> |
| 33043 | 36038 | <part name="cart" interface="snes_cart"> |
| 36039 | ||
| 36040 | <feature name="slot" value="lorom" /> | |
| 33044 | 36041 | <dataarea name="rom" size="524288"> |
| 33045 | 36042 | <rom name="bombuzal (japan).sfc" size="524288" crc="5d7b8bcb" sha1="2cbe987eb2265ff5f6e1cf65d8233fc232dec04d" offset="0x000000" /> |
| 33046 | 36043 | </dataarea> |
| r21545 | r21546 | |
| 33055 | 36052 | <info name="release" value="19950103" /> |
| 33056 | 36053 | <info name="alt_title" value="ボンカース ハリウッド大作 戦!" /> |
| 33057 | 36054 | <part name="cart" interface="snes_cart"> |
| 36055 | ||
| 36056 | <feature name="slot" value="lorom" /> | |
| 33058 | 36057 | <dataarea name="rom" size="1048576"> |
| 33059 | 36058 | <rom name="bonkers - hollywood daisakusen! (japan).sfc" size="1048576" crc="9401d956" sha1="ae55ff828d17cccd712516f587d4e8ef7fff3afb" offset="0x000000" /> |
| 33060 | 36059 | </dataarea> |
| r21545 | r21546 | |
| 33066 | 36065 | <year>1995</year> |
| 33067 | 36066 | <publisher>Interplay</publisher> |
| 33068 | 36067 | <part name="cart" interface="snes_cart"> |
| 36068 | ||
| 36069 | <feature name="slot" value="hirom" /> | |
| 33069 | 36070 | <dataarea name="rom" size="3145728"> |
| 33070 | 36071 | <rom name="boogerman - a pick and flick adventure (europe).sfc" size="3145728" crc="4328bd1b" sha1="d8c904ead121d4d8d46dc4495e3fd2b2a91b7b62" offset="0x000000" /> |
| 33071 | 36072 | </dataarea> |
| r21545 | r21546 | |
| 33080 | 36081 | <info name="release" value="19950908" /> |
| 33081 | 36082 | <info name="alt_title" value="バウンティ・ソート" /> |
| 33082 | 36083 | <part name="cart" interface="snes_cart"> |
| 36084 | ||
| 36085 | <feature name="slot" value="hirom" /> | |
| 33083 | 36086 | <dataarea name="rom" size="3145728"> |
| 33084 | 36087 | <rom name="bounty sword (japan).sfc" size="3145728" crc="f3ddf35f" sha1="560d3eb4ec3bc40a7d5a06af2f03b19f5104f633" offset="0x000000" /> |
| 33085 | 36088 | </dataarea> |
| r21545 | r21546 | |
| 33093 | 36096 | <year>1993</year> |
| 33094 | 36097 | <publisher>Electro Brain</publisher> |
| 33095 | 36098 | <part name="cart" interface="snes_cart"> |
| 36099 | ||
| 36100 | <feature name="slot" value="lorom" /> | |
| 33096 | 36101 | <dataarea name="rom" size="1048576"> |
| 33097 | 36102 | <rom name="boxing legends of the ring (europe).sfc" size="1048576" crc="00cc468b" sha1="d2c02eb865600ba1fd64b12624b579ba05e13fcf" offset="0x000000" /> |
| 33098 | 36103 | </dataarea> |
| r21545 | r21546 | |
| 33107 | 36112 | <info name="release" value="19940128" /> |
| 33108 | 36113 | <info name="alt_title" value="ブレインロード" /> |
| 33109 | 36114 | <part name="cart" interface="snes_cart"> |
| 36115 | ||
| 36116 | <feature name="slot" value="hirom" /> | |
| 33110 | 36117 | <dataarea name="rom" size="1572864"> |
| 33111 | 36118 | <rom name="brain lord (japan).sfc" size="1572864" crc="9540e59d" sha1="fa656abd8de72e139d2634dff5fb790949421b41" offset="0x000000" /> |
| 33112 | 36119 | </dataarea> |
| r21545 | r21546 | |
| 33120 | 36127 | <year>1996</year> |
| 33121 | 36128 | <publisher>Titus</publisher> |
| 33122 | 36129 | <part name="cart" interface="snes_cart"> |
| 36130 | ||
| 36131 | <feature name="slot" value="lorom" /> | |
| 33123 | 36132 | <dataarea name="rom" size="524288"> |
| 33124 | 36133 | <rom name="brainies, the (europe).sfc" size="524288" crc="de551746" sha1="d56e4c729b295055df70bb37111bef1021173f6f" offset="0x000000" /> |
| 33125 | 36134 | </dataarea> |
| r21545 | r21546 | |
| 33131 | 36140 | <year>1993</year> |
| 33132 | 36141 | <publisher>Sony Imagesoft</publisher> |
| 33133 | 36142 | <part name="cart" interface="snes_cart"> |
| 36143 | ||
| 36144 | <feature name="slot" value="lorom" /> | |
| 33134 | 36145 | <dataarea name="rom" size="1048576"> |
| 33135 | 36146 | <rom name="bram stoker's dracula (europe).sfc" size="1048576" crc="9ee3835d" sha1="00882ae318014bdf34f66e1bc3b3d630c6429320" offset="0x000000" /> |
| 33136 | 36147 | </dataarea> |
| r21545 | r21546 | |
| 33142 | 36153 | <year>1993</year> |
| 33143 | 36154 | <publisher>Sony Imagesoft</publisher> |
| 33144 | 36155 | <part name="cart" interface="snes_cart"> |
| 36156 | ||
| 36157 | <feature name="slot" value="lorom" /> | |
| 33145 | 36158 | <dataarea name="rom" size="1048576"> |
| 33146 | 36159 | <rom name="bram stoker's dracula (usa) (beta).sfc" size="1048576" crc="6e4650a2" sha1="67646ea144ceb67f41ec9bbc42dc973c5c256eeb" offset="0x000000" /> |
| 33147 | 36160 | </dataarea> |
| r21545 | r21546 | |
| 33156 | 36169 | <info name="release" value="19940625" /> |
| 33157 | 36170 | <info name="alt_title" value="ブランディッシュ" /> |
| 33158 | 36171 | <part name="cart" interface="snes_cart"> |
| 36172 | ||
| 36173 | <feature name="slot" value="hirom" /> | |
| 33159 | 36174 | <dataarea name="rom" size="1572864"> |
| 33160 | 36175 | <rom name="brandish (japan).sfc" size="1572864" crc="a087b6ad" sha1="138b4e89918dff0018b72217e56b7071f621f2b6" offset="0x000000" /> |
| 33161 | 36176 | </dataarea> |
| r21545 | r21546 | |
| 33172 | 36187 | <info name="release" value="19960315" /> |
| 33173 | 36188 | <info name="alt_title" value="ブランディッシュ2 エキスパート" /> |
| 33174 | 36189 | <part name="cart" interface="snes_cart"> |
| 36190 | ||
| 36191 | <feature name="slot" value="hirom" /> | |
| 33175 | 36192 | <dataarea name="rom" size="3145728"> |
| 33176 | 36193 | <rom name="brandish 2 - expert (japan).sfc" size="3145728" crc="ab43e910" sha1="f378c73e59ef54bbed156d5cbc8a506923c32bd0" offset="0x000000" /> |
| 33177 | 36194 | </dataarea> |
| r21545 | r21546 | |
| 33188 | 36205 | <info name="release" value="19950811" /> |
| 33189 | 36206 | <info name="alt_title" value="ブランディッシュ2 ザ・プラネット・バスター" /> |
| 33190 | 36207 | <part name="cart" interface="snes_cart"> |
| 36208 | ||
| 36209 | <feature name="slot" value="hirom" /> | |
| 33191 | 36210 | <dataarea name="rom" size="3145728"> |
| 33192 | 36211 | <rom name="brandish 2 - the planet buster (japan).sfc" size="3145728" crc="bb89e67e" sha1="a091a0c109a4ebd7c2e8a39397d9837712bd7c22" offset="0x000000" /> |
| 33193 | 36212 | </dataarea> |
| r21545 | r21546 | |
| 33201 | 36220 | <year>1993</year> |
| 33202 | 36221 | <publisher>Jaleco</publisher> |
| 33203 | 36222 | <part name="cart" interface="snes_cart"> |
| 36223 | ||
| 36224 | <feature name="slot" value="lorom" /> | |
| 33204 | 36225 | <dataarea name="rom" size="1572864"> |
| 33205 | 36226 | <rom name="brawl brothers - rival turf! 2 (europe).sfc" size="1572864" crc="410cee18" sha1="3c613aaa25d26148ffd36e65a9696ef69dce5d9f" offset="0x000000" /> |
| 33206 | 36227 | </dataarea> |
| r21545 | r21546 | |
| 33212 | 36233 | <year>1995</year> |
| 33213 | 36234 | <publisher>Capcom</publisher> |
| 33214 | 36235 | <part name="cart" interface="snes_cart"> |
| 36236 | ||
| 36237 | <feature name="slot" value="hirom" /> | |
| 33215 | 36238 | <dataarea name="rom" size="3145728"> |
| 33216 | 36239 | <rom name="breath of fire ii (europe).sfc" size="3145728" crc="a4ab3b33" sha1="d429dbcbfae8c8d1749029841002a8dec6f55890" offset="0x000000" /> |
| 33217 | 36240 | </dataarea> |
| r21545 | r21546 | |
| 33228 | 36251 | <info name="release" value="19941202" /> |
| 33229 | 36252 | <info name="alt_title" value="ブレス オブ ファイアII―使命の子―" /> |
| 33230 | 36253 | <part name="cart" interface="snes_cart"> |
| 36254 | ||
| 36255 | <feature name="slot" value="hirom" /> | |
| 33231 | 36256 | <dataarea name="rom" size="2621440"> |
| 33232 | 36257 | <rom name="breath of fire ii - shimei no ko (japan) (rev 1) (np).sfc" size="2621440" crc="9b846e8c" sha1="1062fb9e1f70e4855edfb55811b93cea55f918eb" offset="0x000000" /> |
| 33233 | 36258 | </dataarea> |
| r21545 | r21546 | |
| 33241 | 36266 | <year>1994</year> |
| 33242 | 36267 | <publisher>Accolade</publisher> |
| 33243 | 36268 | <part name="cart" interface="snes_cart"> |
| 36269 | ||
| 36270 | <feature name="slot" value="lorom" /> | |
| 33244 | 36271 | <dataarea name="rom" size="2097152"> |
| 33245 | 36272 | <rom name="brett hull hockey (europe).sfc" size="2097152" crc="77bbf192" sha1="e9c08c471d76deb1b2ef40a8d11020e1247b496c" offset="0x000000" /> |
| 33246 | 36273 | </dataarea> |
| r21545 | r21546 | |
| 33252 | 36279 | <year>1994</year> |
| 33253 | 36280 | <publisher>GameTek</publisher> |
| 33254 | 36281 | <part name="cart" interface="snes_cart"> |
| 36282 | ||
| 36283 | <feature name="slot" value="lorom" /> | |
| 33255 | 36284 | <dataarea name="rom" size="2097152"> |
| 33256 | 36285 | <rom name="brutal - paws of fury (europe) (en,fr,de).sfc" size="2097152" crc="2f6326b1" sha1="1947419eacbbe7eb5b5f775763e9a67aba6adf4a" offset="0x000000" /> |
| 33257 | 36286 | </dataarea> |
| r21545 | r21546 | |
| 33263 | 36292 | <year>1994</year> |
| 33264 | 36293 | <publisher>CyberSoft</publisher> |
| 33265 | 36294 | <part name="cart" interface="snes_cart"> |
| 36295 | ||
| 36296 | <feature name="slot" value="lorom" /> | |
| 33266 | 36297 | <dataarea name="rom" size="2097152"> |
| 33267 | 36298 | <rom name="brutal - paws of fury (usa) (beta).sfc" size="2097152" crc="49ad3f9c" sha1="a52c3278c96a073ae8fbbc5ac656630b9b70a25f" offset="0x000000" /> |
| 33268 | 36299 | </dataarea> |
| r21545 | r21546 | |
| 33274 | 36305 | <year>1994</year> |
| 33275 | 36306 | <publisher>Accolade</publisher> |
| 33276 | 36307 | <part name="cart" interface="snes_cart"> |
| 36308 | ||
| 36309 | <feature name="slot" value="hirom" /> | |
| 33277 | 36310 | <dataarea name="rom" size="2097152"> |
| 33278 | 36311 | <rom name="bubsy ii (europe).sfc" size="2097152" crc="e278e9b4" sha1="e92da82234c8ec4da25179c99709462b4e19837b" offset="0x000000" /> |
| 33279 | 36312 | </dataarea> |
| r21545 | r21546 | |
| 33285 | 36318 | <year>1993</year> |
| 33286 | 36319 | <publisher>Accolade</publisher> |
| 33287 | 36320 | <part name="cart" interface="snes_cart"> |
| 36321 | ||
| 36322 | <feature name="slot" value="lorom" /> | |
| 33288 | 36323 | <dataarea name="rom" size="2097152"> |
| 33289 | 36324 | <rom name="bubsy in claws encounters of the furred kind (europe) (accolade).sfc" size="2097152" crc="ab124be7" sha1="ae715a18088b13ae3f673a30725804d83100b50e" offset="0x000000" /> |
| 33290 | 36325 | </dataarea> |
| r21545 | r21546 | |
| 33296 | 36331 | <year>1993</year> |
| 33297 | 36332 | <publisher>Accolade</publisher> |
| 33298 | 36333 | <part name="cart" interface="snes_cart"> |
| 36334 | ||
| 36335 | <feature name="slot" value="lorom" /> | |
| 33299 | 36336 | <dataarea name="rom" size="2097152"> |
| 33300 | 36337 | <rom name="bubsy in claws encounters of the furred kind (europe).sfc" size="2097152" crc="74a94d60" sha1="1e9c1591046d7f45ea0cb33a3994771a3dc56f25" offset="0x000000" /> |
| 33301 | 36338 | </dataarea> |
| r21545 | r21546 | |
| 33310 | 36347 | <info name="release" value="19940624" /> |
| 33311 | 36348 | <info name="alt_title" value="ルーニー・テューンズ バックス・バニー はちゃめちゃ大冒険" /> |
| 33312 | 36349 | <part name="cart" interface="snes_cart"> |
| 36350 | ||
| 36351 | <feature name="slot" value="lorom" /> | |
| 33313 | 36352 | <dataarea name="rom" size="1572864"> |
| 33314 | 36353 | <rom name="bugs bunny - hachamecha daibouken (japan).sfc" size="1572864" crc="528b029b" sha1="f9a6fab57c048b6e9362dd09455c32912bdd4e3a" offset="0x000000" /> |
| 33315 | 36354 | </dataarea> |
| r21545 | r21546 | |
| 33321 | 36360 | <year>1992</year> |
| 33322 | 36361 | <publisher>Electronic Arts</publisher> |
| 33323 | 36362 | <part name="cart" interface="snes_cart"> |
| 36363 | ||
| 36364 | <feature name="slot" value="lorom" /> | |
| 33324 | 36365 | <dataarea name="rom" size="1048576"> |
| 33325 | 36366 | <rom name="bulls vs blazers and the nba playoffs (europe) (rev 1).sfc" size="1048576" crc="0c4b876b" sha1="8773ac3a119a88b8799937b44c4969839d4ed04d" offset="0x000000" /> |
| 33326 | 36367 | </dataarea> |
| r21545 | r21546 | |
| 33332 | 36373 | <year>1992</year> |
| 33333 | 36374 | <publisher>Electronic Arts</publisher> |
| 33334 | 36375 | <part name="cart" interface="snes_cart"> |
| 36376 | ||
| 36377 | <feature name="slot" value="lorom" /> | |
| 33335 | 36378 | <dataarea name="rom" size="1048576"> |
| 33336 | 36379 | <rom name="bulls vs blazers and the nba playoffs (europe).sfc" size="1048576" crc="f605c0ac" sha1="3831742dd5035555fb15a56d49260691d9845b90" offset="0x000000" /> |
| 33337 | 36380 | </dataarea> |
| r21545 | r21546 | |
| 33344 | 36387 | <publisher>Electronic Arts</publisher> |
| 33345 | 36388 | <info name="release" value="199212xx" /> |
| 33346 | 36389 | <part name="cart" interface="snes_cart"> |
| 36390 | ||
| 36391 | <feature name="slot" value="lorom" /> | |
| 33347 | 36392 | <dataarea name="rom" size="1048576"> |
| 33348 | 36393 | <rom name="bulls vs blazers and the nba playoffs (usa).sfc" size="1048576" crc="15484afd" sha1="ea81dd75e69696c4b1d287c74b09f8030462d154" offset="0x000000" /> |
| 33349 | 36394 | </dataarea> |
| r21545 | r21546 | |
| 33358 | 36403 | <info name="release" value="19930114" /> |
| 33359 | 36404 | <info name="alt_title" value="ブライ八玉の勇士伝説" /> |
| 33360 | 36405 | <part name="cart" interface="snes_cart"> |
| 36406 | ||
| 36407 | <feature name="slot" value="lorom" /> | |
| 33361 | 36408 | <dataarea name="rom" size="1048576"> |
| 33362 | 36409 | <rom name="burai - hachigyoku no yuushi densetsu (japan).sfc" size="1048576" crc="8005054d" sha1="3a9a40f7e3985d658abea8c338235fe6889f1338" offset="0x000000" /> |
| 33363 | 36410 | </dataarea> |
| r21545 | r21546 | |
| 33375 | 36422 | <info name="alt_title" value="BUSHI 青龍伝 ~二人の勇者 ~" /> |
| 33376 | 36423 | <sharedfeat name="compatibility" value="NTSC"/> |
| 33377 | 36424 | <part name="cart" interface="snes_cart"> |
| 36425 | ||
| 36426 | <feature name="slot" value="lorom" /> | |
| 33378 | 36427 | <dataarea name="rom" size="3145728"> |
| 33379 | 36428 | <rom name="bushi seiryuuden - futari no yuusha (japan).sfc" size="3145728" crc="62d31295" sha1="62e5f9cea8d4be0fff01e44afbcd3ed3fe7d608d" offset="0x000000" /> |
| 33380 | 36429 | </dataarea> |
| r21545 | r21546 | |
| 33391 | 36440 | <info name="release" value="19921121" /> |
| 33392 | 36441 | <info name="alt_title" value="カコマ☆ナイト" /> |
| 33393 | 36442 | <part name="cart" interface="snes_cart"> |
| 36443 | ||
| 36444 | <feature name="slot" value="lorom" /> | |
| 33394 | 36445 | <dataarea name="rom" size="524288"> |
| 33395 | 36446 | <rom name="cacoma knight (japan).sfc" size="524288" crc="6b3b7b52" sha1="26ee05b1ddf26bd0cd00c652024a21499f31a0ce" offset="0x000000" /> |
| 33396 | 36447 | </dataarea> |
| r21545 | r21546 | |
| 33402 | 36453 | <year>1992</year> |
| 33403 | 36454 | <publisher>Mindscape</publisher> |
| 33404 | 36455 | <part name="cart" interface="snes_cart"> |
| 36456 | ||
| 36457 | <feature name="slot" value="lorom" /> | |
| 33405 | 36458 | <dataarea name="rom" size="1048576"> |
| 33406 | 36459 | <rom name="cal ripken jr. baseball (usa) (beta).sfc" size="1048576" crc="f48dc221" sha1="dc1f07bea830f1a5f0858791b4b1cb5a03f6588a" offset="0x000000" /> |
| 33407 | 36460 | </dataarea> |
| r21545 | r21546 | |
| 33414 | 36467 | <publisher>DTMC</publisher> |
| 33415 | 36468 | <sharedfeat name="compatibility" value="PAL"/> |
| 33416 | 36469 | <part name="cart" interface="snes_cart"> |
| 36470 | ||
| 36471 | <feature name="slot" value="lorom" /> | |
| 33417 | 36472 | <dataarea name="rom" size="1048576"> |
| 33418 | 36473 | <rom name="california games ii (europe) (en,fr,de).sfc" size="1048576" crc="db0814c5" sha1="ef5d5f99fb7bb180a283aab9b5c584d2473426dc" offset="0x000000" /> |
| 33419 | 36474 | </dataarea> |
| r21545 | r21546 | |
| 33428 | 36483 | <info name="release" value="19930312" /> |
| 33429 | 36484 | <info name="alt_title" value="カリフォルニアゲームズII" /> |
| 33430 | 36485 | <part name="cart" interface="snes_cart"> |
| 36486 | ||
| 36487 | <feature name="slot" value="lorom" /> | |
| 33431 | 36488 | <dataarea name="rom" size="1048576"> |
| 33432 | 36489 | <rom name="california games ii (japan) (en,ja).sfc" size="1048576" crc="5fa9485c" sha1="2037c554635f5e870d6ba564cf24124aed417f6b" offset="0x000000" /> |
| 33433 | 36490 | </dataarea> |
| r21545 | r21546 | |
| 33443 | 36500 | <info name="release" value="19920626" /> |
| 33444 | 36501 | <info name="alt_title" value="キャメルトライ" /> |
| 33445 | 36502 | <part name="cart" interface="snes_cart"> |
| 36503 | ||
| 36504 | <feature name="slot" value="lorom" /> | |
| 33446 | 36505 | <dataarea name="rom" size="1048576"> |
| 33447 | 36506 | <rom name="cameltry (japan).sfc" size="1048576" crc="a95c1fff" sha1="b1d4f383d8e0d47bce6b6574585eeae47b2dc071" offset="0x000000" /> |
| 33448 | 36507 | </dataarea> |
| r21545 | r21546 | |
| 33454 | 36513 | <year>1994</year> |
| 33455 | 36514 | <publisher>Virgin Interactive</publisher> |
| 33456 | 36515 | <part name="cart" interface="snes_cart"> |
| 36516 | ||
| 36517 | <feature name="slot" value="lorom" /> | |
| 33457 | 36518 | <dataarea name="rom" size="1572864"> |
| 33458 | 36519 | <rom name="cannon fodder (europe).sfc" size="1572864" crc="f3b5cbb1" sha1="e091a94e465078cb5bb554ea03cd8cf6ee5b87d0" offset="0x000000" /> |
| 33459 | 36520 | </dataarea> |
| r21545 | r21546 | |
| 33465 | 36526 | <year>1995</year> |
| 33466 | 36527 | <publisher>Capcom</publisher> |
| 33467 | 36528 | <part name="cart" interface="snes_cart"> |
| 36529 | ||
| 36530 | <feature name="slot" value="hirom" /> | |
| 33468 | 36531 | <dataarea name="rom" size="2097152"> |
| 33469 | 36532 | <rom name="captain commando (europe).sfc" size="2097152" crc="5b9aa73a" sha1="92a25bad603b74df95ccadcab08015ee77bd671d" offset="0x000000" /> |
| 33470 | 36533 | </dataarea> |
| r21545 | r21546 | |
| 33479 | 36542 | <info name="release" value="19950317" /> |
| 33480 | 36543 | <info name="alt_title" value="キャプテンコマンドー" /> |
| 33481 | 36544 | <part name="cart" interface="snes_cart"> |
| 36545 | ||
| 36546 | <feature name="slot" value="hirom" /> | |
| 33482 | 36547 | <dataarea name="rom" size="2097152"> |
| 33483 | 36548 | <rom name="captain commando (japan).sfc" size="2097152" crc="e5423eb6" sha1="7dd0f042760277e21bd7bcb9512dab462f9f5985" offset="0x000000" /> |
| 33484 | 36549 | </dataarea> |
| r21545 | r21546 | |
| 33493 | 36558 | <info name="release" value="19951117" /> |
| 33494 | 36559 | <info name="alt_title" value="キャプテン翼J ザ ウェイ トゥ ワールド ユース" /> |
| 33495 | 36560 | <part name="cart" interface="snes_cart"> |
| 36561 | ||
| 36562 | <feature name="slot" value="lorom" /> | |
| 33496 | 36563 | <dataarea name="rom" size="2097152"> |
| 33497 | 36564 | <rom name="captain tsubasa j - the way to world youth (japan).sfc" size="2097152" crc="16c63d9c" sha1="313b298248ba90c29bbf8c5e4a1bbe4f11d42048" offset="0x000000" /> |
| 33498 | 36565 | </dataarea> |
| r21545 | r21546 | |
| 33507 | 36574 | <info name="release" value="19950707" /> |
| 33508 | 36575 | <info name="alt_title" value="キャラバンシューティングコレクション" /> |
| 33509 | 36576 | <part name="cart" interface="snes_cart"> |
| 36577 | ||
| 36578 | <feature name="slot" value="hirom" /> | |
| 33510 | 36579 | <dataarea name="rom" size="524288"> |
| 33511 | 36580 | <rom name="caravan shooting collection (japan).sfc" size="524288" crc="8675b9df" sha1="13808eebec3727dd436444a5ea34c061f7b6b5d5" offset="0x000000" /> |
| 33512 | 36581 | </dataarea> |
| r21545 | r21546 | |
| 33521 | 36590 | <info name="release" value="19920327" /> |
| 33522 | 36591 | <info name="alt_title" value="カードマスターリムサリアの封印" /> |
| 33523 | 36592 | <part name="cart" interface="snes_cart"> |
| 36593 | ||
| 36594 | <feature name="slot" value="lorom" /> | |
| 33524 | 36595 | <dataarea name="rom" size="1048576"> |
| 33525 | 36596 | <rom name="card master - rimusaria no fuuin (japan).sfc" size="1048576" crc="9e772b8f" sha1="02e73e9d7f39fd3e2217e0d693e8a0d40b650d65" offset="0x000000" /> |
| 33526 | 36597 | </dataarea> |
| r21545 | r21546 | |
| 33534 | 36605 | <year>1995</year> |
| 33535 | 36606 | <publisher>CyberSoft</publisher> |
| 33536 | 36607 | <part name="cart" interface="snes_cart"> |
| 36608 | ||
| 36609 | <feature name="slot" value="lorom" /> | |
| 33537 | 36610 | <dataarea name="rom" size="2097152"> |
| 33538 | 36611 | <rom name="carrier aces (europe).sfc" size="2097152" crc="4da4a34f" sha1="e8e1e031fbc82cba27c76a7db7974f44713d1747" offset="0x000000" /> |
| 33539 | 36612 | </dataarea> |
| r21545 | r21546 | |
| 33548 | 36621 | <info name="release" value="19950728" /> |
| 33549 | 36622 | <info name="alt_title" value="キャリアエース" /> |
| 33550 | 36623 | <part name="cart" interface="snes_cart"> |
| 36624 | ||
| 36625 | <feature name="slot" value="lorom" /> | |
| 33551 | 36626 | <dataarea name="rom" size="2097152"> |
| 33552 | 36627 | <rom name="carrier aces (japan).sfc" size="2097152" crc="89b31066" sha1="5a7cf0b3bcad9ce270c6d903ae8602ea6309138e" offset="0x000000" /> |
| 33553 | 36628 | </dataarea> |
| 33554 | 36629 | </part> |
| 33555 | 36630 | </software> |
| 33556 | 36631 | |
| 33557 | <software name="casperj" | |
| 36632 | <software name="casperj"> | |
| 33558 | 36633 | <description>Casper (Jpn)</description> |
| 33559 | 36634 | <year>1997</year> |
| 33560 | 36635 | <publisher>KSS</publisher> |
| r21545 | r21546 | |
| 33562 | 36637 | <info name="release" value="19970314" /> |
| 33563 | 36638 | <info name="alt_title" value="キャスパー" /> |
| 33564 | 36639 | <part name="cart" interface="snes_cart"> |
| 36640 | ||
| 36641 | <feature name="slot" value="hirom" /> | |
| 33565 | 36642 | <dataarea name="rom" size="1048576"> |
| 33566 | 36643 | <rom name="casper (japan).sfc" size="1048576" crc="696458b3" sha1="848e5e0f4d622b81dd34e166bb98011c9bb2ba46" offset="0x000000" /> |
| 33567 | 36644 | </dataarea> |
| r21545 | r21546 | |
| 33576 | 36653 | <publisher>Konami</publisher> |
| 33577 | 36654 | <sharedfeat name="compatibility" value="PAL"/> |
| 33578 | 36655 | <part name="cart" interface="snes_cart"> |
| 36656 | ||
| 36657 | <feature name="slot" value="lorom" /> | |
| 33579 | 36658 | <dataarea name="rom" size="2097152"> |
| 33580 | 36659 | <rom name="castlevania - vampire's kiss (europe).sfc" size="2097152" crc="4ee9ee99" sha1="b80f7179d73482e944a4f3c2f030b38bd91a74b8" offset="0x000000" /> |
| 33581 | 36660 | </dataarea> |
| r21545 | r21546 | |
| 33587 | 36666 | <year>1993</year> |
| 33588 | 36667 | <publisher>Mindscape</publisher> |
| 33589 | 36668 | <part name="cart" interface="snes_cart"> |
| 36669 | ||
| 36670 | <feature name="slot" value="lorom" /> | |
| 33590 | 36671 | <dataarea name="rom" size="1048576"> |
| 33591 | 36672 | <rom name="championship pool (europe).sfc" size="1048576" crc="2905c3dd" sha1="ca2903b442130b85c8304f9863ecefb1bd0923b1" offset="0x000000" /> |
| 33592 | 36673 | </dataarea> |
| r21545 | r21546 | |
| 33598 | 36679 | <year>1993</year> |
| 33599 | 36680 | <publisher>Spectrum Holobyte</publisher> |
| 33600 | 36681 | <part name="cart" interface="snes_cart"> |
| 36682 | ||
| 36683 | <feature name="slot" value="hirom" /> | |
| 33601 | 36684 | <dataarea name="rom" size="1572864"> |
| 33602 | 36685 | <rom name="chaos engine, the (europe).sfc" size="1572864" crc="8900f073" sha1="c0b909a4ef97f5f0aab901c3c79249c11854685b" offset="0x000000" /> |
| 33603 | 36686 | </dataarea> |
| r21545 | r21546 | |
| 33612 | 36695 | <info name="release" value="19960315" /> |
| 33613 | 36696 | <info name="alt_title" value="カオスシート 風水回廊記" /> |
| 33614 | 36697 | <part name="cart" interface="snes_cart"> |
| 36698 | ||
| 36699 | <feature name="slot" value="hirom" /> | |
| 33615 | 36700 | <dataarea name="rom" size="2621440"> |
| 33616 | 36701 | <rom name="chaos seed - feng shui kairouki (japan).sfc" size="2621440" crc="76e01ccb" sha1="19a6b27dff5d1e7e1790405a9cf29ae80fd5df3c" offset="0x000000" /> |
| 33617 | 36702 | </dataarea> |
| r21545 | r21546 | |
| 33625 | 36710 | <year>1994</year> |
| 33626 | 36711 | <publisher>ASC Games</publisher> |
| 33627 | 36712 | <part name="cart" interface="snes_cart"> |
| 36713 | ||
| 36714 | <feature name="slot" value="lorom" /> | |
| 33628 | 36715 | <dataarea name="rom" size="524288"> |
| 33629 | 36716 | <rom name="chavez (usa) (beta).sfc" size="524288" crc="1f74e668" sha1="4c69e6157ad928f6086ba3e10ba462b61a331baf" offset="0x000000" /> |
| 33630 | 36717 | </dataarea> |
| r21545 | r21546 | |
| 33638 | 36725 | <year>1991</year> |
| 33639 | 36726 | <publisher>Mindscape</publisher> |
| 33640 | 36727 | <part name="cart" interface="snes_cart"> |
| 36728 | ||
| 36729 | <feature name="slot" value="lorom" /> | |
| 33641 | 36730 | <dataarea name="rom" size="524288"> |
| 33642 | 36731 | <rom name="chessmaster, the (europe).sfc" size="524288" crc="d84bdfd5" sha1="24ac8daf2fae3a61ea833252a1c9ad0c41b63b5a" offset="0x000000" /> |
| 33643 | 36732 | </dataarea> |
| r21545 | r21546 | |
| 33652 | 36741 | <info name="release" value="19950217" /> |
| 33653 | 36742 | <info name="alt_title" value="チェスマスター" /> |
| 33654 | 36743 | <part name="cart" interface="snes_cart"> |
| 36744 | ||
| 36745 | <feature name="slot" value="lorom" /> | |
| 33655 | 36746 | <dataarea name="rom" size="524288"> |
| 33656 | 36747 | <rom name="chessmaster, the (japan).sfc" size="524288" crc="15c93942" sha1="0dd9487159b0dbe8d29efb6d5ec218b90651e071" offset="0x000000" /> |
| 33657 | 36748 | </dataarea> |
| r21545 | r21546 | |
| 33663 | 36754 | <year>1994</year> |
| 33664 | 36755 | <publisher>Kaneko</publisher> |
| 33665 | 36756 | <part name="cart" interface="snes_cart"> |
| 36757 | ||
| 36758 | <feature name="slot" value="lorom" /> | |
| 33666 | 36759 | <dataarea name="rom" size="1310720"> |
| 33667 | 36760 | <rom name="chester cheetah - wild wild quest (usa) (beta).sfc" size="1310720" crc="bc27bca6" sha1="bb162d28d631fc327ebc9bf87e22dc7e718cb52a" offset="0x000000" /> |
| 33668 | 36761 | </dataarea> |
| r21545 | r21546 | |
| 33678 | 36771 | <info name="alt_title" value="ちびまる子ちゃん めざせ!南の アイランド!!" /> |
| 33679 | 36772 | <sharedfeat name="compatibility" value="NTSC"/> |
| 33680 | 36773 | <part name="cart" interface="snes_cart"> |
| 36774 | ||
| 36775 | <feature name="slot" value="lorom" /> | |
| 33681 | 36776 | <dataarea name="rom" size="2097152"> |
| 33682 | 36777 | <rom name="chibi maruko-chan - mezase! minami no island!! (japan).sfc" size="2097152" crc="f4defcae" sha1="08a2415362f69788ec76b1a36044dc1f1a5f2ea1" offset="0x000000" /> |
| 33683 | 36778 | </dataarea> |
| r21545 | r21546 | |
| 33692 | 36787 | <info name="release" value="19950922" /> |
| 33693 | 36788 | <info name="alt_title" value="陳牌" /> |
| 33694 | 36789 | <part name="cart" interface="snes_cart"> |
| 36790 | ||
| 36791 | <feature name="slot" value="lorom" /> | |
| 33695 | 36792 | <dataarea name="rom" size="524288"> |
| 33696 | 36793 | <rom name="chinhai (japan).sfc" size="524288" crc="d7452215" sha1="cce66cec0250573613c7a81a2465b0bc96e7f99e" offset="0x000000" /> |
| 33697 | 36794 | </dataarea> |
| r21545 | r21546 | |
| 33705 | 36802 | <year>1994</year> |
| 33706 | 36803 | <publisher>Extreme Entertainment Group</publisher> |
| 33707 | 36804 | <part name="cart" interface="snes_cart"> |
| 36805 | ||
| 36806 | <feature name="slot" value="lorom" /> | |
| 33708 | 36807 | <dataarea name="rom" size="524288"> |
| 33709 | 36808 | <rom name="choplifter iii - rescue & survive (europe).sfc" size="524288" crc="788e42c9" sha1="568593160ce187b78ea4082f4f1f9e934966aa6b" offset="0x000000" /> |
| 33710 | 36809 | </dataarea> |
| r21545 | r21546 | |
| 33719 | 36818 | <info name="release" value="19940909" /> |
| 33720 | 36819 | <info name="alt_title" value="チョップリフターIII RESCUE SURVIVE" /> |
| 33721 | 36820 | <part name="cart" interface="snes_cart"> |
| 36821 | ||
| 36822 | <feature name="slot" value="lorom" /> | |
| 33722 | 36823 | <dataarea name="rom" size="524288"> |
| 33723 | 36824 | <rom name="choplifter iii - rescue & survive (japan).sfc" size="524288" crc="ad26cc9e" sha1="1d5c4fa1b2638591f1f61d8ccc0855c0077bd8c0" offset="0x000000" /> |
| 33724 | 36825 | </dataarea> |
| r21545 | r21546 | |
| 33733 | 36834 | <info name="release" value="19950922" /> |
| 33734 | 36835 | <info name="alt_title" value="超兄貴 爆烈乱闘篇" /> |
| 33735 | 36836 | <part name="cart" interface="snes_cart"> |
| 36837 | ||
| 36838 | <feature name="slot" value="lorom" /> | |
| 33736 | 36839 | <dataarea name="rom" size="2097152"> |
| 33737 | 36840 | <rom name="chou aniki - bakuretsu rantou hen (japan).sfc" size="2097152" crc="70f5d440" sha1="c37763eec397ee14a9f4c8510c1e886002a11b1a" offset="0x000000" /> |
| 33738 | 36841 | </dataarea> |
| r21545 | r21546 | |
| 33747 | 36850 | <info name="release" value="19931029" /> |
| 33748 | 36851 | <info name="alt_title" value="超時空要塞マクロス スクランブルバルキリー" /> |
| 33749 | 36852 | <part name="cart" interface="snes_cart"> |
| 36853 | ||
| 36854 | <feature name="slot" value="hirom" /> | |
| 33750 | 36855 | <dataarea name="rom" size="1048576"> |
| 33751 | 36856 | <rom name="choujikuu yousai macross - scrambled valkyrie (japan).sfc" size="1048576" crc="a5db02e9" sha1="459a727aeeb013cd1b63f54d4a2355c2f0a1999f" offset="0x000000" /> |
| 33752 | 36857 | </dataarea> |
| r21545 | r21546 | |
| 33758 | 36863 | <year>1995</year> |
| 33759 | 36864 | <publisher>Square</publisher> |
| 33760 | 36865 | <part name="cart" interface="snes_cart"> |
| 36866 | ||
| 36867 | <feature name="slot" value="hirom" /> | |
| 33761 | 36868 | <dataarea name="rom" size="4194304"> |
| 33762 | 36869 | <rom name="chrono trigger (japan) (sample).sfc" size="4194304" crc="17c9f363" sha1="6dea64bcbbe2e6f396270a8c992850f82ec12e38" offset="0x000000" /> |
| 33763 | 36870 | </dataarea> |
| r21545 | r21546 | |
| 33771 | 36878 | <year>1993</year> |
| 33772 | 36879 | <publisher>Sony Imagesoft</publisher> |
| 33773 | 36880 | <part name="cart" interface="snes_cart"> |
| 36881 | ||
| 36882 | <feature name="slot" value="lorom" /> | |
| 33774 | 36883 | <dataarea name="rom" size="1048576"> |
| 33775 | 36884 | <rom name="chuck rock (europe).sfc" size="1048576" crc="fba012cd" sha1="0bfc382f4390a3bc20079c4cc443bf71b29d14d4" offset="0x000000" /> |
| 33776 | 36885 | </dataarea> |
| r21545 | r21546 | |
| 33782 | 36891 | <year>1992</year> |
| 33783 | 36892 | <publisher>Sony Imagesoft</publisher> |
| 33784 | 36893 | <part name="cart" interface="snes_cart"> |
| 36894 | ||
| 36895 | <feature name="slot" value="lorom" /> | |
| 33785 | 36896 | <dataarea name="rom" size="1048576"> |
| 33786 | 36897 | <rom name="chuck rock (usa) (beta).sfc" size="1048576" crc="c024f88f" sha1="ed4b190b5a6d7c2cdaa6a73d734d345e766d363c" offset="0x000000" /> |
| 33787 | 36898 | </dataarea> |
| r21545 | r21546 | |
| 33796 | 36907 | <info name="release" value="19950630" /> |
| 33797 | 36908 | <info name="alt_title" value="サーキットUSA" /> |
| 33798 | 36909 | <part name="cart" interface="snes_cart"> |
| 36910 | ||
| 36911 | <feature name="slot" value="hirom" /> | |
| 33799 | 36912 | <dataarea name="rom" size="2097152"> |
| 33800 | 36913 | <rom name="circuit usa (japan).sfc" size="2097152" crc="5a13366c" sha1="af6fa1e5ee95df9353ece8c5a90735785de88b99" offset="0x000000" /> |
| 33801 | 36914 | </dataarea> |
| r21545 | r21546 | |
| 33807 | 36920 | <year>1995</year> |
| 33808 | 36921 | <publisher>Koei</publisher> |
| 33809 | 36922 | <part name="cart" interface="snes_cart"> |
| 36923 | ||
| 36924 | <feature name="slot" value="hirom" /> | |
| 33810 | 36925 | <dataarea name="rom" size="1310720"> |
| 33811 | 36926 | <rom name="civilization (usa) (beta).sfc" size="1310720" crc="5855f7ea" sha1="92529d216508471919677c5463c31fbdc769cff1" offset="0x000000" /> |
| 33812 | 36927 | </dataarea> |
| r21545 | r21546 | |
| 33821 | 36936 | <publisher>Koei</publisher> |
| 33822 | 36937 | <info name="release" value="199511xx" /> |
| 33823 | 36938 | <part name="cart" interface="snes_cart"> |
| 36939 | ||
| 36940 | <feature name="slot" value="hirom" /> | |
| 33824 | 36941 | <dataarea name="rom" size="1572864"> |
| 33825 | 36942 | <rom name="civilization (usa).sfc" size="1572864" crc="41fdba82" sha1="07acbf40d10af153e19630c0f62bc74adcb84a86" offset="0x000000" /> |
| 33826 | 36943 | </dataarea> |
| r21545 | r21546 | |
| 33837 | 36954 | <info name="release" value="19941007" /> |
| 33838 | 36955 | <info name="alt_title" value="シヴィライゼーション世界七大文明" /> |
| 33839 | 36956 | <part name="cart" interface="snes_cart"> |
| 36957 | ||
| 36958 | <feature name="slot" value="hirom" /> | |
| 33840 | 36959 | <dataarea name="rom" size="1310720"> |
| 33841 | 36960 | <rom name="civilization - sekai shichi daibunmei (japan).sfc" size="1310720" crc="9d5ce088" sha1="e1cc964e95c8412b41d245f571aed9e1be9bd1a5" offset="0x000000" /> |
| 33842 | 36961 | </dataarea> |
| r21545 | r21546 | |
| 33853 | 36972 | <info name="release" value="19931029" /> |
| 33854 | 36973 | <info name="alt_title" value="クラシック・ロード" /> |
| 33855 | 36974 | <part name="cart" interface="snes_cart"> |
| 36975 | ||
| 36976 | <feature name="slot" value="lorom" /> | |
| 33856 | 36977 | <dataarea name="rom" size="1048576"> |
| 33857 | 36978 | <rom name="classic road (japan).sfc" size="1048576" crc="3af7c64a" sha1="8f9f72e6771b97557315fd88526187d718de0781" offset="0x000000" /> |
| 33858 | 36979 | </dataarea> |
| r21545 | r21546 | |
| 33869 | 36990 | <info name="release" value="19950224" /> |
| 33870 | 36991 | <info name="alt_title" value="クラシックロードII" /> |
| 33871 | 36992 | <part name="cart" interface="snes_cart"> |
| 36993 | ||
| 36994 | <feature name="slot" value="lorom" /> | |
| 33872 | 36995 | <dataarea name="rom" size="2097152"> |
| 33873 | 36996 | <rom name="classic road ii (japan).sfc" size="2097152" crc="ae782895" sha1="ba1ddcc7498d353f20eacbbf5463d24b3aa9396d" offset="0x000000" /> |
| 33874 | 36997 | </dataarea> |
| r21545 | r21546 | |
| 33883 | 37006 | <publisher>Interplay</publisher> |
| 33884 | 37007 | <sharedfeat name="compatibility" value="PAL"/> |
| 33885 | 37008 | <part name="cart" interface="snes_cart"> |
| 37009 | ||
| 37010 | <feature name="slot" value="hirom" /> | |
| 33886 | 37011 | <dataarea name="rom" size="2097152"> |
| 33887 | 37012 | <rom name="clay fighter (europe).sfc" size="2097152" crc="b581e100" sha1="642b77a868ef64674932f5e1840375cfa27c0aaa" offset="0x000000" /> |
| 33888 | 37013 | </dataarea> |
| r21545 | r21546 | |
| 33896 | 37021 | <info name="release" value="199311xx" /> |
| 33897 | 37022 | <sharedfeat name="compatibility" value="NTSC"/> |
| 33898 | 37023 | <part name="cart" interface="snes_cart"> |
| 37024 | ||
| 37025 | <feature name="slot" value="hirom" /> | |
| 33899 | 37026 | <dataarea name="rom" size="2097152"> |
| 33900 | 37027 | <rom name="clay fighter (usa).sfc" size="2097152" crc="c814e3c2" sha1="e91b6989c32fdabb1322af07be24c0c59f214e7f" offset="0x000000" /> |
| 33901 | 37028 | </dataarea> |
| r21545 | r21546 | |
| 33909 | 37036 | <info name="release" value="199405xx" /> |
| 33910 | 37037 | <sharedfeat name="compatibility" value="NTSC"/> |
| 33911 | 37038 | <part name="cart" interface="snes_cart"> |
| 37039 | ||
| 37040 | <feature name="slot" value="hirom" /> | |
| 33912 | 37041 | <dataarea name="rom" size="3145728"> |
| 33913 | 37042 | <rom name="clay fighter - tournament edition (usa).sfc" size="3145728" crc="b360f7af" sha1="a7d9a90f792c90d3d51f62db6279e9533dab5ca8" offset="0x000000" /> |
| 33914 | 37043 | </dataarea> |
| r21545 | r21546 | |
| 33920 | 37049 | <year>1995</year> |
| 33921 | 37050 | <publisher>Interplay</publisher> |
| 33922 | 37051 | <part name="cart" interface="snes_cart"> |
| 37052 | ||
| 37053 | <feature name="slot" value="hirom" /> | |
| 33923 | 37054 | <dataarea name="rom" size="3145728"> |
| 33924 | 37055 | <rom name="clay fighter 2 - judgment clay (europe).sfc" size="3145728" crc="caa9abf1" sha1="8717b18ee64fb3df74a9c7c75f393c514b4d87e4" offset="0x000000" /> |
| 33925 | 37056 | </dataarea> |
| r21545 | r21546 | |
| 33933 | 37064 | <info name="release" value="199501xx" /> |
| 33934 | 37065 | <sharedfeat name="compatibility" value="NTSC"/> |
| 33935 | 37066 | <part name="cart" interface="snes_cart"> |
| 37067 | ||
| 37068 | <feature name="slot" value="hirom" /> | |
| 33936 | 37069 | <dataarea name="rom" size="3145728"> |
| 33937 | 37070 | <rom name="clay fighter 2 - judgment clay (usa).sfc" size="3145728" crc="20b5c364" sha1="b64ad1b7c388439a53549229375d53dfb29731d0" offset="0x000000" /> |
| 33938 | 37071 | </dataarea> |
| r21545 | r21546 | |
| 33945 | 37078 | <publisher>Interplay</publisher> |
| 33946 | 37079 | <sharedfeat name="compatibility" value="PAL"/> |
| 33947 | 37080 | <part name="cart" interface="snes_cart"> |
| 37081 | ||
| 37082 | <feature name="slot" value="hirom" /> | |
| 33948 | 37083 | <dataarea name="rom" size="1048576"> |
| 33949 | 37084 | <rom name="claymates (europe).sfc" size="1048576" crc="3a571132" sha1="32fb2c9f9255ae2927ce720c78cef90bb1200b6b" offset="0x000000" /> |
| 33950 | 37085 | </dataarea> |
| r21545 | r21546 | |
| 33956 | 37091 | <year>1994</year> |
| 33957 | 37092 | <publisher>Interplay</publisher> |
| 33958 | 37093 | <part name="cart" interface="snes_cart"> |
| 37094 | ||
| 37095 | <feature name="slot" value="lorom" /> | |
| 33959 | 37096 | <dataarea name="rom" size="1048576"> |
| 33960 | 37097 | <rom name="claymates (usa) (sample).sfc" size="1048576" crc="5c00f14c" sha1="c69a66b9a3e25be98a3a12641fceeda621e1ab6d" offset="0x000000" /> |
| 33961 | 37098 | </dataarea> |
| r21545 | r21546 | |
| 33967 | 37104 | <year>1993</year> |
| 33968 | 37105 | <publisher>Sony Imagesoft</publisher> |
| 33969 | 37106 | <part name="cart" interface="snes_cart"> |
| 37107 | ||
| 37108 | <feature name="slot" value="lorom" /> | |
| 33970 | 37109 | <dataarea name="rom" size="1048576"> |
| 33971 | 37110 | <rom name="cliffhanger (europe).sfc" size="1048576" crc="a9e67214" sha1="9a3b3ce5d05b0f3abb8e64bef46b49975486cfb9" offset="0x000000" /> |
| 33972 | 37111 | </dataarea> |
| r21545 | r21546 | |
| 33979 | 37118 | <publisher>Sony Imagesoft</publisher> |
| 33980 | 37119 | <info name="release" value="199310xx" /> |
| 33981 | 37120 | <part name="cart" interface="snes_cart"> |
| 37121 | ||
| 37122 | <feature name="slot" value="lorom" /> | |
| 33982 | 37123 | <dataarea name="rom" size="1048576"> |
| 33983 | 37124 | <rom name="cliffhanger (usa).sfc" size="1048576" crc="12f8a26c" sha1="5a494362063c61c3207d2bb49ee43766f9a4f00f" offset="0x000000" /> |
| 33984 | 37125 | </dataarea> |
| r21545 | r21546 | |
| 33994 | 37135 | <info name="alt_title" value="クロックタワー" /> |
| 33995 | 37136 | <sharedfeat name="compatibility" value="NTSC"/> |
| 33996 | 37137 | <part name="cart" interface="snes_cart"> |
| 37138 | ||
| 37139 | <feature name="slot" value="hirom" /> | |
| 33997 | 37140 | <dataarea name="rom" size="3145728"> |
| 33998 | 37141 | <rom name="clock tower (japan).sfc" size="3145728" crc="cbcd0dad" sha1="feb998d4e963a76a4dee6351edab894af431eeba" offset="0x000000" /> |
| 33999 | 37142 | </dataarea> |
| r21545 | r21546 | |
| 34010 | 37153 | <info name="release" value="19951208" /> |
| 34011 | 37154 | <info name="alt_title" value="クロックワークス" /> |
| 34012 | 37155 | <part name="cart" interface="snes_cart"> |
| 37156 | ||
| 37157 | <feature name="slot" value="lorom" /> | |
| 34013 | 37158 | <dataarea name="rom" size="524288"> |
| 34014 | 37159 | <rom name="clockwerx (japan).sfc" size="524288" crc="a62b84ff" sha1="652693214ebc0a1bbcae15396cde748a94324acb" offset="0x000000" /> |
| 34015 | 37160 | </dataarea> |
| r21545 | r21546 | |
| 34024 | 37169 | <publisher>Parker Brothers</publisher> |
| 34025 | 37170 | <info name="release" value="199207xx" /> |
| 34026 | 37171 | <part name="cart" interface="snes_cart"> |
| 37172 | ||
| 37173 | <feature name="slot" value="lorom" /> | |
| 34027 | 37174 | <dataarea name="rom" size="524288"> |
| 34028 | 37175 | <rom name="clue (usa).sfc" size="524288" crc="a4fbe827" sha1="956b48f602a24dd3d5d64195f6366fa0b68f0738" offset="0x000000" /> |
| 34029 | 37176 | </dataarea> |
| r21545 | r21546 | |
| 34036 | 37183 | <publisher>Electronic Arts</publisher> |
| 34037 | 37184 | <info name="release" value="199612xx" /> |
| 34038 | 37185 | <part name="cart" interface="snes_cart"> |
| 37186 | ||
| 37187 | <feature name="slot" value="lorom" /> | |
| 34039 | 37188 | <dataarea name="rom" size="2097152"> |
| 34040 | 37189 | <rom name="college football usa '97 - the road to new orleans (usa).sfc" size="2097152" crc="a27940c1" sha1="8fd9c0a0a20307b206e20990331e54e27db2a179" offset="0x000000" /> |
| 34041 | 37190 | </dataarea> |
| r21545 | r21546 | |
| 34050 | 37199 | <publisher>Acclaim Entertainment</publisher> |
| 34051 | 37200 | <info name="release" value="199602xx" /> |
| 34052 | 37201 | <part name="cart" interface="snes_cart"> |
| 37202 | ||
| 37203 | <feature name="slot" value="lorom" /> | |
| 34053 | 37204 | <dataarea name="rom" size="3145728"> |
| 34054 | 37205 | <rom name="college slam (usa).sfc" size="3145728" crc="ce842c6d" sha1="15a52aa47c29e25a7d48a6b2d46e1b1dbe5e76f8" offset="0x000000" /> |
| 34055 | 37206 | </dataarea> |
| r21545 | r21546 | |
| 34066 | 37217 | <info name="release" value="19990801" /> |
| 34067 | 37218 | <info name="alt_title" value="コラムス" /> |
| 34068 | 37219 | <part name="cart" interface="snes_cart"> |
| 37220 | ||
| 37221 | <feature name="slot" value="hirom" /> | |
| 34069 | 37222 | <dataarea name="rom" size="524288"> |
| 34070 | 37223 | <rom name="columns (japan) (np).sfc" size="524288" crc="005c77f5" sha1="cc1259497606ba73617d5a277b23cb5dc5e6fd27" offset="0x000000" /> |
| 34071 | 37224 | </dataarea> |
| r21545 | r21546 | |
| 34082 | 37235 | <info name="release" value="19921223" /> |
| 34083 | 37236 | <info name="alt_title" value="コンバットライブス" /> |
| 34084 | 37237 | <part name="cart" interface="snes_cart"> |
| 37238 | ||
| 37239 | <feature name="slot" value="lorom" /> | |
| 34085 | 37240 | <dataarea name="rom" size="1572864"> |
| 34086 | 37241 | <rom name="combatribes, the (japan).sfc" size="1572864" crc="5e2c24f6" sha1="23983a7dee48b777874ca46eb55e73b8b5eb7464" offset="0x000000" /> |
| 34087 | 37242 | </dataarea> |
| r21545 | r21546 | |
| 34094 | 37249 | <publisher>American Technos</publisher> |
| 34095 | 37250 | <info name="release" value="199303xx" /> |
| 34096 | 37251 | <part name="cart" interface="snes_cart"> |
| 37252 | ||
| 37253 | <feature name="slot" value="lorom" /> | |
| 34097 | 37254 | <dataarea name="rom" size="1572864"> |
| 34098 | 37255 | <rom name="combatribes, the (usa).sfc" size="1572864" crc="9304044a" sha1="6827e8d9520ffdf05e8ffbeba71355fd32079af2" offset="0x000000" /> |
| 34099 | 37256 | </dataarea> |
| r21545 | r21546 | |
| 34105 | 37262 | <year>1993</year> |
| 34106 | 37263 | <publisher>Data East</publisher> |
| 34107 | 37264 | <part name="cart" interface="snes_cart"> |
| 37265 | ||
| 37266 | <feature name="slot" value="lorom" /> | |
| 34108 | 37267 | <dataarea name="rom" size="524288"> |
| 34109 | 37268 | <rom name="congo's caper (europe).sfc" size="524288" crc="549a163e" sha1="b5f1917a8844724d6a8a8a366966263e1f84e84d" offset="0x000000" /> |
| 34110 | 37269 | </dataarea> |
| r21545 | r21546 | |
| 34117 | 37276 | <publisher>Data East</publisher> |
| 34118 | 37277 | <info name="release" value="199305xx" /> |
| 34119 | 37278 | <part name="cart" interface="snes_cart"> |
| 37279 | ||
| 37280 | <feature name="slot" value="lorom" /> | |
| 34120 | 37281 | <dataarea name="rom" size="524288"> |
| 34121 | 37282 | <rom name="congo's caper (usa).sfc" size="524288" crc="8a24fba8" sha1="7edddd098160d3f398ab54b0a587a7cc5ad98ae1" offset="0x000000" /> |
| 34122 | 37283 | </dataarea> |
| r21545 | r21546 | |
| 34129 | 37290 | <publisher>Konami</publisher> |
| 34130 | 37291 | <info name="release" value="199204xx" /> |
| 34131 | 37292 | <part name="cart" interface="snes_cart"> |
| 37293 | ||
| 37294 | <feature name="slot" value="lorom" /> | |
| 34132 | 37295 | <dataarea name="rom" size="1048576"> |
| 34133 | 37296 | <rom name="contra iii - the alien wars (usa).sfc" size="1048576" crc="84da7cfe" sha1="265886e3f665adf2507e7b2f08b6b2ed9d0018b2" offset="0x000000" /> |
| 34134 | 37297 | </dataarea> |
| r21545 | r21546 | |
| 34144 | 37307 | <info name="release" value="19920228" /> |
| 34145 | 37308 | <info name="alt_title" value="魂斗羅スピリッツ" /> |
| 34146 | 37309 | <part name="cart" interface="snes_cart"> |
| 37310 | ||
| 37311 | <feature name="slot" value="lorom" /> | |
| 34147 | 37312 | <dataarea name="rom" size="1048576"> |
| 34148 | 37313 | <rom name="contra spirits (japan).sfc" size="1048576" crc="b8cfe377" sha1="78cf6d00f1147be6dd4e8053c8143d39b24a97b3" offset="0x000000" /> |
| 34149 | 37314 | </dataarea> |
| r21545 | r21546 | |
| 34158 | 37323 | <info name="release" value="19930514" /> |
| 34159 | 37324 | <info name="alt_title" value="CONVENI WARS バーコードバトラー 戦記 スーパー戦士 出撃せよ!" /> |
| 34160 | 37325 | <part name="cart" interface="snes_cart"> |
| 37326 | ||
| 37327 | <feature name="slot" value="hirom" /> | |
| 34161 | 37328 | <dataarea name="rom" size="524288"> |
| 34162 | 37329 | <rom name="conveni wars barcode battler senki - super senshi shutsugeki seyo! (japan).sfc" size="524288" crc="115233db" sha1="72ca858f50d67121b06868633b8588a79316c3e2" offset="0x000000" /> |
| 34163 | 37330 | </dataarea> |
| r21545 | r21546 | |
| 34174 | 37341 | <info name="release" value="19931210" /> |
| 34175 | 37342 | <info name="alt_title" value="クールスポット" /> |
| 34176 | 37343 | <part name="cart" interface="snes_cart"> |
| 37344 | ||
| 37345 | <feature name="slot" value="lorom" /> | |
| 34177 | 37346 | <dataarea name="rom" size="1048576"> |
| 34178 | 37347 | <rom name="cool spot (japan).sfc" size="1048576" crc="55964905" sha1="75f7e64f658d3ea2f5ad81e12e6bd3b5dac8585b" offset="0x000000" /> |
| 34179 | 37348 | </dataarea> |
| r21545 | r21546 | |
| 34185 | 37354 | <year>1993</year> |
| 34186 | 37355 | <publisher>Virgin Interactive</publisher> |
| 34187 | 37356 | <part name="cart" interface="snes_cart"> |
| 37357 | ||
| 37358 | <feature name="slot" value="lorom" /> | |
| 34188 | 37359 | <dataarea name="rom" size="1048576"> |
| 34189 | 37360 | <rom name="cool spot (usa) (beta).sfc" size="1048576" crc="9a14c57d" sha1="24d386a2f707a970f13b7598e6d5c60eaa67c717" offset="0x000000" /> |
| 34190 | 37361 | </dataarea> |
| r21545 | r21546 | |
| 34197 | 37368 | <publisher>Virgin Interactive</publisher> |
| 34198 | 37369 | <info name="release" value="199309xx" /> |
| 34199 | 37370 | <part name="cart" interface="snes_cart"> |
| 37371 | ||
| 37372 | <feature name="slot" value="lorom" /> | |
| 34200 | 37373 | <dataarea name="rom" size="1048576"> |
| 34201 | 37374 | <rom name="cool spot (usa).sfc" size="1048576" crc="44e60e58" sha1="f5ef9d9367191c4fcdb84c4d11a322a9d03f89d2" offset="0x000000" /> |
| 34202 | 37375 | </dataarea> |
| r21545 | r21546 | |
| 34208 | 37381 | <year>1993</year> |
| 34209 | 37382 | <publisher>Ocean</publisher> |
| 34210 | 37383 | <part name="cart" interface="snes_cart"> |
| 37384 | ||
| 37385 | <feature name="slot" value="lorom" /> | |
| 34211 | 37386 | <dataarea name="rom" size="1048576"> |
| 34212 | 37387 | <rom name="cool world (spain).sfc" size="1048576" crc="bc2e1304" sha1="9efab99ab1b778aca3023a71479e634206ac3507" offset="0x000000" /> |
| 34213 | 37388 | </dataarea> |
| r21545 | r21546 | |
| 34220 | 37395 | <publisher>Ocean</publisher> |
| 34221 | 37396 | <info name="release" value="199302xx" /> |
| 34222 | 37397 | <part name="cart" interface="snes_cart"> |
| 37398 | ||
| 37399 | <feature name="slot" value="lorom" /> | |
| 34223 | 37400 | <dataarea name="rom" size="1048576"> |
| 34224 | 37401 | <rom name="cool world (usa).sfc" size="1048576" crc="0730c37c" sha1="a477c7c8fff0591792fbc7e4731bb7e7988d0617" offset="0x000000" /> |
| 34225 | 37402 | </dataarea> |
| r21545 | r21546 | |
| 34231 | 37408 | <year>199?</year> |
| 34232 | 37409 | <publisher><unknown></publisher> |
| 34233 | 37410 | <part name="cart" interface="snes_cart"> |
| 37411 | ||
| 37412 | <feature name="slot" value="lorom" /> | |
| 34234 | 37413 | <dataarea name="rom" size="2031616"> |
| 34235 | 37414 | <rom name="corn buster (europe) (proto).sfc" size="2031616" crc="b5fbad04" sha1="ffa82429153fd84ef8c77b627a30d244f0bb400c" offset="0x000000" /> |
| 34236 | 37415 | </dataarea> |
| r21545 | r21546 | |
| 34246 | 37425 | <info name="alt_title" value="ころんらんと" /> |
| 34247 | 37426 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34248 | 37427 | <part name="cart" interface="snes_cart"> |
| 37428 | ||
| 37429 | <feature name="slot" value="hirom" /> | |
| 34249 | 37430 | <dataarea name="rom" size="1048576"> |
| 34250 | 37431 | <rom name="coron land (japan).sfc" size="1048576" crc="236932e0" sha1="c41026a4a6048de1ee529501a85b1b9912195a82" offset="0x000000" /> |
| 34251 | 37432 | </dataarea> |
| r21545 | r21546 | |
| 34261 | 37442 | <info name="release" value="19930226" /> |
| 34262 | 37443 | <info name="alt_title" value="コズモギャング ザ パズル" /> |
| 34263 | 37444 | <part name="cart" interface="snes_cart"> |
| 37445 | ||
| 37446 | <feature name="slot" value="lorom" /> | |
| 34264 | 37447 | <dataarea name="rom" size="524288"> |
| 34265 | 37448 | <rom name="cosmo gang - the puzzle (japan).sfc" size="524288" crc="61b26167" sha1="c39694ef87c65de4692628b8f2f117d1e52d2041" offset="0x000000" /> |
| 34266 | 37449 | </dataarea> |
| r21545 | r21546 | |
| 34276 | 37459 | <info name="release" value="19921029" /> |
| 34277 | 37460 | <info name="alt_title" value="コズモギャング ザ ビデオ" /> |
| 34278 | 37461 | <part name="cart" interface="snes_cart"> |
| 37462 | ||
| 37463 | <feature name="slot" value="lorom" /> | |
| 34279 | 37464 | <dataarea name="rom" size="1048576"> |
| 34280 | 37465 | <rom name="cosmo gang - the video (japan).sfc" size="1048576" crc="a26dc1de" sha1="53e13618ba3056b2762e0e5b387cd9583451389f" offset="0x000000" /> |
| 34281 | 37466 | </dataarea> |
| r21545 | r21546 | |
| 34290 | 37475 | <info name="release" value="19930611" /> |
| 34291 | 37476 | <info name="alt_title" value="コスモポリス ギャリバン" /> |
| 34292 | 37477 | <part name="cart" interface="snes_cart"> |
| 37478 | ||
| 37479 | <feature name="slot" value="lorom" /> | |
| 34293 | 37480 | <dataarea name="rom" size="1048576"> |
| 34294 | 37481 | <rom name="cosmo police galivan ii - arrow of justice (japan).sfc" size="1048576" crc="582eed3d" sha1="ceb5194d7b00b23d1067c653375433cdc2f38716" offset="0x000000" /> |
| 34295 | 37482 | </dataarea> |
| 34296 | 37483 | </part> |
| 34297 | 37484 | </software> |
| 34298 | 37485 | |
| 34299 | <software name="stcrayon" supported="no"> | |
| 34300 | <description>Crayon Shin-chan - Nagagutsu Dobon!! (Jpn)</description> | |
| 34301 | <!-- ST --> | |
| 34302 | <year>1996</year> | |
| 34303 | <publisher>Bandai</publisher> | |
| 34304 | <info name="serial" value="SFT-0113" /> | |
| 34305 | <info name="release" value="19960927" /> | |
| 34306 | <info name="alt_title" value="クレヨンしんちゃん 長ぐつどぼ ん!!" /> | |
| 34307 | <part name="cart" interface="snes_cart"> | |
| 34308 | <dataarea name="rom" size="524288"> | |
| 34309 | <rom name="crayon shin-chan - nagagutsu dobon!! (japan).st" size="524288" crc="8eb753f3" sha1="98a99807a958c1175a2b257166d7b08b2be6d442" offset="0x000000" /> | |
| 34310 | </dataarea> | |
| 34311 | </part> | |
| 34312 | </software> | |
| 34313 | ||
| 34314 | 37486 | <software name="crystalb"> |
| 34315 | 37487 | <description>Crystal Beans From Dungeon Explorer (Jpn)</description> |
| 34316 | 37488 | <year>1995</year> |
| r21545 | r21546 | |
| 34319 | 37491 | <info name="release" value="19951027" /> |
| 34320 | 37492 | <info name="alt_title" value="クリスタルビーンズ フロムダンジョンエ クスプローラ" /> |
| 34321 | 37493 | <part name="cart" interface="snes_cart"> |
| 37494 | ||
| 37495 | <feature name="slot" value="hirom" /> | |
| 34322 | 37496 | <dataarea name="rom" size="1572864"> |
| 34323 | 37497 | <rom name="crystal beans from dungeon explorer (japan).sfc" size="1572864" crc="79663a93" sha1="617034c08cac5211116d776772074bed12aa139b" offset="0x000000" /> |
| 34324 | 37498 | </dataarea> |
| r21545 | r21546 | |
| 34332 | 37506 | <year>1996</year> |
| 34333 | 37507 | <publisher>Acclaim Entertainment</publisher> |
| 34334 | 37508 | <part name="cart" interface="snes_cart"> |
| 37509 | ||
| 37510 | <feature name="slot" value="lorom" /> | |
| 34335 | 37511 | <dataarea name="rom" size="2097152"> |
| 34336 | 37512 | <rom name="cutthroat island (europe).sfc" size="2097152" crc="b5799f9c" sha1="d88bed88c8979bb0ffcd73f02cebb92b7625598b" offset="0x000000" /> |
| 34337 | 37513 | </dataarea> |
| r21545 | r21546 | |
| 34344 | 37520 | <publisher>Acclaim Entertainment</publisher> |
| 34345 | 37521 | <info name="release" value="199603xx" /> |
| 34346 | 37522 | <part name="cart" interface="snes_cart"> |
| 37523 | ||
| 37524 | <feature name="slot" value="lorom" /> | |
| 34347 | 37525 | <dataarea name="rom" size="2097152"> |
| 34348 | 37526 | <rom name="cutthroat island (usa).sfc" size="2097152" crc="19ea457b" sha1="40965e6c9d6aec698b7a0d3106241fef7f2e6ee8" offset="0x000000" /> |
| 34349 | 37527 | </dataarea> |
| r21545 | r21546 | |
| 34359 | 37537 | <info name="alt_title" value="サイバーナイトII 地球帝国の野望" /> |
| 34360 | 37538 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34361 | 37539 | <part name="cart" interface="snes_cart"> |
| 37540 | ||
| 37541 | <feature name="slot" value="lorom" /> | |
| 34362 | 37542 | <dataarea name="rom" size="2097152"> |
| 34363 | 37543 | <rom name="cyber knight ii - chikyuu teikoku no yabou (japan).sfc" size="2097152" crc="ed8bcbf4" sha1="2faff9f7082f458d1c9f4f2f1514520f872ff1a1" offset="0x000000" /> |
| 34364 | 37544 | </dataarea> |
| r21545 | r21546 | |
| 34373 | 37553 | <publisher>Takara</publisher> |
| 34374 | 37554 | <info name="release" value="199211xx" /> |
| 34375 | 37555 | <part name="cart" interface="snes_cart"> |
| 37556 | ||
| 37557 | <feature name="slot" value="lorom" /> | |
| 34376 | 37558 | <dataarea name="rom" size="524288"> |
| 34377 | 37559 | <rom name="cyber spin (usa).sfc" size="524288" crc="44018650" sha1="1b6a1b0332a8301cbec0d6c9171e8fd0bfc0fc57" offset="0x000000" /> |
| 34378 | 37560 | </dataarea> |
| r21545 | r21546 | |
| 34385 | 37567 | <publisher>Konami</publisher> |
| 34386 | 37568 | <info name="release" value="199304xx" /> |
| 34387 | 37569 | <part name="cart" interface="snes_cart"> |
| 37570 | ||
| 37571 | <feature name="slot" value="lorom" /> | |
| 34388 | 37572 | <dataarea name="rom" size="1048576"> |
| 34389 | 37573 | <rom name="cybernator (usa).sfc" size="1048576" crc="4dfa05b3" sha1="f629deea9d7cf6903ba8a4b81da96624c0b056ab" offset="0x000000" /> |
| 34390 | 37574 | </dataarea> |
| r21545 | r21546 | |
| 34396 | 37580 | <year>1994</year> |
| 34397 | 37581 | <publisher>BEC</publisher> |
| 34398 | 37582 | <part name="cart" interface="snes_cart"> |
| 37583 | ||
| 37584 | <feature name="slot" value="lorom" /> | |
| 34399 | 37585 | <dataarea name="rom" size="1048576"> |
| 34400 | 37586 | <rom name="cyborg 009 (japan) (beta).sfc" size="1048576" crc="48eeccb3" sha1="98982cf52c5be025545bce9dd20b2e26162d4e89" offset="0x000000" /> |
| 34401 | 37587 | </dataarea> |
| r21545 | r21546 | |
| 34410 | 37596 | <info name="release" value="19940225" /> |
| 34411 | 37597 | <info name="alt_title" value="サイボーグ009" /> |
| 34412 | 37598 | <part name="cart" interface="snes_cart"> |
| 37599 | ||
| 37600 | <feature name="slot" value="lorom" /> | |
| 34413 | 37601 | <dataarea name="rom" size="1048576"> |
| 34414 | 37602 | <rom name="cyborg 009 (japan).sfc" size="1048576" crc="4a5263db" sha1="5ab41e2c6ccce1f40fb9813e8e07a49c785d88c5" offset="0x000000" /> |
| 34415 | 37603 | </dataarea> |
| r21545 | r21546 | |
| 34422 | 37610 | <publisher>Asmik</publisher> |
| 34423 | 37611 | <info name="release" value="199112xx" /> |
| 34424 | 37612 | <part name="cart" interface="snes_cart"> |
| 37613 | ||
| 37614 | <feature name="slot" value="lorom" /> | |
| 34425 | 37615 | <dataarea name="rom" size="1048576"> |
| 34426 | 37616 | <rom name="d-force (usa).sfc" size="1048576" crc="24230807" sha1="444a4001511c80f99d9cd52866828ccc668724d2" offset="0x000000" /> |
| 34427 | 37617 | </dataarea> |
| r21545 | r21546 | |
| 34437 | 37627 | <info name="alt_title" value="第3次 スーパーロボット大戦" /> |
| 34438 | 37628 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34439 | 37629 | <part name="cart" interface="snes_cart"> |
| 37630 | ||
| 37631 | <feature name="slot" value="lorom" /> | |
| 34440 | 37632 | <dataarea name="rom" size="1572864"> |
| 34441 | 37633 | <rom name="dai-3-ji super robot taisen (japan) (rev 1).sfc" size="1572864" crc="8813029c" sha1="91d04068593daed8bdc6992e7582851499de7e74" offset="0x000000" /> |
| 34442 | 37634 | </dataarea> |
| r21545 | r21546 | |
| 34454 | 37646 | <info name="alt_title" value="第3次 スーパーロボット大戦" /> |
| 34455 | 37647 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34456 | 37648 | <part name="cart" interface="snes_cart"> |
| 37649 | ||
| 37650 | <feature name="slot" value="lorom" /> | |
| 34457 | 37651 | <dataarea name="rom" size="1572864"> |
| 34458 | 37652 | <rom name="dai-3-ji super robot taisen (japan).sfc" size="1572864" crc="dfe9cc90" sha1="b16375f0c1cc6e5960cbcd2f9d24d97cb824c5d4" offset="0x000000" /> |
| 34459 | 37653 | </dataarea> |
| r21545 | r21546 | |
| 34471 | 37665 | <info name="alt_title" value="第4次 スーパーロボット大戦" /> |
| 34472 | 37666 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34473 | 37667 | <part name="cart" interface="snes_cart"> |
| 37668 | ||
| 37669 | <feature name="slot" value="hirom" /> | |
| 34474 | 37670 | <dataarea name="rom" size="3145728"> |
| 34475 | 37671 | <rom name="dai-4-ji super robot taisen (japan) (rev 1).sfc" size="3145728" crc="63883e1e" sha1="c48b09d0ed6850896db7d7b4e08caffc0376223a" offset="0x000000" /> |
| 34476 | 37672 | </dataarea> |
| r21545 | r21546 | |
| 34487 | 37683 | <info name="release" value="19941222" /> |
| 34488 | 37684 | <info name="alt_title" value="大貝獣物語" /> |
| 34489 | 37685 | <part name="cart" interface="snes_cart"> |
| 37686 | ||
| 37687 | <feature name="slot" value="hirom" /> | |
| 34490 | 37688 | <dataarea name="rom" size="3145728"> |
| 34491 | 37689 | <rom name="daikaijuu monogatari (japan) (rev 1).sfc" size="3145728" crc="5b09f3ad" sha1="0951fca33f4acdd59b10eed285b9d45d3d0e8c34" offset="0x000000" /> |
| 34492 | 37690 | </dataarea> |
| r21545 | r21546 | |
| 34504 | 37702 | <info name="alt_title" value="大戦略エキスパートWW II WAR IN EUROPE" /> |
| 34505 | 37703 | <part name="cart" interface="snes_cart"> |
| 34506 | 37704 | <feature name="enhancement" value="SA1" /> |
| 37705 | ||
| 37706 | <feature name="slot" value="lorom_sa1" /> | |
| 34507 | 37707 | <dataarea name="rom" size="2097152"> |
| 34508 | 37708 | <rom name="daisenryaku expert wwii - war in europe (japan).sfc" size="2097152" crc="4cd45939" sha1="142d2529d9045856d554c567baef27e4668bb2ad" offset="0x000000" /> |
| 34509 | 37709 | </dataarea> |
| r21545 | r21546 | |
| 34520 | 37720 | <info name="release" value="19930924" /> |
| 34521 | 37721 | <info name="alt_title" value="ダライアスフォース" /> |
| 34522 | 37722 | <part name="cart" interface="snes_cart"> |
| 37723 | ||
| 37724 | <feature name="slot" value="hirom" /> | |
| 34523 | 37725 | <dataarea name="rom" size="1048576"> |
| 34524 | 37726 | <rom name="darius force (japan).sfc" size="1048576" crc="3e828e49" sha1="8f45123bcbdcd02fef42dfbd131704a3b1e7226d" offset="0x000000" /> |
| 34525 | 37727 | </dataarea> |
| r21545 | r21546 | |
| 34531 | 37733 | <year>1991</year> |
| 34532 | 37734 | <publisher>Taito</publisher> |
| 34533 | 37735 | <part name="cart" interface="snes_cart"> |
| 37736 | ||
| 37737 | <feature name="slot" value="lorom" /> | |
| 34534 | 37738 | <dataarea name="rom" size="1048576"> |
| 34535 | 37739 | <rom name="darius twin (europe).sfc" size="1048576" crc="cf54f1b2" sha1="d15bd9acdc08c3a9a92e42f3670795a1c6c8fbc0" offset="0x000000" /> |
| 34536 | 37740 | </dataarea> |
| r21545 | r21546 | |
| 34545 | 37749 | <info name="release" value="19960531" /> |
| 34546 | 37750 | <info name="alt_title" value="ダークハーフ" /> |
| 34547 | 37751 | <part name="cart" interface="snes_cart"> |
| 37752 | ||
| 37753 | <feature name="slot" value="hirom" /> | |
| 34548 | 37754 | <dataarea name="rom" size="3145728"> |
| 34549 | 37755 | <rom name="dark half (japan).sfc" size="3145728" crc="7b9793b1" sha1="70f4e9c39eeefc00dfb35e77c604372b305aae03" offset="0x000000" /> |
| 34550 | 37756 | </dataarea> |
| r21545 | r21546 | |
| 34561 | 37767 | <info name="release" value="19940429" /> |
| 34562 | 37768 | <info name="alt_title" value="ダークキングダム" /> |
| 34563 | 37769 | <part name="cart" interface="snes_cart"> |
| 37770 | ||
| 37771 | <feature name="slot" value="hirom" /> | |
| 34564 | 37772 | <dataarea name="rom" size="1572864"> |
| 34565 | 37773 | <rom name="dark kingdom (japan).sfc" size="1572864" crc="f77aca0a" sha1="38f4262dd38e28a09e4b2c3be0db2cde328f73b1" offset="0x000000" /> |
| 34566 | 37774 | </dataarea> |
| r21545 | r21546 | |
| 34578 | 37786 | <info name="alt_title" value="ダークロウ ミーニング・オブ・テス" /> |
| 34579 | 37787 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34580 | 37788 | <part name="cart" interface="snes_cart"> |
| 37789 | ||
| 37790 | <feature name="slot" value="hirom" /> | |
| 34581 | 37791 | <dataarea name="rom" size="4194304"> |
| 34582 | 37792 | <rom name="dark law - meaning of death (japan).sfc" size="4194304" crc="125a0c22" sha1="a4312636bfac45a21b3e2f4475e5db622e9fc0e3" offset="0x000000" /> |
| 34583 | 37793 | </dataarea> |
| r21545 | r21546 | |
| 34594 | 37804 | <info name="release" value="19940513" /> |
| 34595 | 37805 | <info name="alt_title" value="伊達公子のバーチャルテニス" /> |
| 34596 | 37806 | <part name="cart" interface="snes_cart"> |
| 37807 | ||
| 37808 | <feature name="slot" value="lorom" /> | |
| 34597 | 37809 | <dataarea name="rom" size="1048576"> |
| 34598 | 37810 | <rom name="date kimiko no virtual tennis (japan).sfc" size="1048576" crc="ef77535e" sha1="1b88680f576cf5200650010fab4dca5a2cbbbd3f" offset="0x000000" /> |
| 34599 | 37811 | </dataarea> |
| r21545 | r21546 | |
| 34605 | 37817 | <year>1992</year> |
| 34606 | 37818 | <publisher>Absolute Entertainment</publisher> |
| 34607 | 37819 | <part name="cart" interface="snes_cart"> |
| 37820 | ||
| 37821 | <feature name="slot" value="lorom" /> | |
| 34608 | 37822 | <dataarea name="rom" size="1048576"> |
| 34609 | 37823 | <rom name="david crane's amazing tennis (europe).sfc" size="1048576" crc="42c25ac1" sha1="96dfbfd46b722a0acc88470ffc683a2fb1e72b1a" offset="0x000000" /> |
| 34610 | 37824 | </dataarea> |
| r21545 | r21546 | |
| 34619 | 37833 | <info name="release" value="19921218" /> |
| 34620 | 37834 | <info name="alt_title" value="アメージングテニス" /> |
| 34621 | 37835 | <part name="cart" interface="snes_cart"> |
| 37836 | ||
| 37837 | <feature name="slot" value="lorom" /> | |
| 34622 | 37838 | <dataarea name="rom" size="1048576"> |
| 34623 | 37839 | <rom name="david crane's amazing tennis (japan).sfc" size="1048576" crc="72839930" sha1="c8ff99628fefe14ae2e9ade3564a4d255a8f9b4c" offset="0x000000" /> |
| 34624 | 37840 | </dataarea> |
| r21545 | r21546 | |
| 34630 | 37846 | <year>1994</year> |
| 34631 | 37847 | <publisher>Sunsoft</publisher> |
| 34632 | 37848 | <part name="cart" interface="snes_cart"> |
| 37849 | ||
| 37850 | <feature name="slot" value="lorom" /> | |
| 34633 | 37851 | <dataarea name="rom" size="2097152"> |
| 34634 | 37852 | <rom name="daze before christmas (europe).sfc" size="2097152" crc="59909eb5" sha1="5e63cc5c05add8f1493485b5ce488f91e43a2553" offset="0x000000" /> |
| 34635 | 37853 | </dataarea> |
| r21545 | r21546 | |
| 34645 | 37863 | <info name="alt_title" value="であえ殿さま あっぱれ一番" /> |
| 34646 | 37864 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34647 | 37865 | <part name="cart" interface="snes_cart"> |
| 37866 | ||
| 37867 | <feature name="slot" value="lorom" /> | |
| 34648 | 37868 | <dataarea name="rom" size="1572864"> |
| 34649 | 37869 | <rom name="deae tonosama - appare ichiban (japan).sfc" size="1572864" crc="6e42d71b" sha1="723681d54db693bb6df9e578a7637f819b710ce3" offset="0x000000" /> |
| 34650 | 37870 | </dataarea> |
| r21545 | r21546 | |
| 34659 | 37879 | <info name="release" value="19941028" /> |
| 34660 | 37880 | <info name="alt_title" value="ディア・ボーイズ" /> |
| 34661 | 37881 | <part name="cart" interface="snes_cart"> |
| 37882 | ||
| 37883 | <feature name="slot" value="lorom" /> | |
| 34662 | 37884 | <dataarea name="rom" size="1572864"> |
| 34663 | 37885 | <rom name="dear boys (japan).sfc" size="1572864" crc="9ed82c00" sha1="266b152ad4ff8f7b85c415f76d469a779fb32956" offset="0x000000" /> |
| 34664 | 37886 | </dataarea> |
| r21545 | r21546 | |
| 34673 | 37895 | <publisher>Sunsoft</publisher> |
| 34674 | 37896 | <info name="release" value="199408xx" /> |
| 34675 | 37897 | <part name="cart" interface="snes_cart"> |
| 37898 | ||
| 37899 | <feature name="slot" value="lorom" /> | |
| 34676 | 37900 | <dataarea name="rom" size="2097152"> |
| 34677 | 37901 | <rom name="death and return of superman, the (usa).sfc" size="2097152" crc="a567957c" sha1="a509da90497b3c29c8763fdefd4808e55ea4b35c" offset="0x000000" /> |
| 34678 | 37902 | </dataarea> |
| r21545 | r21546 | |
| 34688 | 37912 | <info name="alt_title" value="デスブレイド" /> |
| 34689 | 37913 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34690 | 37914 | <part name="cart" interface="snes_cart"> |
| 37915 | ||
| 37916 | <feature name="slot" value="lorom" /> | |
| 34691 | 37917 | <dataarea name="rom" size="1572864"> |
| 34692 | 37918 | <rom name="death brade (japan).sfc" size="1572864" crc="ca46fd3b" sha1="a31a7fa55cab4e0e63f2fea9054fcbfc513a619b" offset="0x000000" /> |
| 34693 | 37919 | </dataarea> |
| r21545 | r21546 | |
| 34702 | 37928 | <info name="release" value="19950707" /> |
| 34703 | 37929 | <info name="alt_title" value="できたてハイスクール" /> |
| 34704 | 37930 | <part name="cart" interface="snes_cart"> |
| 37931 | ||
| 37932 | <feature name="slot" value="lorom" /> | |
| 34705 | 37933 | <dataarea name="rom" size="2097152"> |
| 34706 | 37934 | <rom name="dekitate high school (japan).sfc" size="2097152" crc="5a2b7dac" sha1="6a8e4f53511118f384b1c12ca267c00222d7ab7c" offset="0x000000" /> |
| 34707 | 37935 | </dataarea> |
| r21545 | r21546 | |
| 34715 | 37943 | <year>1995</year> |
| 34716 | 37944 | <publisher>Acclaim Entertainment</publisher> |
| 34717 | 37945 | <part name="cart" interface="snes_cart"> |
| 37946 | ||
| 37947 | <feature name="slot" value="lorom" /> | |
| 34718 | 37948 | <dataarea name="rom" size="2097152"> |
| 34719 | 37949 | <rom name="demolition man (europe).sfc" size="2097152" crc="31a1b85a" sha1="c9faf420d93d4c7ec4872b26a31b15b9e182b330" offset="0x000000" /> |
| 34720 | 37950 | </dataarea> |
| r21545 | r21546 | |
| 34727 | 37957 | <publisher>Acclaim Entertainment</publisher> |
| 34728 | 37958 | <info name="release" value="199508xx" /> |
| 34729 | 37959 | <part name="cart" interface="snes_cart"> |
| 37960 | ||
| 37961 | <feature name="slot" value="lorom" /> | |
| 34730 | 37962 | <dataarea name="rom" size="2097152"> |
| 34731 | 37963 | <rom name="demolition man (usa).sfc" size="2097152" crc="8afe2f91" sha1="b55fac176b1dc86d7aca2e080086184349960c16" offset="0x000000" /> |
| 34732 | 37964 | </dataarea> |
| r21545 | r21546 | |
| 34741 | 37973 | <info name="release" value="19941021" /> |
| 34742 | 37974 | <info name="alt_title" value="デモンズ・ブレイゾン 魔界村 紋章編" /> |
| 34743 | 37975 | <part name="cart" interface="snes_cart"> |
| 37976 | ||
| 37977 | <feature name="slot" value="lorom" /> | |
| 34744 | 37978 | <dataarea name="rom" size="2097152"> |
| 34745 | 37979 | <rom name="demon's blazon - makaimura monshou hen (japan).sfc" size="2097152" crc="287f10cc" sha1="a6dc126a1da593d900b33eb74cf33403075e9525" offset="0x000000" /> |
| 34746 | 37980 | </dataarea> |
| r21545 | r21546 | |
| 34752 | 37986 | <year>1994</year> |
| 34753 | 37987 | <publisher>Capcom</publisher> |
| 34754 | 37988 | <part name="cart" interface="snes_cart"> |
| 37989 | ||
| 37990 | <feature name="slot" value="lorom" /> | |
| 34755 | 37991 | <dataarea name="rom" size="2097152"> |
| 34756 | 37992 | <rom name="demon's crest (europe).sfc" size="2097152" crc="c8386172" sha1="cef1f33ca5a4768bae08e473c63cd58c424c19a2" offset="0x000000" /> |
| 34757 | 37993 | </dataarea> |
| r21545 | r21546 | |
| 34764 | 38000 | <publisher>Capcom</publisher> |
| 34765 | 38001 | <info name="release" value="199411xx" /> |
| 34766 | 38002 | <part name="cart" interface="snes_cart"> |
| 38003 | ||
| 38004 | <feature name="slot" value="lorom" /> | |
| 34767 | 38005 | <dataarea name="rom" size="2097152"> |
| 34768 | 38006 | <rom name="demon's crest (usa).sfc" size="2097152" crc="e8236ad2" sha1="743d60ee1536b0c7c24dbb8ba39d14ed5937c0d5" offset="0x000000" /> |
| 34769 | 38007 | </dataarea> |
| r21545 | r21546 | |
| 34775 | 38013 | <year>1994</year> |
| 34776 | 38014 | <publisher>Ocean</publisher> |
| 34777 | 38015 | <part name="cart" interface="snes_cart"> |
| 38016 | ||
| 38017 | <feature name="slot" value="lorom" /> | |
| 34778 | 38018 | <dataarea name="rom" size="1048576"> |
| 34779 | 38019 | <rom name="dennis (europe).sfc" size="1048576" crc="ccda70a8" sha1="78d2408818b3a953eb9ffe3c5813b6b5c370ada0" offset="0x000000" /> |
| 34780 | 38020 | </dataarea> |
| r21545 | r21546 | |
| 34788 | 38028 | <info name="release" value="199312xx" /> |
| 34789 | 38029 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34790 | 38030 | <part name="cart" interface="snes_cart"> |
| 38031 | ||
| 38032 | <feature name="slot" value="lorom" /> | |
| 34791 | 38033 | <dataarea name="rom" size="1048576"> |
| 34792 | 38034 | <rom name="dennis the menace (usa).sfc" size="1048576" crc="8ee7faa5" sha1="e7403a677e26134f4d5c1d10908d5f138e9c2b44" offset="0x000000" /> |
| 34793 | 38035 | </dataarea> |
| r21545 | r21546 | |
| 34799 | 38041 | <year>1993</year> |
| 34800 | 38042 | <publisher>Quest</publisher> |
| 34801 | 38043 | <part name="cart" interface="snes_cart"> |
| 38044 | ||
| 38045 | <feature name="slot" value="lorom" /> | |
| 34802 | 38046 | <dataarea name="rom" size="2097152"> |
| 34803 | 38047 | <rom name="densetsu no ogre battle - the march of the black queen (japan) (np).sfc" size="2097152" crc="3e50c7c2" sha1="cccd0f07f13b12c760a41f082571be8ffabf80d1" offset="0x000000" /> |
| 34804 | 38048 | </dataarea> |
| r21545 | r21546 | |
| 34816 | 38060 | <info name="release" value="19930312" /> |
| 34817 | 38061 | <info name="alt_title" value="伝説のオウガバトル" /> |
| 34818 | 38062 | <part name="cart" interface="snes_cart"> |
| 38063 | ||
| 38064 | <feature name="slot" value="lorom" /> | |
| 34819 | 38065 | <dataarea name="rom" size="1572864"> |
| 34820 | 38066 | <rom name="densetsu no ogre battle - the march of the black queen (japan).sfc" size="1572864" crc="65cd17e3" sha1="f1bb96d66558ee754f9224fea3c6de5d91fba869" offset="0x000000" /> |
| 34821 | 38067 | </dataarea> |
| r21545 | r21546 | |
| 34833 | 38079 | <info name="alt_title" value="ダービージョッキー2" /> |
| 34834 | 38080 | <part name="cart" interface="snes_cart"> |
| 34835 | 38081 | <feature name="enhancement" value="SA1" /> |
| 38082 | ||
| 38083 | <feature name="slot" value="lorom_sa1" /> | |
| 34836 | 38084 | <dataarea name="rom" size="1572864"> |
| 34837 | 38085 | <rom name="derby jockey 2 (japan).sfc" size="1572864" crc="32129967" sha1="ed4c6764b8b9dc2ac4d3584d0ba9f4d66f5e12e0" offset="0x000000" /> |
| 34838 | 38086 | </dataarea> |
| r21545 | r21546 | |
| 34849 | 38097 | <info name="release" value="19980825 / 19980901" /> |
| 34850 | 38098 | <info name="alt_title" value="ダービースタリオン98" /> |
| 34851 | 38099 | <part name="cart" interface="snes_cart"> |
| 38100 | ||
| 38101 | <feature name="slot" value="lorom" /> | |
| 34852 | 38102 | <dataarea name="rom" size="3145728"> |
| 34853 | 38103 | <rom name="derby stallion 98 (japan) (np).sfc" size="3145728" crc="525ffb26" sha1="35876222114f49cd335a375c6ac99123fb652694" offset="0x000000" /> |
| 34854 | 38104 | </dataarea> |
| r21545 | r21546 | |
| 34865 | 38115 | <info name="release" value="19950120" /> |
| 34866 | 38116 | <info name="alt_title" value="ダービースタリオンIII" /> |
| 34867 | 38117 | <part name="cart" interface="snes_cart"> |
| 38118 | ||
| 38119 | <feature name="slot" value="lorom" /> | |
| 34868 | 38120 | <dataarea name="rom" size="3145728"> |
| 34869 | 38121 | <rom name="derby stallion iii (japan) (rev 1).sfc" size="3145728" crc="7e97ae6a" sha1="b279db5d9631069ab72b2dabf48824f9462568c8" offset="0x000000" /> |
| 34870 | 38122 | </dataarea> |
| r21545 | r21546 | |
| 34878 | 38130 | <year>1995</year> |
| 34879 | 38131 | <publisher>Seta</publisher> |
| 34880 | 38132 | <part name="cart" interface="snes_cart"> |
| 38133 | ||
| 38134 | <feature name="slot" value="lorom" /> | |
| 34881 | 38135 | <dataarea name="rom" size="1048576"> |
| 34882 | 38136 | <rom name="desert fighter (europe) (beta).sfc" size="1048576" crc="cd989804" sha1="31946d4381464f4fd9264b33fcf57c5ca29b132d" offset="0x000000" /> |
| 34883 | 38137 | </dataarea> |
| r21545 | r21546 | |
| 34891 | 38145 | <year>1995</year> |
| 34892 | 38146 | <publisher>Seta</publisher> |
| 34893 | 38147 | <part name="cart" interface="snes_cart"> |
| 38148 | ||
| 38149 | <feature name="slot" value="lorom" /> | |
| 34894 | 38150 | <dataarea name="rom" size="1048576"> |
| 34895 | 38151 | <rom name="desert fighter (europe).sfc" size="1048576" crc="b78bae0e" sha1="b45f33708e50f028aab7291e8d684c617debc93c" offset="0x000000" /> |
| 34896 | 38152 | </dataarea> |
| r21545 | r21546 | |
| 34907 | 38163 | <info name="release" value="19940218" /> |
| 34908 | 38164 | <info name="alt_title" value="デザートファイター:砂の嵐作戦" /> |
| 34909 | 38165 | <part name="cart" interface="snes_cart"> |
| 38166 | ||
| 38167 | <feature name="slot" value="lorom" /> | |
| 34910 | 38168 | <dataarea name="rom" size="1048576"> |
| 34911 | 38169 | <rom name="desert fighter - suna no arashi sakusen (japan).sfc" size="1048576" crc="9edc5a7d" sha1="61ee3ae9c6b6cd4325dc59c42519282ec77d9c60" offset="0x000000" /> |
| 34912 | 38170 | </dataarea> |
| r21545 | r21546 | |
| 34920 | 38178 | <year>1992</year> |
| 34921 | 38179 | <publisher>Electronic Arts</publisher> |
| 34922 | 38180 | <part name="cart" interface="snes_cart"> |
| 38181 | ||
| 38182 | <feature name="slot" value="lorom" /> | |
| 34923 | 38183 | <dataarea name="rom" size="1048576"> |
| 34924 | 38184 | <rom name="desert strike - return to the gulf (europe).sfc" size="1048576" crc="8eed024a" sha1="4333d7bdbde75857835d9cd242454f479c6c1600" offset="0x000000" /> |
| 34925 | 38185 | </dataarea> |
| r21545 | r21546 | |
| 34932 | 38192 | <publisher>Electronic Arts</publisher> |
| 34933 | 38193 | <info name="release" value="199210xx" /> |
| 34934 | 38194 | <part name="cart" interface="snes_cart"> |
| 38195 | ||
| 38196 | <feature name="slot" value="lorom" /> | |
| 34935 | 38197 | <dataarea name="rom" size="1048576"> |
| 34936 | 38198 | <rom name="desert strike - return to the gulf (usa).sfc" size="1048576" crc="4ce26787" sha1="b9f0e2cfac1ee39140cd495c8e9de99bc6d9d3e1" offset="0x000000" /> |
| 34937 | 38199 | </dataarea> |
| r21545 | r21546 | |
| 34946 | 38208 | <info name="release" value="19930326" /> |
| 34947 | 38209 | <info name="alt_title" value="デザートストライク 湾岸作戦" /> |
| 34948 | 38210 | <part name="cart" interface="snes_cart"> |
| 38211 | ||
| 38212 | <feature name="slot" value="lorom" /> | |
| 34949 | 38213 | <dataarea name="rom" size="1048576"> |
| 34950 | 38214 | <rom name="desert strike - wangan sakusen (japan).sfc" size="1048576" crc="fcdf43ca" sha1="6eb8a406d97ec596234ce53e9698d8af3765807f" offset="0x000000" /> |
| 34951 | 38215 | </dataarea> |
| r21545 | r21546 | |
| 34960 | 38224 | <info name="release" value="19930827" /> |
| 34961 | 38225 | <info name="alt_title" value="デストラクティブ" /> |
| 34962 | 38226 | <part name="cart" interface="snes_cart"> |
| 38227 | ||
| 38228 | <feature name="slot" value="lorom" /> | |
| 34963 | 38229 | <dataarea name="rom" size="524288"> |
| 34964 | 38230 | <rom name="destructive (japan).sfc" size="524288" crc="21b47e62" sha1="6ad488b27eea331cd3b710c708aa6ecb285c0d4f" offset="0x000000" /> |
| 34965 | 38231 | </dataarea> |
| r21545 | r21546 | |
| 34975 | 38241 | <info name="alt_title" value="だるま道場" /> |
| 34976 | 38242 | <sharedfeat name="compatibility" value="NTSC"/> |
| 34977 | 38243 | <part name="cart" interface="snes_cart"> |
| 38244 | ||
| 38245 | <feature name="slot" value="lorom" /> | |
| 34978 | 38246 | <dataarea name="rom" size="1048576"> |
| 34979 | 38247 | <rom name="dharma doujou (japan).sfc" size="1048576" crc="b800a4fb" sha1="506231c0b1fa34b3ac47880363c7cd4656ea4c42" offset="0x000000" /> |
| 34980 | 38248 | </dataarea> |
| r21545 | r21546 | |
| 34987 | 38255 | <publisher>Hudson</publisher> |
| 34988 | 38256 | <info name="release" value="199312xx" /> |
| 34989 | 38257 | <part name="cart" interface="snes_cart"> |
| 38258 | ||
| 38259 | <feature name="slot" value="lorom" /> | |
| 34990 | 38260 | <dataarea name="rom" size="1048576"> |
| 34991 | 38261 | <rom name="dig & spike volleyball (usa).sfc" size="1048576" crc="954340f8" sha1="f2554eeee0a5506b6752bfa13cc57ea3bc059544" offset="0x000000" /> |
| 34992 | 38262 | </dataarea> |
| r21545 | r21546 | |
| 35003 | 38273 | <info name="release" value="19911220" /> |
| 35004 | 38274 | <info name="alt_title" value="ディメンションフォース" /> |
| 35005 | 38275 | <part name="cart" interface="snes_cart"> |
| 38276 | ||
| 38277 | <feature name="slot" value="lorom" /> | |
| 35006 | 38278 | <dataarea name="rom" size="1048576"> |
| 35007 | 38279 | <rom name="dimension-force (japan).sfc" size="1048576" crc="3d0d6fdc" sha1="383c26494bcdcac152ec31d806e7c4e72425748a" offset="0x000000" /> |
| 35008 | 38280 | </dataarea> |
| r21545 | r21546 | |
| 35014 | 38286 | <year>1992</year> |
| 35015 | 38287 | <publisher>Irem</publisher> |
| 35016 | 38288 | <part name="cart" interface="snes_cart"> |
| 38289 | ||
| 38290 | <feature name="slot" value="lorom" /> | |
| 35017 | 38291 | <dataarea name="rom" size="1048576"> |
| 35018 | 38292 | <rom name="dino city (europe).sfc" size="1048576" crc="c495320a" sha1="881e37862a065e048f47c115dba078c3f9d5c023" offset="0x000000" /> |
| 35019 | 38293 | </dataarea> |
| r21545 | r21546 | |
| 35026 | 38300 | <publisher>Irem</publisher> |
| 35027 | 38301 | <info name="release" value="199209xx" /> |
| 35028 | 38302 | <part name="cart" interface="snes_cart"> |
| 38303 | ||
| 38304 | <feature name="slot" value="lorom" /> | |
| 35029 | 38305 | <dataarea name="rom" size="1048576"> |
| 35030 | 38306 | <rom name="dino city (usa).sfc" size="1048576" crc="94152717" sha1="817eac2e9e84f3a2f7263fdee12d09181f14ac09" offset="0x000000" /> |
| 35031 | 38307 | </dataarea> |
| r21545 | r21546 | |
| 35037 | 38313 | <year>1994</year> |
| 35038 | 38314 | <publisher>Virgin Interactive</publisher> |
| 35039 | 38315 | <part name="cart" interface="snes_cart"> |
| 38316 | ||
| 38317 | <feature name="slot" value="lorom" /> | |
| 35040 | 38318 | <dataarea name="rom" size="1048576"> |
| 35041 | 38319 | <rom name="dino dini's soccer! (europe) (en,fr,de).sfc" size="1048576" crc="dbf4a8ab" sha1="80c4f508801146cd5cc4848bd5d1ed54456b937e" offset="0x000000" /> |
| 35042 | 38320 | </dataarea> |
| r21545 | r21546 | |
| 35053 | 38331 | <info name="release" value="19920717" /> |
| 35054 | 38332 | <info name="alt_title" value="ダイナウォーズ 恐竜王国への大冒険" /> |
| 35055 | 38333 | <part name="cart" interface="snes_cart"> |
| 38334 | ||
| 38335 | <feature name="slot" value="lorom" /> | |
| 35056 | 38336 | <dataarea name="rom" size="1048576"> |
| 35057 | 38337 | <rom name="dinowars - kyouryuu oukoku e no daibouken (japan).sfc" size="1048576" crc="6c043bf1" sha1="f6ffb06f27e92ad66cfc35a310065abf3f299532" offset="0x000000" /> |
| 35058 | 38338 | </dataarea> |
| r21545 | r21546 | |
| 35066 | 38346 | <info name="release" value="199511xx" /> |
| 35067 | 38347 | <part name="cart" interface="snes_cart"> |
| 35068 | 38348 | <feature name="enhancement" value="GSU-1" /> |
| 38349 | ||
| 38350 | <feature name="slot" value="lorom_sfx" /> | |
| 35069 | 38351 | <dataarea name="rom" size="524288"> |
| 35070 | 38352 | <rom name="dirt trax fx (usa).sfc" size="524288" crc="61a86c7f" sha1="d36e3e949c46939029c82b19b2f99a098efdab76" offset="0x000000" /> |
| 35071 | 38353 | </dataarea> |
| r21545 | r21546 | |
| 35082 | 38364 | <info name="release" value="19960322" /> |
| 35083 | 38365 | <info name="alt_title" value="ドレミファンタジー ミロンのドキド キ大冒険" /> |
| 35084 | 38366 | <part name="cart" interface="snes_cart"> |
| 38367 | ||
| 38368 | <feature name="slot" value="hirom" /> | |
| 35085 | 38369 | <dataarea name="rom" size="2097152"> |
| 35086 | 38370 | <rom name="do-re-mi fantasy - milon no dokidoki daibouken (japan).sfc" size="2097152" crc="9f2c2633" sha1="e56ebbcd0a2db7bf58e2209adb96f589f0100702" offset="0x000000" /> |
| 35087 | 38371 | </dataarea> |
| r21545 | r21546 | |
| 35096 | 38380 | <info name="release" value="19940708" /> |
| 35097 | 38381 | <info name="alt_title" value="ドラッキーのAりーぐさっかー" /> |
| 35098 | 38382 | <part name="cart" interface="snes_cart"> |
| 38383 | ||
| 38384 | <feature name="slot" value="lorom" /> | |
| 35099 | 38385 | <dataarea name="rom" size="1572864"> |
| 35100 | 38386 | <rom name="dolucky no a.league soccer (japan).sfc" size="1572864" crc="0bc19d72" sha1="e5548e359558ff6c044fd7f4f52c85434ae45c21" offset="0x000000" /> |
| 35101 | 38387 | </dataarea> |
| r21545 | r21546 | |
| 35110 | 38396 | <info name="release" value="19941028" /> |
| 35111 | 38397 | <info name="alt_title" value="ドラッキーのパズルツアー'94" /> |
| 35112 | 38398 | <part name="cart" interface="snes_cart"> |
| 38399 | ||
| 38400 | <feature name="slot" value="lorom" /> | |
| 35113 | 38401 | <dataarea name="rom" size="524288"> |
| 35114 | 38402 | <rom name="dolucky no puzzle tour '94 (japan).sfc" size="524288" crc="f716c24d" sha1="957d8484d4e114c1c5777dca83d875c59edd898f" offset="0x000000" /> |
| 35115 | 38403 | </dataarea> |
| r21545 | r21546 | |
| 35124 | 38412 | <info name="release" value="19950811" /> |
| 35125 | 38413 | <info name="alt_title" value="ドナルドダックの魔法のぼうし" /> |
| 35126 | 38414 | <part name="cart" interface="snes_cart"> |
| 38415 | ||
| 38416 | <feature name="slot" value="hirom" /> | |
| 35127 | 38417 | <dataarea name="rom" size="1572864"> |
| 35128 | 38418 | <rom name="donald duck no mahou no boushi (japan).sfc" size="1572864" crc="1ed5d2fa" sha1="e5a2e94af71509dee1e8ed86a80c7fec9c40d51f" offset="0x000000" /> |
| 35129 | 38419 | </dataarea> |
| r21545 | r21546 | |
| 35139 | 38429 | <info name="alt_title" value="ドナルドダックのマウイマラート" /> |
| 35140 | 38430 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35141 | 38431 | <part name="cart" interface="snes_cart"> |
| 38432 | ||
| 38433 | <feature name="slot" value="lorom" /> | |
| 35142 | 38434 | <dataarea name="rom" size="3145728"> |
| 35143 | 38435 | <rom name="donald duck no maui mallard (japan).sfc" size="3145728" crc="d60a27a6" sha1="88c446523528cdc3b3350378eafa541a599c986e" offset="0x000000" /> |
| 35144 | 38436 | </dataarea> |
| r21545 | r21546 | |
| 35151 | 38443 | <publisher>Nintendo</publisher> |
| 35152 | 38444 | <sharedfeat name="compatibility" value="PAL"/> |
| 35153 | 38445 | <part name="cart" interface="snes_cart"> |
| 38446 | ||
| 38447 | <feature name="slot" value="lorom" /> | |
| 35154 | 38448 | <dataarea name="rom" size="3145728"> |
| 35155 | 38449 | <rom name="donald in maui mallard (europe).sfc" size="3145728" crc="d56c21a1" sha1="9ac9cd41eb96fd9f405200ae12698dcc63bb156a" offset="0x000000" /> |
| 35156 | 38450 | </dataarea> |
| r21545 | r21546 | |
| 35164 | 38458 | <info name="release" value="199411xx" /> |
| 35165 | 38459 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35166 | 38460 | <part name="cart" interface="snes_cart"> |
| 38461 | ||
| 38462 | <feature name="slot" value="hirom" /> | |
| 35167 | 38463 | <dataarea name="rom" size="4194304"> |
| 35168 | 38464 | <rom name="donkey kong country (usa).sfc" size="4194304" crc="c946dca0" sha1="0fcee45d9af5d2f62995ed4b04d22146b906c86b" offset="0x000000" /> |
| 35169 | 38465 | </dataarea> |
| r21545 | r21546 | |
| 35178 | 38474 | <publisher>Nintendo</publisher> |
| 35179 | 38475 | <sharedfeat name="compatibility" value="PAL"/> |
| 35180 | 38476 | <part name="cart" interface="snes_cart"> |
| 38477 | ||
| 38478 | <feature name="slot" value="hirom" /> | |
| 35181 | 38479 | <dataarea name="rom" size="4194304"> |
| 35182 | 38480 | <rom name="donkey kong country 2 - diddy's kong quest (germany) (en,de).sfc" size="4194304" crc="4c794a4d" sha1="dc6a271ad77b49e59cb86cba0b7799845d7347a0" offset="0x000000" /> |
| 35183 | 38481 | </dataarea> |
| r21545 | r21546 | |
| 35193 | 38491 | <info name="release" value="199512xx" /> |
| 35194 | 38492 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35195 | 38493 | <part name="cart" interface="snes_cart"> |
| 38494 | ||
| 38495 | <feature name="slot" value="hirom" /> | |
| 35196 | 38496 | <dataarea name="rom" size="4194304"> |
| 35197 | 38497 | <rom name="donkey kong country 2 - diddy's kong quest (usa) (en,fr) (rev 1).sfc" size="4194304" crc="4e2d90f4" sha1="69d0f91bfd05837b44023e33a6699aa28fca19cb" offset="0x000000" /> |
| 35198 | 38498 | </dataarea> |
| r21545 | r21546 | |
| 35210 | 38510 | <info name="alt_title" value="ドゥーム" /> |
| 35211 | 38511 | <part name="cart" interface="snes_cart"> |
| 35212 | 38512 | <feature name="enhancement" value="GSU-2" /> |
| 38513 | ||
| 38514 | <feature name="slot" value="lorom_sfx" /> | |
| 35213 | 38515 | <dataarea name="rom" size="2097152"> |
| 35214 | 38516 | <rom name="doom (japan).sfc" size="2097152" crc="e5d722b2" sha1="78d3f9346dc861f216063e2259ed17a9dbd85087" offset="0x000000" /> |
| 35215 | 38517 | </dataarea> |
| r21545 | r21546 | |
| 35225 | 38527 | <info name="release" value="199509xx" /> |
| 35226 | 38528 | <part name="cart" interface="snes_cart"> |
| 35227 | 38529 | <feature name="enhancement" value="GSU-2" /> |
| 38530 | ||
| 38531 | <feature name="slot" value="lorom_sfx" /> | |
| 35228 | 38532 | <dataarea name="rom" size="2097152"> |
| 35229 | 38533 | <rom name="doom (usa).sfc" size="2097152" crc="09e85ea6" sha1="736b9b994f506de0893ceb181f942739da089b05" offset="0x000000" /> |
| 35230 | 38534 | </dataarea> |
| r21545 | r21546 | |
| 35239 | 38543 | <publisher>Playmates Interactive</publisher> |
| 35240 | 38544 | <info name="release" value="199511xx" /> |
| 35241 | 38545 | <part name="cart" interface="snes_cart"> |
| 38546 | ||
| 38547 | <feature name="slot" value="lorom" /> | |
| 35242 | 38548 | <dataarea name="rom" size="2097152"> |
| 35243 | 38549 | <rom name="doom troopers (usa).sfc" size="2097152" crc="1889feef" sha1="91c77b182fea60339260a58f38a27595e6dd6089" offset="0x000000" /> |
| 35244 | 38550 | </dataarea> |
| r21545 | r21546 | |
| 35251 | 38557 | <year>199?</year> |
| 35252 | 38558 | <publisher>Norse</publisher> <!-- cancelled --> |
| 35253 | 38559 | <part name="cart" interface="snes_cart"> |
| 38560 | ||
| 38561 | <feature name="slot" value="lorom" /> | |
| 35254 | 38562 | <dataarea name="rom" size="1472859"> |
| 35255 | 38563 | <rom name="woodst.bin" size="1472859" crc="139f8c1e" sha1="f2d572920b76dad3e2056736fbb6a7251d297dff" offset="0x000000" /> |
| 35256 | 38564 | </dataarea> |
| r21545 | r21546 | |
| 35263 | 38571 | <year>199?</year> |
| 35264 | 38572 | <publisher>Norse</publisher> <!-- cancelled --> |
| 35265 | 38573 | <part name="cart" interface="snes_cart"> |
| 38574 | ||
| 38575 | <feature name="slot" value="lorom" /> | |
| 35266 | 38576 | <dataarea name="rom" size="1453721"> |
| 35267 | 38577 | <rom name="minest.bin" size="1453721" crc="7ed703bb" sha1="a1fb1c5bf3daa71e1540406851b0f76994a15f96" offset="0x000000" /> |
| 35268 | 38578 | </dataarea> |
| r21545 | r21546 | |
| 35275 | 38585 | <year>199?</year> |
| 35276 | 38586 | <publisher>Norse</publisher> <!-- cancelled --> |
| 35277 | 38587 | <part name="cart" interface="snes_cart"> |
| 38588 | ||
| 38589 | <feature name="slot" value="lorom" /> | |
| 35278 | 38590 | <dataarea name="rom" size="1453732"> |
| 35279 | 38591 | <rom name="palacet.bin" size="1453732" crc="59e235ba" sha1="60fb80dbbeb0f36fe018f341163ef922d8a2aca6" offset="0x000000" /> |
| 35280 | 38592 | </dataarea> |
| r21545 | r21546 | |
| 35289 | 38601 | <info name="release" value="19941216" /> |
| 35290 | 38602 | <info name="alt_title" value="どっすん!岩石バトル" /> |
| 35291 | 38603 | <part name="cart" interface="snes_cart"> |
| 38604 | ||
| 38605 | <feature name="slot" value="lorom" /> | |
| 35292 | 38606 | <dataarea name="rom" size="1048576"> |
| 35293 | 38607 | <rom name="dossun! ganseki battle (japan).sfc" size="1048576" crc="1aa002d6" sha1="544201ff2f0ad09a14142d3d7c02a2e07cfc7c5a" offset="0x000000" /> |
| 35294 | 38608 | </dataarea> |
| r21545 | r21546 | |
| 35300 | 38614 | <year>1994</year> |
| 35301 | 38615 | <publisher>Tradewest</publisher> |
| 35302 | 38616 | <part name="cart" interface="snes_cart"> |
| 38617 | ||
| 38618 | <feature name="slot" value="hirom" /> | |
| 35303 | 38619 | <dataarea name="rom" size="2097152"> |
| 35304 | 38620 | <rom name="double dragon v - the shadow falls (europe).sfc" size="2097152" crc="e80f6b65" sha1="09847567edd0b09c6f401d830107a60e26ac8fb5" offset="0x000000" /> |
| 35305 | 38621 | </dataarea> |
| r21545 | r21546 | |
| 35314 | 38630 | <info name="release" value="19971201" /> |
| 35315 | 38631 | <info name="alt_title" value="同級生2" /> |
| 35316 | 38632 | <part name="cart" interface="snes_cart"> |
| 38633 | ||
| 38634 | <feature name="slot" value="lorom" /> | |
| 35317 | 38635 | <dataarea name="rom" size="4194304"> |
| 35318 | 38636 | <rom name="doukyuusei 2 (japan) (np).sfc" size="4194304" crc="ca1eb161" sha1="f678235b611087a101c10cd6f70f7127f2293a6b" offset="0x000000" /> |
| 35319 | 38637 | </dataarea> |
| r21545 | r21546 | |
| 35330 | 38648 | <info name="release" value="19940930" /> |
| 35331 | 38649 | <info name="alt_title" value="ダウン・ザ・ワールド" /> |
| 35332 | 38650 | <part name="cart" interface="snes_cart"> |
| 38651 | ||
| 38652 | <feature name="slot" value="hirom" /> | |
| 35333 | 38653 | <dataarea name="rom" size="2097152"> |
| 35334 | 38654 | <rom name="down the world - mervil's ambition (japan).sfc" size="2097152" crc="f1110fad" sha1="75df5e4e2d577703eededdeba2314924dae32263" offset="0x000000" /> |
| 35335 | 38655 | </dataarea> |
| r21545 | r21546 | |
| 35346 | 38666 | <info name="release" value="19931217" /> |
| 35347 | 38667 | <info name="alt_title" value="ダウンタウン熱血べーすぼーる物語 ~ 野球で勝負だ!くにおくん" /> |
| 35348 | 38668 | <part name="cart" interface="snes_cart"> |
| 38669 | ||
| 38670 | <feature name="slot" value="lorom" /> | |
| 35349 | 38671 | <dataarea name="rom" size="1572864"> |
| 35350 | 38672 | <rom name="downtown nekketsu baseball monogatari - yakyuu de shoubu da! kunio-kun (japan).sfc" size="1572864" crc="e71b7c31" sha1="f7b89946f22f1e8b6c4ee8094f0c212ab78ed22a" offset="0x000000" /> |
| 35351 | 38673 | </dataarea> |
| r21545 | r21546 | |
| 35363 | 38685 | <info name="alt_title" value="ドクターマリオ" /> |
| 35364 | 38686 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35365 | 38687 | <part name="cart" interface="snes_cart"> |
| 38688 | ||
| 38689 | <feature name="slot" value="lorom" /> | |
| 35366 | 38690 | <dataarea name="rom" size="524288"> |
| 35367 | 38691 | <rom name="dr. mario (japan) (np).sfc" size="524288" crc="63ce5132" sha1="f7f11aed2a12824b4093c04cddf1bff65635d4e7" offset="0x000000" /> |
| 35368 | 38692 | </dataarea> |
| r21545 | r21546 | |
| 35377 | 38701 | <publisher>Acclaim Entertainment</publisher> |
| 35378 | 38702 | <sharedfeat name="compatibility" value="PAL"/> |
| 35379 | 38703 | <part name="cart" interface="snes_cart"> |
| 38704 | ||
| 38705 | <feature name="slot" value="hirom" /> | |
| 35380 | 38706 | <dataarea name="rom" size="2097152"> |
| 35381 | 38707 | <rom name="dragon - the bruce lee story (europe).sfc" size="2097152" crc="038212ea" sha1="6160cf6801c756a5c20093c5c20490241030fce8" offset="0x000000" /> |
| 35382 | 38708 | </dataarea> |
| r21545 | r21546 | |
| 35389 | 38715 | <publisher>Bandai?</publisher> |
| 35390 | 38716 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35391 | 38717 | <part name="cart" interface="snes_cart"> |
| 38718 | ||
| 38719 | <feature name="slot" value="lorom" /> | |
| 35392 | 38720 | <dataarea name="rom" size="2097152"> |
| 35393 | 38721 | <rom name="dragon ball z - chomutujeon (korea).sfc" size="2097152" crc="2bf7cd65" sha1="f13e1e4cb439f03d76590628a6590d705c709c4e" offset="0x000000" /> |
| 35394 | 38722 | </dataarea> |
| r21545 | r21546 | |
| 35401 | 38729 | <publisher>Bandai</publisher> |
| 35402 | 38730 | <part name="cart" interface="snes_cart"> |
| 35403 | 38731 | <feature name="enhancement" value="SA1" /> |
| 38732 | ||
| 38733 | <feature name="slot" value="lorom_sa1" /> | |
| 35404 | 38734 | <dataarea name="rom" size="3145728"> |
| 35405 | 38735 | <rom name="dragon ball z - hyper dimension (france).sfc" size="3145728" crc="a6dc166b" sha1="bf132f963c8e09e7f106b6106ce47bad593b2a48" offset="0x000000" /> |
| 35406 | 38736 | </dataarea> |
| r21545 | r21546 | |
| 35418 | 38748 | <info name="alt_title" value="ドラゴンボールZ ハイパーディメンション" /> |
| 35419 | 38749 | <part name="cart" interface="snes_cart"> |
| 35420 | 38750 | <feature name="enhancement" value="SA1" /> |
| 38751 | ||
| 38752 | <feature name="slot" value="lorom_sa1" /> | |
| 35421 | 38753 | <dataarea name="rom" size="3145728"> |
| 35422 | 38754 | <rom name="dragon ball z - hyper dimension (japan).sfc" size="3145728" crc="f4ab1557" sha1="f52ad7eae80ebd5d102adc554a7b1fbb76fff61b" offset="0x000000" /> |
| 35423 | 38755 | </dataarea> |
| r21545 | r21546 | |
| 35431 | 38763 | <year>1994</year> |
| 35432 | 38764 | <publisher>Bandai</publisher> |
| 35433 | 38765 | <part name="cart" interface="snes_cart"> |
| 38766 | ||
| 38767 | <feature name="slot" value="lorom" /> | |
| 35434 | 38768 | <dataarea name="rom" size="2097152"> |
| 35435 | 38769 | <rom name="dragon ball z - la legende saien (france).sfc" size="2097152" crc="8f24f886" sha1="827c071f8aebe93f80576800266f74f82ff9e41b" offset="0x000000" /> |
| 35436 | 38770 | </dataarea> |
| r21545 | r21546 | |
| 35442 | 38776 | <year>1993</year> |
| 35443 | 38777 | <publisher>Bandai</publisher> |
| 35444 | 38778 | <part name="cart" interface="snes_cart"> |
| 38779 | ||
| 38780 | <feature name="slot" value="lorom" /> | |
| 35445 | 38781 | <dataarea name="rom" size="2097152"> |
| 35446 | 38782 | <rom name="dragon ball z - super butouden (france).sfc" size="2097152" crc="ea7abad1" sha1="bda0ecd24cd529d178eba14db8a0453718262df2" offset="0x000000" /> |
| 35447 | 38783 | </dataarea> |
| r21545 | r21546 | |
| 35453 | 38789 | <year>1993</year> |
| 35454 | 38790 | <publisher>Bandai</publisher> |
| 35455 | 38791 | <part name="cart" interface="snes_cart"> |
| 38792 | ||
| 38793 | <feature name="slot" value="lorom" /> | |
| 35456 | 38794 | <dataarea name="rom" size="1048576"> |
| 35457 | 38795 | <rom name="dragon ball z - super butouden (japan) (sample).sfc" size="1048576" crc="d6e464b7" sha1="a1315a8d697383a13f4e8a0232279eed82f67c4a" offset="0x000000" /> |
| 35458 | 38796 | </dataarea> |
| r21545 | r21546 | |
| 35468 | 38806 | <info name="alt_title" value="ドラゴンボールZ 超武闘伝2" /> |
| 35469 | 38807 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35470 | 38808 | <part name="cart" interface="snes_cart"> |
| 38809 | ||
| 38810 | <feature name="slot" value="lorom" /> | |
| 35471 | 38811 | <dataarea name="rom" size="2097152"> |
| 35472 | 38812 | <rom name="dragon ball z - super butouden 2 (japan) (rev 1).sfc" size="2097152" crc="081fde86" sha1="98bed6d48dd69702b3fba546f09149622b25dc84" offset="0x000000" /> |
| 35473 | 38813 | </dataarea> |
| r21545 | r21546 | |
| 35483 | 38823 | <info name="alt_title" value="ドラゴンボールZ超悟空伝 覚醒 編" /> |
| 35484 | 38824 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35485 | 38825 | <part name="cart" interface="snes_cart"> |
| 38826 | ||
| 38827 | <feature name="slot" value="lorom" /> | |
| 35486 | 38828 | <dataarea name="rom" size="2097152"> |
| 35487 | 38829 | <rom name="dragon ball z - super gokuu den - kakusei hen (japan).sfc" size="2097152" crc="3172cd4f" sha1="3b7278a54f8d470dcb1bd92060d744380325f30b" offset="0x000000" /> |
| 35488 | 38830 | </dataarea> |
| r21545 | r21546 | |
| 35499 | 38841 | <info name="release" value="19920125" /> |
| 35500 | 38842 | <info name="alt_title" value="ドラゴンボールZ スーパー" /> |
| 35501 | 38843 | <part name="cart" interface="snes_cart"> |
| 38844 | ||
| 38845 | <feature name="slot" value="lorom" /> | |
| 35502 | 38846 | <dataarea name="rom" size="1048576"> |
| 35503 | 38847 | <rom name="dragon ball z - super saiya densetsu (japan) (rev 1).sfc" size="1048576" crc="ade7b968" sha1="6b5725765ddde078350ec61221ddb9bb252066a7" offset="0x000000" /> |
| 35504 | 38848 | </dataarea> |
| r21545 | r21546 | |
| 35512 | 38856 | <year>1994</year> |
| 35513 | 38857 | <publisher>Bandai</publisher> |
| 35514 | 38858 | <part name="cart" interface="snes_cart"> |
| 38859 | ||
| 38860 | <feature name="slot" value="lorom" /> | |
| 35515 | 38861 | <dataarea name="rom" size="2097152"> |
| 35516 | 38862 | <rom name="dragon ball z - ultime menace (france).sfc" size="2097152" crc="593eefe0" sha1="c45a0a775ae09c00a9dcadc14e94af8877d775a4" offset="0x000000" /> |
| 35517 | 38863 | </dataarea> |
| r21545 | r21546 | |
| 35523 | 38869 | <year>1992?</year> |
| 35524 | 38870 | <publisher>Epoch</publisher> |
| 35525 | 38871 | <part name="cart" interface="snes_cart"> |
| 38872 | ||
| 38873 | <feature name="slot" value="lorom" /> | |
| 35526 | 38874 | <dataarea name="rom" size="1048576"> |
| 35527 | 38875 | <rom name="dragon slayer - eiyuu densetsu (japan) (rev 1) (np).sfc" size="1048576" crc="9b306e64" sha1="0d0aac657895d4dc1e1ee29a99ceb3f258df40cc" offset="0x000000" /> |
| 35528 | 38876 | </dataarea> |
| r21545 | r21546 | |
| 35540 | 38888 | <info name="release" value="19930604" /> |
| 35541 | 38889 | <info name="alt_title" value="ドラゴンスレイヤー英雄伝説II" /> |
| 35542 | 38890 | <part name="cart" interface="snes_cart"> |
| 38891 | ||
| 38892 | <feature name="slot" value="hirom" /> | |
| 35543 | 38893 | <dataarea name="rom" size="1572864"> |
| 35544 | 38894 | <rom name="dragon slayer - eiyuu densetsu ii (japan).sfc" size="1572864" crc="f409c139" sha1="680539d0a7699adcf06eb0b1ba541603d3aa02e9" offset="0x000000" /> |
| 35545 | 38895 | </dataarea> |
| r21545 | r21546 | |
| 35554 | 38904 | <publisher>Kemco</publisher> |
| 35555 | 38905 | <info name="release" value="199411xx" /> |
| 35556 | 38906 | <part name="cart" interface="snes_cart"> |
| 38907 | ||
| 38908 | <feature name="slot" value="lorom" /> | |
| 35557 | 38909 | <dataarea name="rom" size="2097152"> |
| 35558 | 38910 | <rom name="dragon view (usa).sfc" size="2097152" crc="ab893412" sha1="b6c1bf197ac5b85b6a691f5942783e6bfccfeb48" offset="0x000000" /> |
| 35559 | 38911 | </dataarea> |
| r21545 | r21546 | |
| 35570 | 38922 | <info name="release" value="19930122" /> |
| 35571 | 38923 | <info name="alt_title" value="ドラゴンズ・アース" /> |
| 35572 | 38924 | <part name="cart" interface="snes_cart"> |
| 38925 | ||
| 38926 | <feature name="slot" value="lorom" /> | |
| 35573 | 38927 | <dataarea name="rom" size="1048576"> |
| 35574 | 38928 | <rom name="dragon's earth (japan).sfc" size="1048576" crc="81bf8718" sha1="db1b8b50268125069ea643208681ea6cf15f5eed" offset="0x000000" /> |
| 35575 | 38929 | </dataarea> |
| r21545 | r21546 | |
| 35581 | 38935 | <year>1993</year> |
| 35582 | 38936 | <publisher>Data East</publisher> |
| 35583 | 38937 | <part name="cart" interface="snes_cart"> |
| 38938 | ||
| 38939 | <feature name="slot" value="lorom" /> | |
| 35584 | 38940 | <dataarea name="rom" size="524288"> |
| 35585 | 38941 | <rom name="dragon's lair (europe) (beta).sfc" size="524288" crc="4aef99f3" sha1="d8b8826fd78dfa912ac1f6611cb149936d39cd05" offset="0x000000" /> |
| 35586 | 38942 | </dataarea> |
| r21545 | r21546 | |
| 35594 | 38950 | <year>1993</year> |
| 35595 | 38951 | <publisher>Data East</publisher> |
| 35596 | 38952 | <part name="cart" interface="snes_cart"> |
| 38953 | ||
| 38954 | <feature name="slot" value="lorom" /> | |
| 35597 | 38955 | <dataarea name="rom" size="524288"> |
| 35598 | 38956 | <rom name="dragon's lair (europe) (en,fr,de,es,it,nl,sv).sfc" size="524288" crc="304fdb92" sha1="1095c8435cc858e6a9bae3544afe5f04074c492d" offset="0x000000" /> |
| 35599 | 38957 | </dataarea> |
| r21545 | r21546 | |
| 35608 | 38966 | <info name="release" value="19930625" /> |
| 35609 | 38967 | <info name="alt_title" value="ドラゴンズ マジック" /> |
| 35610 | 38968 | <part name="cart" interface="snes_cart"> |
| 38969 | ||
| 38970 | <feature name="slot" value="lorom" /> | |
| 35611 | 38971 | <dataarea name="rom" size="524288"> |
| 35612 | 38972 | <rom name="dragon's magic (japan).sfc" size="524288" crc="0cf53835" sha1="f5271ac9111920c26378a27188c228d531415684" offset="0x000000" /> |
| 35613 | 38973 | </dataarea> |
| r21545 | r21546 | |
| 35619 | 38979 | <year>1991</year> |
| 35620 | 38980 | <publisher>Kemco</publisher> |
| 35621 | 38981 | <part name="cart" interface="snes_cart"> |
| 38982 | ||
| 38983 | <feature name="slot" value="lorom" /> | |
| 35622 | 38984 | <dataarea name="rom" size="1048576"> |
| 35623 | 38985 | <rom name="drakkhen (europe).sfc" size="1048576" crc="c6cd0bed" sha1="32e8d5c903379a59909a0f8ccd51555857fbd606" offset="0x000000" /> |
| 35624 | 38986 | </dataarea> |
| r21545 | r21546 | |
| 35632 | 38994 | <year>1991</year> |
| 35633 | 38995 | <publisher>Kemco</publisher> |
| 35634 | 38996 | <part name="cart" interface="snes_cart"> |
| 38997 | ||
| 38998 | <feature name="slot" value="lorom" /> | |
| 35635 | 38999 | <dataarea name="rom" size="1048576"> |
| 35636 | 39000 | <rom name="drakkhen (germany).sfc" size="1048576" crc="9d291732" sha1="f4b2caa1fd642cb2909be32f6176bf423d17f700" offset="0x000000" /> |
| 35637 | 39001 | </dataarea> |
| r21545 | r21546 | |
| 35648 | 39012 | <info name="release" value="19940415" /> |
| 35649 | 39013 | <info name="alt_title" value="夢迷宮 きぐるみ大冒険" /> |
| 35650 | 39014 | <part name="cart" interface="snes_cart"> |
| 39015 | ||
| 39016 | <feature name="slot" value="lorom" /> | |
| 35651 | 39017 | <dataarea name="rom" size="1048576"> |
| 35652 | 39018 | <rom name="dream maze - kigurumi daibouken (japan).sfc" size="1048576" crc="4b17a200" sha1="5a15a4d4ed812f814370209ac70c1ac933b66005" offset="0x000000" /> |
| 35653 | 39019 | </dataarea> |
| r21545 | r21546 | |
| 35661 | 39027 | <year>1994</year> |
| 35662 | 39028 | <publisher>Triffix</publisher> |
| 35663 | 39029 | <part name="cart" interface="snes_cart"> |
| 39030 | ||
| 39031 | <feature name="slot" value="lorom" /> | |
| 35664 | 39032 | <dataarea name="rom" size="524288"> |
| 35665 | 39033 | <rom name="dream tv (usa) (beta) (alt 1).sfc" size="524288" crc="78aea085" sha1="705aa6cbdaa78081d182302138d7212b900e5fb1" offset="0x000000" /> |
| 35666 | 39034 | </dataarea> |
| r21545 | r21546 | |
| 35672 | 39040 | <year>1994</year> |
| 35673 | 39041 | <publisher>Triffix</publisher> |
| 35674 | 39042 | <part name="cart" interface="snes_cart"> |
| 39043 | ||
| 39044 | <feature name="slot" value="lorom" /> | |
| 35675 | 39045 | <dataarea name="rom" size="524288"> |
| 35676 | 39046 | <rom name="dream tv (usa) (beta).sfc" size="524288" crc="c62f138e" sha1="e4f8cce3aeaee09aea050fa3d3e71493c16662d8" offset="0x000000" /> |
| 35677 | 39047 | </dataarea> |
| r21545 | r21546 | |
| 35684 | 39054 | <publisher>Triffix</publisher> |
| 35685 | 39055 | <info name="release" value="199404xx" /> |
| 35686 | 39056 | <part name="cart" interface="snes_cart"> |
| 39057 | ||
| 39058 | <feature name="slot" value="lorom" /> | |
| 35687 | 39059 | <dataarea name="rom" size="524288"> |
| 35688 | 39060 | <rom name="dream tv (usa).sfc" size="524288" crc="ab5a9e40" sha1="2ec99d3997677116caa8277544d4bb12d6f74b80" offset="0x000000" /> |
| 35689 | 39061 | </dataarea> |
| 35690 | 39062 | </part> |
| 35691 | 39063 | </software> |
| 35692 | 39064 | |
| 39065 | <software name="dsp1demo"> | |
| 39066 | <description>DSP-1 Tech Demo (USA)</description> | |
| 39067 | <year>199?</year> | |
| 39068 | <publisher>Nintendo</publisher> | |
| 39069 | <part name="cart" interface="snes_cart"> | |
| 39070 | ||
| 39071 | <feature name="slot" value="lorom_dsp" /> | |
| 39072 | <dataarea name="rom" size="131072"> | |
| 39073 | <rom name="dsp-1 tech demo.sfc" size="131072" crc="d18a00cd" sha1="48f17dbccca2c2bb8e332bb3b7d2563a512c13e3" offset="0x000000" /> | |
| 39074 | </dataarea> | |
| 39075 | <dataarea name="addon" size="10240"> | |
| 39076 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 39077 | </dataarea> | |
| 39078 | </part> | |
| 39079 | </software> | |
| 39080 | ||
| 35693 | 39081 | <software name="dualorbs"> |
| 35694 | 39082 | <description>Dual Orb - Seirei Tama Densetsu (Jpn)</description> |
| 35695 | 39083 | <year>1993</year> |
| r21545 | r21546 | |
| 35698 | 39086 | <info name="release" value="19930416" /> |
| 35699 | 39087 | <info name="alt_title" value="デュアルオーブ聖霊珠伝説" /> |
| 35700 | 39088 | <part name="cart" interface="snes_cart"> |
| 39089 | ||
| 39090 | <feature name="slot" value="lorom" /> | |
| 35701 | 39091 | <dataarea name="rom" size="1572864"> |
| 35702 | 39092 | <rom name="dual orb - seirei tama densetsu (japan).sfc" size="1572864" crc="9d7bd920" sha1="25fe4c1af89a7d09ffefab7d568d15865f153467" offset="0x000000" /> |
| 35703 | 39093 | </dataarea> |
| r21545 | r21546 | |
| 35715 | 39105 | <info name="alt_title" value="デュアルオーブII" /> |
| 35716 | 39106 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35717 | 39107 | <part name="cart" interface="snes_cart"> |
| 39108 | ||
| 39109 | <feature name="slot" value="hirom" /> | |
| 35718 | 39110 | <dataarea name="rom" size="2621440"> |
| 35719 | 39111 | <rom name="dual orb ii (japan).sfc" size="2621440" crc="e8798f65" sha1="02b85364e3bd988b8cb9e2148309bbfbf46a9338" offset="0x000000" /> |
| 35720 | 39112 | </dataarea> |
| r21545 | r21546 | |
| 35728 | 39120 | <year>1992</year> |
| 35729 | 39121 | <publisher>Accolade</publisher> |
| 35730 | 39122 | <part name="cart" interface="snes_cart"> |
| 39123 | ||
| 39124 | <feature name="slot" value="lorom" /> | |
| 35731 | 39125 | <dataarea name="rom" size="1048576"> |
| 35732 | 39126 | <rom name="duel, the - test drive ii (europe).sfc" size="1048576" crc="57cbd9af" sha1="9f8dbbca96eb6d70f35311a851e110f03ce7d99f" offset="0x000000" /> |
| 35733 | 39127 | </dataarea> |
| r21545 | r21546 | |
| 35740 | 39134 | <publisher>Accolade</publisher> |
| 35741 | 39135 | <info name="release" value="199212xx" /> |
| 35742 | 39136 | <part name="cart" interface="snes_cart"> |
| 39137 | ||
| 39138 | <feature name="slot" value="lorom" /> | |
| 35743 | 39139 | <dataarea name="rom" size="1048576"> |
| 35744 | 39140 | <rom name="duel, the - test drive ii (usa).sfc" size="1048576" crc="ba093e24" sha1="754f30e9d06c304d4938af79d1a4f4999a2d60e0" offset="0x000000" /> |
| 35745 | 39141 | </dataarea> |
| r21545 | r21546 | |
| 35754 | 39150 | <info name="release" value="19950721" /> |
| 35755 | 39151 | <info name="alt_title" value="ダンクエスト 魔人封印の伝説" /> |
| 35756 | 39152 | <part name="cart" interface="snes_cart"> |
| 39153 | ||
| 39154 | <feature name="slot" value="lorom" /> | |
| 35757 | 39155 | <dataarea name="rom" size="2097152"> |
| 35758 | 39156 | <rom name="dun quest - majin fuuin no densetsu (japan).sfc" size="2097152" crc="b708add4" sha1="ad0bd78f4991494d251e49aa54195535665119ac" offset="0x000000" /> |
| 35759 | 39157 | </dataarea> |
| r21545 | r21546 | |
| 35771 | 39169 | <info name="alt_title" value="ダンジョンマスター" /> |
| 35772 | 39170 | <part name="cart" interface="snes_cart"> |
| 35773 | 39171 | <feature name="enhancement" value="DSP2" /> |
| 39172 | ||
| 39173 | <feature name="slot" value="lorom_dsp" /> | |
| 35774 | 39174 | <dataarea name="rom" size="1048576"> |
| 35775 | 39175 | <rom name="dungeon master (japan) (rev 1).sfc" size="1048576" crc="aa79fa33" sha1="e6d33ef74366333999ea11495c7a62d4ba07df0f" offset="0x000000" /> |
| 35776 | 39176 | </dataarea> |
| 39177 | <dataarea name="addon" size="10240"> | |
| 39178 | <rom name="dsp2.bin" size="10240" crc="8e9fbd9b" sha1="06dd9fcb118d18f6bbe234e013cb8780e06d6e63" offset="0x000000" /> | |
| 39179 | </dataarea> | |
| 35777 | 39180 | <dataarea name="nvram" size="32768"> |
| 35778 | 39181 | </dataarea> |
| 35779 | 39182 | </part> |
| r21545 | r21546 | |
| 35788 | 39191 | <info name="alt_title" value="ダンジョンマスター" /> |
| 35789 | 39192 | <part name="cart" interface="snes_cart"> |
| 35790 | 39193 | <feature name="enhancement" value="DSP2" /> |
| 39194 | ||
| 39195 | <feature name="slot" value="lorom_dsp" /> | |
| 35791 | 39196 | <dataarea name="rom" size="1048576"> |
| 35792 | 39197 | <rom name="dungeon master (japan).sfc" size="1048576" crc="7a1ba194" sha1="aef7699a42c63016874755bbccbd107daefffca5" offset="0x000000" /> |
| 35793 | 39198 | </dataarea> |
| 39199 | <dataarea name="addon" size="10240"> | |
| 39200 | <rom name="dsp2.bin" size="10240" crc="8e9fbd9b" sha1="06dd9fcb118d18f6bbe234e013cb8780e06d6e63" offset="0x000000" /> | |
| 39201 | </dataarea> | |
| 35794 | 39202 | <dataarea name="nvram" size="32768"> |
| 35795 | 39203 | </dataarea> |
| 35796 | 39204 | </part> |
| r21545 | r21546 | |
| 35803 | 39211 | <info name="release" value="199306xx" /> |
| 35804 | 39212 | <part name="cart" interface="snes_cart"> |
| 35805 | 39213 | <feature name="enhancement" value="DSP2" /> |
| 39214 | ||
| 39215 | <feature name="slot" value="lorom_dsp" /> | |
| 35806 | 39216 | <dataarea name="rom" size="1048576"> |
| 35807 | 39217 | <rom name="dungeon master (usa).sfc" size="1048576" crc="0dfd9ceb" sha1="e65ae62ec9a1c48a3512db66f929c7b0055ae2c3" offset="0x000000" /> |
| 35808 | 39218 | </dataarea> |
| 39219 | <dataarea name="addon" size="10240"> | |
| 39220 | <rom name="dsp2.bin" size="10240" crc="8e9fbd9b" sha1="06dd9fcb118d18f6bbe234e013cb8780e06d6e63" offset="0x000000" /> | |
| 39221 | </dataarea> | |
| 35809 | 39222 | <dataarea name="nvram" size="32768"> |
| 35810 | 39223 | </dataarea> |
| 35811 | 39224 | </part> |
| r21545 | r21546 | |
| 35819 | 39232 | <info name="release" value="19940428" /> |
| 35820 | 39233 | <info name="alt_title" value="ダイナマイト・ザ・ラスベガス" /> |
| 35821 | 39234 | <part name="cart" interface="snes_cart"> |
| 39235 | ||
| 39236 | <feature name="slot" value="hirom" /> | |
| 35822 | 39237 | <dataarea name="rom" size="1048576"> |
| 35823 | 39238 | <rom name="dynamaite the las vegas (japan).sfc" size="1048576" crc="1b644433" sha1="8754049ac9b5b883f09686ef1c32d49ef2d0f3f2" offset="0x000000" /> |
| 35824 | 39239 | </dataarea> |
| r21545 | r21546 | |
| 35831 | 39246 | <publisher>Enix</publisher> |
| 35832 | 39247 | <info name="release" value="199307xx" /> |
| 35833 | 39248 | <part name="cart" interface="snes_cart"> |
| 39249 | ||
| 39250 | <feature name="slot" value="lorom" /> | |
| 35834 | 39251 | <dataarea name="rom" size="1572864"> |
| 35835 | 39252 | <rom name="e.v.o. - search for eden (usa).sfc" size="1572864" crc="dd49911e" sha1="ba6386d52c6f032225e299812e6f03e41fe8d0ff" offset="0x000000" /> |
| 35836 | 39253 | </dataarea> |
| r21545 | r21546 | |
| 35844 | 39261 | <year>1992</year> |
| 35845 | 39262 | <publisher>Jaleco</publisher> |
| 35846 | 39263 | <part name="cart" interface="snes_cart"> |
| 39264 | ||
| 39265 | <feature name="slot" value="lorom" /> | |
| 35847 | 39266 | <dataarea name="rom" size="1048576"> |
| 35848 | 39267 | <rom name="earth defense force (europe).sfc" size="1048576" crc="404bec17" sha1="41785e658c1c2ea460cbe91775b250fa9201ea65" offset="0x000000" /> |
| 35849 | 39268 | </dataarea> |
| r21545 | r21546 | |
| 35856 | 39275 | <publisher>Jaleco</publisher> |
| 35857 | 39276 | <info name="release" value="199201xx" /> |
| 35858 | 39277 | <part name="cart" interface="snes_cart"> |
| 39278 | ||
| 39279 | <feature name="slot" value="lorom" /> | |
| 35859 | 39280 | <dataarea name="rom" size="1048576"> |
| 35860 | 39281 | <rom name="earth defense force (usa).sfc" size="1048576" crc="ca8ff946" sha1="f6ee185ba96f9b6b6c6d72b11062cb0c420f6c96" offset="0x000000" /> |
| 35861 | 39282 | </dataarea> |
| r21545 | r21546 | |
| 35870 | 39291 | <info name="release" value="19960726" /> |
| 35871 | 39292 | <info name="alt_title" value="アースライト ルナ・ストライク" /> |
| 35872 | 39293 | <part name="cart" interface="snes_cart"> |
| 39294 | ||
| 39295 | <feature name="slot" value="hirom" /> | |
| 35873 | 39296 | <dataarea name="rom" size="3145728"> |
| 35874 | 39297 | <rom name="earth light - luna strike (japan).sfc" size="3145728" crc="0eafd03c" sha1="76bf3709a28fce0c7dbab00e4faa949ef23feab4" offset="0x000000" /> |
| 35875 | 39298 | </dataarea> |
| r21545 | r21546 | |
| 35885 | 39308 | <info name="release" value="199506xx" /> |
| 35886 | 39309 | <sharedfeat name="compatibility" value="NTSC"/> |
| 35887 | 39310 | <part name="cart" interface="snes_cart"> |
| 39311 | ||
| 39312 | <feature name="slot" value="hirom" /> | |
| 35888 | 39313 | <dataarea name="rom" size="3145728"> |
| 35889 | 39314 | <rom name="earthbound (usa).sfc" size="3145728" crc="dc9bb451" sha1="d67a8ef36ef616bc39306aa1b486e1bd3047815a" offset="0x000000" /> |
| 35890 | 39315 | </dataarea> |
| r21545 | r21546 | |
| 35901 | 39326 | <info name="release" value="19950623" /> |
| 35902 | 39327 | <info name="alt_title" value="アースワーム・ジム" /> |
| 35903 | 39328 | <part name="cart" interface="snes_cart"> |
| 39329 | ||
| 39330 | <feature name="slot" value="hirom" /> | |
| 35904 | 39331 | <dataarea name="rom" size="3145728"> |
| 35905 | 39332 | <rom name="earthworm jim (japan).sfc" size="3145728" crc="6f8ed108" sha1="b2d41af059ec7a00090b4e895a3ce451a73d2179" offset="0x000000" /> |
| 35906 | 39333 | </dataarea> |
| r21545 | r21546 | |
| 35912 | 39339 | <year>1994</year> |
| 35913 | 39340 | <publisher>Playmates Interactive</publisher> |
| 35914 | 39341 | <part name="cart" interface="snes_cart"> |
| 39342 | ||
| 39343 | <feature name="slot" value="hirom" /> | |
| 35915 | 39344 | <dataarea name="rom" size="3145728"> |
| 35916 | 39345 | <rom name="earthworm jim (usa) (gamesmaster special edition).sfc" size="3145728" crc="b1eaad9e" sha1="681d17432e2d337aaeeab4039117733c35575235" offset="0x000000" /> |
| 35917 | 39346 | </dataarea> |
| r21545 | r21546 | |
| 35923 | 39352 | <year>1995</year> |
| 35924 | 39353 | <publisher>Playmates Interactive</publisher> |
| 35925 | 39354 | <part name="cart" interface="snes_cart"> |
| 39355 | ||
| 39356 | <feature name="slot" value="hirom" /> | |
| 35926 | 39357 | <dataarea name="rom" size="3145728"> |
| 35927 | 39358 | <rom name="earthworm jim 2 (usa) (beta).sfc" size="3145728" crc="c110a23a" sha1="d038b79690ede4fa8a23e2a84ceb328ab79604fe" offset="0x000000" /> |
| 35928 | 39359 | </dataarea> |
| r21545 | r21546 | |
| 35937 | 39368 | <info name="release" value="19930312" /> |
| 35938 | 39369 | <info name="alt_title" value="エドノ牙" /> |
| 35939 | 39370 | <part name="cart" interface="snes_cart"> |
| 39371 | ||
| 39372 | <feature name="slot" value="hirom" /> | |
| 35940 | 39373 | <dataarea name="rom" size="1048576"> |
| 35941 | 39374 | <rom name="edono kiba (japan).sfc" size="1048576" crc="eec5a5b1" sha1="0244c604a9aa8d35124adef1c515689a8ed50d9c" offset="0x000000" /> |
| 35942 | 39375 | </dataarea> |
| r21545 | r21546 | |
| 35948 | 39381 | <year>1994</year> |
| 35949 | 39382 | <publisher>Ocean</publisher> |
| 35950 | 39383 | <part name="cart" interface="snes_cart"> |
| 39384 | ||
| 39385 | <feature name="slot" value="lorom" /> | |
| 35951 | 39386 | <dataarea name="rom" size="1048576"> |
| 35952 | 39387 | <rom name="eek! the cat (europe).sfc" size="1048576" crc="812555a3" sha1="4edeb0755f577474e96864abd91e3042163f9674" offset="0x000000" /> |
| 35953 | 39388 | </dataarea> |
| r21545 | r21546 | |
| 35960 | 39395 | <publisher>Ocean</publisher> |
| 35961 | 39396 | <info name="release" value="199408xx" /> |
| 35962 | 39397 | <part name="cart" interface="snes_cart"> |
| 39398 | ||
| 39399 | <feature name="slot" value="lorom" /> | |
| 35963 | 39400 | <dataarea name="rom" size="1048576"> |
| 35964 | 39401 | <rom name="eek! the cat (usa).sfc" size="1048576" crc="216f2fc7" sha1="db072bcb550a0704830a383f7c39fcbf71f5a11b" offset="0x000000" /> |
| 35965 | 39402 | </dataarea> |
| r21545 | r21546 | |
| 35974 | 39411 | <info name="release" value="19950225" /> |
| 35975 | 39412 | <info name="alt_title" value="永遠のフィレーナ" /> |
| 35976 | 39413 | <part name="cart" interface="snes_cart"> |
| 39414 | ||
| 39415 | <feature name="slot" value="lorom" /> | |
| 35977 | 39416 | <dataarea name="rom" size="1572864"> |
| 35978 | 39417 | <rom name="eien no filerna (japan).sfc" size="1572864" crc="41e9cd70" sha1="a37d9ba5acf84c732120c4cf2b3edd4a59fb146b" offset="0x000000" /> |
| 35979 | 39418 | </dataarea> |
| r21545 | r21546 | |
| 35990 | 39429 | <info name="release" value="19950609" /> |
| 35991 | 39430 | <info name="alt_title" value="エルファリアII ザ・クエスト・オ ブ・ザ・メルト" /> |
| 35992 | 39431 | <part name="cart" interface="snes_cart"> |
| 39432 | ||
| 39433 | <feature name="slot" value="hirom" /> | |
| 35993 | 39434 | <dataarea name="rom" size="2097152"> |
| 35994 | 39435 | <rom name="elfaria ii - the quest of the meld (japan).sfc" size="2097152" crc="4d5da64f" sha1="ae123c368f6401fb7285e0307c2adeb78fa7d3fa" offset="0x000000" /> |
| 35995 | 39436 | </dataarea> |
| r21545 | r21546 | |
| 36006 | 39447 | <info name="release" value="19950728" /> |
| 36007 | 39448 | <info name="alt_title" value="エメラルドドラゴン" /> |
| 36008 | 39449 | <part name="cart" interface="snes_cart"> |
| 39450 | ||
| 39451 | <feature name="slot" value="hirom" /> | |
| 36009 | 39452 | <dataarea name="rom" size="2097152"> |
| 36010 | 39453 | <rom name="emerald dragon (japan).sfc" size="2097152" crc="9d0f5f98" sha1="cefb12a296cac19778e6c8ae5ae712fdccacba3a" offset="0x000000" /> |
| 36011 | 39454 | </dataarea> |
| r21545 | r21546 | |
| 36023 | 39466 | <info name="release" value="19950325" /> |
| 36024 | 39467 | <info name="alt_title" value="エミットVol.1 時の迷子" /> |
| 36025 | 39468 | <part name="cart" interface="snes_cart"> |
| 39469 | ||
| 39470 | <feature name="slot" value="hirom" /> | |
| 36026 | 39471 | <dataarea name="rom" size="3145728"> |
| 36027 | 39472 | <rom name="emit vol. 1 - toki no maigo (japan).sfc" size="3145728" crc="d1aacc2d" sha1="17c98203efcb832b38f80891d3523014f3ccf76e" offset="0x000000" /> |
| 36028 | 39473 | </dataarea> |
| r21545 | r21546 | |
| 36040 | 39485 | <info name="release" value="19950325" /> |
| 36041 | 39486 | <info name="alt_title" value="エミットVol.2 命がけの旅" /> |
| 36042 | 39487 | <part name="cart" interface="snes_cart"> |
| 39488 | ||
| 39489 | <feature name="slot" value="hirom" /> | |
| 36043 | 39490 | <dataarea name="rom" size="3145728"> |
| 36044 | 39491 | <rom name="emit vol. 2 - inochigake no tabi (japan).sfc" size="3145728" crc="ad99d806" sha1="4641621e848f02cc0fbf62cd0b387a3810176c35" offset="0x000000" /> |
| 36045 | 39492 | </dataarea> |
| r21545 | r21546 | |
| 36057 | 39504 | <info name="release" value="19950325" /> |
| 36058 | 39505 | <info name="alt_title" value="エミットVol.3 私にさよならを" /> |
| 36059 | 39506 | <part name="cart" interface="snes_cart"> |
| 39507 | ||
| 39508 | <feature name="slot" value="hirom" /> | |
| 36060 | 39509 | <dataarea name="rom" size="3145728"> |
| 36061 | 39510 | <rom name="emit vol. 3 - watashi ni sayonara o (japan).sfc" size="3145728" crc="cbc5da6d" sha1="07855124e58574bac2119608a2554b680df336eb" offset="0x000000" /> |
| 36062 | 39511 | </dataarea> |
| r21545 | r21546 | |
| 36071 | 39520 | <publisher>JVC</publisher> |
| 36072 | 39521 | <info name="release" value="199511xx" /> |
| 36073 | 39522 | <part name="cart" interface="snes_cart"> |
| 39523 | ||
| 39524 | <feature name="slot" value="lorom" /> | |
| 36074 | 39525 | <dataarea name="rom" size="1048576"> |
| 36075 | 39526 | <rom name="emmitt smith football (usa).sfc" size="1048576" crc="09c3c0ef" sha1="802894d5d271d5d29700284fc0e03748bfc3861e" offset="0x000000" /> |
| 36076 | 39527 | </dataarea> |
| r21545 | r21546 | |
| 36087 | 39538 | <info name="release" value="19960726" /> |
| 36088 | 39539 | <info name="alt_title" value="エナジーブレイカー" /> |
| 36089 | 39540 | <part name="cart" interface="snes_cart"> |
| 39541 | ||
| 39542 | <feature name="slot" value="lorom" /> | |
| 36090 | 39543 | <dataarea name="rom" size="3145728"> |
| 36091 | 39544 | <!-- TODO: remove this hack after upgrade --> |
| 36092 | 39545 | <!--rom name="energy breaker (japan).sfc" size="3145728" crc="f70f2a95" sha1="20321943fd6f2a15e43da8406220a720fce94f38" offset="0x000000" status="baddump" /--> |
| r21545 | r21546 | |
| 36102 | 39555 | <year>1994</year> |
| 36103 | 39556 | <publisher>Sony Imagesoft</publisher> |
| 36104 | 39557 | <part name="cart" interface="snes_cart"> |
| 39558 | ||
| 39559 | <feature name="slot" value="lorom" /> | |
| 36105 | 39560 | <dataarea name="rom" size="1048576"> |
| 36106 | 39561 | <rom name="equinox (usa) (beta).sfc" size="1048576" crc="61d22779" sha1="43d1742e210f45313033c4fef526732b783ab41f" offset="0x000000" /> |
| 36107 | 39562 | </dataarea> |
| r21545 | r21546 | |
| 36116 | 39571 | <publisher>Sony Imagesoft</publisher> |
| 36117 | 39572 | <info name="release" value="199403xx" /> |
| 36118 | 39573 | <part name="cart" interface="snes_cart"> |
| 39574 | ||
| 39575 | <feature name="slot" value="lorom" /> | |
| 36119 | 39576 | <dataarea name="rom" size="1048576"> |
| 36120 | 39577 | <rom name="equinox (usa).sfc" size="1048576" crc="96a4d1c0" sha1="cad7e5ce2b3dc60455ccdd474cf1a128a14d1803" offset="0x000000" /> |
| 36121 | 39578 | </dataarea> |
| r21545 | r21546 | |
| 36130 | 39587 | <publisher>Elite Systems</publisher> |
| 36131 | 39588 | <sharedfeat name="compatibility" value="PAL"/> |
| 36132 | 39589 | <part name="cart" interface="snes_cart"> |
| 39590 | ||
| 39591 | <feature name="slot" value="lorom" /> | |
| 36133 | 39592 | <dataarea name="rom" size="524288"> |
| 36134 | 39593 | <rom name="eric cantona football challenge (france) (en,fr,de,es,it,nl,sv).sfc" size="524288" crc="d190cf58" sha1="188c653e31174cc1ec720f471dbdfbeb5a86fa2e" offset="0x000000" /> |
| 36135 | 39594 | </dataarea> |
| r21545 | r21546 | |
| 36144 | 39603 | <info name="release" value="19950331" /> |
| 36145 | 39604 | <info name="alt_title" value="エスパークス異次空からの来訪者" /> |
| 36146 | 39605 | <part name="cart" interface="snes_cart"> |
| 39606 | ||
| 39607 | <feature name="slot" value="hirom" /> | |
| 36147 | 39608 | <dataarea name="rom" size="1572864"> |
| 36148 | 39609 | <rom name="esparks - ijikuu kara no raihousha (japan).sfc" size="1572864" crc="634344a0" sha1="dbfbef2cfdc44f692bcba1e3e5e3c4d73d15bb02" offset="0x000000" /> |
| 36149 | 39610 | </dataarea> |
| r21545 | r21546 | |
| 36157 | 39618 | <year>1994</year> |
| 36158 | 39619 | <publisher>Sony Imagesoft</publisher> |
| 36159 | 39620 | <part name="cart" interface="snes_cart"> |
| 39621 | ||
| 39622 | <feature name="slot" value="lorom" /> | |
| 36160 | 39623 | <dataarea name="rom" size="2097152"> |
| 36161 | 39624 | <rom name="espn baseball tonight (europe).sfc" size="2097152" crc="a7a4be9b" sha1="2c3a40b29d67810249a4e675544524a61c8e8dd5" offset="0x000000" /> |
| 36162 | 39625 | </dataarea> |
| r21545 | r21546 | |
| 36168 | 39631 | <year>1994</year> |
| 36169 | 39632 | <publisher>Sony Imagesoft</publisher> |
| 36170 | 39633 | <part name="cart" interface="snes_cart"> |
| 39634 | ||
| 39635 | <feature name="slot" value="lorom" /> | |
| 36171 | 39636 | <dataarea name="rom" size="2097152"> |
| 36172 | 39637 | <rom name="espn baseball tonight (usa) (beta).sfc" size="2097152" crc="d0117d67" sha1="a327273816b184a0ffef72bd81e984cd5c0b5c04" offset="0x000000" /> |
| 36173 | 39638 | </dataarea> |
| r21545 | r21546 | |
| 36180 | 39645 | <publisher>Sony Imagesoft</publisher> |
| 36181 | 39646 | <info name="release" value="199412xx" /> |
| 36182 | 39647 | <part name="cart" interface="snes_cart"> |
| 39648 | ||
| 39649 | <feature name="slot" value="lorom" /> | |
| 36183 | 39650 | <dataarea name="rom" size="2097152"> |
| 36184 | 39651 | <rom name="espn national hockey night (usa).sfc" size="2097152" crc="75058ede" sha1="50dcd9736335ddef5cc8df9aecacfe2cb2888339" offset="0x000000" /> |
| 36185 | 39652 | </dataarea> |
| r21545 | r21546 | |
| 36194 | 39661 | <publisher>Sony Imagesoft</publisher> |
| 36195 | 39662 | <info name="release" value="199411xx" /> |
| 36196 | 39663 | <part name="cart" interface="snes_cart"> |
| 39664 | ||
| 39665 | <feature name="slot" value="lorom" /> | |
| 36197 | 39666 | <dataarea name="rom" size="2097152"> |
| 36198 | 39667 | <rom name="espn sunday night nfl (usa).sfc" size="2097152" crc="26849f90" sha1="95506e38c2ce17508ef67f0d9125cf3bd5027d32" offset="0x000000" /> |
| 36199 | 39668 | </dataarea> |
| r21545 | r21546 | |
| 36207 | 39676 | <year>1992</year> |
| 36208 | 39677 | <publisher>Taito</publisher> |
| 36209 | 39678 | <part name="cart" interface="snes_cart"> |
| 39679 | ||
| 39680 | <feature name="slot" value="lorom" /> | |
| 36210 | 39681 | <dataarea name="rom" size="524288"> |
| 36211 | 39682 | <rom name="euro football champ (europe).sfc" size="524288" crc="2c6eb470" sha1="6d31e1cc08123b788526ea51937758c641ac8e57" offset="0x000000" /> |
| 36212 | 39683 | </dataarea> |
| r21545 | r21546 | |
| 36221 | 39692 | <info name="release" value="19930116" /> |
| 36222 | 39693 | <info name="alt_title" value="ヨーロッパ戦線" /> |
| 36223 | 39694 | <part name="cart" interface="snes_cart"> |
| 39695 | ||
| 39696 | <feature name="slot" value="hirom" /> | |
| 36224 | 39697 | <dataarea name="rom" size="1572864"> |
| 36225 | 39698 | <rom name="europe sensen (japan).sfc" size="1572864" crc="ae066c31" sha1="344c3caafa3772363c387149463ab0ee4d53cd1c" offset="0x000000" /> |
| 36226 | 39699 | </dataarea> |
| r21545 | r21546 | |
| 36234 | 39707 | <year>1994</year> |
| 36235 | 39708 | <publisher>Life Fitness</publisher> |
| 36236 | 39709 | <part name="cart" interface="snes_cart"> |
| 39710 | ||
| 39711 | <feature name="slot" value="lorom" /> | |
| 36237 | 39712 | <dataarea name="rom" size="4194304"> |
| 36238 | 39713 | <rom name="exertainment mountain bike rally & speed racer (europe) (en,fr,de,es,nl) (proto).sfc" size="4194304" crc="811475b0" sha1="c8df95cdf8d8941adb5775efde3a9489711eceee" offset="0x000000" /> |
| 36239 | 39714 | </dataarea> |
| r21545 | r21546 | |
| 36247 | 39722 | <year>1994</year> |
| 36248 | 39723 | <publisher>Life Fitness</publisher> |
| 36249 | 39724 | <part name="cart" interface="snes_cart"> |
| 39725 | ||
| 39726 | <feature name="slot" value="lorom" /> | |
| 36250 | 39727 | <dataarea name="rom" size="4194304"> |
| 36251 | 39728 | <rom name="exertainment mountain bike rally & speed racer (usa).sfc" size="4194304" crc="ee5e1906" sha1="d2f6cf90e877a5cfa614934b3f9fcc95059db90b" offset="0x000000" /> |
| 36252 | 39729 | </dataarea> |
| r21545 | r21546 | |
| 36260 | 39737 | <year>1992</year> |
| 36261 | 39738 | <publisher>Seta</publisher> |
| 36262 | 39739 | <part name="cart" interface="snes_cart"> |
| 39740 | ||
| 39741 | <feature name="slot" value="lorom" /> | |
| 36263 | 39742 | <dataarea name="rom" size="1048576"> |
| 36264 | 39743 | <rom name="exhaust heat (europe).sfc" size="1048576" crc="af5a3203" sha1="72e55565db89fe7c2ca437e602fe15acaa1ecc8f" offset="0x000000" /> |
| 36265 | 39744 | </dataarea> |
| r21545 | r21546 | |
| 36274 | 39753 | <publisher>Sony Imagesoft</publisher> |
| 36275 | 39754 | <info name="release" value="199203xx" /> |
| 36276 | 39755 | <part name="cart" interface="snes_cart"> |
| 39756 | ||
| 39757 | <feature name="slot" value="lorom" /> | |
| 36277 | 39758 | <dataarea name="rom" size="1048576"> |
| 36278 | 39759 | <rom name="extra innings (usa).sfc" size="1048576" crc="440a4250" sha1="e110399001ba844235fba9f0d91487488dabe4ba" offset="0x000000" /> |
| 36279 | 39760 | </dataarea> |
| r21545 | r21546 | |
| 36290 | 39771 | <info name="release" value="19940318" /> |
| 36291 | 39772 | <info name="alt_title" value="AD&D アイ・オブ・ザ・ビホルダー" /> |
| 36292 | 39773 | <part name="cart" interface="snes_cart"> |
| 39774 | ||
| 39775 | <feature name="slot" value="lorom" /> | |
| 36293 | 39776 | <dataarea name="rom" size="1048576"> |
| 36294 | 39777 | <rom name="eye of the beholder (japan).sfc" size="1048576" crc="f6ad28a3" sha1="053b60bdf3cbd756f286510dfca1b70f5fe054bd" offset="0x000000" /> |
| 36295 | 39778 | </dataarea> |
| r21545 | r21546 | |
| 36304 | 39787 | <publisher>Capcom</publisher> |
| 36305 | 39788 | <info name="release" value="199404xx" /> |
| 36306 | 39789 | <part name="cart" interface="snes_cart"> |
| 39790 | ||
| 39791 | <feature name="slot" value="lorom" /> | |
| 36307 | 39792 | <dataarea name="rom" size="1048576"> |
| 36308 | 39793 | <rom name="eye of the beholder (usa).sfc" size="1048576" crc="20143571" sha1="0368eb078744d97cd499344654401dca1b184e25" offset="0x000000" /> |
| 36309 | 39794 | </dataarea> |
| r21545 | r21546 | |
| 36320 | 39805 | <info name="release" value="19920428" /> |
| 36321 | 39806 | <info name="alt_title" value="F1グランプリ" /> |
| 36322 | 39807 | <part name="cart" interface="snes_cart"> |
| 39808 | ||
| 39809 | <feature name="slot" value="lorom" /> | |
| 36323 | 39810 | <dataarea name="rom" size="1048576"> |
| 36324 | 39811 | <rom name="f-1 grand prix (japan).sfc" size="1048576" crc="1608ea1a" sha1="ecef210e73553f314c30f8234d8ee1d9d72000c3" offset="0x000000" /> |
| 36325 | 39812 | </dataarea> |
| r21545 | r21546 | |
| 36336 | 39823 | <info name="release" value="19930226" /> |
| 36337 | 39824 | <info name="alt_title" value="F1グランプリ パート2" /> |
| 36338 | 39825 | <part name="cart" interface="snes_cart"> |
| 39826 | ||
| 39827 | <feature name="slot" value="hirom" /> | |
| 36339 | 39828 | <dataarea name="rom" size="1572864"> |
| 36340 | 39829 | <rom name="f-1 grand prix - part ii (japan).sfc" size="1572864" crc="534ae12e" sha1="47b06fe78e7fb9b1c482c756585929420f06c6cd" offset="0x000000" /> |
| 36341 | 39830 | </dataarea> |
| r21545 | r21546 | |
| 36352 | 39841 | <info name="release" value="19940422" /> |
| 36353 | 39842 | <info name="alt_title" value="F1グランプリ パート3" /> |
| 36354 | 39843 | <part name="cart" interface="snes_cart"> |
| 39844 | ||
| 39845 | <feature name="slot" value="hirom" /> | |
| 36355 | 39846 | <dataarea name="rom" size="2097152"> |
| 36356 | 39847 | <rom name="f-1 grand prix - part iii (japan).sfc" size="2097152" crc="9b68248e" sha1="c09698565a0b0b897dfbe18a2a3823fb5148d2df" offset="0x000000" /> |
| 36357 | 39848 | </dataarea> |
| r21545 | r21546 | |
| 36365 | 39856 | <year>1993</year> |
| 36366 | 39857 | <publisher>Ubi Soft</publisher> |
| 36367 | 39858 | <part name="cart" interface="snes_cart"> |
| 39859 | ||
| 39860 | <feature name="slot" value="lorom" /> | |
| 36368 | 39861 | <dataarea name="rom" size="1048576"> |
| 36369 | 39862 | <rom name="f1 pole position (europe).sfc" size="1048576" crc="e935886a" sha1="3351f8ddf52e2aeb01affd7dd3a6a4623d96ff1d" offset="0x000000" /> |
| 36370 | 39863 | </dataarea> |
| r21545 | r21546 | |
| 36378 | 39871 | <year>1993</year> |
| 36379 | 39872 | <publisher>Ubi Soft</publisher> |
| 36380 | 39873 | <part name="cart" interface="snes_cart"> |
| 39874 | ||
| 39875 | <feature name="slot" value="lorom" /> | |
| 36381 | 39876 | <dataarea name="rom" size="1048576"> |
| 36382 | 39877 | <rom name="f1 pole position (usa) (beta).sfc" size="1048576" crc="7049aae8" sha1="cc3a20cd8bff2aaaf1b3bde3e61a40d20f3421c6" offset="0x000000" /> |
| 36383 | 39878 | </dataarea> |
| r21545 | r21546 | |
| 36391 | 39886 | <year>1993</year> |
| 36392 | 39887 | <publisher>Ubi Soft</publisher> |
| 36393 | 39888 | <part name="cart" interface="snes_cart"> |
| 39889 | ||
| 39890 | <feature name="slot" value="lorom" /> | |
| 36394 | 39891 | <dataarea name="rom" size="1048576"> |
| 36395 | 39892 | <rom name="f1 pole position 2 (europe).sfc" size="1048576" crc="83fc0f0c" sha1="4a157c556b27f92c9850ee8547a2d5a61c8156f3" offset="0x000000" /> |
| 36396 | 39893 | </dataarea> |
| r21545 | r21546 | |
| 36405 | 39902 | <publisher>Seta</publisher> |
| 36406 | 39903 | <info name="release" value="199209xx" /> |
| 36407 | 39904 | <part name="cart" interface="snes_cart"> |
| 39905 | ||
| 39906 | <feature name="slot" value="lorom" /> | |
| 36408 | 39907 | <dataarea name="rom" size="1048576"> |
| 36409 | 39908 | <rom name="f1 roc - race of champions (usa).sfc" size="1048576" crc="2a069989" sha1="30709476a6b5412a5d3975c3baa6a3822d598820" offset="0x000000" /> |
| 36410 | 39909 | </dataarea> |
| r21545 | r21546 | |
| 36413 | 39912 | </part> |
| 36414 | 39913 | </software> |
| 36415 | 39914 | |
| 36416 | <software name="f1roc2" | |
| 39915 | <software name="f1roc2"> | |
| 36417 | 39916 | <description>F1 ROC II - Race of Champions (USA)</description> |
| 36418 | 39917 | <year>1994</year> |
| 36419 | 39918 | <publisher>Seta</publisher> |
| 36420 | 39919 | <info name="release" value="199407xx" /> |
| 36421 | 39920 | <part name="cart" interface="snes_cart"> |
| 36422 | 39921 | <feature name="enhancement" value="ST010" /> |
| 39922 | ||
| 39923 | <feature name="slot" value="lorom_st010" /> | |
| 36423 | 39924 | <dataarea name="rom" size="1048576"> |
| 36424 | 39925 | <rom name="f1 roc ii - race of champions (usa).sfc" size="1048576" crc="3447609e" sha1="fb81dd15b8a9ddf8f5564d3d2fb934c6f8bfb392" offset="0x000000" /> |
| 36425 | 39926 | </dataarea> |
| 39927 | <dataarea name="addon" size="69632"> | |
| 39928 | <rom name="st010.bin" size="69632" crc="aa11ee2d" sha1="cc1984e989cb94e3dcbb5f99e085b5414e18a017" offset="0x000000" /> | |
| 39929 | </dataarea> | |
| 36426 | 39930 | </part> |
| 36427 | 39931 | </software> |
| 36428 | 39932 | |
| r21545 | r21546 | |
| 36431 | 39935 | <year>1995</year> |
| 36432 | 39936 | <publisher>Domark</publisher> |
| 36433 | 39937 | <part name="cart" interface="snes_cart"> |
| 39938 | ||
| 39939 | <feature name="slot" value="lorom" /> | |
| 36434 | 39940 | <dataarea name="rom" size="2097152"> |
| 36435 | 39941 | <rom name="f1 world championship edition (europe).sfc" size="2097152" crc="7ba8fc78" sha1="c3264a4c87968133c77f33fcd112ae89939e4422" offset="0x000000" /> |
| 36436 | 39942 | </dataarea> |
| r21545 | r21546 | |
| 36443 | 39949 | <publisher>Bullet-Proof Software</publisher> |
| 36444 | 39950 | <info name="release" value="199209xx" /> |
| 36445 | 39951 | <part name="cart" interface="snes_cart"> |
| 39952 | ||
| 39953 | <feature name="slot" value="lorom" /> | |
| 36446 | 39954 | <dataarea name="rom" size="524288"> |
| 36447 | 39955 | <rom name="faceball 2000 (usa).sfc" size="524288" crc="8d4df815" sha1="4b5e0657306cc9e8ebcc72214ffc6f75efbdfb28" offset="0x000000" /> |
| 36448 | 39956 | </dataarea> |
| r21545 | r21546 | |
| 36457 | 39965 | <info name="release" value="19990701" /> |
| 36458 | 39966 | <info name="alt_title" value="ファミコン文庫 はじまりの森" /> |
| 36459 | 39967 | <part name="cart" interface="snes_cart"> |
| 39968 | ||
| 39969 | <feature name="slot" value="hirom" /> | |
| 36460 | 39970 | <dataarea name="rom" size="4194304"> |
| 36461 | 39971 | <rom name="famicom bunko - hajimari no mori (japan) (np).sfc" size="4194304" crc="11dd3da9" sha1="3727710f65048757a56098f4c97ccd62ee0f6a2f" offset="0x000000" /> |
| 36462 | 39972 | </dataarea> |
| r21545 | r21546 | |
| 36473 | 39983 | <info name="release" value="19980401" /> |
| 36474 | 39984 | <info name="alt_title" value="ファミコン探偵倶楽部 II" /> |
| 36475 | 39985 | <part name="cart" interface="snes_cart"> |
| 39986 | ||
| 39987 | <feature name="slot" value="lorom" /> | |
| 36476 | 39988 | <dataarea name="rom" size="3145728"> |
| 36477 | 39989 | <rom name="famicom tantei club part ii - ushiro ni tatsu shoujo (japan) (np).sfc" size="3145728" crc="28f450ac" sha1="4d4eeee0e8acfed5cf60a7324349dbb46aaa7369" offset="0x000000" /> |
| 36478 | 39990 | </dataarea> |
| r21545 | r21546 | |
| 36489 | 40001 | <info name="release" value="19980401" /> |
| 36490 | 40002 | <info name="alt_title" value="ファミコン探偵倶楽部 II" /> |
| 36491 | 40003 | <part name="cart" interface="snes_cart"> |
| 40004 | ||
| 40005 | <feature name="slot" value="lorom" /> | |
| 36492 | 40006 | <dataarea name="rom" size="3145728"> |
| 36493 | 40007 | <rom name="famicom tantei club part ii - ushiro ni tatsu shoujo (japan) (rev 1) (np).sfc" size="3145728" crc="2ce70b92" sha1="f788d51fc1199e6656dfcbd3d49db9f21fbeb64d" offset="0x000000" /> |
| 36494 | 40008 | </dataarea> |
| r21545 | r21546 | |
| 36502 | 40016 | <year>1993</year> |
| 36503 | 40017 | <publisher>Malibu Interactive</publisher> |
| 36504 | 40018 | <part name="cart" interface="snes_cart"> |
| 40019 | ||
| 40020 | <feature name="slot" value="lorom" /> | |
| 36505 | 40021 | <dataarea name="rom" size="1048576"> |
| 36506 | 40022 | <rom name="family dog (europe).sfc" size="1048576" crc="d95ca497" sha1="60db54f5301cc62826c824853c14b3199391a7d7" offset="0x000000" /> |
| 36507 | 40023 | </dataarea> |
| r21545 | r21546 | |
| 36514 | 40030 | <publisher>GameTek</publisher> |
| 36515 | 40031 | <info name="release" value="199310xx" /> |
| 36516 | 40032 | <part name="cart" interface="snes_cart"> |
| 40033 | ||
| 40034 | <feature name="slot" value="lorom" /> | |
| 36517 | 40035 | <dataarea name="rom" size="524288"> |
| 36518 | 40036 | <rom name="family feud (usa) (rev 1).sfc" size="524288" crc="0c664b71" sha1="8556b6545b78022fe55705a83c3e751c463f56c7" offset="0x000000" /> |
| 36519 | 40037 | </dataarea> |
| r21545 | r21546 | |
| 36528 | 40046 | <info name="release" value="19950224" /> |
| 36529 | 40047 | <info name="alt_title" value="ファーランドストーリー" /> |
| 36530 | 40048 | <part name="cart" interface="snes_cart"> |
| 40049 | ||
| 40050 | <feature name="slot" value="hirom" /> | |
| 36531 | 40051 | <dataarea name="rom" size="2097152"> |
| 36532 | 40052 | <rom name="farland story (japan).sfc" size="2097152" crc="0ed3dcf2" sha1="58091a3cc88f07c0fd950ac3ca2968ad5eb9f13f" offset="0x000000" /> |
| 36533 | 40053 | </dataarea> |
| r21545 | r21546 | |
| 36544 | 40064 | <info name="release" value="19951222" /> |
| 36545 | 40065 | <info name="alt_title" value="ファーランドストーリー2" /> |
| 36546 | 40066 | <part name="cart" interface="snes_cart"> |
| 40067 | ||
| 40068 | <feature name="slot" value="hirom" /> | |
| 36547 | 40069 | <dataarea name="rom" size="3145728"> |
| 36548 | 40070 | <rom name="farland story 2 (japan).sfc" size="3145728" crc="1cf58de9" sha1="fc2c596cc601e7d7dbb4abc7262bc91b97a5ceb7" offset="0x000000" /> |
| 36549 | 40071 | </dataarea> |
| r21545 | r21546 | |
| 36557 | 40079 | <year>1993</year> |
| 36558 | 40080 | <publisher>Takara</publisher> |
| 36559 | 40081 | <part name="cart" interface="snes_cart"> |
| 40082 | ||
| 40083 | <feature name="slot" value="lorom" /> | |
| 36560 | 40084 | <dataarea name="rom" size="1572864"> |
| 36561 | 40085 | <rom name="fatal fury (europe).sfc" size="1572864" crc="f93611c6" sha1="ebf3eb02a975c71332685cd85a88858de80bafb0" offset="0x000000" /> |
| 36562 | 40086 | </dataarea> |
| r21545 | r21546 | |
| 36569 | 40093 | <publisher>Takara</publisher> |
| 36570 | 40094 | <sharedfeat name="compatibility" value="PAL"/> |
| 36571 | 40095 | <part name="cart" interface="snes_cart"> |
| 40096 | ||
| 40097 | <feature name="slot" value="hirom" /> | |
| 36572 | 40098 | <dataarea name="rom" size="3145728"> |
| 36573 | 40099 | <rom name="fatal fury special (europe) (beta).sfc" size="3145728" crc="3effa0f5" sha1="d95055083e3274a92eacc360d29895ba0086d8d3" offset="0x000000" /> |
| 36574 | 40100 | </dataarea> |
| r21545 | r21546 | |
| 36580 | 40106 | <year>1994</year> |
| 36581 | 40107 | <publisher>Yanoman Games</publisher> |
| 36582 | 40108 | <part name="cart" interface="snes_cart"> |
| 40109 | ||
| 40110 | <feature name="slot" value="hirom" /> | |
| 36583 | 40111 | <dataarea name="rom" size="2621440"> |
| 36584 | 40112 | <rom name="feda - the emblem of justice (japan) (beta).sfc" size="2621440" crc="086013cf" sha1="f0ff66a81ece9d57865d013b1349e16f1eddd288" offset="0x000000" /> |
| 36585 | 40113 | </dataarea> |
| r21545 | r21546 | |
| 36596 | 40124 | <info name="release" value="19941028" /> |
| 36597 | 40125 | <info name="alt_title" value="フェーダ エンブレム・オブ・ジャスティス" /> |
| 36598 | 40126 | <part name="cart" interface="snes_cart"> |
| 40127 | ||
| 40128 | <feature name="slot" value="hirom" /> | |
| 36599 | 40129 | <dataarea name="rom" size="2621440"> |
| 36600 | 40130 | <rom name="feda - the emblem of justice (japan).sfc" size="2621440" crc="eda70f8a" sha1="33abd6c2eb5dbc55028a3c830cb51c5d4b1b9918" offset="0x000000" /> |
| 36601 | 40131 | </dataarea> |
| r21545 | r21546 | |
| 36609 | 40139 | <year>1995</year> |
| 36610 | 40140 | <publisher>U.S. Gold</publisher> |
| 36611 | 40141 | <part name="cart" interface="snes_cart"> |
| 40142 | ||
| 40143 | <feature name="slot" value="lorom" /> | |
| 36612 | 40144 | <dataarea name="rom" size="2097152"> |
| 36613 | 40145 | <rom name="fever pitch soccer (europe) (beta).sfc" size="2097152" crc="25c8f98a" sha1="7b399c8ac591ab76c7ef007dfbe6405679dced32" offset="0x000000" /> |
| 36614 | 40146 | </dataarea> |
| r21545 | r21546 | |
| 36621 | 40153 | <publisher>U.S. Gold</publisher> |
| 36622 | 40154 | <sharedfeat name="compatibility" value="PAL"/> |
| 36623 | 40155 | <part name="cart" interface="snes_cart"> |
| 40156 | ||
| 40157 | <feature name="slot" value="lorom" /> | |
| 36624 | 40158 | <dataarea name="rom" size="2097152"> |
| 36625 | 40159 | <rom name="fever pitch soccer (europe) (en,fr,de,es,it).sfc" size="2097152" crc="9b1ea779" sha1="92f1a0e583b0dc39e2d6b8d27862167c3f36b916" offset="0x000000" /> |
| 36626 | 40160 | </dataarea> |
| r21545 | r21546 | |
| 36632 | 40166 | <year>1994</year> |
| 36633 | 40167 | <publisher>Electronic Arts</publisher> |
| 36634 | 40168 | <part name="cart" interface="snes_cart"> |
| 40169 | ||
| 40170 | <feature name="slot" value="lorom" /> | |
| 36635 | 40171 | <dataarea name="rom" size="1048576"> |
| 36636 | 40172 | <rom name="fifa international soccer (europe).sfc" size="1048576" crc="a350821a" sha1="f9967028eca3be77cba97bf46705fe0b96bb79b6" offset="0x000000" /> |
| 36637 | 40173 | </dataarea> |
| r21545 | r21546 | |
| 36646 | 40182 | <info name="release" value="19940617" /> |
| 36647 | 40183 | <info name="alt_title" value="FIFA インターナショナル・サッカー" /> |
| 36648 | 40184 | <part name="cart" interface="snes_cart"> |
| 40185 | ||
| 40186 | <feature name="slot" value="lorom" /> | |
| 36649 | 40187 | <dataarea name="rom" size="1048576"> |
| 36650 | 40188 | <rom name="fifa international soccer (japan).sfc" size="1048576" crc="4fa1d452" sha1="0438c292127f92e5525dc4cab7fa048be53c21e4" offset="0x000000" /> |
| 36651 | 40189 | </dataarea> |
| r21545 | r21546 | |
| 36658 | 40196 | <publisher>Electronic Arts</publisher> |
| 36659 | 40197 | <info name="release" value="199405xx" /> |
| 36660 | 40198 | <part name="cart" interface="snes_cart"> |
| 40199 | ||
| 40200 | <feature name="slot" value="lorom" /> | |
| 36661 | 40201 | <dataarea name="rom" size="1048576"> |
| 36662 | 40202 | <rom name="fifa international soccer (usa).sfc" size="1048576" crc="56296426" sha1="7c80aab5185260e788d26d0fbe5e71cca90ce584" offset="0x000000" /> |
| 36663 | 40203 | </dataarea> |
| r21545 | r21546 | |
| 36670 | 40210 | <publisher>Electronic Arts</publisher> |
| 36671 | 40211 | <info name="release" value="199511xx" /> |
| 36672 | 40212 | <part name="cart" interface="snes_cart"> |
| 40213 | ||
| 40214 | <feature name="slot" value="lorom" /> | |
| 36673 | 40215 | <dataarea name="rom" size="1572864"> |
| 36674 | 40216 | <rom name="fifa soccer 96 (usa) (en,fr,de,es,it,sv).sfc" size="1572864" crc="7566347d" sha1="07e91bde033b5a53a5723c9db5f3649a99acdb08" offset="0x000000" /> |
| 36675 | 40217 | </dataarea> |
| r21545 | r21546 | |
| 36684 | 40226 | <publisher>Electronic Arts</publisher> |
| 36685 | 40227 | <info name="release" value="199611xx" /> |
| 36686 | 40228 | <part name="cart" interface="snes_cart"> |
| 40229 | ||
| 40230 | <feature name="slot" value="lorom" /> | |
| 36687 | 40231 | <dataarea name="rom" size="2097152"> |
| 36688 | 40232 | <rom name="fifa soccer 97 - gold edition (usa) (en,fr,de,es,it,sv).sfc" size="2097152" crc="9cdbb2f8" sha1="e4f5e96d7ee0ea9fbcae2b9db907cd8380372c1b" offset="0x000000" /> |
| 36689 | 40233 | </dataarea> |
| r21545 | r21546 | |
| 36701 | 40245 | <info name="alt_title" value="ファイターズヒストリー" /> |
| 36702 | 40246 | <sharedfeat name="compatibility" value="NTSC"/> |
| 36703 | 40247 | <part name="cart" interface="snes_cart"> |
| 40248 | ||
| 40249 | <feature name="slot" value="hirom" /> | |
| 36704 | 40250 | <dataarea name="rom" size="2621440"> |
| 36705 | 40251 | <rom name="fighter's history (japan).sfc" size="2621440" crc="10751e4f" sha1="ced5125ed753d0729923ac2967f7faf21f3e0032" offset="0x000000" /> |
| 36706 | 40252 | </dataarea> |
| r21545 | r21546 | |
| 36713 | 40259 | <publisher>Data East</publisher> |
| 36714 | 40260 | <sharedfeat name="compatibility" value="NTSC"/> |
| 36715 | 40261 | <part name="cart" interface="snes_cart"> |
| 40262 | ||
| 40263 | <feature name="slot" value="hirom" /> | |
| 36716 | 40264 | <dataarea name="rom" size="2621440"> |
| 36717 | 40265 | <rom name="fighter's history (usa) (beta).sfc" size="2621440" crc="283a57aa" sha1="c2d44e901c8ba85a1433e4d423389565c8b73ef9" offset="0x000000" /> |
| 36718 | 40266 | </dataarea> |
| r21545 | r21546 | |
| 36728 | 40276 | <info name="alt_title" value="ファイターズヒストリー溝口危機一髪!!" /> |
| 36729 | 40277 | <sharedfeat name="compatibility" value="NTSC"/> |
| 36730 | 40278 | <part name="cart" interface="snes_cart"> |
| 40279 | ||
| 40280 | <feature name="slot" value="hirom" /> | |
| 36731 | 40281 | <dataarea name="rom" size="3145728"> |
| 36732 | 40282 | <rom name="fighter's history - mizoguchi kikiippatsu!! (japan).sfc" size="3145728" crc="65bb5dc4" sha1="2269681db3bca3730024dfa601e6648fd8af4e02" offset="0x000000" /> |
| 36733 | 40283 | </dataarea> |
| r21545 | r21546 | |
| 36742 | 40292 | <info name="release" value="19950811" /> |
| 36743 | 40293 | <info name="alt_title" value="ファイティングベースボール" /> |
| 36744 | 40294 | <part name="cart" interface="snes_cart"> |
| 40295 | ||
| 40296 | <feature name="slot" value="lorom" /> | |
| 36745 | 40297 | <dataarea name="rom" size="1048576"> |
| 36746 | 40298 | <rom name="fighting baseball (japan).sfc" size="1048576" crc="7f3c1a95" sha1="ab37ae8d02e1c770624b9d7f0b398832db761e8d" offset="0x000000" /> |
| 36747 | 40299 | </dataarea> |
| r21545 | r21546 | |
| 36754 | 40306 | <publisher>Square</publisher> |
| 36755 | 40307 | <info name="release" value="199210xx" /> |
| 36756 | 40308 | <part name="cart" interface="snes_cart"> |
| 40309 | ||
| 40310 | <feature name="slot" value="lorom" /> | |
| 36757 | 40311 | <dataarea name="rom" size="524288"> |
| 36758 | 40312 | <rom name="final fantasy - mystic quest (usa) (rev 1).sfc" size="524288" crc="2c52c792" sha1="6be74b73b736bc6027c0e92619874da7c498bed0" offset="0x000000" /> |
| 36759 | 40313 | </dataarea> |
| r21545 | r21546 | |
| 36768 | 40322 | <publisher>Square</publisher> |
| 36769 | 40323 | <info name="release" value="199410xx" /> |
| 36770 | 40324 | <part name="cart" interface="snes_cart"> |
| 40325 | ||
| 40326 | <feature name="slot" value="hirom" /> | |
| 36771 | 40327 | <dataarea name="rom" size="3145728"> |
| 36772 | 40328 | <rom name="final fantasy iii (usa) (rev 1).sfc" size="3145728" crc="c0fa0464" sha1="057ada1c641e3e0b3ca34e6e4f4eb1b05a87143a" offset="0x000000" /> |
| 36773 | 40329 | </dataarea> |
| r21545 | r21546 | |
| 36781 | 40337 | <year>1991</year> |
| 36782 | 40338 | <publisher>Capcom</publisher> |
| 36783 | 40339 | <part name="cart" interface="snes_cart"> |
| 40340 | ||
| 40341 | <feature name="slot" value="lorom" /> | |
| 36784 | 40342 | <dataarea name="rom" size="1048576"> |
| 36785 | 40343 | <rom name="final fight (europe).sfc" size="1048576" crc="a4437629" sha1="c448afe49f5ec5e94430ad25069f43ba28838859" offset="0x000000" /> |
| 36786 | 40344 | </dataarea> |
| r21545 | r21546 | |
| 36792 | 40350 | <year>1993</year> |
| 36793 | 40351 | <publisher>Capcom</publisher> |
| 36794 | 40352 | <part name="cart" interface="snes_cart"> |
| 40353 | ||
| 40354 | <feature name="slot" value="lorom" /> | |
| 36795 | 40355 | <dataarea name="rom" size="1310720"> |
| 36796 | 40356 | <rom name="final fight 2 (europe).sfc" size="1310720" crc="7b94ca96" sha1="3185d06725e27de8e7c703cf4b8e5b5b17b03c7f" offset="0x000000" /> |
| 36797 | 40357 | </dataarea> |
| r21545 | r21546 | |
| 36803 | 40363 | <year>1996</year> |
| 36804 | 40364 | <publisher>Capcom</publisher> |
| 36805 | 40365 | <part name="cart" interface="snes_cart"> |
| 40366 | ||
| 40367 | <feature name="slot" value="hirom" /> | |
| 36806 | 40368 | <dataarea name="rom" size="3145728"> |
| 36807 | 40369 | <rom name="final fight 3 (usa) (beta).sfc" size="3145728" crc="fb764d87" sha1="24e7b1fa0b5727a9c9a353108c97ba5964bed404" offset="0x000000" /> |
| 36808 | 40370 | </dataarea> |
| r21545 | r21546 | |
| 36817 | 40379 | <info name="release" value="19920320" /> |
| 36818 | 40380 | <info name="alt_title" value="ファイナルファイト ガイ" /> |
| 36819 | 40381 | <part name="cart" interface="snes_cart"> |
| 40382 | ||
| 40383 | <feature name="slot" value="lorom" /> | |
| 36820 | 40384 | <dataarea name="rom" size="1048576"> |
| 36821 | 40385 | <rom name="final fight guy (japan).sfc" size="1048576" crc="de144411" sha1="db68f895d5872cfac82d666fb342af8c1a06e1fd" offset="0x000000" /> |
| 36822 | 40386 | </dataarea> |
| r21545 | r21546 | |
| 36830 | 40394 | <info name="release" value="199406xx" /> |
| 36831 | 40395 | <sharedfeat name="compatibility" value="NTSC"/> |
| 36832 | 40396 | <part name="cart" interface="snes_cart"> |
| 40397 | ||
| 40398 | <feature name="slot" value="lorom" /> | |
| 36833 | 40399 | <dataarea name="rom" size="1048576"> |
| 36834 | 40400 | <rom name="final fight guy (usa).sfc" size="1048576" crc="bc1ae3c2" sha1="67646b258d892d7ecbc660a01d4d19d525971801" offset="0x000000" /> |
| 36835 | 40401 | </dataarea> |
| r21545 | r21546 | |
| 36844 | 40410 | <info name="release" value="19951222" /> |
| 36845 | 40411 | <info name="alt_title" value="ファイナルファイト タフ" /> |
| 36846 | 40412 | <part name="cart" interface="snes_cart"> |
| 40413 | ||
| 40414 | <feature name="slot" value="hirom" /> | |
| 36847 | 40415 | <dataarea name="rom" size="3145728"> |
| 36848 | 40416 | <rom name="final fight tough (japan).sfc" size="3145728" crc="0e3ee9b3" sha1="6883fcb295c22d26aafcd90f7eabf2c3f4162123" offset="0x000000" /> |
| 36849 | 40417 | </dataarea> |
| r21545 | r21546 | |
| 36858 | 40426 | <info name="release" value="19931105" /> |
| 36859 | 40427 | <info name="alt_title" value="ファイナル ノックアウト" /> |
| 36860 | 40428 | <part name="cart" interface="snes_cart"> |
| 40429 | ||
| 40430 | <feature name="slot" value="lorom" /> | |
| 36861 | 40431 | <dataarea name="rom" size="1048576"> |
| 36862 | 40432 | <rom name="final knockout (japan).sfc" size="1048576" crc="cc1dbc9b" sha1="09de40bbf3ace05465da2b7abb65e7433deb5b8d" offset="0x000000" /> |
| 36863 | 40433 | </dataarea> |
| r21545 | r21546 | |
| 36873 | 40443 | <info name="alt_title" value="ファイナル・ストレッチ" /> |
| 36874 | 40444 | <part name="cart" interface="snes_cart"> |
| 36875 | 40445 | <feature name="enhancement" value="DSP1" /> |
| 40446 | ||
| 40447 | <feature name="slot" value="hirom_dsp" /> | |
| 36876 | 40448 | <dataarea name="rom" size="1572864"> |
| 36877 | 40449 | <rom name="final stretch (japan).sfc" size="1572864" crc="8d29f41f" sha1="3c8e37271d995d9507d733864ab79b43ab531e96" offset="0x000000" /> |
| 36878 | 40450 | </dataarea> |
| 40451 | <dataarea name="addon" size="10240"> | |
| 40452 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 40453 | </dataarea> | |
| 36879 | 40454 | <dataarea name="nvram" size="2048"> |
| 36880 | 40455 | </dataarea> |
| 36881 | 40456 | </part> |
| r21545 | r21546 | |
| 36889 | 40464 | <info name="release" value="19930917" /> |
| 36890 | 40465 | <info name="alt_title" value="ファイナルセット" /> |
| 36891 | 40466 | <part name="cart" interface="snes_cart"> |
| 40467 | ||
| 40468 | <feature name="slot" value="lorom" /> | |
| 36892 | 40469 | <dataarea name="rom" size="1048576"> |
| 36893 | 40470 | <rom name="finalset (japan).sfc" size="1048576" crc="e06fae58" sha1="06f411f3aa45a052bac998be421082e21fc6b389" offset="0x000000" /> |
| 36894 | 40471 | </dataarea> |
| r21545 | r21546 | |
| 36916 | 40493 | <feature name="u7" value="U7 MM1134BF" /> |
| 36917 | 40494 | <feature name="battery" value="BAT1" /> |
| 36918 | 40495 | <feature name="cart_model" value="SHVC-041" /> |
| 40496 | ||
| 40497 | <feature name="slot" value="lorom" /> | |
| 36919 | 40498 | <dataarea name="rom" size="3145728"> |
| 36920 | 40499 | <!--dataarea name="rom" size="4194304"--> |
| 36921 | 40500 | <rom name="fire emblem - monshou no nazo (japan) (rev 1).sfc" size="3145728" crc="a427b7e6" sha1="b0b03831d9104e3c5df551d50ebc275a1692149e" offset="0x000000" /> |
| r21545 | r21546 | |
| 36937 | 40516 | <info name="release" value="19990901 / 20000121" /> |
| 36938 | 40517 | <info name="alt_title" value="ファイアーエムブレムトラキア776" /> |
| 36939 | 40518 | <part name="cart" interface="snes_cart"> |
| 40519 | ||
| 40520 | <feature name="slot" value="lorom" /> | |
| 36940 | 40521 | <dataarea name="rom" size="4194304"> |
| 36941 | 40522 | <rom name="fire emblem - thracia 776 (japan) (np).sfc" size="4194304" crc="bc6162ae" sha1="d8023c0c7b1194bcbc2119b663aaf63ffb6fd101" offset="0x000000" /> |
| 36942 | 40523 | </dataarea> |
| r21545 | r21546 | |
| 36953 | 40534 | <info name="release" value="19990901 / 20000121" /> |
| 36954 | 40535 | <info name="alt_title" value="ファイアーエムブレムトラキア776" /> |
| 36955 | 40536 | <part name="cart" interface="snes_cart"> |
| 40537 | ||
| 40538 | <feature name="slot" value="lorom" /> | |
| 36956 | 40539 | <dataarea name="rom" size="4194304"> |
| 36957 | 40540 | <rom name="fire emblem - thracia 776 (japan) (rev 1) (np).sfc" size="4194304" crc="eaaa2c53" sha1="4924642ad581b89d8c50388811635934e51ace9a" offset="0x000000" /> |
| 36958 | 40541 | </dataarea> |
| r21545 | r21546 | |
| 36969 | 40552 | <info name="release" value="19990901 / 20000121" /> |
| 36970 | 40553 | <info name="alt_title" value="ファイアーエムブレムトラキア776" /> |
| 36971 | 40554 | <part name="cart" interface="snes_cart"> |
| 40555 | ||
| 40556 | <feature name="slot" value="lorom" /> | |
| 36972 | 40557 | <dataarea name="rom" size="4194304"> |
| 36973 | 40558 | <rom name="fire emblem - thracia 776 (japan).sfc" size="4194304" crc="fc519952" sha1="75b504921d08e313ff58150e40121ac701884517" offset="0x000000" /> |
| 36974 | 40559 | </dataarea> |
| r21545 | r21546 | |
| 36985 | 40570 | <info name="release" value="19941111" /> |
| 36986 | 40571 | <info name="alt_title" value="ファイヤー・ファイティング" /> |
| 36987 | 40572 | <part name="cart" interface="snes_cart"> |
| 40573 | ||
| 40574 | <feature name="slot" value="hirom" /> | |
| 36988 | 40575 | <dataarea name="rom" size="1048576"> |
| 36989 | 40576 | <rom name="fire fighting (japan).sfc" size="1048576" crc="554fc152" sha1="eb10bf9efd10a068fb5272c390177e23657b77fa" offset="0x000000" /> |
| 36990 | 40577 | </dataarea> |
| r21545 | r21546 | |
| 36996 | 40583 | <year>1994</year> |
| 36997 | 40584 | <publisher>DTMC</publisher> |
| 36998 | 40585 | <part name="cart" interface="snes_cart"> |
| 40586 | ||
| 40587 | <feature name="slot" value="lorom" /> | |
| 36999 | 40588 | <dataarea name="rom" size="1048576"> |
| 37000 | 40589 | <rom name="fire striker (usa) (beta).sfc" size="1048576" crc="bbbbabb6" sha1="9df853dde743616fd09f34631d0c4c849e163969" offset="0x000000" /> |
| 37001 | 40590 | </dataarea> |
| r21545 | r21546 | |
| 37008 | 40597 | <publisher>DTMC</publisher> |
| 37009 | 40598 | <info name="release" value="199410xx" /> |
| 37010 | 40599 | <part name="cart" interface="snes_cart"> |
| 40600 | ||
| 40601 | <feature name="slot" value="lorom" /> | |
| 37011 | 40602 | <dataarea name="rom" size="1048576"> |
| 37012 | 40603 | <rom name="fire striker (usa).sfc" size="1048576" crc="e500c7ba" sha1="cca28af7c399845dff3ca17be3f5dc1051c959ac" offset="0x000000" /> |
| 37013 | 40604 | </dataarea> |
| r21545 | r21546 | |
| 37019 | 40610 | <year>1994</year> |
| 37020 | 40611 | <publisher>Human Entertainment</publisher> |
| 37021 | 40612 | <part name="cart" interface="snes_cart"> |
| 40613 | ||
| 40614 | <feature name="slot" value="lorom" /> | |
| 37022 | 40615 | <dataarea name="rom" size="1048576"> |
| 37023 | 40616 | <rom name="firemen, the (europe) (en,fr,de).sfc" size="1048576" crc="def665af" sha1="4b82c70824922380a3193e282d7674a442bd6dd4" offset="0x000000" /> |
| 37024 | 40617 | </dataarea> |
| r21545 | r21546 | |
| 37033 | 40626 | <info name="release" value="19940909" /> |
| 37034 | 40627 | <info name="alt_title" value="ザ・ファイヤーメン" /> |
| 37035 | 40628 | <part name="cart" interface="snes_cart"> |
| 40629 | ||
| 40630 | <feature name="slot" value="lorom" /> | |
| 37036 | 40631 | <dataarea name="rom" size="1048576"> |
| 37037 | 40632 | <rom name="firemen, the (japan).sfc" size="1048576" crc="15f2271d" sha1="b2bb5c41d5cea5a9a130c3063857ba9ec000e166" offset="0x000000" /> |
| 37038 | 40633 | </dataarea> |
| r21545 | r21546 | |
| 37045 | 40640 | <publisher>Sunsoft</publisher> |
| 37046 | 40641 | <info name="release" value="199211xx" /> |
| 37047 | 40642 | <part name="cart" interface="snes_cart"> |
| 40643 | ||
| 40644 | <feature name="slot" value="lorom" /> | |
| 37048 | 40645 | <dataarea name="rom" size="1048576"> |
| 37049 | 40646 | <rom name="firepower 2000 (usa).sfc" size="1048576" crc="327416d4" sha1="9ca23cf83594d2c17ac790684de278f3fa91b360" offset="0x000000" /> |
| 37050 | 40647 | </dataarea> |
| r21545 | r21546 | |
| 37059 | 40656 | <info name="release" value="19940311" /> |
| 37060 | 40657 | <info name="alt_title" value="ファーストクイーン オルニック戦記" /> |
| 37061 | 40658 | <part name="cart" interface="snes_cart"> |
| 40659 | ||
| 40660 | <feature name="slot" value="hirom" /> | |
| 37062 | 40661 | <dataarea name="rom" size="1048576"> |
| 37063 | 40662 | <rom name="first queen - ornic senki (japan).sfc" size="1048576" crc="be3de834" sha1="db7407f394badc1fc0978ce31073fc7a1a35599f" offset="0x000000" /> |
| 37064 | 40663 | </dataarea> |
| r21545 | r21546 | |
| 37075 | 40674 | <info name="release" value="19930702" /> |
| 37076 | 40675 | <info name="alt_title" value="ファーストサムライ" /> |
| 37077 | 40676 | <part name="cart" interface="snes_cart"> |
| 40677 | ||
| 40678 | <feature name="slot" value="lorom" /> | |
| 37078 | 40679 | <dataarea name="rom" size="524288"> |
| 37079 | 40680 | <rom name="first samurai (japan).sfc" size="524288" crc="b249401b" sha1="e59c07f46b0a2a562b929ebd6da715e984cc9ff1" offset="0x000000" /> |
| 37080 | 40681 | </dataarea> |
| r21545 | r21546 | |
| 37089 | 40690 | <info name="release" value="19960531" /> |
| 37090 | 40691 | <info name="alt_title" value="フィッシング甲子園" /> |
| 37091 | 40692 | <part name="cart" interface="snes_cart"> |
| 40693 | ||
| 40694 | <feature name="slot" value="lorom" /> | |
| 37092 | 40695 | <dataarea name="rom" size="2097152"> |
| 37093 | 40696 | <rom name="fishing koushien (japan).sfc" size="2097152" crc="dcfe0b6b" sha1="66b3aeb382187fb05dddc12e808412e5c9a3b7b3" offset="0x000000" /> |
| 37094 | 40697 | </dataarea> |
| r21545 | r21546 | |
| 37102 | 40705 | <year>1994</year> |
| 37103 | 40706 | <publisher>U.S. Gold</publisher> |
| 37104 | 40707 | <part name="cart" interface="snes_cart"> |
| 40708 | ||
| 40709 | <feature name="slot" value="hirom" /> | |
| 37105 | 40710 | <dataarea name="rom" size="2097152"> |
| 37106 | 40711 | <rom name="flashback (europe) (en,fr).sfc" size="2097152" crc="5dafac3e" sha1="cbdf1042062a3d4eafcf3b8a56193ef72c1792de" offset="0x000000" /> |
| 37107 | 40712 | </dataarea> |
| r21545 | r21546 | |
| 37113 | 40718 | <year>1995</year> |
| 37114 | 40719 | <publisher>Ocean</publisher> |
| 37115 | 40720 | <part name="cart" interface="snes_cart"> |
| 40721 | ||
| 40722 | <feature name="slot" value="lorom" /> | |
| 37116 | 40723 | <dataarea name="rom" size="2097152"> |
| 37117 | 40724 | <rom name="flintstones, the (europe) (en,fr,de,es,it) (beta).sfc" size="2097152" crc="15143605" sha1="cfb0fde9f158e2831c6d3bd7b3c67b3d9c7a0e58" offset="0x000000" /> |
| 37118 | 40725 | </dataarea> |
| r21545 | r21546 | |
| 37125 | 40732 | <publisher>Ocean</publisher> |
| 37126 | 40733 | <sharedfeat name="compatibility" value="PAL"/> |
| 37127 | 40734 | <part name="cart" interface="snes_cart"> |
| 40735 | ||
| 40736 | <feature name="slot" value="lorom" /> | |
| 37128 | 40737 | <dataarea name="rom" size="2097152"> |
| 37129 | 40738 | <rom name="flintstones, the (europe) (en,fr,de,es,it).sfc" size="2097152" crc="85a8b156" sha1="9eacc69d9656ebc16cb88597fd09bd62f9a5f5a0" offset="0x000000" /> |
| 37130 | 40739 | </dataarea> |
| r21545 | r21546 | |
| 37136 | 40745 | <year>1994</year> |
| 37137 | 40746 | <publisher>Taito</publisher> |
| 37138 | 40747 | <part name="cart" interface="snes_cart"> |
| 40748 | ||
| 40749 | <feature name="slot" value="lorom" /> | |
| 37139 | 40750 | <dataarea name="rom" size="1048576"> |
| 37140 | 40751 | <rom name="flintstones, the - the treasure of sierra madrock (europe).sfc" size="1048576" crc="cc846dc4" sha1="ff91a8e70f0bdc4e3696634d6febd5a40663ba72" offset="0x000000" /> |
| 37141 | 40752 | </dataarea> |
| r21545 | r21546 | |
| 37150 | 40761 | <info name="release" value="19940812" /> |
| 37151 | 40762 | <info name="alt_title" value="ザ・フリントストーンズ The Treasure of Sierra Madrock" /> |
| 37152 | 40763 | <part name="cart" interface="snes_cart"> |
| 40764 | ||
| 40765 | <feature name="slot" value="lorom" /> | |
| 37153 | 40766 | <dataarea name="rom" size="1048576"> |
| 37154 | 40767 | <rom name="flintstones, the - the treasure of sierra madrock (japan).sfc" size="1048576" crc="53d29a71" sha1="f0045a384acac58215849cfeb95da92c09187830" offset="0x000000" /> |
| 37155 | 40768 | </dataarea> |
| r21545 | r21546 | |
| 37164 | 40777 | <info name="release" value="19921218" /> |
| 37165 | 40778 | <info name="alt_title" value="フライングヒーローぶぎゅる~の大冒険" /> |
| 37166 | 40779 | <part name="cart" interface="snes_cart"> |
| 40780 | ||
| 40781 | <feature name="slot" value="lorom" /> | |
| 37167 | 40782 | <dataarea name="rom" size="1048576"> |
| 37168 | 40783 | <rom name="flying hero - bugyuru no daibouken (japan).sfc" size="1048576" crc="1a19fc3a" sha1="89a10f5cb9b19dcaabb1c26e884c102a49105f0c" offset="0x000000" /> |
| 37169 | 40784 | </dataarea> |
| r21545 | r21546 | |
| 37176 | 40791 | <publisher>American Sammy</publisher> |
| 37177 | 40792 | <info name="release" value="199310xx" /> |
| 37178 | 40793 | <part name="cart" interface="snes_cart"> |
| 40794 | ||
| 40795 | <feature name="slot" value="lorom" /> | |
| 37179 | 40796 | <dataarea name="rom" size="1048576"> |
| 37180 | 40797 | <rom name="football fury (usa).sfc" size="1048576" crc="729a5524" sha1="ac1f104bdd74c4186b3e7160a13f85fc9ed635fe" offset="0x000000" /> |
| 37181 | 40798 | </dataarea> |
| r21545 | r21546 | |
| 37188 | 40805 | <publisher>Acclaim Entertainment</publisher> |
| 37189 | 40806 | <sharedfeat name="compatibility" value="PAL"/> |
| 37190 | 40807 | <part name="cart" interface="snes_cart"> |
| 40808 | ||
| 40809 | <feature name="slot" value="lorom" /> | |
| 37191 | 40810 | <dataarea name="rom" size="3145728"> |
| 37192 | 40811 | <rom name="foreman for real (europe).sfc" size="3145728" crc="8c1b9f50" sha1="88c2fa634324f05c8091e6afeb3c4dab2bd7d89d" offset="0x000000" /> |
| 37193 | 40812 | </dataarea> |
| r21545 | r21546 | |
| 37203 | 40822 | <info name="alt_title" value="フォアマン フォーリアル" /> |
| 37204 | 40823 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37205 | 40824 | <part name="cart" interface="snes_cart"> |
| 40825 | ||
| 40826 | <feature name="slot" value="lorom" /> | |
| 37206 | 40827 | <dataarea name="rom" size="3145728"> |
| 37207 | 40828 | <rom name="foreman for real (japan).sfc" size="3145728" crc="d7576775" sha1="d55a25471f3b8188e4b2b41ded2457a62f3d1c2b" offset="0x000000" /> |
| 37208 | 40829 | </dataarea> |
| r21545 | r21546 | |
| 37216 | 40837 | <info name="release" value="199510xx" /> |
| 37217 | 40838 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37218 | 40839 | <part name="cart" interface="snes_cart"> |
| 40840 | ||
| 40841 | <feature name="slot" value="lorom" /> | |
| 37219 | 40842 | <dataarea name="rom" size="3145728"> |
| 37220 | 40843 | <rom name="foreman for real (usa).sfc" size="3145728" crc="5fa4d051" sha1="ac57fe112326c33aca153f2747457e3ba5d24260" offset="0x000000" /> |
| 37221 | 40844 | </dataarea> |
| r21545 | r21546 | |
| 37230 | 40853 | <info name="release" value="19940428" /> |
| 37231 | 40854 | <info name="alt_title" value="フォーチュンクエスト ダイスをころがせ" /> |
| 37232 | 40855 | <part name="cart" interface="snes_cart"> |
| 40856 | ||
| 40857 | <feature name="slot" value="hirom" /> | |
| 37233 | 40858 | <dataarea name="rom" size="1048576"> |
| 37234 | 40859 | <rom name="fortune quest - dice o korogase (japan).sfc" size="1048576" crc="448e3712" sha1="88196f790071c51edb15e9cadda5172fda344262" offset="0x000000" /> |
| 37235 | 40860 | </dataarea> |
| r21545 | r21546 | |
| 37243 | 40868 | <year>1995</year> |
| 37244 | 40869 | <publisher>Acclaim Entertainment</publisher> |
| 37245 | 40870 | <part name="cart" interface="snes_cart"> |
| 40871 | ||
| 40872 | <feature name="slot" value="lorom" /> | |
| 37246 | 40873 | <dataarea name="rom" size="3145728"> |
| 37247 | 40874 | <rom name="frank thomas big hurt baseball (europe).sfc" size="3145728" crc="50300f58" sha1="fd8d4ba822963498c29c82963c1df904fa423792" offset="0x000000" /> |
| 37248 | 40875 | </dataarea> |
| r21545 | r21546 | |
| 37259 | 40886 | <info name="release" value="19951201" /> |
| 37260 | 40887 | <info name="alt_title" value="ビッグ・ハート" /> |
| 37261 | 40888 | <part name="cart" interface="snes_cart"> |
| 40889 | ||
| 40890 | <feature name="slot" value="lorom" /> | |
| 37262 | 40891 | <dataarea name="rom" size="3145728"> |
| 37263 | 40892 | <rom name="frank thomas big hurt baseball (japan).sfc" size="3145728" crc="1a895b24" sha1="31760777d2783dc4684d6adb8dbbb96805c83389" offset="0x000000" /> |
| 37264 | 40893 | </dataarea> |
| r21545 | r21546 | |
| 37273 | 40902 | <publisher>Acclaim Entertainment</publisher> |
| 37274 | 40903 | <info name="release" value="199511xx" /> |
| 37275 | 40904 | <part name="cart" interface="snes_cart"> |
| 40905 | ||
| 40906 | <feature name="slot" value="lorom" /> | |
| 37276 | 40907 | <dataarea name="rom" size="3145728"> |
| 37277 | 40908 | <rom name="frank thomas big hurt baseball (usa).sfc" size="3145728" crc="21239dda" sha1="383013ac68a52420e0115cc6970ec1bc6e8c22b1" offset="0x000000" /> |
| 37278 | 40909 | </dataarea> |
| r21545 | r21546 | |
| 37286 | 40917 | <year>1996</year> |
| 37287 | 40918 | <publisher>GameTek</publisher> |
| 37288 | 40919 | <part name="cart" interface="snes_cart"> |
| 40920 | ||
| 40921 | <feature name="slot" value="lorom" /> | |
| 37289 | 40922 | <dataarea name="rom" size="2097152"> |
| 37290 | 40923 | <rom name="frantic flea (europe) (beta).sfc" size="2097152" crc="4da05714" sha1="4e22e4695bb8f1f65949464ee800182f72eddbb6" offset="0x000000" /> |
| 37291 | 40924 | </dataarea> |
| r21545 | r21546 | |
| 37297 | 40930 | <year>1996</year> |
| 37298 | 40931 | <publisher>GameTek</publisher> |
| 37299 | 40932 | <part name="cart" interface="snes_cart"> |
| 40933 | ||
| 40934 | <feature name="slot" value="lorom" /> | |
| 37300 | 40935 | <dataarea name="rom" size="2097152"> |
| 37301 | 40936 | <rom name="frantic flea (europe).sfc" size="2097152" crc="ce5c3af9" sha1="1e449af7333e143edbb226368495a39b85942c57" offset="0x000000" /> |
| 37302 | 40937 | </dataarea> |
| r21545 | r21546 | |
| 37309 | 40944 | <publisher>GameTek</publisher> |
| 37310 | 40945 | <info name="release" value="199604xx" /> |
| 37311 | 40946 | <part name="cart" interface="snes_cart"> |
| 40947 | ||
| 40948 | <feature name="slot" value="lorom" /> | |
| 37312 | 40949 | <dataarea name="rom" size="2097152"> |
| 37313 | 40950 | <rom name="frantic flea (usa).sfc" size="2097152" crc="ffa8d1ff" sha1="7edb79641a4984f12dc2e93fd3f635627a84c62b" offset="0x000000" /> |
| 37314 | 40951 | </dataarea> |
| r21545 | r21546 | |
| 37321 | 40958 | <publisher>Majesco</publisher> |
| 37322 | 40959 | <info name="release" value="199808xx" /> |
| 37323 | 40960 | <part name="cart" interface="snes_cart"> |
| 40961 | ||
| 40962 | <feature name="slot" value="lorom" /> | |
| 37324 | 40963 | <dataarea name="rom" size="524288"> |
| 37325 | 40964 | <rom name="frogger (usa).sfc" size="524288" crc="2488b8f2" sha1="7e9e9128d1ad71adba61787ba6e088c3d8195ddd" offset="0x000000" /> |
| 37326 | 40965 | </dataarea> |
| r21545 | r21546 | |
| 37333 | 40972 | <publisher>Bandai</publisher> |
| 37334 | 40973 | <info name="release" value="19940720" /> |
| 37335 | 40974 | <part name="cart" interface="snes_cart"> |
| 40975 | ||
| 40976 | <feature name="slot" value="lorom" /> | |
| 37336 | 40977 | <dataarea name="rom" size="1572864"> |
| 37337 | 40978 | <rom name="from tv animation slam dunk - dream team - shuueisha limited (japan).sfc" size="1572864" crc="99276eaa" sha1="a32b6ae03c3c5702f5fb1d53f68a076ac933184f" offset="0x000000" /> |
| 37338 | 40979 | </dataarea> |
| r21545 | r21546 | |
| 37347 | 40988 | <info name="release" value="19951027" /> |
| 37348 | 40989 | <info name="alt_title" value="テレビアニメ スラムダンクSDヒートアップ!!" /> |
| 37349 | 40990 | <part name="cart" interface="snes_cart"> |
| 40991 | ||
| 40992 | <feature name="slot" value="lorom" /> | |
| 37350 | 40993 | <dataarea name="rom" size="1572864"> |
| 37351 | 40994 | <rom name="from tv animation slam dunk - sd heat up!! (japan).sfc" size="1572864" crc="d05114c0" sha1="cadba14e8c79aff27c5ca948be708fd2d7588064" offset="0x000000" /> |
| 37352 | 40995 | </dataarea> |
| r21545 | r21546 | |
| 37361 | 41004 | <info name="release" value="19950224" /> |
| 37362 | 41005 | <info name="alt_title" value="フロントミッション" /> |
| 37363 | 41006 | <part name="cart" interface="snes_cart"> |
| 41007 | ||
| 41008 | <feature name="slot" value="hirom" /> | |
| 37364 | 41009 | <dataarea name="rom" size="3145728"> |
| 37365 | 41010 | <rom name="front mission (japan) (rev 1).sfc" size="3145728" crc="50278b21" sha1="a1c2ba17e44b8e69b6118f1e12dcefc32eb93387" offset="0x000000" /> |
| 37366 | 41011 | </dataarea> |
| r21545 | r21546 | |
| 37377 | 41022 | <info name="release" value="19941216" /> |
| 37378 | 41023 | <info name="alt_title" value="フル・パワー" /> |
| 37379 | 41024 | <part name="cart" interface="snes_cart"> |
| 41025 | ||
| 41026 | <feature name="slot" value="lorom" /> | |
| 37380 | 41027 | <dataarea name="rom" size="2097152"> |
| 37381 | 41028 | <rom name="full power (japan).sfc" size="2097152" crc="66c04587" sha1="b532b95797c60474f201fbed74f46ac0484ebb18" offset="0x000000" /> |
| 37382 | 41029 | </dataarea> |
| r21545 | r21546 | |
| 37388 | 41035 | <year>1995</year> |
| 37389 | 41036 | <publisher>GameTek</publisher> |
| 37390 | 41037 | <part name="cart" interface="snes_cart"> |
| 41038 | ||
| 41039 | <feature name="slot" value="lorom" /> | |
| 37391 | 41040 | <dataarea name="rom" size="2097152"> |
| 37392 | 41041 | <rom name="full throttle - all-american racing (europe).sfc" size="2097152" crc="861f2e42" sha1="e192d94a8d6615d9fcd417b8fb121a06a69d00d0" offset="0x000000" /> |
| 37393 | 41042 | </dataarea> |
| r21545 | r21546 | |
| 37399 | 41048 | <year>1995</year> |
| 37400 | 41049 | <publisher>CyberSoft</publisher> |
| 37401 | 41050 | <part name="cart" interface="snes_cart"> |
| 41051 | ||
| 41052 | <feature name="slot" value="lorom" /> | |
| 37402 | 41053 | <dataarea name="rom" size="2097152"> |
| 37403 | 41054 | <rom name="full throttle - all-american racing (usa) (beta).sfc" size="2097152" crc="e96e463c" sha1="97f1fefad5067aed6ddb77c6ef60410b48da7544" offset="0x000000" /> |
| 37404 | 41055 | </dataarea> |
| r21545 | r21546 | |
| 37411 | 41062 | <publisher>CyberSoft</publisher> |
| 37412 | 41063 | <info name="release" value="199501xx" /> |
| 37413 | 41064 | <part name="cart" interface="snes_cart"> |
| 41065 | ||
| 41066 | <feature name="slot" value="lorom" /> | |
| 37414 | 41067 | <dataarea name="rom" size="2097152"> |
| 37415 | 41068 | <rom name="full throttle - all-american racing (usa).sfc" size="2097152" crc="2a4a53ca" sha1="1e905f8781a2ad140d3438cc67fa101909188336" offset="0x000000" /> |
| 37416 | 41069 | </dataarea> |
| r21545 | r21546 | |
| 37422 | 41075 | <year>1994</year> |
| 37423 | 41076 | <publisher>Tradewest</publisher> |
| 37424 | 41077 | <part name="cart" interface="snes_cart"> |
| 41078 | ||
| 41079 | <feature name="slot" value="lorom" /> | |
| 37425 | 41080 | <dataarea name="rom" size="1048576"> |
| 37426 | 41081 | <rom name="fun 'n games (europe).sfc" size="1048576" crc="09ff2dfe" sha1="1c435248fde70b2d8c028e4b4acfb8eec39b432a" offset="0x000000" /> |
| 37427 | 41082 | </dataarea> |
| r21545 | r21546 | |
| 37434 | 41089 | <publisher>Tradewest</publisher> |
| 37435 | 41090 | <info name="release" value="199408xx" /> |
| 37436 | 41091 | <part name="cart" interface="snes_cart"> |
| 41092 | ||
| 41093 | <feature name="slot" value="lorom" /> | |
| 37437 | 41094 | <dataarea name="rom" size="1048576"> |
| 37438 | 41095 | <rom name="fun 'n games (usa).sfc" size="1048576" crc="5d6deac7" sha1="1e2f440e204d6ed0a8c392aa8778df579ba54bda" offset="0x000000" /> |
| 37439 | 41096 | </dataarea> |
| r21545 | r21546 | |
| 37448 | 41105 | <info name="release" value="19941021" /> |
| 37449 | 41106 | <info name="alt_title" value="船木誠勝 ハイブリッド・レスラー 闘技伝承" /> |
| 37450 | 41107 | <part name="cart" interface="snes_cart"> |
| 41108 | ||
| 41109 | <feature name="slot" value="lorom" /> | |
| 37451 | 41110 | <dataarea name="rom" size="2097152"> |
| 37452 | 41111 | <rom name="funaki masakatsu hybrid wrestler - tougi denshou (japan).sfc" size="2097152" crc="d1909ffb" sha1="93536370b12a66b075323de577122afc1d365c04" offset="0x000000" /> |
| 37453 | 41112 | </dataarea> |
| r21545 | r21546 | |
| 37464 | 41123 | <info name="release" value="19970801" /> |
| 37465 | 41124 | <info name="alt_title" value="ふね太郎" /> |
| 37466 | 41125 | <part name="cart" interface="snes_cart"> |
| 41126 | ||
| 41127 | <feature name="slot" value="hirom" /> | |
| 37467 | 41128 | <dataarea name="rom" size="2097152"> |
| 37468 | 41129 | <rom name="fune tarou (japan).sfc" size="2097152" crc="5d6ba598" sha1="2c26f7432fe35c58545063ae44ea7daacbd50de3" offset="0x000000" /> |
| 37469 | 41130 | </dataarea> |
| r21545 | r21546 | |
| 37480 | 41141 | <info name="release" value="19960824" /> |
| 37481 | 41142 | <info name="alt_title" value="古田敦也のシミュレーションプロ 野球2" /> |
| 37482 | 41143 | <part name="cart" interface="snes_cart"> |
| 41144 | ||
| 41145 | <feature name="slot" value="lorom" /> | |
| 37483 | 41146 | <dataarea name="rom" size="2097152"> |
| 37484 | 41147 | <rom name="furuta atsuya no simulation pro yakyuu 2 (japan).sfc" size="2097152" crc="566176fa" sha1="7ec287367c0db12f4a0d194505bbbd77addff8eb" offset="0x000000" /> |
| 37485 | 41148 | </dataarea> |
| r21545 | r21546 | |
| 37493 | 41156 | <year>1995?</year> |
| 37494 | 41157 | <publisher>Chunsoft?</publisher> |
| 37495 | 41158 | <part name="cart" interface="snes_cart"> |
| 41159 | ||
| 41160 | <feature name="slot" value="hirom" /> | |
| 37496 | 41161 | <dataarea name="rom" size="4194304"> |
| 37497 | 41162 | <rom name="fushigi no dungeon 2 - fuurai no shiren (japan) (rev 1) (np).sfc" size="4194304" crc="824aa6b5" sha1="19e206b3aded81f47afc1608aa4e452f425244f1" offset="0x000000" /> |
| 37498 | 41163 | </dataarea> |
| r21545 | r21546 | |
| 37509 | 41174 | <info name="release" value="19961220" /> |
| 37510 | 41175 | <info name="alt_title" value="ジー・オー・ディー 目覚めよと呼ぶ声が聴こえ" /> |
| 37511 | 41176 | <part name="cart" interface="snes_cart"> |
| 41177 | ||
| 41178 | <feature name="slot" value="lorom" /> | |
| 37512 | 41179 | <dataarea name="rom" size="3145728"> |
| 37513 | 41180 | <rom name="g.o.d - mezame yo to yobu koe ga kikoe (japan).sfc" size="3145728" crc="4d2ce16f" sha1="6110477b76ce2b352d9ab3d9559be7a230c96c26" offset="0x000000" /> |
| 37514 | 41181 | </dataarea> |
| r21545 | r21546 | |
| 37526 | 41193 | <info name="alt_title" value="ガイアセイバー ヒーロー最大の作戦" /> |
| 37527 | 41194 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37528 | 41195 | <part name="cart" interface="snes_cart"> |
| 41196 | ||
| 41197 | <feature name="slot" value="lorom" /> | |
| 37529 | 41198 | <dataarea name="rom" size="1572864"> |
| 37530 | 41199 | <rom name="gaia saver - hero saidai no sakusen (japan).sfc" size="1572864" crc="ee6534b5" sha1="aca055472184ab256e92a3a593436124519df1bb" offset="0x000000" /> |
| 37531 | 41200 | </dataarea> |
| r21545 | r21546 | |
| 37542 | 41211 | <info name="release" value="19940311" /> |
| 37543 | 41212 | <info name="alt_title" value="ギャラクシーロボ" /> |
| 37544 | 41213 | <part name="cart" interface="snes_cart"> |
| 41214 | ||
| 41215 | <feature name="slot" value="lorom" /> | |
| 37545 | 41216 | <dataarea name="rom" size="1572864"> |
| 37546 | 41217 | <rom name="galaxy robo (japan).sfc" size="1572864" crc="bee62812" sha1="91413a589922350c761c2b46abc1237e1b43ece4" offset="0x000000" /> |
| 37547 | 41218 | </dataarea> |
| r21545 | r21546 | |
| 37558 | 41229 | <info name="release" value="19940318" /> |
| 37559 | 41230 | <info name="alt_title" value="ぎゅわんぶらあ自己中心派2 ドラポンクエスト" /> |
| 37560 | 41231 | <part name="cart" interface="snes_cart"> |
| 41232 | ||
| 41233 | <feature name="slot" value="lorom" /> | |
| 37561 | 41234 | <dataarea name="rom" size="1048576"> |
| 37562 | 41235 | <rom name="gambler jikochuushinha 2 - dorapon quest (japan).sfc" size="1048576" crc="4d098c5c" sha1="c8ef3e81a78d405e144ad4ad7a17e5ef0fac78a3" offset="0x000000" /> |
| 37563 | 41236 | </dataarea> |
| r21545 | r21546 | |
| 37572 | 41245 | <info name="release" value="19960322" /> |
| 37573 | 41246 | <info name="alt_title" value="ギャンブル放浪記" /> |
| 37574 | 41247 | <part name="cart" interface="snes_cart"> |
| 41248 | ||
| 41249 | <feature name="slot" value="lorom" /> | |
| 37575 | 41250 | <dataarea name="rom" size="1048576"> |
| 37576 | 41251 | <rom name="gambling hourouki (japan).sfc" size="1048576" crc="43b2590d" sha1="ec5d508fc120897da8d704a3d617c59e94d3b78c" offset="0x000000" /> |
| 37577 | 41252 | </dataarea> |
| r21545 | r21546 | |
| 37586 | 41261 | <info name="release" value="19950811" /> |
| 37587 | 41262 | <info name="alt_title" value="ゲームの達人 麻雀, 将棋, ブレイス, 連珠" /> |
| 37588 | 41263 | <part name="cart" interface="snes_cart"> |
| 41264 | ||
| 41265 | <feature name="slot" value="lorom" /> | |
| 37589 | 41266 | <dataarea name="rom" size="2097152"> |
| 37590 | 41267 | <rom name="game no tatsujin (japan).sfc" size="2097152" crc="a3203356" sha1="885a80b1b65b182d697538ac4218fc219a1e5103" offset="0x000000" /> |
| 37591 | 41268 | </dataarea> |
| r21545 | r21546 | |
| 37600 | 41277 | <info name="release" value="19951013" /> |
| 37601 | 41278 | <info name="alt_title" value="ゲームの鉄人 THE上海" /> |
| 37602 | 41279 | <part name="cart" interface="snes_cart"> |
| 41280 | ||
| 41281 | <feature name="slot" value="lorom" /> | |
| 37603 | 41282 | <dataarea name="rom" size="2097152"> |
| 37604 | 41283 | <rom name="game no tetsujin - the shanghai (japan).sfc" size="2097152" crc="e50bbfb7" sha1="8b809005c49355ab326d53911e27d9692f2431ee" offset="0x000000" /> |
| 37605 | 41284 | </dataarea> |
| r21545 | r21546 | |
| 37614 | 41293 | <info name="release" value="19950630" /> |
| 37615 | 41294 | <info name="alt_title" value="ガメラ ギャオス撃滅作戦" /> |
| 37616 | 41295 | <part name="cart" interface="snes_cart"> |
| 41296 | ||
| 41297 | <feature name="slot" value="lorom" /> | |
| 37617 | 41298 | <dataarea name="rom" size="1572864"> |
| 37618 | 41299 | <rom name="gamera - gyaos gekimetsu sakusen (japan).sfc" size="1572864" crc="bdb4dd84" sha1="d218be6b87f614dbb037e50ed748897cc77699b5" offset="0x000000" /> |
| 37619 | 41300 | </dataarea> |
| r21545 | r21546 | |
| 37631 | 41312 | <info name="alt_title" value="がんばれゴエモン3 獅子重禄兵衛のからくり卍固め" /> |
| 37632 | 41313 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37633 | 41314 | <part name="cart" interface="snes_cart"> |
| 41315 | ||
| 41316 | <feature name="slot" value="lorom" /> | |
| 37634 | 41317 | <dataarea name="rom" size="2097152"> |
| 37635 | 41318 | <rom name="ganbare goemon 3 - shishi juurokubee no karakuri manjigatame (japan).sfc" size="2097152" crc="7e5929e8" sha1="24832a8a054a83bbca241f8daf8b39ed2932996f" offset="0x000000" /> |
| 37636 | 41319 | </dataarea> |
| r21545 | r21546 | |
| 37648 | 41331 | <info name="alt_title" value="がんばれゴエモンきらきら道中 僕がダンサーになった理由" /> |
| 37649 | 41332 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37650 | 41333 | <part name="cart" interface="snes_cart"> |
| 41334 | ||
| 41335 | <feature name="slot" value="lorom" /> | |
| 37651 | 41336 | <dataarea name="rom" size="3145728"> |
| 37652 | 41337 | <rom name="ganbare goemon kirakira douchuu - boku ga dancer ni natta wake (japan) (rev 2) (np).sfc" size="3145728" crc="c20720c2" sha1="a12c8c8d9056d3096bbb82a0b9e6492ec453da0a" offset="0x000000" /> |
| 37653 | 41338 | </dataarea> |
| r21545 | r21546 | |
| 37665 | 41350 | <info name="alt_title" value="がんばれ!大工の源さん" /> |
| 37666 | 41351 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37667 | 41352 | <part name="cart" interface="snes_cart"> |
| 41353 | ||
| 41354 | <feature name="slot" value="hirom" /> | |
| 37668 | 41355 | <dataarea name="rom" size="1048576"> |
| 37669 | 41356 | <rom name="ganbare! daiku no gen-san (japan).sfc" size="1048576" crc="206bd866" sha1="90b419d3e71b17490f3aed0ad2ae3158af94ed33" offset="0x000000" /> |
| 37670 | 41357 | </dataarea> |
| r21545 | r21546 | |
| 37679 | 41366 | <info name="release" value="19951027" /> |
| 37680 | 41367 | <info name="alt_title" value="ガンガンガンチャン" /> |
| 37681 | 41368 | <part name="cart" interface="snes_cart"> |
| 41369 | ||
| 41370 | <feature name="slot" value="lorom" /> | |
| 37682 | 41371 | <dataarea name="rom" size="1048576"> |
| 37683 | 41372 | <rom name="gangan gan-chan (japan).sfc" size="1048576" crc="a220c6d5" sha1="640e2c49dfdb056f51369c6780f0683b6dd17565" offset="0x000000" /> |
| 37684 | 41373 | </dataarea> |
| r21545 | r21546 | |
| 37693 | 41382 | <info name="release" value="19970131" /> |
| 37694 | 41383 | <info name="alt_title" value="ガンプル" /> |
| 37695 | 41384 | <part name="cart" interface="snes_cart"> |
| 41385 | ||
| 41386 | <feature name="slot" value="lorom" /> | |
| 37696 | 41387 | <dataarea name="rom" size="3145728"> |
| 37697 | 41388 | <rom name="ganpuru - gunman's proof (japan).sfc" size="3145728" crc="af415c24" sha1="dad73d2c0b1a3c916d40c4a208566ee4193333b2" offset="0x000000" /> |
| 37698 | 41389 | </dataarea> |
| r21545 | r21546 | |
| 37709 | 41400 | <info name="release" value="19941125" /> |
| 37710 | 41401 | <info name="alt_title" value="元祖パチスロ日本一" /> |
| 37711 | 41402 | <part name="cart" interface="snes_cart"> |
| 41403 | ||
| 41404 | <feature name="slot" value="lorom" /> | |
| 37712 | 41405 | <dataarea name="rom" size="1048576"> |
| 37713 | 41406 | <rom name="ganso pachi-slot nihonichi (japan).sfc" size="1048576" crc="18bbad5c" sha1="d2ad7b2f2bd0c6a00ad5472801a29c451e951eab" offset="0x000000" /> |
| 37714 | 41407 | </dataarea> |
| r21545 | r21546 | |
| 37723 | 41416 | <info name="release" value="19931126" /> |
| 37724 | 41417 | <info name="alt_title" value="餓狼伝説2 ―新たなる闘い―" /> |
| 37725 | 41418 | <part name="cart" interface="snes_cart"> |
| 41419 | ||
| 41420 | <feature name="slot" value="hirom" /> | |
| 37726 | 41421 | <dataarea name="rom" size="2621440"> |
| 37727 | 41422 | <rom name="garou densetsu 2 - aratanaru tatakai (japan) (rev 1).sfc" size="2621440" crc="3ee1b2d2" sha1="41025faa34b903b96f7819355628d07f6d7d90ee" offset="0x000000" /> |
| 37728 | 41423 | </dataarea> |
| r21545 | r21546 | |
| 37737 | 41432 | <info name="release" value="19910528" /> |
| 37738 | 41433 | <info name="alt_title" value="ガデュリン" /> |
| 37739 | 41434 | <part name="cart" interface="snes_cart"> |
| 41435 | ||
| 41436 | <feature name="slot" value="lorom" /> | |
| 37740 | 41437 | <dataarea name="rom" size="1048576"> |
| 37741 | 41438 | <rom name="gdleen (japan) (rev 1).sfc" size="1048576" crc="09692c77" sha1="af203cdeca2163a25411818103b7b34e966fee58" offset="0x000000" /> |
| 37742 | 41439 | </dataarea> |
| r21545 | r21546 | |
| 37745 | 41442 | </part> |
| 37746 | 41443 | </software> |
| 37747 | 41444 | |
| 37748 | <software name="stgegege" supported="no"> | |
| 37749 | <description>GeGeGe no Kitarou - Youkai Donjara (Jpn)</description> | |
| 37750 | <!-- ST --> | |
| 37751 | <year>1996</year> | |
| 37752 | <publisher>Bandai</publisher> | |
| 37753 | <info name="serial" value="SFT-0106" /> | |
| 37754 | <info name="release" value="19960719" /> | |
| 37755 | <info name="alt_title" value="ゲゲゲの鬼太郎 妖怪ドンジャラ" /> | |
| 37756 | <part name="cart" interface="snes_cart"> | |
| 37757 | <dataarea name="rom" size="524288"> | |
| 37758 | <rom name="gegege no kitarou - youkai donjara (japan).st" size="524288" crc="4296500d" sha1="965b2582b13ee361eca93937b1b093049bc8d958" offset="0x000000" /> | |
| 37759 | </dataarea> | |
| 37760 | </part> | |
| 37761 | </software> | |
| 37762 | ||
| 37763 | <software name="carrangr" supported="no"> | |
| 37764 | <description>Gekisou Sentai Carranger - Zenkai! Racer Senshi (Jpn)</description> | |
| 37765 | <!-- ST --> | |
| 37766 | <year>1996</year> | |
| 37767 | <publisher>Bandai</publisher> | |
| 37768 | <info name="serial" value="SFT-0109" /> | |
| 37769 | <info name="release" value="19960823" /> | |
| 37770 | <info name="alt_title" value="激走戦隊カーレンジャー 全開!レー サー戦士" /> | |
| 37771 | <part name="cart" interface="snes_cart"> | |
| 37772 | <dataarea name="rom" size="524288"> | |
| 37773 | <rom name="gekisou sentai carranger - zenkai! racer senshi (japan).st" size="524288" crc="14c66fca" sha1="50b9d6ebf0e3f4b9dad5d0660d6c834820cbe391" offset="0x000000" /> | |
| 37774 | </dataarea> | |
| 37775 | </part> | |
| 37776 | </software> | |
| 37777 | ||
| 37778 | 41445 | <software name="batlmobl"> |
| 37779 | 41446 | <description>Gekitotsu Dangan Jidousha Kessen - Battle Mobile (Jpn)</description> |
| 37780 | 41447 | <year>1993</year> |
| r21545 | r21546 | |
| 37783 | 41450 | <info name="release" value="19930625" /> |
| 37784 | 41451 | <info name="alt_title" value="激突弾丸自動車決戦 バトルモービル" /> |
| 37785 | 41452 | <part name="cart" interface="snes_cart"> |
| 41453 | ||
| 41454 | <feature name="slot" value="lorom" /> | |
| 37786 | 41455 | <dataarea name="rom" size="1048576"> |
| 37787 | 41456 | <rom name="gekitotsu dangan jidousha kessen - battle mobile (japan).sfc" size="1048576" crc="3e88e883" sha1="220a463789e245e2b970f8d45f5e9fe540b26144" offset="0x000000" /> |
| 37788 | 41457 | </dataarea> |
| r21545 | r21546 | |
| 37797 | 41466 | <info name="release" value="19951006" /> |
| 37798 | 41467 | <info name="alt_title" value="激闘 バーニング・プロレス" /> |
| 37799 | 41468 | <part name="cart" interface="snes_cart"> |
| 41469 | ||
| 41470 | <feature name="slot" value="hirom" /> | |
| 37800 | 41471 | <dataarea name="rom" size="2621440"> |
| 37801 | 41472 | <rom name="gekitou burning pro wrestling (japan).sfc" size="2621440" crc="b2e7fc76" sha1="159bb39ccaa89bb29e124f10984f14f711d73b4f" offset="0x000000" /> |
| 37802 | 41473 | </dataarea> |
| r21545 | r21546 | |
| 37811 | 41482 | <publisher>Koei</publisher> |
| 37812 | 41483 | <info name="release" value="199212xx" /> |
| 37813 | 41484 | <part name="cart" interface="snes_cart"> |
| 41485 | ||
| 41486 | <feature name="slot" value="lorom" /> | |
| 37814 | 41487 | <dataarea name="rom" size="1048576"> |
| 37815 | 41488 | <rom name="gemfire (usa).sfc" size="1048576" crc="ee801a54" sha1="b0bf12d5333b0a4f45bc4a56575e4c61871b7835" offset="0x000000" /> |
| 37816 | 41489 | </dataarea> |
| r21545 | r21546 | |
| 37825 | 41498 | <publisher>Koei</publisher> |
| 37826 | 41499 | <info name="release" value="199312xx" /> |
| 37827 | 41500 | <part name="cart" interface="snes_cart"> |
| 41501 | ||
| 41502 | <feature name="slot" value="hirom" /> | |
| 37828 | 41503 | <dataarea name="rom" size="1048576"> |
| 37829 | 41504 | <rom name="genghis khan ii - clan of the gray wolf (usa).sfc" size="1048576" crc="d7875512" sha1="40ee0b41399ef1e17639e69051b9aaba3a9b27dd" offset="0x000000" /> |
| 37830 | 41505 | </dataarea> |
| r21545 | r21546 | |
| 37841 | 41516 | <info name="release" value="19980601" /> |
| 37842 | 41517 | <info name="alt_title" value="幻獣旅団" /> |
| 37843 | 41518 | <part name="cart" interface="snes_cart"> |
| 41519 | ||
| 41520 | <feature name="slot" value="lorom" /> | |
| 37844 | 41521 | <dataarea name="rom" size="4194304"> |
| 37845 | 41522 | <rom name="genjuu ryodan (japan) (np).sfc" size="4194304" crc="8d9bffc8" sha1="ea5c8080945d6923e40e4ac7bd37526e64df30a1" offset="0x000000" /> |
| 37846 | 41523 | </dataarea> |
| r21545 | r21546 | |
| 37854 | 41531 | <year>1994</year> |
| 37855 | 41532 | <publisher>Kemco</publisher> |
| 37856 | 41533 | <part name="cart" interface="snes_cart"> |
| 41534 | ||
| 41535 | <feature name="slot" value="lorom" /> | |
| 37857 | 41536 | <dataarea name="rom" size="262144"> |
| 37858 | 41537 | <rom name="genocide 2 (japan) (beta).sfc" size="262144" crc="f8876331" sha1="646b4bb9df4ce9ba1f285f61fe6535f0cbe87833" offset="0x000000" /> |
| 37859 | 41538 | </dataarea> |
| r21545 | r21546 | |
| 37865 | 41544 | <year>1992</year> |
| 37866 | 41545 | <publisher>Acclaim Entertainment</publisher> |
| 37867 | 41546 | <part name="cart" interface="snes_cart"> |
| 41547 | ||
| 41548 | <feature name="slot" value="lorom" /> | |
| 37868 | 41549 | <dataarea name="rom" size="1048576"> |
| 37869 | 41550 | <rom name="george foreman's ko boxing (europe).sfc" size="1048576" crc="09fe6ec1" sha1="f30c2aadc53889822cbbce63a4363f08caff24dc" offset="0x000000" /> |
| 37870 | 41551 | </dataarea> |
| r21545 | r21546 | |
| 37876 | 41557 | <year>1992</year> |
| 37877 | 41558 | <publisher>Acclaim Entertainment</publisher> |
| 37878 | 41559 | <part name="cart" interface="snes_cart"> |
| 41560 | ||
| 41561 | <feature name="slot" value="lorom" /> | |
| 37879 | 41562 | <dataarea name="rom" size="1048576"> |
| 37880 | 41563 | <rom name="george foreman's ko boxing (usa) (doritos promo).sfc" size="1048576" crc="71056bf3" sha1="eb4a5dc0ada5c3495a47e1f18dbf3ec517f5a15e" offset="0x000000" /> |
| 37881 | 41564 | </dataarea> |
| r21545 | r21546 | |
| 37888 | 41571 | <publisher>Acclaim Entertainment</publisher> |
| 37889 | 41572 | <info name="release" value="199209xx" /> |
| 37890 | 41573 | <part name="cart" interface="snes_cart"> |
| 41574 | ||
| 41575 | <feature name="slot" value="lorom" /> | |
| 37891 | 41576 | <dataarea name="rom" size="1048576"> |
| 37892 | 41577 | <rom name="george foreman's ko boxing (usa) (rev 1).sfc" size="1048576" crc="15194fc9" sha1="0fa4153a771d780e5cdccf8cef7d98c837171c6b" offset="0x000000" /> |
| 37893 | 41578 | </dataarea> |
| r21545 | r21546 | |
| 37900 | 41585 | <publisher>Acclaim Entertainment</publisher> |
| 37901 | 41586 | <info name="release" value="199209xx" /> |
| 37902 | 41587 | <part name="cart" interface="snes_cart"> |
| 41588 | ||
| 41589 | <feature name="slot" value="lorom" /> | |
| 37903 | 41590 | <dataarea name="rom" size="1048576"> |
| 37904 | 41591 | <rom name="george foreman's ko boxing (usa).sfc" size="1048576" crc="af571267" sha1="a72847bd9d055fafe92841cc1422d57b9ee7cd0f" offset="0x000000" /> |
| 37905 | 41592 | </dataarea> |
| r21545 | r21546 | |
| 37912 | 41599 | <publisher>Good House</publisher> |
| 37913 | 41600 | <sharedfeat name="compatibility" value="NTSC"/> |
| 37914 | 41601 | <part name="cart" interface="snes_cart"> |
| 41602 | ||
| 41603 | <feature name="slot" value="hirom" /> | |
| 37915 | 41604 | <dataarea name="rom" size="1572864"> |
| 37916 | 41605 | <rom name="get in the hole (japan).sfc" size="1572864" crc="7f0d601d" sha1="9f7572de6abbf8348c5e2421ef79d9c8fe006683" offset="0x000000" /> |
| 37917 | 41606 | </dataarea> |
| r21545 | r21546 | |
| 37928 | 41617 | <info name="release" value="19951222" /> |
| 37929 | 41618 | <info name="alt_title" value="月面のアヌビス" /> |
| 37930 | 41619 | <part name="cart" interface="snes_cart"> |
| 41620 | ||
| 41621 | <feature name="slot" value="lorom" /> | |
| 37931 | 41622 | <dataarea name="rom" size="3145728"> |
| 37932 | 41623 | <rom name="getsumen no anubis (japan).sfc" size="3145728" crc="78432ddc" sha1="23db3fbfb94a6b5a1a74324ac52e7e1a4b31a4ca" offset="0x000000" /> |
| 37933 | 41624 | </dataarea> |
| r21545 | r21546 | |
| 37941 | 41632 | <year>1994</year> |
| 37942 | 41633 | <publisher>JVC</publisher> |
| 37943 | 41634 | <part name="cart" interface="snes_cart"> |
| 41635 | ||
| 41636 | <feature name="slot" value="lorom" /> | |
| 37944 | 41637 | <dataarea name="rom" size="1048576"> |
| 37945 | 41638 | <rom name="ghoul patrol (europe).sfc" size="1048576" crc="2c6cefe7" sha1="ab45199ef043ca46f4cc053b5ba4477350a4ba1f" offset="0x000000" /> |
| 37946 | 41639 | </dataarea> |
| r21545 | r21546 | |
| 37955 | 41648 | <info name="release" value="19950526" /> |
| 37956 | 41649 | <info name="alt_title" value="グールパトロール" /> |
| 37957 | 41650 | <part name="cart" interface="snes_cart"> |
| 41651 | ||
| 41652 | <feature name="slot" value="lorom" /> | |
| 37958 | 41653 | <dataarea name="rom" size="1048576"> |
| 37959 | 41654 | <rom name="ghoul patrol (japan).sfc" size="1048576" crc="5519af34" sha1="300fba4ef307a000d1866f8422d96b7c62e0a0d7" offset="0x000000" /> |
| 37960 | 41655 | </dataarea> |
| r21545 | r21546 | |
| 37967 | 41662 | <publisher>JVC</publisher> |
| 37968 | 41663 | <info name="release" value="199411xx" /> |
| 37969 | 41664 | <part name="cart" interface="snes_cart"> |
| 41665 | ||
| 41666 | <feature name="slot" value="lorom" /> | |
| 37970 | 41667 | <dataarea name="rom" size="1048576"> |
| 37971 | 41668 | <rom name="ghoul patrol (usa).sfc" size="1048576" crc="ea16b5a2" sha1="bea0a40772574ae5e3896699d94f161339329c59" offset="0x000000" /> |
| 37972 | 41669 | </dataarea> |
| r21545 | r21546 | |
| 37981 | 41678 | <info name="release" value="19950217" /> |
| 37982 | 41679 | <info name="alt_title" value="銀玉親方の実戦パチンコ必勝法" /> |
| 37983 | 41680 | <part name="cart" interface="snes_cart"> |
| 41681 | ||
| 41682 | <feature name="slot" value="lorom" /> | |
| 37984 | 41683 | <dataarea name="rom" size="1572864"> |
| 37985 | 41684 | <rom name="gindama oyakata no pachinko hisshouhou (japan) (rev 1).sfc" size="1572864" crc="b8c7a417" sha1="80bfa015f12a6af38aa3dcbf88560f928b07cf1d" offset="0x000000" /> |
| 37986 | 41685 | </dataarea> |
| r21545 | r21546 | |
| 37997 | 41696 | <info name="release" value="19920925" /> |
| 37998 | 41697 | <info name="alt_title" value="銀河英雄伝説" /> |
| 37999 | 41698 | <part name="cart" interface="snes_cart"> |
| 41699 | ||
| 41700 | <feature name="slot" value="lorom" /> | |
| 38000 | 41701 | <dataarea name="rom" size="1048576"> |
| 38001 | 41702 | <rom name="ginga eiyuu densetsu (japan).sfc" size="1048576" crc="2e480eef" sha1="b90cc0f0cd63859bea96f0c3eb109e3a9db88e5d" offset="0x000000" /> |
| 38002 | 41703 | </dataarea> |
| r21545 | r21546 | |
| 38013 | 41714 | <info name="release" value="19960308" /> |
| 38014 | 41715 | <info name="alt_title" value="銀河戦国群雄伝ライ" /> |
| 38015 | 41716 | <part name="cart" interface="snes_cart"> |
| 41717 | ||
| 41718 | <feature name="slot" value="lorom" /> | |
| 38016 | 41719 | <dataarea name="rom" size="2097152"> |
| 38017 | 41720 | <rom name="ginga sengoku gunyuuden rai (japan).sfc" size="2097152" crc="98f76260" sha1="4b9050e1daeb39952be294e6a9bdcbaf5b8135d3" offset="0x000000" /> |
| 38018 | 41721 | </dataarea> |
| r21545 | r21546 | |
| 38030 | 41733 | <info name="alt_title" value="ゴーゴー アックマン" /> |
| 38031 | 41734 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38032 | 41735 | <part name="cart" interface="snes_cart"> |
| 41736 | ||
| 41737 | <feature name="slot" value="lorom" /> | |
| 38033 | 41738 | <dataarea name="rom" size="1310720"> |
| 38034 | 41739 | <rom name="go go ackman (japan).sfc" size="1310720" crc="26fb2d11" sha1="ad0c13270e27191af69cb30f5710159422e8e836" offset="0x000000" /> |
| 38035 | 41740 | </dataarea> |
| r21545 | r21546 | |
| 38045 | 41750 | <info name="alt_title" value="ゴー!ゴー!ドッジリーグ" /> |
| 38046 | 41751 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38047 | 41752 | <part name="cart" interface="snes_cart"> |
| 41753 | ||
| 41754 | <feature name="slot" value="lorom" /> | |
| 38048 | 41755 | <dataarea name="rom" size="524288"> |
| 38049 | 41756 | <rom name="go! go! dodge league (japan) (rev 1).sfc" size="524288" crc="06e6e66d" sha1="e1a8a3542510a276b23dd46bbe8a530b49fe2b79" offset="0x000000" /> |
| 38050 | 41757 | </dataarea> |
| r21545 | r21546 | |
| 38060 | 41767 | <info name="alt_title" value="ゴー!ゴー!ドッジリーグ" /> |
| 38061 | 41768 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38062 | 41769 | <part name="cart" interface="snes_cart"> |
| 41770 | ||
| 41771 | <feature name="slot" value="lorom" /> | |
| 38063 | 41772 | <dataarea name="rom" size="524288"> |
| 38064 | 41773 | <rom name="go! go! dodge league (japan).sfc" size="524288" crc="184b07dc" sha1="c4da1ceca565db529ca39eb911a1f0830fdc77d0" offset="0x000000" /> |
| 38065 | 41774 | </dataarea> |
| r21545 | r21546 | |
| 38072 | 41781 | <publisher>Jaleco</publisher> |
| 38073 | 41782 | <info name="release" value="199212xx" /> |
| 38074 | 41783 | <part name="cart" interface="snes_cart"> |
| 41784 | ||
| 41785 | <feature name="slot" value="lorom" /> | |
| 38075 | 41786 | <dataarea name="rom" size="1048576"> |
| 38076 | 41787 | <rom name="goal! (usa).sfc" size="1048576" crc="935ea22c" sha1="2f4dcc8ae4553be208ca71a353261adfc11d0e9d" offset="0x000000" /> |
| 38077 | 41788 | </dataarea> |
| r21545 | r21546 | |
| 38085 | 41796 | <year>1992</year> |
| 38086 | 41797 | <publisher>Mindscape</publisher> |
| 38087 | 41798 | <part name="cart" interface="snes_cart"> |
| 41799 | ||
| 41800 | <feature name="slot" value="lorom" /> | |
| 38088 | 41801 | <dataarea name="rom" size="1048576"> |
| 38089 | 41802 | <rom name="gods (europe).sfc" size="1048576" crc="16416bb5" sha1="8399e850f08132c20d3f6f4009d1932750fc09b7" offset="0x000000" /> |
| 38090 | 41803 | </dataarea> |
| r21545 | r21546 | |
| 38097 | 41810 | <publisher>Mindscape</publisher> |
| 38098 | 41811 | <info name="release" value="199212xx" /> |
| 38099 | 41812 | <part name="cart" interface="snes_cart"> |
| 41813 | ||
| 41814 | <feature name="slot" value="lorom" /> | |
| 38100 | 41815 | <dataarea name="rom" size="1048576"> |
| 38101 | 41816 | <rom name="gods (usa).sfc" size="1048576" crc="6779970f" sha1="6b2d309ea9c6cfadfef36d633a27c29e8884305a" offset="0x000000" /> |
| 38102 | 41817 | </dataarea> |
| r21545 | r21546 | |
| 38111 | 41826 | <info name="release" value="19941209" /> |
| 38112 | 41827 | <info name="alt_title" value="ゴジラ 怪獣大決戦" /> |
| 38113 | 41828 | <part name="cart" interface="snes_cart"> |
| 41829 | ||
| 41830 | <feature name="slot" value="hirom" /> | |
| 38114 | 41831 | <dataarea name="rom" size="2621440"> |
| 38115 | 41832 | <rom name="godzilla - kaijuu daikessen (japan).sfc" size="2621440" crc="29ce8e57" sha1="65c9f398935ddf361680b8def278d35771b1e09c" offset="0x000000" /> |
| 38116 | 41833 | </dataarea> |
| r21545 | r21546 | |
| 38125 | 41842 | <info name="release" value="19960524" /> |
| 38126 | 41843 | <info name="alt_title" value="ごきんじょ冒険隊" /> |
| 38127 | 41844 | <part name="cart" interface="snes_cart"> |
| 41845 | ||
| 41846 | <feature name="slot" value="hirom" /> | |
| 38128 | 41847 | <dataarea name="rom" size="2621440"> |
| 38129 | 41848 | <rom name="gokinjo boukentai (japan).sfc" size="2621440" crc="33374f65" sha1="e60a7fcd9fe464e287da033c97719365915b6293" offset="0x000000" /> |
| 38130 | 41849 | </dataarea> |
| r21545 | r21546 | |
| 38139 | 41858 | <publisher>Konami</publisher> |
| 38140 | 41859 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38141 | 41860 | <part name="cart" interface="snes_cart"> |
| 41861 | ||
| 41862 | <feature name="slot" value="lorom" /> | |
| 38142 | 41863 | <dataarea name="rom" size="2097152"> |
| 38143 | 41864 | <rom name="gokujou parodius (japan) (beta).sfc" size="2097152" crc="56fe0a74" sha1="8a615b7ecdd53d83be49ddcb8a176cb82e2f3714" offset="0x000000" /> |
| 38144 | 41865 | </dataarea> |
| r21545 | r21546 | |
| 38153 | 41874 | <info name="release" value="19941111" /> |
| 38154 | 41875 | <info name="alt_title" value="ゴン" /> |
| 38155 | 41876 | <part name="cart" interface="snes_cart"> |
| 41877 | ||
| 41878 | <feature name="slot" value="lorom" /> | |
| 38156 | 41879 | <dataarea name="rom" size="1048576"> |
| 38157 | 41880 | <rom name="gon (japan).sfc" size="1048576" crc="426881a3" sha1="295437bfec027277e049553b11b406651297f91b" offset="0x000000" /> |
| 38158 | 41881 | </dataarea> |
| r21545 | r21546 | |
| 38164 | 41887 | <year>1993</year> |
| 38165 | 41888 | <publisher>Capcom</publisher> |
| 38166 | 41889 | <part name="cart" interface="snes_cart"> |
| 41890 | ||
| 41891 | <feature name="slot" value="lorom" /> | |
| 38167 | 41892 | <dataarea name="rom" size="524288"> |
| 38168 | 41893 | <rom name="goof troop (europe).sfc" size="524288" crc="61e8f56a" sha1="1624d3415d3bf3de7acfaea1baa9d25b4caf85fa" offset="0x000000" /> |
| 38169 | 41894 | </dataarea> |
| r21545 | r21546 | |
| 38175 | 41900 | <year>1993</year> |
| 38176 | 41901 | <publisher>Capcom</publisher> |
| 38177 | 41902 | <part name="cart" interface="snes_cart"> |
| 41903 | ||
| 41904 | <feature name="slot" value="lorom" /> | |
| 38178 | 41905 | <dataarea name="rom" size="524288"> |
| 38179 | 41906 | <rom name="goof troop (france).sfc" size="524288" crc="4fe6077a" sha1="b3fb29994bfb9eced59b580a13af89c9ba9dbf94" offset="0x000000" /> |
| 38180 | 41907 | </dataarea> |
| r21545 | r21546 | |
| 38186 | 41913 | <year>1993</year> |
| 38187 | 41914 | <publisher>Capcom</publisher> |
| 38188 | 41915 | <part name="cart" interface="snes_cart"> |
| 41916 | ||
| 41917 | <feature name="slot" value="lorom" /> | |
| 38189 | 41918 | <dataarea name="rom" size="524288"> |
| 38190 | 41919 | <rom name="goof troop (germany).sfc" size="524288" crc="aa69ef05" sha1="a13048050fcd51b07ba1a0abe541fc416f3bf8e6" offset="0x000000" /> |
| 38191 | 41920 | </dataarea> |
| r21545 | r21546 | |
| 38200 | 41929 | <info name="release" value="19940722" /> |
| 38201 | 41930 | <info name="alt_title" value="グーフィーとマックス 海賊島の大冒険" /> |
| 38202 | 41931 | <part name="cart" interface="snes_cart"> |
| 41932 | ||
| 41933 | <feature name="slot" value="lorom" /> | |
| 38203 | 41934 | <dataarea name="rom" size="524288"> |
| 38204 | 41935 | <rom name="goofy to max - kaizokujima no daibouken (japan).sfc" size="524288" crc="d3279aac" sha1="810320d3280d26c43df457c73115c673e4765a5e" offset="0x000000" /> |
| 38205 | 41936 | </dataarea> |
| r21545 | r21546 | |
| 38214 | 41945 | <info name="release" value="19950929" /> |
| 38215 | 41946 | <info name="alt_title" value="美食戦隊 薔薇野郎" /> |
| 38216 | 41947 | <part name="cart" interface="snes_cart"> |
| 41948 | ||
| 41949 | <feature name="slot" value="lorom" /> | |
| 38217 | 41950 | <dataarea name="rom" size="2097152"> |
| 38218 | 41951 | <rom name="gourmet sentai barayarou (japan).sfc" size="2097152" crc="9f717d76" sha1="8c0b12f4258ec74adb6a165c1e83b6cc20b97a60" offset="0x000000" /> |
| 38219 | 41952 | </dataarea> |
| r21545 | r21546 | |
| 38228 | 41961 | <info name="release" value="19920424" /> |
| 38229 | 41962 | <info name="alt_title" value="豪槍神雷伝説 武者" /> |
| 38230 | 41963 | <part name="cart" interface="snes_cart"> |
| 41964 | ||
| 41965 | <feature name="slot" value="lorom" /> | |
| 38231 | 41966 | <dataarea name="rom" size="1048576"> |
| 38232 | 41967 | <rom name="gousou jinrai densetsu - musha (japan).sfc" size="1048576" crc="342f1c02" sha1="e58b8693c1704f268494258c9286531ded2408be" offset="0x000000" /> |
| 38233 | 41968 | </dataarea> |
| r21545 | r21546 | |
| 38240 | 41975 | <publisher>Atlus</publisher> |
| 38241 | 41976 | <sharedfeat name="compatibility" value="PAL"/> |
| 38242 | 41977 | <part name="cart" interface="snes_cart"> |
| 41978 | ||
| 41979 | <feature name="slot" value="lorom" /> | |
| 38243 | 41980 | <dataarea name="rom" size="1048576"> |
| 38244 | 41981 | <rom name="gp-1 (europe).sfc" size="1048576" crc="d013316b" sha1="243e6989e86048bcd2675434b9b7e36433b39bf5" offset="0x000000" /> |
| 38245 | 41982 | </dataarea> |
| r21545 | r21546 | |
| 38253 | 41990 | <info name="release" value="199309xx" /> |
| 38254 | 41991 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38255 | 41992 | <part name="cart" interface="snes_cart"> |
| 41993 | ||
| 41994 | <feature name="slot" value="lorom" /> | |
| 38256 | 41995 | <dataarea name="rom" size="1048576"> |
| 38257 | 41996 | <rom name="gp-1 (usa).sfc" size="1048576" crc="14bbc357" sha1="19b58fc1b180d31acd90a72dd4486ddd4ddd6135" offset="0x000000" /> |
| 38258 | 41997 | </dataarea> |
| r21545 | r21546 | |
| 38266 | 42005 | <info name="release" value="199412xx" /> |
| 38267 | 42006 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38268 | 42007 | <part name="cart" interface="snes_cart"> |
| 42008 | ||
| 42009 | <feature name="slot" value="hirom" /> | |
| 38269 | 42010 | <dataarea name="rom" size="1572864"> |
| 38270 | 42011 | <rom name="gp-1 - part ii (usa).sfc" size="1572864" crc="a9014e12" sha1="a1d2008e1ba0126a7bd4330add368e2c8a552228" offset="0x000000" /> |
| 38271 | 42012 | </dataarea> |
| r21545 | r21546 | |
| 38280 | 42021 | <info name="release" value="19941118" /> |
| 38281 | 42022 | <info name="alt_title" value="GP-1 RS" /> |
| 38282 | 42023 | <part name="cart" interface="snes_cart"> |
| 42024 | ||
| 42025 | <feature name="slot" value="hirom" /> | |
| 38283 | 42026 | <dataarea name="rom" size="1572864"> |
| 38284 | 42027 | <rom name="gp-1 rs - rapid stream (japan).sfc" size="1572864" crc="d4488768" sha1="4470525022e561648fdbe917adc3a21d51d291e8" offset="0x000000" /> |
| 38285 | 42028 | </dataarea> |
| r21545 | r21546 | |
| 38294 | 42037 | <publisher>Konami</publisher> |
| 38295 | 42038 | <info name="release" value="199108xx" /> |
| 38296 | 42039 | <part name="cart" interface="snes_cart"> |
| 42040 | ||
| 42041 | <feature name="slot" value="lorom" /> | |
| 38297 | 42042 | <dataarea name="rom" size="524288"> |
| 38298 | 42043 | <rom name="gradius iii (usa).sfc" size="524288" crc="cd973979" sha1="7e62203a4198e9404eb7b076802c09786e5a63f4" offset="0x000000" /> |
| 38299 | 42044 | </dataarea> |
| r21545 | r21546 | |
| 38308 | 42053 | <info name="release" value="19950630" /> |
| 38309 | 42054 | <info name="alt_title" value="グランヒストリア~幻史世界記~" /> |
| 38310 | 42055 | <part name="cart" interface="snes_cart"> |
| 42056 | ||
| 42057 | <feature name="slot" value="lorom" /> | |
| 38311 | 42058 | <dataarea name="rom" size="2097152"> |
| 38312 | 42059 | <rom name="granhistoria - genshi sekaiki (japan).sfc" size="2097152" crc="4aa7f384" sha1="9ac9496aac5f5c2baf277a918598b20260aa99b2" offset="0x000000" /> |
| 38313 | 42060 | </dataarea> |
| r21545 | r21546 | |
| 38325 | 42072 | <info name="alt_title" value="ザ・グレイトバトル外伝2 祭だワッショイ" /> |
| 38326 | 42073 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38327 | 42074 | <part name="cart" interface="snes_cart"> |
| 42075 | ||
| 42076 | <feature name="slot" value="lorom" /> | |
| 38328 | 42077 | <dataarea name="rom" size="1310720"> |
| 38329 | 42078 | <rom name="great battle gaiden 2, the - matsuri da wasshoi (japan).sfc" size="1310720" crc="83806e38" sha1="76941a710d54943e30212b90c8a14dc1995fe3d2" offset="0x000000" /> |
| 38330 | 42079 | </dataarea> |
| r21545 | r21546 | |
| 38337 | 42086 | <publisher>Banpresto</publisher> |
| 38338 | 42087 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38339 | 42088 | <part name="cart" interface="snes_cart"> |
| 42089 | ||
| 42090 | <feature name="slot" value="lorom" /> | |
| 38340 | 42091 | <dataarea name="rom" size="1572864"> |
| 38341 | 42092 | <rom name="great battle iv, the (japan) (sample).sfc" size="1572864" crc="615c4aa7" sha1="f6aa3e11b271175b5403009e22b244c178ebb8a1" offset="0x000000" /> |
| 38342 | 42093 | </dataarea> |
| r21545 | r21546 | |
| 38351 | 42102 | <info name="release" value="19951222" /> |
| 38352 | 42103 | <info name="alt_title" value="ザ・グレイトバトルV" /> |
| 38353 | 42104 | <part name="cart" interface="snes_cart"> |
| 42105 | ||
| 42106 | <feature name="slot" value="lorom" /> | |
| 38354 | 42107 | <dataarea name="rom" size="1572864"> |
| 38355 | 42108 | <rom name="great battle v, the (japan).sfc" size="1572864" crc="bf3c9314" sha1="dffe4c2bc644fd1047498439f4b7f2002bc2c2bf" offset="0x000000" /> |
| 38356 | 42109 | </dataarea> |
| r21545 | r21546 | |
| 38362 | 42115 | <year>1994</year> |
| 38363 | 42116 | <publisher>Capcom</publisher> |
| 38364 | 42117 | <part name="cart" interface="snes_cart"> |
| 42118 | ||
| 42119 | <feature name="slot" value="hirom" /> | |
| 38365 | 42120 | <dataarea name="rom" size="1572864"> |
| 38366 | 42121 | <rom name="great circus mystery starring mickey & minnie, the (europe).sfc" size="1572864" crc="7de42137" sha1="d837820634ef9c07b69de33ea18e06ac09e8bcb0" offset="0x000000" /> |
| 38367 | 42122 | </dataarea> |
| r21545 | r21546 | |
| 38374 | 42129 | <publisher>Capcom</publisher> |
| 38375 | 42130 | <info name="release" value="199410xx" /> |
| 38376 | 42131 | <part name="cart" interface="snes_cart"> |
| 42132 | ||
| 42133 | <feature name="slot" value="hirom" /> | |
| 38377 | 42134 | <dataarea name="rom" size="1572864"> |
| 38378 | 42135 | <rom name="great circus mystery starring mickey & minnie, the (usa).sfc" size="1572864" crc="1903ea89" sha1="d90d6cdcaa108738c7d41e1e9d79da5c8ddc8853" offset="0x000000" /> |
| 38379 | 42136 | </dataarea> |
| r21545 | r21546 | |
| 38386 | 42143 | <publisher>T*HQ</publisher> |
| 38387 | 42144 | <info name="release" value="199306xx" /> |
| 38388 | 42145 | <part name="cart" interface="snes_cart"> |
| 42146 | ||
| 42147 | <feature name="slot" value="lorom" /> | |
| 38389 | 42148 | <dataarea name="rom" size="524288"> |
| 38390 | 42149 | <rom name="great waldo search, the (usa).sfc" size="524288" crc="eb49f246" sha1="c5b82f708306b3186005fb1803494f8185d1da40" offset="0x000000" /> |
| 38391 | 42150 | </dataarea> |
| r21545 | r21546 | |
| 38400 | 42159 | <info name="release" value="19930923" /> |
| 38401 | 42160 | <info name="alt_title" value="GS美神 ~除霊師はナイスバディ~" /> |
| 38402 | 42161 | <part name="cart" interface="snes_cart"> |
| 42162 | ||
| 42163 | <feature name="slot" value="lorom" /> | |
| 38403 | 42164 | <dataarea name="rom" size="1048576"> |
| 38404 | 42165 | <rom name="gs mikami - joreishi wa nice body (japan).sfc" size="1048576" crc="444c9962" sha1="46853d2212d2f55ddc27224f943af14d4353eeea" offset="0x000000" /> |
| 38405 | 42166 | </dataarea> |
| r21545 | r21546 | |
| 38414 | 42175 | <info name="release" value="19960329" /> |
| 38415 | 42176 | <info name="alt_title" value="ジーティーレーシンク" /> |
| 38416 | 42177 | <part name="cart" interface="snes_cart"> |
| 42178 | ||
| 42179 | <feature name="slot" value="lorom" /> | |
| 38417 | 42180 | <dataarea name="rom" size="2097152"> |
| 38418 | 42181 | <rom name="gt racing (japan).sfc" size="2097152" crc="1f73c832" sha1="0d58b1b35d870cca2b7f6cd99c868a522bf9b597" offset="0x000000" /> |
| 38419 | 42182 | </dataarea> |
| r21545 | r21546 | |
| 38427 | 42190 | <year>1992</year> |
| 38428 | 42191 | <publisher>Irem</publisher> |
| 38429 | 42192 | <part name="cart" interface="snes_cart"> |
| 42193 | ||
| 42194 | <feature name="slot" value="lorom" /> | |
| 38430 | 42195 | <dataarea name="rom" size="524288"> |
| 38431 | 42196 | <rom name="gunforce - battle fire engulfed terror island (europe) (proto).sfc" size="524288" crc="11af8992" sha1="2ccaaa2b9ae0ddb266e20b95fef2d95e3f1fabde" offset="0x000000" /> |
| 38432 | 42197 | </dataarea> |
| r21545 | r21546 | |
| 38439 | 42204 | <publisher>Irem</publisher> |
| 38440 | 42205 | <info name="release" value="199211xx" /> |
| 38441 | 42206 | <part name="cart" interface="snes_cart"> |
| 42207 | ||
| 42208 | <feature name="slot" value="lorom" /> | |
| 38442 | 42209 | <dataarea name="rom" size="524288"> |
| 38443 | 42210 | <rom name="gunforce - battle fire engulfed terror island (usa).sfc" size="524288" crc="6f5c5dc0" sha1="29c3fb9c230972735961bc328903d07df20c87b7" offset="0x000000" /> |
| 38444 | 42211 | </dataarea> |
| r21545 | r21546 | |
| 38450 | 42217 | <year>1994</year> |
| 38451 | 42218 | <publisher>Hudson</publisher> |
| 38452 | 42219 | <part name="cart" interface="snes_cart"> |
| 42220 | ||
| 42221 | <feature name="slot" value="hirom" /> | |
| 38453 | 42222 | <dataarea name="rom" size="2097152"> |
| 38454 | 42223 | <rom name="hagane (japan) (beta).sfc" size="2097152" crc="f0bc3837" sha1="312aee048d7691ec4a596adf7d9ac77a9f0e9b7f" offset="0x000000" /> |
| 38455 | 42224 | </dataarea> |
| r21545 | r21546 | |
| 38465 | 42234 | <info name="alt_title" value="鋼" /> |
| 38466 | 42235 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38467 | 42236 | <part name="cart" interface="snes_cart"> |
| 42237 | ||
| 42238 | <feature name="slot" value="hirom" /> | |
| 38468 | 42239 | <dataarea name="rom" size="2097152"> |
| 38469 | 42240 | <rom name="hagane (japan).sfc" size="2097152" crc="63245cac" sha1="f353f9f39c29411b35d6cdaef2c0e50033af3059" offset="0x000000" /> |
| 38470 | 42241 | </dataarea> |
| r21545 | r21546 | |
| 38477 | 42248 | <publisher>Hudson</publisher> |
| 38478 | 42249 | <info name="release" value="199506xx" /> |
| 38479 | 42250 | <part name="cart" interface="snes_cart"> |
| 42251 | ||
| 42252 | <feature name="slot" value="hirom" /> | |
| 38480 | 42253 | <dataarea name="rom" size="2097152"> |
| 38481 | 42254 | <rom name="hagane - the final conflict (usa).sfc" size="2097152" crc="8e0a7034" sha1="380046437930d0e39cebd662ad1657e20ac4c9c8" offset="0x000000" /> |
| 38482 | 42255 | </dataarea> |
| r21545 | r21546 | |
| 38491 | 42264 | <info name="release" value="19950428" /> |
| 38492 | 42265 | <info name="alt_title" value="牌勢麻雀 凌駕" /> |
| 38493 | 42266 | <part name="cart" interface="snes_cart"> |
| 42267 | ||
| 42268 | <feature name="slot" value="lorom" /> | |
| 38494 | 42269 | <dataarea name="rom" size="1048576"> |
| 38495 | 42270 | <rom name="haisei mahjong - ryouga (japan).sfc" size="1048576" crc="cf7b57e0" sha1="e0da04a08540e3156ffea47823f6ec0b49de3198" offset="0x000000" /> |
| 38496 | 42271 | </dataarea> |
| r21545 | r21546 | |
| 38507 | 42282 | <info name="release" value="19921211" /> |
| 38508 | 42283 | <info name="alt_title" value="白熱プロ野球'93 ガンバリーグ" /> |
| 38509 | 42284 | <part name="cart" interface="snes_cart"> |
| 42285 | ||
| 42286 | <feature name="slot" value="lorom" /> | |
| 38510 | 42287 | <dataarea name="rom" size="1572864"> |
| 38511 | 42288 | <rom name="hakunetsu pro yakyuu '93 - ganba league (japan).sfc" size="1572864" crc="a539cbc8" sha1="392b250b6bf51a4cea5bfec674b31cc2a5e1d3bb" offset="0x000000" /> |
| 38512 | 42289 | </dataarea> |
| r21545 | r21546 | |
| 38523 | 42300 | <info name="release" value="19931210" /> |
| 38524 | 42301 | <info name="alt_title" value="白熱プロ野球'94 ガンバリーグ3" /> |
| 38525 | 42302 | <part name="cart" interface="snes_cart"> |
| 42303 | ||
| 42304 | <feature name="slot" value="lorom" /> | |
| 38526 | 42305 | <dataarea name="rom" size="1048576"> |
| 38527 | 42306 | <rom name="hakunetsu pro yakyuu '94 - ganba league 3 (japan).sfc" size="1048576" crc="1b33d93c" sha1="efbdacc0faa6e73887e654ed5db8a3541e2ec00c" offset="0x000000" /> |
| 38528 | 42307 | </dataarea> |
| r21545 | r21546 | |
| 38539 | 42318 | <info name="release" value="19910809" /> |
| 38540 | 42319 | <info name="alt_title" value="白熱プロ野球 ガンバリーグ" /> |
| 38541 | 42320 | <part name="cart" interface="snes_cart"> |
| 42321 | ||
| 42322 | <feature name="slot" value="lorom" /> | |
| 38542 | 42323 | <dataarea name="rom" size="1048576"> |
| 38543 | 42324 | <rom name="hakunetsu pro yakyuu - ganba league (japan).sfc" size="1048576" crc="c7168fcb" sha1="c73de83fde8de3ba00b1e11178939aef33aa7f59" offset="0x000000" /> |
| 38544 | 42325 | </dataarea> |
| r21545 | r21546 | |
| 38552 | 42333 | <year>1991</year> |
| 38553 | 42334 | <publisher>HAL Laboratory</publisher> |
| 38554 | 42335 | <part name="cart" interface="snes_cart"> |
| 42336 | ||
| 42337 | <feature name="slot" value="lorom" /> | |
| 38555 | 42338 | <dataarea name="rom" size="1048576"> |
| 38556 | 42339 | <rom name="hal's hole in one golf (europe).sfc" size="1048576" crc="27c87d04" sha1="dc384ead55910634ddc64e0dc0c36a172a4ef7bc" offset="0x000000" /> |
| 38557 | 42340 | </dataarea> |
| r21545 | r21546 | |
| 38566 | 42349 | <info name="release" value="19950929" /> |
| 38567 | 42350 | <info name="alt_title" value="ハーメルンのバイオリン弾き" /> |
| 38568 | 42351 | <part name="cart" interface="snes_cart"> |
| 42352 | ||
| 42353 | <feature name="slot" value="lorom" /> | |
| 38569 | 42354 | <dataarea name="rom" size="1572864"> |
| 38570 | 42355 | <rom name="hameln no violin hiki (japan).sfc" size="1572864" crc="fb500926" sha1="9a1451c46b10d1c6b85f1bbd9825805d9171fb2d" offset="0x000000" /> |
| 38571 | 42356 | </dataarea> |
| r21545 | r21546 | |
| 38579 | 42364 | <info name="release" value="199410xx" /> |
| 38580 | 42365 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38581 | 42366 | <part name="cart" interface="snes_cart"> |
| 42367 | ||
| 42368 | <feature name="slot" value="lorom" /> | |
| 38582 | 42369 | <dataarea name="rom" size="2097152"> |
| 38583 | 42370 | <rom name="hammerlock wrestling (usa).sfc" size="2097152" crc="3d2352ea" sha1="45a0e7811407848ce3c2b73544d89a0030fda4cb" offset="0x000000" /> |
| 38584 | 42371 | </dataarea> |
| r21545 | r21546 | |
| 38593 | 42380 | <info name="release" value="19941118" /> |
| 38594 | 42381 | <info name="alt_title" value="花の慶次 ―雲のかなたに―" /> |
| 38595 | 42382 | <part name="cart" interface="snes_cart"> |
| 42383 | ||
| 42384 | <feature name="slot" value="lorom" /> | |
| 38596 | 42385 | <dataarea name="rom" size="2097152"> |
| 38597 | 42386 | <rom name="hana no keiji - kumo no kanata ni (japan).sfc" size="2097152" crc="dc2b90f2" sha1="4c89b3894aa9f6481e394672776a3ce48ce64a25" offset="0x000000" /> |
| 38598 | 42387 | </dataarea> |
| r21545 | r21546 | |
| 38607 | 42396 | <info name="release" value="19941216" /> |
| 38608 | 42397 | <info name="alt_title" value="花札王" /> |
| 38609 | 42398 | <part name="cart" interface="snes_cart"> |
| 42399 | ||
| 42400 | <feature name="slot" value="lorom" /> | |
| 38610 | 42401 | <dataarea name="rom" size="524288"> |
| 38611 | 42402 | <rom name="hanafuda ou (japan).sfc" size="524288" crc="4f453a21" sha1="47cddac778643dc25499cfcaa451956bf4b657b5" offset="0x000000" /> |
| 38612 | 42403 | </dataarea> |
| r21545 | r21546 | |
| 38619 | 42410 | <publisher>Jaleco?</publisher> |
| 38620 | 42411 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38621 | 42412 | <part name="cart" interface="snes_cart"> |
| 42413 | ||
| 42414 | <feature name="slot" value="lorom_dsp" /> | |
| 38622 | 42415 | <dataarea name="rom" size="1572864"> |
| 38623 | 42416 | <rom name="hanguk pro yagu (korea).sfc" size="1572864" crc="a21fb1d5" sha1="1e6b3ebdb5227626f4226ff9eef166294ffe063c" offset="0x000000" /> |
| 38624 | 42417 | </dataarea> |
| 42418 | <dataarea name="addon" size="10240"> | |
| 42419 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 42420 | </dataarea> | |
| 38625 | 42421 | <dataarea name="nvram" size="8192"> |
| 38626 | 42422 | </dataarea> |
| 38627 | 42423 | </part> |
| r21545 | r21546 | |
| 38635 | 42431 | <info name="release" value="19911227" /> |
| 38636 | 42432 | <info name="alt_title" value="反省ザル ジローくんの大冒険" /> |
| 38637 | 42433 | <part name="cart" interface="snes_cart"> |
| 42434 | ||
| 42435 | <feature name="slot" value="lorom" /> | |
| 38638 | 42436 | <dataarea name="rom" size="524288"> |
| 38639 | 42437 | <rom name="hansei zaru jiro-kun no daibouken (japan).sfc" size="524288" crc="0a7dc25d" sha1="1448bdfc3ddb301616cb269db02554517ce6b64d" offset="0x000000" /> |
| 38640 | 42438 | </dataarea> |
| r21545 | r21546 | |
| 38649 | 42447 | <info name="release" value="19941222" /> |
| 38650 | 42448 | <info name="alt_title" value="覇王大系リューナイト ロードオブパラディン" /> |
| 38651 | 42449 | <part name="cart" interface="snes_cart"> |
| 42450 | ||
| 42451 | <feature name="slot" value="lorom" /> | |
| 38652 | 42452 | <dataarea name="rom" size="1572864"> |
| 38653 | 42453 | <rom name="haou taikei ryuu knight - lord of paladin (japan).sfc" size="1572864" crc="b7b6bef7" sha1="221305f1e5913c7876b89d4a5d56406275e143a7" offset="0x000000" /> |
| 38654 | 42454 | </dataarea> |
| r21545 | r21546 | |
| 38665 | 42465 | <info name="release" value="19941019" /> |
| 38666 | 42466 | <info name="alt_title" value="はらぺこバッカ" /> |
| 38667 | 42467 | <part name="cart" interface="snes_cart"> |
| 42468 | ||
| 42469 | <feature name="slot" value="hirom" /> | |
| 38668 | 42470 | <dataarea name="rom" size="262144"> |
| 38669 | 42471 | <rom name="harapeko bakka (japan).sfc" size="262144" crc="7abdb576" sha1="90541294c720b54b8fcc2cc2525cca3aad2e8173" offset="0x000000" /> |
| 38670 | 42472 | </dataarea> |
| r21545 | r21546 | |
| 38677 | 42479 | <publisher>Accolade</publisher> |
| 38678 | 42480 | <info name="release" value="199406xx" /> |
| 38679 | 42481 | <part name="cart" interface="snes_cart"> |
| 42482 | ||
| 42483 | <feature name="slot" value="hirom" /> | |
| 38680 | 42484 | <dataarea name="rom" size="2097152"> |
| 38681 | 42485 | <rom name="hardball iii (usa).sfc" size="2097152" crc="f3589b15" sha1="fd55417146ae4423ed4cd42338104cbaf8affe09" offset="0x000000" /> |
| 38682 | 42486 | </dataarea> |
| r21545 | r21546 | |
| 38688 | 42492 | <year>1993</year> |
| 38689 | 42493 | <publisher>Hi Tech Expressions</publisher> |
| 38690 | 42494 | <part name="cart" interface="snes_cart"> |
| 42495 | ||
| 42496 | <feature name="slot" value="lorom" /> | |
| 38691 | 42497 | <dataarea name="rom" size="524288"> |
| 38692 | 42498 | <rom name="harley's humongous adventure (europe).sfc" size="524288" crc="07715303" sha1="008957315a3a814329f330fca7aef3fc09460adf" offset="0x000000" /> |
| 38693 | 42499 | </dataarea> |
| r21545 | r21546 | |
| 38699 | 42505 | <year>1993</year> |
| 38700 | 42506 | <publisher>Hi Tech Expressions</publisher> |
| 38701 | 42507 | <part name="cart" interface="snes_cart"> |
| 42508 | ||
| 42509 | <feature name="slot" value="lorom" /> | |
| 38702 | 42510 | <dataarea name="rom" size="524288"> |
| 38703 | 42511 | <rom name="harley's humongous adventure (usa) (beta).sfc" size="524288" crc="f52eacd1" sha1="b727253811785cdf2f9621a347f36757024c2aab" offset="0x000000" /> |
| 38704 | 42512 | </dataarea> |
| r21545 | r21546 | |
| 38711 | 42519 | <publisher>Hi Tech Expressions</publisher> |
| 38712 | 42520 | <info name="release" value="199302xx" /> |
| 38713 | 42521 | <part name="cart" interface="snes_cart"> |
| 42522 | ||
| 42523 | <feature name="slot" value="lorom" /> | |
| 38714 | 42524 | <dataarea name="rom" size="524288"> |
| 38715 | 42525 | <rom name="harley's humongous adventure (usa).sfc" size="524288" crc="91e0c960" sha1="a9ea1251ad46990e62abaf505ce2062e2d6acb64" offset="0x000000" /> |
| 38716 | 42526 | </dataarea> |
| r21545 | r21546 | |
| 38722 | 42532 | <year>1997</year> |
| 38723 | 42533 | <publisher>Natsume</publisher> |
| 38724 | 42534 | <part name="cart" interface="snes_cart"> |
| 42535 | ||
| 42536 | <feature name="slot" value="lorom" /> | |
| 38725 | 42537 | <dataarea name="rom" size="2097152"> |
| 38726 | 42538 | <rom name="harvest moon (europe).sfc" size="2097152" crc="d54e1452" sha1="ce643c3f834e593bfaa77a22dcc7253a7789d8de" offset="0x000000" /> |
| 38727 | 42539 | </dataarea> |
| r21545 | r21546 | |
| 38735 | 42547 | <year>1997</year> |
| 38736 | 42548 | <publisher>Natsume</publisher> |
| 38737 | 42549 | <part name="cart" interface="snes_cart"> |
| 42550 | ||
| 42551 | <feature name="slot" value="lorom" /> | |
| 38738 | 42552 | <dataarea name="rom" size="2097152"> |
| 38739 | 42553 | <rom name="harvest moon (germany).sfc" size="2097152" crc="3c1037c1" sha1="a29836109aff66a7273d6ea16927c5df508ef1d2" offset="0x000000" /> |
| 38740 | 42554 | </dataarea> |
| r21545 | r21546 | |
| 38751 | 42565 | <info name="release" value="19941222" /> |
| 38752 | 42566 | <info name="alt_title" value="はしれへべれけ" /> |
| 38753 | 42567 | <part name="cart" interface="snes_cart"> |
| 42568 | ||
| 42569 | <feature name="slot" value="lorom" /> | |
| 38754 | 42570 | <dataarea name="rom" size="1310720"> |
| 38755 | 42571 | <rom name="hashire hebereke (japan).sfc" size="1310720" crc="dd792499" sha1="a095f3a20cb8c8ad30897a6c4da78d6921c4c127" offset="0x000000" /> |
| 38756 | 42572 | </dataarea> |
| r21545 | r21546 | |
| 38767 | 42583 | <info name="release" value="19931029" /> |
| 38768 | 42584 | <info name="alt_title" value="はた山ハッチのパロ野球ニュース!実名版" /> |
| 38769 | 42585 | <part name="cart" interface="snes_cart"> |
| 42586 | ||
| 42587 | <feature name="slot" value="hirom" /> | |
| 38770 | 42588 | <dataarea name="rom" size="1048576"> |
| 38771 | 42589 | <rom name="hatayama hatch no pro yakyuu news! - jitsumei ban (japan).sfc" size="1048576" crc="7a585763" sha1="27b381b003445ef9bd1db0ecf9f018093a3e586b" offset="0x000000" /> |
| 38772 | 42590 | </dataarea> |
| r21545 | r21546 | |
| 38782 | 42600 | <info name="release" value="199509xx" /> |
| 38783 | 42601 | <sharedfeat name="compatibility" value="NTSC"/> |
| 38784 | 42602 | <part name="cart" interface="snes_cart"> |
| 42603 | ||
| 42604 | <feature name="slot" value="lorom" /> | |
| 38785 | 42605 | <dataarea name="rom" size="2097152"> |
| 38786 | 42606 | <rom name="head-on soccer (usa).sfc" size="2097152" crc="60dc3634" sha1="7f8f4af47b9b15966a6a4083a41bf3c68391a555" offset="0x000000" /> |
| 38787 | 42607 | </dataarea> |
| r21545 | r21546 | |
| 38796 | 42616 | <info name="release" value="19940831" /> |
| 38797 | 42617 | <info name="alt_title" value="へべれけのおいしいパズルはいりませんか" /> |
| 38798 | 42618 | <part name="cart" interface="snes_cart"> |
| 42619 | ||
| 42620 | <feature name="slot" value="lorom" /> | |
| 38799 | 42621 | <dataarea name="rom" size="1310720"> |
| 38800 | 42622 | <rom name="hebereke no oishii puzzle wa irimasenka (japan).sfc" size="1310720" crc="0b94ccd4" sha1="6b9dbe40ef560d71f28b932def655073f5d78ddc" offset="0x000000" /> |
| 38801 | 42623 | </dataarea> |
| r21545 | r21546 | |
| 38810 | 42632 | <info name="release" value="19931222" /> |
| 38811 | 42633 | <info name="alt_title" value="へべれけのぽぷーん" /> |
| 38812 | 42634 | <part name="cart" interface="snes_cart"> |
| 42635 | ||
| 42636 | <feature name="slot" value="lorom" /> | |
| 38813 | 42637 | <dataarea name="rom" size="1048576"> |
| 38814 | 42638 | <rom name="hebereke no popoon (japan).sfc" size="1048576" crc="890d9c9e" sha1="cc3350ce455feed0304372bd9df11d5949c9ef4d" offset="0x000000" /> |
| 38815 | 42639 | </dataarea> |
| r21545 | r21546 | |
| 38822 | 42646 | <publisher>Sunsoft</publisher> |
| 38823 | 42647 | <sharedfeat name="compatibility" value="PAL"/> |
| 38824 | 42648 | <part name="cart" interface="snes_cart"> |
| 42649 | ||
| 42650 | <feature name="slot" value="lorom" /> | |
| 38825 | 42651 | <dataarea name="rom" size="524288"> |
| 38826 | 42652 | <rom name="hebereke's popoitto (europe).sfc" size="524288" crc="0ce626ba" sha1="d7cd0b4f25652664e3aa8389e09c58937e5012fb" offset="0x000000" /> |
| 38827 | 42653 | </dataarea> |
| r21545 | r21546 | |
| 38834 | 42660 | <publisher>Sunsoft</publisher> |
| 38835 | 42661 | <sharedfeat name="compatibility" value="PAL"/> |
| 38836 | 42662 | <part name="cart" interface="snes_cart"> |
| 42663 | ||
| 42664 | <feature name="slot" value="lorom" /> | |
| 38837 | 42665 | <dataarea name="rom" size="1048576"> |
| 38838 | 42666 | <rom name="hebereke's popoon (europe).sfc" size="1048576" crc="7a313722" sha1="93e75f168cef31734fa99d1b17fcf7ea8fe1e4a9" offset="0x000000" /> |
| 38839 | 42667 | </dataarea> |
| r21545 | r21546 | |
| 38848 | 42676 | <info name="release" value="19950929" /> |
| 38849 | 42677 | <info name="alt_title" value="平安風雲伝" /> |
| 38850 | 42678 | <part name="cart" interface="snes_cart"> |
| 42679 | ||
| 42680 | <feature name="slot" value="hirom" /> | |
| 38851 | 42681 | <dataarea name="rom" size="1572864"> |
| 38852 | 42682 | <rom name="heian fuuunden (japan).sfc" size="1572864" crc="4640d1a2" sha1="3b0ca4a24a02c683f8ad140242f6dff96d0d8339" offset="0x000000" /> |
| 38853 | 42683 | </dataarea> |
| r21545 | r21546 | |
| 38864 | 42694 | <info name="release" value="19960126" /> |
| 38865 | 42695 | <info name="alt_title" value="平成軍人将棋" /> |
| 38866 | 42696 | <part name="cart" interface="snes_cart"> |
| 42697 | ||
| 42698 | <feature name="slot" value="lorom" /> | |
| 38867 | 42699 | <dataarea name="rom" size="524288"> |
| 38868 | 42700 | <rom name="heisei gunjin shougi (japan).sfc" size="524288" crc="10bca5e1" sha1="20d0754a2f3d6c50eed0e0bf00513763bed359c1" offset="0x000000" /> |
| 38869 | 42701 | </dataarea> |
| r21545 | r21546 | |
| 38878 | 42710 | <info name="release" value="19940428" /> |
| 38879 | 42711 | <info name="alt_title" value="平成イヌ物語バウ ポップンスマッシュ!!" /> |
| 38880 | 42712 | <part name="cart" interface="snes_cart"> |
| 42713 | ||
| 42714 | <feature name="slot" value="hirom" /> | |
| 38881 | 42715 | <dataarea name="rom" size="524288"> |
| 38882 | 42716 | <rom name="heisei inu monogatari bow - pop'n smash!! (japan).sfc" size="524288" crc="fe4a2622" sha1="e50d6cdf138716bad867200198405d40e48ccef5" offset="0x000000" /> |
| 38883 | 42717 | </dataarea> |
| r21545 | r21546 | |
| 38892 | 42726 | <info name="release" value="19971201 / 19980523" /> |
| 38893 | 42727 | <info name="alt_title" value="平成新鬼ヶ島後編" /> |
| 38894 | 42728 | <part name="cart" interface="snes_cart"> |
| 42729 | ||
| 42730 | <feature name="slot" value="hirom" /> | |
| 38895 | 42731 | <dataarea name="rom" size="3145728"> |
| 38896 | 42732 | <rom name="heisei shin onigashima - kouhen (japan).sfc" size="3145728" crc="0e4c28fe" sha1="b8dedae2bfc02f7a5ce79fe67acdcb2484106743" offset="0x000000" /> |
| 38897 | 42733 | </dataarea> |
| r21545 | r21546 | |
| 38908 | 42744 | <info name="release" value="19971201 / 19980523" /> |
| 38909 | 42745 | <info name="alt_title" value="平成新鬼ヶ島前編" /> |
| 38910 | 42746 | <part name="cart" interface="snes_cart"> |
| 42747 | ||
| 42748 | <feature name="slot" value="hirom" /> | |
| 38911 | 42749 | <dataarea name="rom" size="3145728"> |
| 38912 | 42750 | <rom name="heisei shin onigashima - zenpen (japan).sfc" size="3145728" crc="1725e556" sha1="cc33b67da829ce809d3657a353802ff4e6b5bbc2" offset="0x000000" /> |
| 38913 | 42751 | </dataarea> |
| r21545 | r21546 | |
| 38924 | 42762 | <info name="release" value="19950224" /> |
| 38925 | 42763 | <info name="alt_title" value="平和 パチンコワールト" /> |
| 38926 | 42764 | <part name="cart" interface="snes_cart"> |
| 42765 | ||
| 42766 | <feature name="slot" value="lorom" /> | |
| 38927 | 42767 | <dataarea name="rom" size="1572864"> |
| 38928 | 42768 | <rom name="heiwa pachinko world (japan).sfc" size="1572864" crc="b2a081d2" sha1="9f98aa00c12f945660d107bad4c8f70b373df9b0" offset="0x000000" /> |
| 38929 | 42769 | </dataarea> |
| r21545 | r21546 | |
| 38940 | 42780 | <info name="release" value="19950929" /> |
| 38941 | 42781 | <info name="alt_title" value="平和 パチンコワールド2" /> |
| 38942 | 42782 | <part name="cart" interface="snes_cart"> |
| 42783 | ||
| 42784 | <feature name="slot" value="hirom" /> | |
| 38943 | 42785 | <dataarea name="rom" size="2621440"> |
| 38944 | 42786 | <rom name="heiwa pachinko world 2 (japan).sfc" size="2621440" crc="975766d5" sha1="e80a81cec22542034d99fd3a60de74569be00ae8" offset="0x000000" /> |
| 38945 | 42787 | </dataarea> |
| r21545 | r21546 | |
| 38956 | 42798 | <info name="release" value="19960426" /> |
| 38957 | 42799 | <info name="alt_title" value="平和パチンコワールド3" /> |
| 38958 | 42800 | <part name="cart" interface="snes_cart"> |
| 42801 | ||
| 42802 | <feature name="slot" value="hirom" /> | |
| 38959 | 42803 | <dataarea name="rom" size="3145728"> |
| 38960 | 42804 | <rom name="heiwa pachinko world 3 (japan).sfc" size="3145728" crc="37ff1fdf" sha1="2884ac7f0a4eb5c5f69c1194797910c2332fb13b" offset="0x000000" /> |
| 38961 | 42805 | </dataarea> |
| r21545 | r21546 | |
| 38972 | 42816 | <info name="release" value="19980130" /> |
| 38973 | 42817 | <info name="alt_title" value="平和 パーラー!ミニ8 パチンコ 実機シミュレーションゲーム" /> |
| 38974 | 42818 | <part name="cart" interface="snes_cart"> |
| 42819 | ||
| 42820 | <feature name="slot" value="hirom" /> | |
| 38975 | 42821 | <dataarea name="rom" size="1048576"> |
| 38976 | 42822 | <rom name="heiwa parlor! mini 8 - pachinko jikki simulation game (japan).sfc" size="1048576" crc="aaf45e59" sha1="1b8ece1b76034ae72c96f06c703007f900509b77" offset="0x000000" /> |
| 38977 | 42823 | </dataarea> |
| r21545 | r21546 | |
| 38986 | 42832 | <info name="release" value="19940826" /> |
| 38987 | 42833 | <info name="alt_title" value="ハロー!パックマン" /> |
| 38988 | 42834 | <part name="cart" interface="snes_cart"> |
| 42835 | ||
| 42836 | <feature name="slot" value="lorom" /> | |
| 38989 | 42837 | <dataarea name="rom" size="1572864"> |
| 38990 | 42838 | <rom name="hello! pac-man (japan).sfc" size="1572864" crc="0318fd8c" sha1="bafe9438730174a6d1c8c3078b22d1f852e22d2f" offset="0x000000" /> |
| 38991 | 42839 | </dataarea> |
| r21545 | r21546 | |
| 39000 | 42848 | <info name="release" value="19920424" /> |
| 39001 | 42849 | <info name="alt_title" value="ヘラクレスの栄光III 神々の沈黙" /> |
| 39002 | 42850 | <part name="cart" interface="snes_cart"> |
| 42851 | ||
| 42852 | <feature name="slot" value="lorom" /> | |
| 39003 | 42853 | <dataarea name="rom" size="1048576"> |
| 39004 | 42854 | <rom name="herakles no eikou iii - kamigami no chinmoku (japan).sfc" size="1048576" crc="61939546" sha1="9a664c160cc97cf9a95af0a5780b42a2812bad76" offset="0x000000" /> |
| 39005 | 42855 | </dataarea> |
| r21545 | r21546 | |
| 39016 | 42866 | <info name="release" value="19941021" /> |
| 39017 | 42867 | <info name="alt_title" value="ヘラクレスの栄光IV 神々からの贈り物" /> |
| 39018 | 42868 | <part name="cart" interface="snes_cart"> |
| 42869 | ||
| 42870 | <feature name="slot" value="lorom" /> | |
| 39019 | 42871 | <dataarea name="rom" size="2097152"> |
| 39020 | 42872 | <rom name="herakles no eikou iv - kamigami kara no okurimono (japan).sfc" size="2097152" crc="920a738e" sha1="4e14015c23b130dceb8f887aa0f92a7c86f58068" offset="0x000000" /> |
| 39021 | 42873 | </dataarea> |
| r21545 | r21546 | |
| 39032 | 42884 | <info name="release" value="19921120" /> |
| 39033 | 42885 | <info name="alt_title" value="ヒーロー戦記 プロジェクト オリュンポス" /> |
| 39034 | 42886 | <part name="cart" interface="snes_cart"> |
| 42887 | ||
| 42888 | <feature name="slot" value="lorom" /> | |
| 39035 | 42889 | <dataarea name="rom" size="1572864"> |
| 39036 | 42890 | <rom name="hero senki - project olympus (japan).sfc" size="1572864" crc="789da99c" sha1="1c846ff08ff25325fbbef1f9acf10f6e73349f7e" offset="0x000000" /> |
| 39037 | 42891 | </dataarea> |
| r21545 | r21546 | |
| 39048 | 42902 | <info name="release" value="19950929" /> |
| 39049 | 42903 | <info name="alt_title" value="火の皇子 ヤマトタケル" /> |
| 39050 | 42904 | <part name="cart" interface="snes_cart"> |
| 42905 | ||
| 42906 | <feature name="slot" value="hirom" /> | |
| 39051 | 42907 | <dataarea name="rom" size="3145728"> |
| 39052 | 42908 | <rom name="hi no ouji - yamato takeru (japan).sfc" size="3145728" crc="2fc4c8a2" sha1="9a8ba4260537ebff78018514e1e02ac29b3b4c0d" offset="0x000000" /> |
| 39053 | 42909 | </dataarea> |
| r21545 | r21546 | |
| 39064 | 42920 | <info name="release" value="19930930" /> |
| 39065 | 42921 | <info name="alt_title" value="東尾 修 監修 スーパープロ野球スタジアム" /> |
| 39066 | 42922 | <part name="cart" interface="snes_cart"> |
| 42923 | ||
| 42924 | <feature name="slot" value="lorom" /> | |
| 39067 | 42925 | <dataarea name="rom" size="524288"> |
| 39068 | 42926 | <rom name="higashio osamu kanshuu super pro yakyuu stadium (japan).sfc" size="524288" crc="4d6b6c80" sha1="38ab30962381e004618ff0ebfb563aa585c0282f" offset="0x000000" /> |
| 39069 | 42927 | </dataarea> |
| r21545 | r21546 | |
| 39080 | 42938 | <info name="release" value="19940211" /> |
| 39081 | 42939 | <info name="alt_title" value="緋王伝 魔物達との誓い" /> |
| 39082 | 42940 | <part name="cart" interface="snes_cart"> |
| 42941 | ||
| 42942 | <feature name="slot" value="lorom" /> | |
| 39083 | 42943 | <dataarea name="rom" size="1572864"> |
| 39084 | 42944 | <rom name="hiouden - mamono-tachi to no chikai (japan).sfc" size="1572864" crc="1d4ae6ab" sha1="9a7b6fa34a07abbd9b9485b6ab9c2cd6d4d7051b" offset="0x000000" /> |
| 39085 | 42945 | </dataarea> |
| r21545 | r21546 | |
| 39097 | 42957 | <info name="alt_title" value="必殺パチンココレクション2" /> |
| 39098 | 42958 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39099 | 42959 | <part name="cart" interface="snes_cart"> |
| 42960 | ||
| 42961 | <feature name="slot" value="lorom" /> | |
| 39100 | 42962 | <dataarea name="rom" size="2097152"> |
| 39101 | 42963 | <rom name="hissatsu pachinko collection 2 (japan).sfc" size="2097152" crc="4a5b12ce" sha1="c213c35dd9c65dd3fa0b2e0510267820ef7e691a" offset="0x000000" /> |
| 39102 | 42964 | </dataarea> |
| r21545 | r21546 | |
| 39114 | 42976 | <info name="alt_title" value="必殺パチンココレクション3" /> |
| 39115 | 42977 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39116 | 42978 | <part name="cart" interface="snes_cart"> |
| 42979 | ||
| 42980 | <feature name="slot" value="lorom" /> | |
| 39117 | 42981 | <dataarea name="rom" size="2097152"> |
| 39118 | 42982 | <rom name="hissatsu pachinko collection 3 (japan).sfc" size="2097152" crc="c3dd6d9f" sha1="e90f0d3a747c87f1df2d72b76965c6b2d29fe98c" offset="0x000000" /> |
| 39119 | 42983 | </dataarea> |
| r21545 | r21546 | |
| 39130 | 42994 | <info name="release" value="19960830" /> |
| 39131 | 42995 | <info name="alt_title" value="必殺パチンココレクション4" /> |
| 39132 | 42996 | <part name="cart" interface="snes_cart"> |
| 42997 | ||
| 42998 | <feature name="slot" value="lorom" /> | |
| 39133 | 42999 | <dataarea name="rom" size="2097152"> |
| 39134 | 43000 | <rom name="hissatsu pachinko collection 4 (japan).sfc" size="2097152" crc="0b6f34c7" sha1="7fad10961e72b84ebdf251a5025204cfbc67e354" offset="0x000000" /> |
| 39135 | 43001 | </dataarea> |
| r21545 | r21546 | |
| 39146 | 43012 | <info name="release" value="19940819" /> |
| 39147 | 43013 | <info name="alt_title" value="必勝スリーセブンファイター2 パチスロ○秘情報" /> |
| 39148 | 43014 | <part name="cart" interface="snes_cart"> |
| 43015 | ||
| 43016 | <feature name="slot" value="lorom" /> | |
| 39149 | 43017 | <dataarea name="rom" size="524288"> |
| 39150 | 43018 | <rom name="hisshou 777 fighter ii - pachi-slot maruhi jouhou (japan).sfc" size="524288" crc="26c8072e" sha1="64fb24bb88a948e076dea922aaf8736938e1da8c" offset="0x000000" /> |
| 39151 | 43019 | </dataarea> |
| r21545 | r21546 | |
| 39160 | 43028 | <info name="release" value="19950915" /> |
| 39161 | 43029 | <info name="alt_title" value="必勝777ファイター黒竜王の復活" /> |
| 39162 | 43030 | <part name="cart" interface="snes_cart"> |
| 43031 | ||
| 43032 | <feature name="slot" value="lorom" /> | |
| 39163 | 43033 | <dataarea name="rom" size="1048576"> |
| 39164 | 43034 | <rom name="hisshou 777 fighter iii - kokuryuu ou no fukkatsu (japan).sfc" size="1048576" crc="c386fc22" sha1="82ac09b5407142cf8cc1eae22b8a10fd01c00a96" offset="0x000000" /> |
| 39165 | 43035 | </dataarea> |
| r21545 | r21546 | |
| 39174 | 43044 | <info name="release" value="19941216" /> |
| 39175 | 43045 | <info name="alt_title" value="必勝パチスロファン" /> |
| 39176 | 43046 | <part name="cart" interface="snes_cart"> |
| 43047 | ||
| 43048 | <feature name="slot" value="lorom" /> | |
| 39177 | 43049 | <dataarea name="rom" size="1048576"> |
| 39178 | 43050 | <rom name="hisshou pachi-slot fun (japan).sfc" size="1048576" crc="b37bbd38" sha1="c0c272461a7877f86194208bd549244effeb3563" offset="0x000000" /> |
| 39179 | 43051 | </dataarea> |
| r21545 | r21546 | |
| 39188 | 43060 | <publisher>Taito</publisher> |
| 39189 | 43061 | <info name="release" value="199302xx" /> |
| 39190 | 43062 | <part name="cart" interface="snes_cart"> |
| 43063 | ||
| 43064 | <feature name="slot" value="lorom" /> | |
| 39191 | 43065 | <dataarea name="rom" size="524288"> |
| 39192 | 43066 | <rom name="hit the ice (usa).sfc" size="524288" crc="ec13477e" sha1="a8b2f000b1df0cf5b1fa0430697d23ad64ee962a" offset="0x000000" /> |
| 39193 | 43067 | </dataarea> |
| r21545 | r21546 | |
| 39202 | 43076 | <info name="release" value="19920710" /> |
| 39203 | 43077 | <info name="alt_title" value="北斗の拳5 天魔流星伝 哀・絶章" /> |
| 39204 | 43078 | <part name="cart" interface="snes_cart"> |
| 43079 | ||
| 43080 | <feature name="slot" value="lorom" /> | |
| 39205 | 43081 | <dataarea name="rom" size="1048576"> |
| 39206 | 43082 | <rom name="hokuto no ken 5 - tenma ryuuseiden ai zetsu shou (japan).sfc" size="1048576" crc="68bdcbd7" sha1="6dec225946050ba3af1ef102f8c039ee3279c5d9" offset="0x000000" /> |
| 39207 | 43083 | </dataarea> |
| r21545 | r21546 | |
| 39218 | 43094 | <info name="release" value="19921120" /> |
| 39219 | 43095 | <info name="alt_title" value="北斗の拳6 激闘伝承拳 覇王への道" /> |
| 39220 | 43096 | <part name="cart" interface="snes_cart"> |
| 43097 | ||
| 43098 | <feature name="slot" value="lorom" /> | |
| 39221 | 43099 | <dataarea name="rom" size="1572864"> |
| 39222 | 43100 | <rom name="hokuto no ken 6 - gekitou denshouken haou e no michi (japan).sfc" size="1572864" crc="e51cd206" sha1="655b86d3648ae0af3b25490ca379f18364e39b45" offset="0x000000" /> |
| 39223 | 43101 | </dataarea> |
| r21545 | r21546 | |
| 39232 | 43110 | <info name="release" value="19931224" /> |
| 39233 | 43111 | <info name="alt_title" value="北斗の拳7 聖拳列伝 伝承者への道" /> |
| 39234 | 43112 | <part name="cart" interface="snes_cart"> |
| 43113 | ||
| 43114 | <feature name="slot" value="hirom" /> | |
| 39235 | 43115 | <dataarea name="rom" size="2621440"> |
| 39236 | 43116 | <rom name="hokuto no ken 7 - seiken retsuden denshousha e no michi (japan).sfc" size="2621440" crc="143e5a7d" sha1="5ab33f0d42ebafe6e5956a0a27ffc647b1c317c3" offset="0x000000" /> |
| 39237 | 43117 | </dataarea> |
| r21545 | r21546 | |
| 39246 | 43126 | <info name="release" value="19931217" /> |
| 39247 | 43127 | <info name="alt_title" value="ホーリーストライカー" /> |
| 39248 | 43128 | <part name="cart" interface="snes_cart"> |
| 43129 | ||
| 43130 | <feature name="slot" value="lorom" /> | |
| 39249 | 43131 | <dataarea name="rom" size="1048576"> |
| 39250 | 43132 | <rom name="holy striker (japan).sfc" size="1048576" crc="46acfc84" sha1="22065b52ce8a6461dc5d4a32b4a6b41bc5cbd23f" offset="0x000000" /> |
| 39251 | 43133 | </dataarea> |
| r21545 | r21546 | |
| 39260 | 43142 | <info name="release" value="19950929" /> |
| 39261 | 43143 | <info name="alt_title" value="ホーリーアンブレラ ドンデラの無 謀!!" /> |
| 39262 | 43144 | <part name="cart" interface="snes_cart"> |
| 43145 | ||
| 43146 | <feature name="slot" value="lorom" /> | |
| 39263 | 43147 | <dataarea name="rom" size="2621440"> |
| 39264 | 43148 | <rom name="holy umbrella - dondera no mubou!! (japan).sfc" size="2621440" crc="f0a9dead" sha1="d3a26291aedcbbc4725165dd4eff569236086ac0" offset="0x000000" /> |
| 39265 | 43149 | </dataarea> |
| r21545 | r21546 | |
| 39273 | 43157 | <year>1991</year> |
| 39274 | 43158 | <publisher>T*HQ</publisher> |
| 39275 | 43159 | <part name="cart" interface="snes_cart"> |
| 43160 | ||
| 43161 | <feature name="slot" value="lorom" /> | |
| 39276 | 43162 | <dataarea name="rom" size="524288"> |
| 39277 | 43163 | <rom name="home alone (europe).sfc" size="524288" crc="3eeea766" sha1="b40ecf3516ec8d4ef1f7b5c4da6020fc5896be66" offset="0x000000" /> |
| 39278 | 43164 | </dataarea> |
| r21545 | r21546 | |
| 39287 | 43173 | <info name="release" value="19920811" /> |
| 39288 | 43174 | <info name="alt_title" value="ホーム・アローン" /> |
| 39289 | 43175 | <part name="cart" interface="snes_cart"> |
| 43176 | ||
| 43177 | <feature name="slot" value="lorom" /> | |
| 39290 | 43178 | <dataarea name="rom" size="524288"> |
| 39291 | 43179 | <rom name="home alone (japan).sfc" size="524288" crc="6278bca1" sha1="8c54e903cdb84c6b449e36066cae4b8a8168a2a6" offset="0x000000" /> |
| 39292 | 43180 | </dataarea> |
| r21545 | r21546 | |
| 39299 | 43187 | <publisher>T*HQ</publisher> |
| 39300 | 43188 | <info name="release" value="199112xx" /> |
| 39301 | 43189 | <part name="cart" interface="snes_cart"> |
| 43190 | ||
| 43191 | <feature name="slot" value="lorom" /> | |
| 39302 | 43192 | <dataarea name="rom" size="524288"> |
| 39303 | 43193 | <rom name="home alone (usa).sfc" size="524288" crc="07c494b1" sha1="e1f96f63603f4d899ec8e29975d0cdf0170cde73" offset="0x000000" /> |
| 39304 | 43194 | </dataarea> |
| r21545 | r21546 | |
| 39310 | 43200 | <year>1992</year> |
| 39311 | 43201 | <publisher>T*HQ</publisher> |
| 39312 | 43202 | <part name="cart" interface="snes_cart"> |
| 43203 | ||
| 43204 | <feature name="slot" value="lorom" /> | |
| 39313 | 43205 | <dataarea name="rom" size="524288"> |
| 39314 | 43206 | <rom name="home alone 2 - lost in new york (europe).sfc" size="524288" crc="226998d6" sha1="d25da3c3f7d43fcf0f986d26961ebc25d4a6b430" offset="0x000000" /> |
| 39315 | 43207 | </dataarea> |
| r21545 | r21546 | |
| 39322 | 43214 | <publisher>T*HQ</publisher> |
| 39323 | 43215 | <info name="release" value="199210xx" /> |
| 39324 | 43216 | <part name="cart" interface="snes_cart"> |
| 43217 | ||
| 43218 | <feature name="slot" value="lorom" /> | |
| 39325 | 43219 | <dataarea name="rom" size="524288"> |
| 39326 | 43220 | <rom name="home alone 2 - lost in new york (usa).sfc" size="524288" crc="d19165d9" sha1="b4094e81e8b1ffd42eb7dd2fa3c56bfc116fcc86" offset="0x000000" /> |
| 39327 | 43221 | </dataarea> |
| r21545 | r21546 | |
| 39336 | 43230 | <info name="release" value="19930924" /> |
| 39337 | 43231 | <info name="alt_title" value="本格麻雀 徹萬" /> |
| 39338 | 43232 | <part name="cart" interface="snes_cart"> |
| 43233 | ||
| 43234 | <feature name="slot" value="lorom" /> | |
| 39339 | 43235 | <dataarea name="rom" size="524288"> |
| 39340 | 43236 | <rom name="honkaku mahjong - tetsuman (japan).sfc" size="524288" crc="53f03db9" sha1="1dbeaed5412bff4efc9f9962300debe9783dac82" offset="0x000000" /> |
| 39341 | 43237 | </dataarea> |
| r21545 | r21546 | |
| 39350 | 43246 | <info name="release" value="19941222" /> |
| 39351 | 43247 | <info name="alt_title" value="本格将棋 風雲児 龍王" /> |
| 39352 | 43248 | <part name="cart" interface="snes_cart"> |
| 43249 | ||
| 43250 | <feature name="slot" value="lorom" /> | |
| 39353 | 43251 | <dataarea name="rom" size="1048576"> |
| 39354 | 43252 | <rom name="honkaku shougi - fuuunji ryuuou (japan).sfc" size="1048576" crc="b8be82c2" sha1="11d5501a8a617d5e57d26264b171850df0788ff5" offset="0x000000" /> |
| 39355 | 43253 | </dataarea> |
| r21545 | r21546 | |
| 39366 | 43264 | <info name="release" value="19941028" /> |
| 39367 | 43265 | <info name="alt_title" value="本格派囲碁 碁聖" /> |
| 39368 | 43266 | <part name="cart" interface="snes_cart"> |
| 43267 | ||
| 43268 | <feature name="slot" value="hirom" /> | |
| 39369 | 43269 | <dataarea name="rom" size="1048576"> |
| 39370 | 43270 | <rom name="honkakuha igo - gosei (japan).sfc" size="1048576" crc="8f322c56" sha1="e42025ed38e4a83b29b320d52780eefa6dfa26c2" offset="0x000000" /> |
| 39371 | 43271 | </dataarea> |
| r21545 | r21546 | |
| 39382 | 43282 | <info name="release" value="19940922" /> |
| 39383 | 43283 | <info name="alt_title" value="本家花札" /> |
| 39384 | 43284 | <part name="cart" interface="snes_cart"> |
| 43285 | ||
| 43286 | <feature name="slot" value="hirom" /> | |
| 39385 | 43287 | <dataarea name="rom" size="1048576"> |
| 39386 | 43288 | <rom name="honke hanafuda (japan).sfc" size="1048576" crc="53206326" sha1="2bfabbcb9edcfa5418142bc995f2d7e16925ec24" offset="0x000000" /> |
| 39387 | 43289 | </dataarea> |
| r21545 | r21546 | |
| 39397 | 43299 | <info name="alt_title" value="本家SANKYO FEVER 実機シミュレーション" /> |
| 39398 | 43300 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39399 | 43301 | <part name="cart" interface="snes_cart"> |
| 43302 | ||
| 43303 | <feature name="slot" value="lorom" /> | |
| 39400 | 43304 | <dataarea name="rom" size="1572864"> |
| 39401 | 43305 | <rom name="honke sankyo fever - jikki simulation (japan).sfc" size="1572864" crc="3bbdf518" sha1="facd15da145acd5287e6e1f11933869bc6131a00" offset="0x000000" /> |
| 39402 | 43306 | </dataarea> |
| r21545 | r21546 | |
| 39412 | 43316 | <info name="alt_title" value="本家SANKYO FEVER 2 実機シミュレーション" /> |
| 39413 | 43317 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39414 | 43318 | <part name="cart" interface="snes_cart"> |
| 43319 | ||
| 43320 | <feature name="slot" value="lorom" /> | |
| 39415 | 43321 | <dataarea name="rom" size="1572864"> |
| 39416 | 43322 | <rom name="honke sankyo fever 2 - jikki simulation (japan).sfc" size="1572864" crc="57ff6d4c" sha1="5b924f80102485325f7840e7b431e2dd71427821" offset="0x000000" /> |
| 39417 | 43323 | </dataarea> |
| r21545 | r21546 | |
| 39427 | 43333 | <info name="alt_title" value="本家SANKYO FEVER 3 実機シミュ レーション" /> |
| 39428 | 43334 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39429 | 43335 | <part name="cart" interface="snes_cart"> |
| 43336 | ||
| 43337 | <feature name="slot" value="lorom" /> | |
| 39430 | 43338 | <dataarea name="rom" size="1048576"> |
| 39431 | 43339 | <rom name="honke sankyo fever 3 - jikki simulation (japan).sfc" size="1048576" crc="759a4585" sha1="90a8ee3a0ca5645195a6b033382d3f7a1d2b3b15" offset="0x000000" /> |
| 39432 | 43340 | </dataarea> |
| r21545 | r21546 | |
| 39441 | 43349 | <info name="release" value="19920717" /> |
| 39442 | 43350 | <info name="alt_title" value="フック" /> |
| 39443 | 43351 | <part name="cart" interface="snes_cart"> |
| 43352 | ||
| 43353 | <feature name="slot" value="lorom" /> | |
| 39444 | 43354 | <dataarea name="rom" size="1048576"> |
| 39445 | 43355 | <rom name="hook (japan).sfc" size="1048576" crc="6f91883e" sha1="d3d687c2d31cd810c2355578595385a96057e52c" offset="0x000000" /> |
| 39446 | 43356 | </dataarea> |
| r21545 | r21546 | |
| 39452 | 43362 | <year>1992</year> |
| 39453 | 43363 | <publisher>Sony Imagesoft</publisher> |
| 39454 | 43364 | <part name="cart" interface="snes_cart"> |
| 43365 | ||
| 43366 | <feature name="slot" value="lorom" /> | |
| 39455 | 43367 | <dataarea name="rom" size="1048576"> |
| 39456 | 43368 | <rom name="hook (usa) (beta).sfc" size="1048576" crc="82ff23bc" sha1="b2ebb39efcf8a09450fb3c4731812a7c2541d336" offset="0x000000" /> |
| 39457 | 43369 | </dataarea> |
| r21545 | r21546 | |
| 39467 | 43379 | <info name="alt_title" value="星のカービィ スーパーデラック ス" /> |
| 39468 | 43380 | <part name="cart" interface="snes_cart"> |
| 39469 | 43381 | <feature name="enhancement" value="SA1" /> |
| 43382 | ||
| 43383 | <feature name="slot" value="lorom_sa1" /> | |
| 39470 | 43384 | <dataarea name="rom" size="4194304"> |
| 39471 | 43385 | <rom name="hoshi no kirby - super deluxe (japan) (rev 1).sfc" size="4194304" crc="dbbcd010" sha1="63f47b5f47bec60147b9e75a71b3f038e5e0969e" offset="0x000000" /> |
| 39472 | 43386 | </dataarea> |
| r21545 | r21546 | |
| 39484 | 43398 | <info name="alt_title" value="星のカービィ3" /> |
| 39485 | 43399 | <part name="cart" interface="snes_cart"> |
| 39486 | 43400 | <feature name="enhancement" value="SA1" /> |
| 43401 | ||
| 43402 | <feature name="slot" value="lorom_sa1" /> | |
| 39487 | 43403 | <dataarea name="rom" size="4194304"> |
| 39488 | 43404 | <rom name="hoshi no kirby 3 (japan).sfc" size="4194304" crc="43373aee" sha1="5038596a1ec450d8f1d7cc07759737bfd996e87f" offset="0x000000" /> |
| 39489 | 43405 | </dataarea> |
| r21545 | r21546 | |
| 39500 | 43416 | <info name="release" value="19950203" /> |
| 39501 | 43417 | <info name="alt_title" value="放課後 in Beppin 女学院" /> |
| 39502 | 43418 | <part name="cart" interface="snes_cart"> |
| 43419 | ||
| 43420 | <feature name="slot" value="lorom" /> | |
| 39503 | 43421 | <dataarea name="rom" size="1572864"> |
| 39504 | 43422 | <rom name="houkago in beppin jogakuin (japan).sfc" size="1572864" crc="d3871866" sha1="6f7739b77b88764b1127babdcd75250289843ddb" offset="0x000000" /> |
| 39505 | 43423 | </dataarea> |
| r21545 | r21546 | |
| 39516 | 43434 | <info name="release" value="19960419" /> |
| 39517 | 43435 | <info name="alt_title" value="蓬莱学園の冒険!" /> |
| 39518 | 43436 | <part name="cart" interface="snes_cart"> |
| 43437 | ||
| 43438 | <feature name="slot" value="hirom" /> | |
| 39519 | 43439 | <dataarea name="rom" size="2097152"> |
| 39520 | 43440 | <rom name="hourai gakuen no bouken! - tenkousei scramble (japan).sfc" size="2097152" crc="6299fb1c" sha1="25e107e21d45b0c4095e623a723e2020a55c9253" offset="0x000000" /> |
| 39521 | 43441 | </dataarea> |
| r21545 | r21546 | |
| 39532 | 43452 | <info name="release" value="19931224" /> |
| 39533 | 43453 | <info name="alt_title" value="ヒューマングランプリ2" /> |
| 39534 | 43454 | <part name="cart" interface="snes_cart"> |
| 43455 | ||
| 43456 | <feature name="slot" value="lorom" /> | |
| 39535 | 43457 | <dataarea name="rom" size="1048576"> |
| 39536 | 43458 | <rom name="human grand prix ii (japan).sfc" size="1048576" crc="a5351db4" sha1="8568604dd55e01ba76eafd9c384f2d40dbd5f376" offset="0x000000" /> |
| 39537 | 43459 | </dataarea> |
| r21545 | r21546 | |
| 39549 | 43471 | <info name="alt_title" value="ヒューマングランプリ4 F1ドリームバトル" /> |
| 39550 | 43472 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39551 | 43473 | <part name="cart" interface="snes_cart"> |
| 43474 | ||
| 43475 | <feature name="slot" value="hirom" /> | |
| 39552 | 43476 | <dataarea name="rom" size="2097152"> |
| 39553 | 43477 | <rom name="human grand prix iv - f1 dream battle (japan).sfc" size="2097152" crc="47453477" sha1="09b40b6138c473caec41b670912fbecc7f858555" offset="0x000000" /> |
| 39554 | 43478 | </dataarea> |
| r21545 | r21546 | |
| 39562 | 43486 | <year>1993</year> |
| 39563 | 43487 | <publisher>Hi Tech Expressions</publisher> |
| 39564 | 43488 | <part name="cart" interface="snes_cart"> |
| 43489 | ||
| 43490 | <feature name="slot" value="lorom" /> | |
| 39565 | 43491 | <dataarea name="rom" size="524288"> |
| 39566 | 43492 | <rom name="hunt for red october, the (europe) (beta).sfc" size="524288" crc="66ed877a" sha1="976fe1dd9b16c314c60a21a36f9e292017c73948" offset="0x000000" /> |
| 39567 | 43493 | </dataarea> |
| r21545 | r21546 | |
| 39573 | 43499 | <year>1993</year> |
| 39574 | 43500 | <publisher>Hi Tech Expressions</publisher> |
| 39575 | 43501 | <part name="cart" interface="snes_cart"> |
| 43502 | ||
| 43503 | <feature name="slot" value="lorom" /> | |
| 39576 | 43504 | <dataarea name="rom" size="524288"> |
| 39577 | 43505 | <rom name="hunt for red october, the (europe).sfc" size="524288" crc="346e153f" sha1="347ef9b6b5854704edc03c7d89fadb05e89ec4b2" offset="0x000000" /> |
| 39578 | 43506 | </dataarea> |
| r21545 | r21546 | |
| 39587 | 43515 | <info name="release" value="19931001" /> |
| 39588 | 43516 | <info name="alt_title" value="レッド・オクトーバー" /> |
| 39589 | 43517 | <part name="cart" interface="snes_cart"> |
| 43518 | ||
| 43519 | <feature name="slot" value="lorom" /> | |
| 39590 | 43520 | <dataarea name="rom" size="524288"> |
| 39591 | 43521 | <rom name="hunt for red october, the (japan).sfc" size="524288" crc="76065e37" sha1="da5be64fc5bfa4a512aeee3aac7abcb699d0b9b9" offset="0x000000" /> |
| 39592 | 43522 | </dataarea> |
| r21545 | r21546 | |
| 39599 | 43529 | <publisher>Hi Tech Expressions</publisher> |
| 39600 | 43530 | <info name="release" value="199301xx" /> |
| 39601 | 43531 | <part name="cart" interface="snes_cart"> |
| 43532 | ||
| 43533 | <feature name="slot" value="lorom" /> | |
| 39602 | 43534 | <dataarea name="rom" size="524288"> |
| 39603 | 43535 | <rom name="hunt for red october, the (usa).sfc" size="524288" crc="c796e830" sha1="c8afadb64ba542e61d6e3b5b5101e782c262ddc0" offset="0x000000" /> |
| 39604 | 43536 | </dataarea> |
| r21545 | r21546 | |
| 39610 | 43542 | <year>1994</year> |
| 39611 | 43543 | <publisher>U.S. Gold</publisher> |
| 39612 | 43544 | <part name="cart" interface="snes_cart"> |
| 43545 | ||
| 43546 | <feature name="slot" value="lorom" /> | |
| 39613 | 43547 | <dataarea name="rom" size="1048576"> |
| 39614 | 43548 | <rom name="hurricanes (europe) (beta).sfc" size="1048576" crc="e6767848" sha1="6a8eb2d42e176dfd8f27e877fc4c5cd38207c0ff" offset="0x000000" /> |
| 39615 | 43549 | </dataarea> |
| r21545 | r21546 | |
| 39622 | 43556 | <publisher>U.S. Gold</publisher> |
| 39623 | 43557 | <info name="release" value="199412xx" /> |
| 39624 | 43558 | <part name="cart" interface="snes_cart"> |
| 43559 | ||
| 43560 | <feature name="slot" value="lorom" /> | |
| 39625 | 43561 | <dataarea name="rom" size="1048576"> |
| 39626 | 43562 | <rom name="hurricanes (usa).sfc" size="1048576" crc="42ff4f08" sha1="2a47ccdf945a0965915e3d6f9d638e820d367f11" offset="0x000000" /> |
| 39627 | 43563 | </dataarea> |
| r21545 | r21546 | |
| 39636 | 43572 | <info name="release" value="19951013" /> |
| 39637 | 43573 | <info name="alt_title" value="ハイパーイリア" /> |
| 39638 | 43574 | <part name="cart" interface="snes_cart"> |
| 43575 | ||
| 43576 | <feature name="slot" value="hirom" /> | |
| 39639 | 43577 | <dataarea name="rom" size="1572864"> |
| 39640 | 43578 | <rom name="hyper iria (japan).sfc" size="1572864" crc="ae7f2b0d" sha1="d725c456869198f95dc254d7377ebea78dd4274e" offset="0x000000" /> |
| 39641 | 43579 | </dataarea> |
| r21545 | r21546 | |
| 39647 | 43585 | <year>1994</year> |
| 39648 | 43586 | <publisher>Mc O'River</publisher> |
| 39649 | 43587 | <part name="cart" interface="snes_cart"> |
| 43588 | ||
| 43589 | <feature name="slot" value="lorom" /> | |
| 39650 | 43590 | <dataarea name="rom" size="1048576"> |
| 39651 | 43591 | <rom name="hyper v-ball (europe).sfc" size="1048576" crc="094012ea" sha1="59af11f394437f15decb2f27270e2e96c2a577d5" offset="0x000000" /> |
| 39652 | 43592 | </dataarea> |
| r21545 | r21546 | |
| 39659 | 43599 | <publisher>Mc O'River</publisher> |
| 39660 | 43600 | <info name="release" value="199406xx" /> |
| 39661 | 43601 | <part name="cart" interface="snes_cart"> |
| 43602 | ||
| 43603 | <feature name="slot" value="lorom" /> | |
| 39662 | 43604 | <dataarea name="rom" size="1048576"> |
| 39663 | 43605 | <rom name="hyper v-ball (usa).sfc" size="1048576" crc="7d179e21" sha1="c132aff55c61451dfb1498d43db64866486734f3" offset="0x000000" /> |
| 39664 | 43606 | </dataarea> |
| r21545 | r21546 | |
| 39670 | 43612 | <year>1991</year> |
| 39671 | 43613 | <publisher>HAL Laboratory</publisher> |
| 39672 | 43614 | <part name="cart" interface="snes_cart"> |
| 43615 | ||
| 43616 | <feature name="slot" value="lorom" /> | |
| 39673 | 43617 | <dataarea name="rom" size="524288"> |
| 39674 | 43618 | <rom name="hyperzone (europe).sfc" size="524288" crc="fa15d068" sha1="2f231ba8dee2e744fa41984c0e9c5b8c0f4e854e" offset="0x000000" /> |
| 39675 | 43619 | </dataarea> |
| r21545 | r21546 | |
| 39684 | 43628 | <info name="release" value="19910831" /> |
| 39685 | 43629 | <info name="alt_title" value="ハイパーゾーン" /> |
| 39686 | 43630 | <part name="cart" interface="snes_cart"> |
| 43631 | ||
| 43632 | <feature name="slot" value="lorom" /> | |
| 39687 | 43633 | <dataarea name="rom" size="1048576"> |
| 39688 | 43634 | <rom name="hyperzone (japan).sfc" size="1048576" crc="613c62b7" sha1="4860bbb7474870a4b2565b15480767922c38bff4" offset="0x000000" /> |
| 39689 | 43635 | </dataarea> |
| r21545 | r21546 | |
| 39696 | 43642 | <publisher>HAL America</publisher> |
| 39697 | 43643 | <info name="release" value="199109xx" /> |
| 39698 | 43644 | <part name="cart" interface="snes_cart"> |
| 43645 | ||
| 43646 | <feature name="slot" value="lorom" /> | |
| 39699 | 43647 | <dataarea name="rom" size="524288"> |
| 39700 | 43648 | <rom name="hyperzone (usa).sfc" size="524288" crc="c95b4129" sha1="2d9c6ce1613b2180ce6a3cd4603e1ecf10f2bac6" offset="0x000000" /> |
| 39701 | 43649 | </dataarea> |
| r21545 | r21546 | |
| 39710 | 43658 | <info name="release" value="19940318" /> |
| 39711 | 43659 | <info name="alt_title" value="イデアの日" /> |
| 39712 | 43660 | <part name="cart" interface="snes_cart"> |
| 43661 | ||
| 43662 | <feature name="slot" value="lorom" /> | |
| 39713 | 43663 | <dataarea name="rom" size="2097152"> |
| 39714 | 43664 | <rom name="idea no hi (japan).sfc" size="2097152" crc="2796523e" sha1="5f9fd724d1e29af65bbd92d0bae030364e5dbb03" offset="0x000000" /> |
| 39715 | 43665 | </dataarea> |
| r21545 | r21546 | |
| 39725 | 43675 | <info name="release" value="199501xx" /> |
| 39726 | 43676 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39727 | 43677 | <part name="cart" interface="snes_cart"> |
| 43678 | ||
| 43679 | <feature name="slot" value="hirom" /> | |
| 39728 | 43680 | <dataarea name="rom" size="1048576"> |
| 39729 | 43681 | <rom name="ignition factor, the (usa).sfc" size="1048576" crc="ee441564" sha1="72061c0ca7549e6a9720421ce6edaf4732bc2172" offset="0x000000" /> |
| 39730 | 43682 | </dataarea> |
| r21545 | r21546 | |
| 39739 | 43691 | <info name="release" value="19960126" /> |
| 39740 | 43692 | <info name="alt_title" value="囲碁倶楽部" /> |
| 39741 | 43693 | <part name="cart" interface="snes_cart"> |
| 43694 | ||
| 43695 | <feature name="slot" value="lorom" /> | |
| 39742 | 43696 | <dataarea name="rom" size="1048576"> |
| 39743 | 43697 | <rom name="igo club (japan).sfc" size="1048576" crc="1e23f3d6" sha1="3c9cac3b14945d92ddd3524f056719023737ea13" offset="0x000000" /> |
| 39744 | 43698 | </dataarea> |
| r21545 | r21546 | |
| 39756 | 43710 | <info name="release" value="19930305" /> |
| 39757 | 43711 | <info name="alt_title" value="イーハトーヴォ物語" /> |
| 39758 | 43712 | <part name="cart" interface="snes_cart"> |
| 43713 | ||
| 43714 | <feature name="slot" value="lorom" /> | |
| 39759 | 43715 | <dataarea name="rom" size="1048576"> |
| 39760 | 43716 | <rom name="ihatov monogatari (japan).sfc" size="1048576" crc="c588cd17" sha1="43983938960d0547b4a5585d04e7336d931fb79e" offset="0x000000" /> |
| 39761 | 43717 | </dataarea> |
| r21545 | r21546 | |
| 39769 | 43725 | <year>1994</year> |
| 39770 | 43726 | <publisher>Nintendo</publisher> |
| 39771 | 43727 | <part name="cart" interface="snes_cart"> |
| 43728 | ||
| 43729 | <feature name="slot" value="hirom" /> | |
| 39772 | 43730 | <dataarea name="rom" size="2097152"> |
| 39773 | 43731 | <rom name="illusion of gaia (usa) (beta).sfc" size="2097152" crc="ce90286b" sha1="3a077233a5715fa4a0d699c6dc43f47b39ae23fb" offset="0x000000" /> |
| 39774 | 43732 | </dataarea> |
| r21545 | r21546 | |
| 39783 | 43741 | <publisher>Nintendo</publisher> |
| 39784 | 43742 | <sharedfeat name="compatibility" value="PAL"/> |
| 39785 | 43743 | <part name="cart" interface="snes_cart"> |
| 43744 | ||
| 43745 | <feature name="slot" value="hirom" /> | |
| 39786 | 43746 | <dataarea name="rom" size="2097152"> |
| 39787 | 43747 | <rom name="illusion of time (europe).sfc" size="2097152" crc="f9ae28db" sha1="d1cf72ea3971edb4b706a0bd3ca756b016a6b17e" offset="0x000000" /> |
| 39788 | 43748 | </dataarea> |
| r21545 | r21546 | |
| 39797 | 43757 | <publisher>Nintendo</publisher> |
| 39798 | 43758 | <sharedfeat name="compatibility" value="PAL"/> |
| 39799 | 43759 | <part name="cart" interface="snes_cart"> |
| 43760 | ||
| 43761 | <feature name="slot" value="hirom" /> | |
| 39800 | 43762 | <dataarea name="rom" size="2097152"> |
| 39801 | 43763 | <rom name="illusion of time (spain).sfc" size="2097152" crc="7c305dc8" sha1="f236e4a5ffaa7431540dbaeb98716b3e84cfa455" offset="0x000000" /> |
| 39802 | 43764 | </dataarea> |
| r21545 | r21546 | |
| 39813 | 43775 | <info name="release" value="19941028" /> |
| 39814 | 43776 | <info name="alt_title" value="イルバニアンの城" /> |
| 39815 | 43777 | <part name="cart" interface="snes_cart"> |
| 43778 | ||
| 43779 | <feature name="slot" value="lorom" /> | |
| 39816 | 43780 | <dataarea name="rom" size="2097152"> |
| 39817 | 43781 | <rom name="illvanian no shiro (japan).sfc" size="2097152" crc="f568579f" sha1="0398f95ce8efc27fe794ae677e68b21f96c2e78d" offset="0x000000" /> |
| 39818 | 43782 | </dataarea> |
| r21545 | r21546 | |
| 39827 | 43791 | <publisher>Vic Tokai</publisher> |
| 39828 | 43792 | <info name="release" value="199211xx" /> |
| 39829 | 43793 | <part name="cart" interface="snes_cart"> |
| 43794 | ||
| 43795 | <feature name="slot" value="lorom" /> | |
| 39830 | 43796 | <dataarea name="rom" size="1048576"> |
| 39831 | 43797 | <rom name="imperium (usa).sfc" size="1048576" crc="2624f8bd" sha1="ca8add81d1b3f0bfdb46d21af6217d47dcde1e64" offset="0x000000" /> |
| 39832 | 43798 | </dataarea> |
| r21545 | r21546 | |
| 39841 | 43807 | <info name="release" value="19950804" /> |
| 39842 | 43808 | <info name="alt_title" value="稲妻サーブだ! スーパー ビーチ バレー" /> |
| 39843 | 43809 | <part name="cart" interface="snes_cart"> |
| 43810 | ||
| 43811 | <feature name="slot" value="lorom" /> | |
| 39844 | 43812 | <dataarea name="rom" size="1048576"> |
| 39845 | 43813 | <rom name="inazuma serve da! super beach volley (japan).sfc" size="1048576" crc="879edee8" sha1="cb0c5b6b4a4011520888be6007816165f3a20e89" offset="0x000000" /> |
| 39846 | 43814 | </dataarea> |
| r21545 | r21546 | |
| 39853 | 43821 | <publisher>Titus</publisher> |
| 39854 | 43822 | <info name="release" value="199612xx" /> |
| 39855 | 43823 | <part name="cart" interface="snes_cart"> |
| 43824 | ||
| 43825 | <feature name="slot" value="lorom" /> | |
| 39856 | 43826 | <dataarea name="rom" size="524288"> |
| 39857 | 43827 | <rom name="incantation (usa).sfc" size="524288" crc="d0ff7e9f" sha1="6ad0b48e12ceddbfa00d4dfc8635b9eb4d692a66" offset="0x000000" /> |
| 39858 | 43828 | </dataarea> |
| r21545 | r21546 | |
| 39864 | 43834 | <year>1993</year> |
| 39865 | 43835 | <publisher>LJN</publisher> |
| 39866 | 43836 | <part name="cart" interface="snes_cart"> |
| 43837 | ||
| 43838 | <feature name="slot" value="lorom" /> | |
| 39867 | 43839 | <dataarea name="rom" size="1048576"> |
| 39868 | 43840 | <rom name="incredible crash dummies, the (usa) (beta).sfc" size="1048576" crc="42ebe9c1" sha1="019330d6d814d663b5192ddbbf0ac0dd1b3d5a19" offset="0x000000" /> |
| 39869 | 43841 | </dataarea> |
| r21545 | r21546 | |
| 39878 | 43850 | <info name="release" value="19940930" /> |
| 39879 | 43851 | <info name="alt_title" value="クラッシュ・ダミー ~Dr.サブを救い出せ~" /> |
| 39880 | 43852 | <part name="cart" interface="snes_cart"> |
| 43853 | ||
| 43854 | <feature name="slot" value="lorom" /> | |
| 39881 | 43855 | <dataarea name="rom" size="1048576"> |
| 39882 | 43856 | <rom name="incredible crash dummies, the - dr. zabu o sukuidase (japan).sfc" size="1048576" crc="c3bc16d5" sha1="8eb6827c4ca660233f52567559b72f611fe39fe2" offset="0x000000" /> |
| 39883 | 43857 | </dataarea> |
| r21545 | r21546 | |
| 39892 | 43866 | <info name="release" value="19950728" /> |
| 39893 | 43867 | <info name="alt_title" value="インディ・ジョーンズ" /> |
| 39894 | 43868 | <part name="cart" interface="snes_cart"> |
| 43869 | ||
| 43870 | <feature name="slot" value="lorom" /> | |
| 39895 | 43871 | <dataarea name="rom" size="2097152"> |
| 39896 | 43872 | <rom name="indiana jones' greatest adventures (japan).sfc" size="2097152" crc="079b9996" sha1="0bf1c7c10988ee1d7c6ea40e6e55b2aefbb28ecb" offset="0x000000" /> |
| 39897 | 43873 | </dataarea> |
| r21545 | r21546 | |
| 39904 | 43880 | <publisher>JVC</publisher> |
| 39905 | 43881 | <info name="release" value="199410xx" /> |
| 39906 | 43882 | <part name="cart" interface="snes_cart"> |
| 43883 | ||
| 43884 | <feature name="slot" value="lorom" /> | |
| 39907 | 43885 | <dataarea name="rom" size="2097152"> |
| 39908 | 43886 | <rom name="indiana jones' greatest adventures (usa).sfc" size="2097152" crc="70da6bb8" sha1="07c69b18b8ca3cf83ee0e1a7901020756b3fd85d" offset="0x000000" /> |
| 39909 | 43887 | </dataarea> |
| r21545 | r21546 | |
| 39916 | 43894 | <publisher>Hudson</publisher> |
| 39917 | 43895 | <info name="release" value="199312xx" /> |
| 39918 | 43896 | <part name="cart" interface="snes_cart"> |
| 43897 | ||
| 43898 | <feature name="slot" value="hirom" /> | |
| 39919 | 43899 | <dataarea name="rom" size="1048576"> |
| 39920 | 43900 | <rom name="inspector gadget (usa).sfc" size="1048576" crc="4ce2b818" sha1="c405045b0ba5cfbf971bba378942449a8e39a8bd" offset="0x000000" /> |
| 39921 | 43901 | </dataarea> |
| r21545 | r21546 | |
| 39929 | 43909 | <info name="release" value="199506xx" /> |
| 39930 | 43910 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39931 | 43911 | <part name="cart" interface="snes_cart"> |
| 43912 | ||
| 43913 | <feature name="slot" value="lorom" /> | |
| 39932 | 43914 | <dataarea name="rom" size="1048576"> |
| 39933 | 43915 | <rom name="international superstar soccer (usa).sfc" size="1048576" crc="49627238" sha1="93273a81b24473a0b72cbccbd90b96623033b8c8" offset="0x000000" /> |
| 39934 | 43916 | </dataarea> |
| r21545 | r21546 | |
| 39942 | 43924 | <info name="release" value="199511xx" /> |
| 39943 | 43925 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39944 | 43926 | <part name="cart" interface="snes_cart"> |
| 43927 | ||
| 43928 | <feature name="slot" value="lorom" /> | |
| 39945 | 43929 | <dataarea name="rom" size="2097152"> |
| 39946 | 43930 | <rom name="international superstar soccer deluxe (usa).sfc" size="2097152" crc="0a20e602" sha1="bf4da6c24748b2ac8270bde001a65ad377b8d78d" offset="0x000000" /> |
| 39947 | 43931 | </dataarea> |
| r21545 | r21546 | |
| 39954 | 43938 | <year>1993</year> |
| 39955 | 43939 | <publisher>Taito</publisher> |
| 39956 | 43940 | <part name="cart" interface="snes_cart"> |
| 43941 | ||
| 43942 | <feature name="slot" value="lorom" /> | |
| 39957 | 43943 | <dataarea name="rom" size="1048576"> |
| 39958 | 43944 | <rom name="international tennis tour (europe).sfc" size="1048576" crc="6bbcea4f" sha1="415c064930254f0047c8ee8136c9d0d2294d89fc" offset="0x000000" /> |
| 39959 | 43945 | </dataarea> |
| r21545 | r21546 | |
| 39969 | 43955 | <info name="alt_title" value="インターナショナルテニスツアー" /> |
| 39970 | 43956 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39971 | 43957 | <part name="cart" interface="snes_cart"> |
| 43958 | ||
| 43959 | <feature name="slot" value="lorom" /> | |
| 39972 | 43960 | <dataarea name="rom" size="1048576"> |
| 39973 | 43961 | <rom name="international tennis tour (japan).sfc" size="1048576" crc="45f2dab9" sha1="46d3ff5be076e6f4738d732102173974b530fdff" offset="0x000000" /> |
| 39974 | 43962 | </dataarea> |
| r21545 | r21546 | |
| 39982 | 43970 | <info name="release" value="199311xx" /> |
| 39983 | 43971 | <sharedfeat name="compatibility" value="NTSC"/> |
| 39984 | 43972 | <part name="cart" interface="snes_cart"> |
| 43973 | ||
| 43974 | <feature name="slot" value="lorom" /> | |
| 39985 | 43975 | <dataarea name="rom" size="1048576"> |
| 39986 | 43976 | <rom name="international tennis tour (usa).sfc" size="1048576" crc="ad3cd5e6" sha1="f55fbbabb16ebdb7ca06e91da3b24023ea246cac" offset="0x000000" /> |
| 39987 | 43977 | </dataarea> |
| r21545 | r21546 | |
| 39996 | 43986 | <info name="release" value="19960426" /> |
| 39997 | 43987 | <info name="alt_title" value="一発逆転!! 競馬・競輪・競艇" /> |
| 39998 | 43988 | <part name="cart" interface="snes_cart"> |
| 43989 | ||
| 43990 | <feature name="slot" value="lorom" /> | |
| 39999 | 43991 | <dataarea name="rom" size="1048576"> |
| 40000 | 43992 | <rom name="ippatsu gyakuten (japan).sfc" size="1048576" crc="05a9fde8" sha1="3daa32c796106ffcf2a853314da485a72a3812b7" offset="0x000000" /> |
| 40001 | 43993 | </dataarea> |
| r21545 | r21546 | |
| 40009 | 44001 | <year>1992</year> |
| 40010 | 44002 | <publisher>Irem</publisher> |
| 40011 | 44003 | <part name="cart" interface="snes_cart"> |
| 44004 | ||
| 44005 | <feature name="slot" value="lorom" /> | |
| 40012 | 44006 | <dataarea name="rom" size="1048576"> |
| 40013 | 44007 | <rom name="irem major title, the (europe).sfc" size="1048576" crc="3075cb04" sha1="fe75b3082464a90a8fcc9eb0e224d1045b9e4314" offset="0x000000" /> |
| 40014 | 44008 | </dataarea> |
| r21545 | r21546 | |
| 40023 | 44017 | <info name="release" value="19921204" /> |
| 40024 | 44018 | <info name="alt_title" value="メジャータイトル" /> |
| 40025 | 44019 | <part name="cart" interface="snes_cart"> |
| 44020 | ||
| 44021 | <feature name="slot" value="lorom" /> | |
| 40026 | 44022 | <dataarea name="rom" size="1048576"> |
| 40027 | 44023 | <rom name="irem major title, the (japan).sfc" size="1048576" crc="0e98f71d" sha1="2b4a6fe13ad464be863e50c93e9da75ab93ba1ee" offset="0x000000" /> |
| 40028 | 44024 | </dataarea> |
| r21545 | r21546 | |
| 40035 | 44031 | <publisher>Irem</publisher> |
| 40036 | 44032 | <info name="release" value="199210xx" /> |
| 40037 | 44033 | <part name="cart" interface="snes_cart"> |
| 44034 | ||
| 44035 | <feature name="slot" value="lorom" /> | |
| 40038 | 44036 | <dataarea name="rom" size="1048576"> |
| 40039 | 44037 | <rom name="irem skins game, the (usa).sfc" size="1048576" crc="b95ddc44" sha1="c65b1a6effbc4a876ead6554704d821f52f39618" offset="0x000000" /> |
| 40040 | 44038 | </dataarea> |
| r21545 | r21546 | |
| 40046 | 44044 | <year>199?</year> |
| 40047 | 44045 | <publisher><unknown></publisher> |
| 40048 | 44046 | <part name="cart" interface="snes_cart"> |
| 44047 | ||
| 44048 | <feature name="slot" value="lorom" /> | |
| 40049 | 44049 | <dataarea name="rom" size="1310720"> |
| 40050 | 44050 | <rom name="iron commando (europe) (proto).sfc" size="1310720" crc="d967299d" sha1="d667e3012f5964d3bc46bfc931f3a3bdda7b2fe6" offset="0x000000" /> |
| 40051 | 44051 | </dataarea> |
| r21545 | r21546 | |
| 40060 | 44060 | <info name="release" value="19950210" /> |
| 40061 | 44061 | <info name="alt_title" value="鋼鉄の戦士 アイアンコマンドー" /> |
| 40062 | 44062 | <part name="cart" interface="snes_cart"> |
| 44063 | ||
| 44064 | <feature name="slot" value="lorom" /> | |
| 40063 | 44065 | <dataarea name="rom" size="1310720"> |
| 40064 | 44066 | <rom name="iron commando - koutetsu no senshi (japan).sfc" size="1310720" crc="828b5f07" sha1="1c6127296bc8bf5afcb67d6e7aa0ce7838bdc44a" offset="0x000000" /> |
| 40065 | 44067 | </dataarea> |
| r21545 | r21546 | |
| 40074 | 44076 | <info name="release" value="19960119" /> |
| 40075 | 44077 | <info name="alt_title" value="磯釣り 離島篇" /> |
| 40076 | 44078 | <part name="cart" interface="snes_cart"> |
| 44079 | ||
| 44080 | <feature name="slot" value="hirom" /> | |
| 40077 | 44081 | <dataarea name="rom" size="2097152"> |
| 40078 | 44082 | <rom name="isozuri - ritou hen (japan).sfc" size="2097152" crc="3d35d085" sha1="49741c14e923bdaa0ff5776744508544921cbb2d" offset="0x000000" /> |
| 40079 | 44083 | </dataarea> |
| r21545 | r21546 | |
| 40087 | 44091 | <year>1995</year> |
| 40088 | 44092 | <publisher>Acclaim Entertainment</publisher> |
| 40089 | 44093 | <part name="cart" interface="snes_cart"> |
| 44094 | ||
| 44095 | <feature name="slot" value="lorom" /> | |
| 40090 | 44096 | <dataarea name="rom" size="1048576"> |
| 40091 | 44097 | <rom name="itchy & scratchy game, the (europe).sfc" size="1048576" crc="c402347a" sha1="85db54d4d546eeb9b25ee84c065d480696beb762" offset="0x000000" /> |
| 40092 | 44098 | </dataarea> |
| r21545 | r21546 | |
| 40099 | 44105 | <publisher>Acclaim Entertainment</publisher> |
| 40100 | 44106 | <info name="release" value="199502xx" /> |
| 40101 | 44107 | <part name="cart" interface="snes_cart"> |
| 44108 | ||
| 44109 | <feature name="slot" value="lorom" /> | |
| 40102 | 44110 | <dataarea name="rom" size="1048576"> |
| 40103 | 44111 | <rom name="itchy & scratchy game, the (usa).sfc" size="1048576" crc="95b65dfe" sha1="f44ba05908cb36462505ef431a68d11bad301dbc" offset="0x000000" /> |
| 40104 | 44112 | </dataarea> |
| r21545 | r21546 | |
| 40114 | 44122 | <info name="alt_title" value="伊藤果六段の将棋道場" /> |
| 40115 | 44123 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40116 | 44124 | <part name="cart" interface="snes_cart"> |
| 44125 | ||
| 44126 | <feature name="slot" value="lorom" /> | |
| 40117 | 44127 | <dataarea name="rom" size="1048576"> |
| 40118 | 44128 | <rom name="itou hatasu rokudan no shougi doujou (japan) (rev 1).sfc" size="1048576" crc="7ee270da" sha1="f316b459dada4670a2e0b5cd360910979d34b5c6" offset="0x000000" /> |
| 40119 | 44129 | </dataarea> |
| r21545 | r21546 | |
| 40131 | 44141 | <info name="alt_title" value="伊藤果六段の将棋道場" /> |
| 40132 | 44142 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40133 | 44143 | <part name="cart" interface="snes_cart"> |
| 44144 | ||
| 44145 | <feature name="slot" value="lorom" /> | |
| 40134 | 44146 | <dataarea name="rom" size="1048576"> |
| 40135 | 44147 | <rom name="itou hatasu rokudan no shougi doujou (japan).sfc" size="1048576" crc="bffce7c6" sha1="0c3f7f10748de085dd73e43522f69efa1f5cff4f" offset="0x000000" /> |
| 40136 | 44148 | </dataarea> |
| r21545 | r21546 | |
| 40144 | 44156 | <year>1995</year> |
| 40145 | 44157 | <publisher>U.S. Gold</publisher> |
| 40146 | 44158 | <part name="cart" interface="snes_cart"> |
| 44159 | ||
| 44160 | <feature name="slot" value="lorom" /> | |
| 40147 | 44161 | <dataarea name="rom" size="2097152"> |
| 40148 | 44162 | <rom name="izzy's quest for the olympic rings (usa) (beta).sfc" size="2097152" crc="53ce0546" sha1="0290e6d96183506ba5efbf703d997a90973c930d" offset="0x000000" /> |
| 40149 | 44163 | </dataarea> |
| r21545 | r21546 | |
| 40156 | 44170 | <publisher>U.S. Gold</publisher> |
| 40157 | 44171 | <info name="release" value="199511xx" /> |
| 40158 | 44172 | <part name="cart" interface="snes_cart"> |
| 44173 | ||
| 44174 | <feature name="slot" value="lorom" /> | |
| 40159 | 44175 | <dataarea name="rom" size="2097152"> |
| 40160 | 44176 | <rom name="izzy's quest for the olympic rings (usa).sfc" size="2097152" crc="e9bb68c7" sha1="741f235d251ea91485024bfae45063895d2d5572" offset="0x000000" /> |
| 40161 | 44177 | </dataarea> |
| r21545 | r21546 | |
| 40171 | 44187 | <info name="alt_title" value="Jリーグエキサイトステージ'96" /> |
| 40172 | 44188 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40173 | 44189 | <part name="cart" interface="snes_cart"> |
| 44190 | ||
| 44191 | <feature name="slot" value="lorom" /> | |
| 40174 | 44192 | <dataarea name="rom" size="2097152"> |
| 40175 | 44193 | <rom name="j.league excite stage '96 (japan) (rev 1).sfc" size="2097152" crc="857bbfab" sha1="4fb6391ad152a79557043e5b4d1a8c33bc19c061" offset="0x000000" /> |
| 40176 | 44194 | </dataarea> |
| r21545 | r21546 | |
| 40188 | 44206 | <info name="alt_title" value="Jリーグエキサイトステージ'96" /> |
| 40189 | 44207 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40190 | 44208 | <part name="cart" interface="snes_cart"> |
| 44209 | ||
| 44210 | <feature name="slot" value="lorom" /> | |
| 40191 | 44211 | <dataarea name="rom" size="2097152"> |
| 40192 | 44212 | <rom name="j.league excite stage '96 (japan).sfc" size="2097152" crc="e044e0f1" sha1="ef52e8fd29bd4a6f0a80bda8203e5256188da8bd" offset="0x000000" /> |
| 40193 | 44213 | </dataarea> |
| r21545 | r21546 | |
| 40201 | 44221 | <year>1994</year> |
| 40202 | 44222 | <publisher>Interplay</publisher> |
| 40203 | 44223 | <part name="cart" interface="snes_cart"> |
| 44224 | ||
| 44225 | <feature name="slot" value="lorom" /> | |
| 40204 | 44226 | <dataarea name="rom" size="1048576"> |
| 40205 | 44227 | <rom name="j.r.r. tolkien's the lord of the rings - volume one (europe).sfc" size="1048576" crc="247c17d3" sha1="5ee8e70b0d80821274cc8689c4db22215b5ae52f" offset="0x000000" /> |
| 40206 | 44228 | </dataarea> |
| r21545 | r21546 | |
| 40212 | 44234 | <year>1994</year> |
| 40213 | 44235 | <publisher>Interplay</publisher> |
| 40214 | 44236 | <part name="cart" interface="snes_cart"> |
| 44237 | ||
| 44238 | <feature name="slot" value="lorom" /> | |
| 40215 | 44239 | <dataarea name="rom" size="1048576"> |
| 40216 | 44240 | <rom name="j.r.r. tolkien's the lord of the rings - volume one (germany).sfc" size="1048576" crc="8b172b4e" sha1="d0a54a6e4e7c27fd6da23ad53201679272f9ac04" offset="0x000000" /> |
| 40217 | 44241 | </dataarea> |
| r21545 | r21546 | |
| 40224 | 44248 | <publisher>Interplay</publisher> |
| 40225 | 44249 | <info name="release" value="199410xx" /> |
| 40226 | 44250 | <part name="cart" interface="snes_cart"> |
| 44251 | ||
| 44252 | <feature name="slot" value="lorom" /> | |
| 40227 | 44253 | <dataarea name="rom" size="1048576"> |
| 40228 | 44254 | <rom name="j.r.r. tolkien's the lord of the rings - volume one (usa).sfc" size="1048576" crc="cd2150c8" sha1="030e314cba8faae4081f8056521126916e5e0ada" offset="0x000000" /> |
| 40229 | 44255 | </dataarea> |
| r21545 | r21546 | |
| 40235 | 44261 | <year>1992</year> |
| 40236 | 44262 | <publisher>Tradewest</publisher> |
| 40237 | 44263 | <part name="cart" interface="snes_cart"> |
| 44264 | ||
| 44265 | <feature name="slot" value="lorom" /> | |
| 40238 | 44266 | <dataarea name="rom" size="524288"> |
| 40239 | 44267 | <rom name="jack nicklaus golf (europe).sfc" size="524288" crc="a7f0652f" sha1="0674fdb9602db5b6fda9426c2f6596952a6d8ad4" offset="0x000000" /> |
| 40240 | 44268 | </dataarea> |
| r21545 | r21546 | |
| 40246 | 44274 | <year>1992</year> |
| 40247 | 44275 | <publisher>Tradewest</publisher> |
| 40248 | 44276 | <part name="cart" interface="snes_cart"> |
| 44277 | ||
| 44278 | <feature name="slot" value="lorom" /> | |
| 40249 | 44279 | <dataarea name="rom" size="524288"> |
| 40250 | 44280 | <rom name="jack nicklaus golf (france).sfc" size="524288" crc="4c545a02" sha1="126452a1ee886df87b3b41bd870ecc88c6e0c9c6" offset="0x000000" /> |
| 40251 | 44281 | </dataarea> |
| r21545 | r21546 | |
| 40258 | 44288 | <publisher>Tradewest</publisher> |
| 40259 | 44289 | <info name="release" value="199205xx" /> |
| 40260 | 44290 | <part name="cart" interface="snes_cart"> |
| 44291 | ||
| 44292 | <feature name="slot" value="lorom" /> | |
| 40261 | 44293 | <dataarea name="rom" size="524288"> |
| 40262 | 44294 | <rom name="jack nicklaus golf (usa).sfc" size="524288" crc="9abc58e2" sha1="97e615d3c8b5e36ccdada883bea3ff63ab3fc13b" offset="0x000000" /> |
| 40263 | 44295 | </dataarea> |
| r21545 | r21546 | |
| 40272 | 44304 | <info name="release" value="19921218" /> |
| 40273 | 44305 | <info name="alt_title" value="ナグザット スーパーピンボール 邪鬼破壊" /> |
| 40274 | 44306 | <part name="cart" interface="snes_cart"> |
| 44307 | ||
| 44308 | <feature name="slot" value="lorom" /> | |
| 40275 | 44309 | <dataarea name="rom" size="1048576"> |
| 40276 | 44310 | <rom name="jaki crush (japan).sfc" size="1048576" crc="f696d5a9" sha1="ebdf6c39725cce8794fda1fd97d57354a7cc6eea" offset="0x000000" /> |
| 40277 | 44311 | </dataarea> |
| r21545 | r21546 | |
| 40284 | 44318 | <publisher>T*HQ</publisher> |
| 40285 | 44319 | <info name="release" value="199210xx" /> |
| 40286 | 44320 | <part name="cart" interface="snes_cart"> |
| 44321 | ||
| 44322 | <feature name="slot" value="lorom" /> | |
| 40287 | 44323 | <dataarea name="rom" size="524288"> |
| 40288 | 44324 | <rom name="james bond jr. (usa).sfc" size="524288" crc="69c2f850" sha1="a9338759d653ca7056bd2705d44ead2c6877acc1" offset="0x000000" /> |
| 40289 | 44325 | </dataarea> |
| r21545 | r21546 | |
| 40295 | 44331 | <year>1993</year> |
| 40296 | 44332 | <publisher>Electronic Arts</publisher> |
| 40297 | 44333 | <part name="cart" interface="snes_cart"> |
| 44334 | ||
| 44335 | <feature name="slot" value="hirom" /> | |
| 40298 | 44336 | <dataarea name="rom" size="2097152"> |
| 40299 | 44337 | <rom name="james pond 3 - operation starfish (europe).sfc" size="2097152" crc="9d3e313f" sha1="14f5a0f9284365169a82a6902eb80b1886efcf0d" offset="0x000000" /> |
| 40300 | 44338 | </dataarea> |
| r21545 | r21546 | |
| 40306 | 44344 | <year>1993</year> |
| 40307 | 44345 | <publisher>Seika</publisher> |
| 40308 | 44346 | <part name="cart" interface="snes_cart"> |
| 44347 | ||
| 44348 | <feature name="slot" value="lorom" /> | |
| 40309 | 44349 | <dataarea name="rom" size="524288"> |
| 40310 | 44350 | <rom name="james pond's crazy sports (europe).sfc" size="524288" crc="66f00725" sha1="cb89e6aa9a83a2324049e1342da7c5b0d2a89b9d" offset="0x000000" /> |
| 40311 | 44351 | </dataarea> |
| r21545 | r21546 | |
| 40320 | 44360 | <info name="release" value="19950210" /> |
| 40321 | 44361 | <info name="alt_title" value="ジャムス" /> |
| 40322 | 44362 | <part name="cart" interface="snes_cart"> |
| 44363 | ||
| 44364 | <feature name="slot" value="lorom" /> | |
| 40323 | 44365 | <dataarea name="rom" size="524288"> |
| 40324 | 44366 | <rom name="jammes (japan).sfc" size="524288" crc="9bb76902" sha1="f76eb2484b08027a511e510d1edcd20d74246708" offset="0x000000" /> |
| 40325 | 44367 | </dataarea> |
| r21545 | r21546 | |
| 40332 | 44374 | <publisher>GTE Entertainment</publisher> |
| 40333 | 44375 | <info name="release" value="199411xx" /> |
| 40334 | 44376 | <part name="cart" interface="snes_cart"> |
| 44377 | ||
| 44378 | <feature name="slot" value="lorom" /> | |
| 40335 | 44379 | <dataarea name="rom" size="2097152"> |
| 40336 | 44380 | <rom name="jammit (usa).sfc" size="2097152" crc="7bddd73f" sha1="649799eb28f47c54f077598a1c1445bf3f619fbc" offset="0x000000" /> |
| 40337 | 44381 | </dataarea> |
| r21545 | r21546 | |
| 40346 | 44390 | <info name="release" value="19950113" /> |
| 40347 | 44391 | <info name="alt_title" value="雀遊記 悟空乱打" /> |
| 40348 | 44392 | <part name="cart" interface="snes_cart"> |
| 44393 | ||
| 44394 | <feature name="slot" value="lorom" /> | |
| 40349 | 44395 | <dataarea name="rom" size="1048576"> |
| 40350 | 44396 | <rom name="janyuuki - gokuu randa (japan).sfc" size="1048576" crc="10978b2d" sha1="4bb2685bda75714c5ab8da641c0a11ed034ac68f" offset="0x000000" /> |
| 40351 | 44397 | </dataarea> |
| r21545 | r21546 | |
| 40357 | 44403 | <year>1991</year> |
| 40358 | 44404 | <publisher>Ocean</publisher> |
| 40359 | 44405 | <part name="cart" interface="snes_cart"> |
| 44406 | ||
| 44407 | <feature name="slot" value="lorom" /> | |
| 40360 | 44408 | <dataarea name="rom" size="1048576"> |
| 40361 | 44409 | <rom name="jelly boy (europe).sfc" size="1048576" crc="f8c72a24" sha1="5b21a7646e0aa768845d42b54a8d8f6e125a8d61" offset="0x000000" /> |
| 40362 | 44410 | </dataarea> |
| r21545 | r21546 | |
| 40369 | 44417 | <publisher>GameTek</publisher> |
| 40370 | 44418 | <info name="release" value="199212xx" /> |
| 40371 | 44419 | <part name="cart" interface="snes_cart"> |
| 44420 | ||
| 44421 | <feature name="slot" value="lorom" /> | |
| 40372 | 44422 | <dataarea name="rom" size="524288"> |
| 40373 | 44423 | <rom name="jeopardy! (usa).sfc" size="524288" crc="65bf3a7e" sha1="ffd18e23d5f77e92146035f473ffd27a17c510e1" offset="0x000000" /> |
| 40374 | 44424 | </dataarea> |
| r21545 | r21546 | |
| 40381 | 44431 | <publisher>GameTek</publisher> |
| 40382 | 44432 | <info name="release" value="199406xx" /> |
| 40383 | 44433 | <part name="cart" interface="snes_cart"> |
| 44434 | ||
| 44435 | <feature name="slot" value="lorom" /> | |
| 40384 | 44436 | <dataarea name="rom" size="524288"> |
| 40385 | 44437 | <rom name="jeopardy! - deluxe edition (usa).sfc" size="524288" crc="6301060c" sha1="71918d099db1cc35496b9dd71f48ad78bbb2d815" offset="0x000000" /> |
| 40386 | 44438 | </dataarea> |
| r21545 | r21546 | |
| 40393 | 44445 | <publisher>GameTek</publisher> |
| 40394 | 44446 | <info name="release" value="199405xx" /> |
| 40395 | 44447 | <part name="cart" interface="snes_cart"> |
| 44448 | ||
| 44449 | <feature name="slot" value="lorom" /> | |
| 40396 | 44450 | <dataarea name="rom" size="524288"> |
| 40397 | 44451 | <rom name="jeopardy! - sports edition (usa).sfc" size="524288" crc="bda7de29" sha1="9219ce57cf98943928a8f31695701c30d3094556" offset="0x000000" /> |
| 40398 | 44452 | </dataarea> |
| r21545 | r21546 | |
| 40407 | 44461 | <info name="release" value="19910913" /> |
| 40408 | 44462 | <info name="alt_title" value="ジェリーボーイ" /> |
| 40409 | 44463 | <part name="cart" interface="snes_cart"> |
| 44464 | ||
| 44465 | <feature name="slot" value="lorom" /> | |
| 40410 | 44466 | <dataarea name="rom" size="1048576"> |
| 40411 | 44467 | <rom name="jerry boy (japan).sfc" size="1048576" crc="4ef452f6" sha1="9df714226c880ed96b43b2d1cdc0884da26a09b1" offset="0x000000" /> |
| 40412 | 44468 | </dataarea> |
| r21545 | r21546 | |
| 40419 | 44475 | <publisher>Taito</publisher> |
| 40420 | 44476 | <info name="release" value="199406xx" /> |
| 40421 | 44477 | <part name="cart" interface="snes_cart"> |
| 44478 | ||
| 44479 | <feature name="slot" value="lorom" /> | |
| 40422 | 44480 | <dataarea name="rom" size="1048576"> |
| 40423 | 44481 | <rom name="jetsons, the - invasion of the planet pirates (usa).sfc" size="1048576" crc="3e3073ce" sha1="b3a08e927fe4eac5f4e47e1361cb80cc392fb06f" offset="0x000000" /> |
| 40424 | 44482 | </dataarea> |
| r21545 | r21546 | |
| 40433 | 44491 | <info name="release" value="19940722" /> |
| 40434 | 44492 | <info name="alt_title" value="ジグソーパ~ティ~" /> |
| 40435 | 44493 | <part name="cart" interface="snes_cart"> |
| 44494 | ||
| 44495 | <feature name="slot" value="hirom" /> | |
| 40436 | 44496 | <dataarea name="rom" size="1048576"> |
| 40437 | 44497 | <rom name="jigsaw party (japan).sfc" size="1048576" crc="78f229dc" sha1="8872d187cefd882145359eef8c659edcbe99fa85" offset="0x000000" /> |
| 40438 | 44498 | </dataarea> |
| r21545 | r21546 | |
| 40449 | 44509 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40450 | 44510 | <part name="cart" interface="snes_cart"> |
| 40451 | 44511 | <feature name="enhancement" value="SA1" /> |
| 44512 | ||
| 44513 | <feature name="slot" value="lorom_sa1" /> | |
| 40452 | 44514 | <dataarea name="rom" size="3145728"> |
| 40453 | 44515 | <rom name="jikkyou oshaberi parodius (japan).sfc" size="3145728" crc="177937ab" sha1="5d0bf1a3dd8a2ae65eb79adb8eb4a4e3c34e01a3" offset="0x000000" /> |
| 40454 | 44516 | </dataarea> |
| r21545 | r21546 | |
| 40466 | 44528 | <info name="alt_title" value="実況パワフルプロ野球3 '97 春" /> |
| 40467 | 44529 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40468 | 44530 | <part name="cart" interface="snes_cart"> |
| 44531 | ||
| 44532 | <feature name="slot" value="lorom" /> | |
| 40469 | 44533 | <dataarea name="rom" size="3145728"> |
| 40470 | 44534 | <rom name="jikkyou powerful pro yakyuu 3 - '97 haru (japan) (rev 1).sfc" size="3145728" crc="5e75a0e0" sha1="e97f5fb809b1fc01e545b1d3af869650d4f7b255" offset="0x000000" /> |
| 40471 | 44535 | </dataarea> |
| r21545 | r21546 | |
| 40480 | 44544 | <publisher>Konami</publisher> |
| 40481 | 44545 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40482 | 44546 | <part name="cart" interface="snes_cart"> |
| 44547 | ||
| 44548 | <feature name="slot" value="lorom" /> | |
| 40483 | 44549 | <dataarea name="rom" size="3145728"> |
| 40484 | 44550 | <rom name="jikkyou world soccer 2 - fighting eleven (japan) (beta).sfc" size="3145728" crc="261e0ea1" sha1="abc0ce32f7001746d907073d5606d39ded4623be" offset="0x000000" /> |
| 40485 | 44551 | </dataarea> |
| r21545 | r21546 | |
| 40492 | 44558 | <publisher>Playmates Interactive</publisher> |
| 40493 | 44559 | <info name="release" value="199511xx" /> |
| 40494 | 44560 | <part name="cart" interface="snes_cart"> |
| 44561 | ||
| 44562 | <feature name="slot" value="lorom" /> | |
| 40495 | 44563 | <dataarea name="rom" size="2097152"> |
| 40496 | 44564 | <rom name="jim lee's wildc.a.t.s - covert action teams (usa).sfc" size="2097152" crc="10c6f5ad" sha1="b0c324bb5307a1ff139dc163b523d5925c48f93d" offset="0x000000" /> |
| 40497 | 44565 | </dataarea> |
| r21545 | r21546 | |
| 40503 | 44571 | <year>1993</year> |
| 40504 | 44572 | <publisher>Electro Brain</publisher> |
| 40505 | 44573 | <part name="cart" interface="snes_cart"> |
| 44574 | ||
| 44575 | <feature name="slot" value="lorom" /> | |
| 40506 | 44576 | <dataarea name="rom" size="1048576"> |
| 40507 | 44577 | <rom name="jim power - the lost dimension in 3d (europe) (proto).sfc" size="1048576" crc="35aae4eb" sha1="100330f7a5ab947ac8d7593ba120068e950449d4" offset="0x000000" /> |
| 40508 | 44578 | </dataarea> |
| r21545 | r21546 | |
| 40516 | 44586 | <info name="release" value="199312xx" /> |
| 40517 | 44587 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40518 | 44588 | <part name="cart" interface="snes_cart"> |
| 44589 | ||
| 44590 | <feature name="slot" value="lorom" /> | |
| 40519 | 44591 | <dataarea name="rom" size="1048576"> |
| 40520 | 44592 | <rom name="jim power - the lost dimension in 3d (usa).sfc" size="1048576" crc="c469f8f0" sha1="45fbf4429b8b4a806af31503a0cf968cffba3af1" offset="0x000000" /> |
| 40521 | 44593 | </dataarea> |
| r21545 | r21546 | |
| 40527 | 44599 | <year>1992</year> |
| 40528 | 44600 | <publisher>Ubi Soft</publisher> |
| 40529 | 44601 | <part name="cart" interface="snes_cart"> |
| 44602 | ||
| 44603 | <feature name="slot" value="lorom" /> | |
| 40530 | 44604 | <dataarea name="rom" size="524288"> |
| 40531 | 44605 | <rom name="jimmy connors pro tennis tour (europe).sfc" size="524288" crc="bba55bec" sha1="589b6cc2029d9846edd65732bb8bd588e85cff88" offset="0x000000" /> |
| 40532 | 44606 | </dataarea> |
| r21545 | r21546 | |
| 40538 | 44612 | <year>1992</year> |
| 40539 | 44613 | <publisher>Ubi Soft</publisher> |
| 40540 | 44614 | <part name="cart" interface="snes_cart"> |
| 44615 | ||
| 44616 | <feature name="slot" value="lorom" /> | |
| 40541 | 44617 | <dataarea name="rom" size="524288"> |
| 40542 | 44618 | <rom name="jimmy connors pro tennis tour (france).sfc" size="524288" crc="bea289fc" sha1="bad6ead80316ff9c1105e2cb7f16529939a0be50" offset="0x000000" /> |
| 40543 | 44619 | </dataarea> |
| r21545 | r21546 | |
| 40552 | 44628 | <info name="release" value="19931029" /> |
| 40553 | 44629 | <info name="alt_title" value="ジミーコナーズのプロテニスツアー" /> |
| 40554 | 44630 | <part name="cart" interface="snes_cart"> |
| 44631 | ||
| 44632 | <feature name="slot" value="lorom" /> | |
| 40555 | 44633 | <dataarea name="rom" size="524288"> |
| 40556 | 44634 | <rom name="jimmy connors pro tennis tour (japan).sfc" size="524288" crc="a95bef02" sha1="7a65e3a89ed72a1e4c63feb297fcdf05cfbe1c29" offset="0x000000" /> |
| 40557 | 44635 | </dataarea> |
| r21545 | r21546 | |
| 40564 | 44642 | <publisher>Ubi Soft</publisher> |
| 40565 | 44643 | <info name="release" value="199212xx" /> |
| 40566 | 44644 | <part name="cart" interface="snes_cart"> |
| 44645 | ||
| 44646 | <feature name="slot" value="lorom" /> | |
| 40567 | 44647 | <dataarea name="rom" size="524288"> |
| 40568 | 44648 | <rom name="jimmy connors pro tennis tour (usa).sfc" size="524288" crc="913f1555" sha1="1c1b57ad8c62f66defce8ca9c6e087153e346999" offset="0x000000" /> |
| 40569 | 44649 | </dataarea> |
| r21545 | r21546 | |
| 40576 | 44656 | <publisher>American Sammy</publisher> |
| 40577 | 44657 | <info name="release" value="199511xx" /> |
| 40578 | 44658 | <part name="cart" interface="snes_cart"> |
| 44659 | ||
| 44660 | <feature name="slot" value="lorom" /> | |
| 40579 | 44661 | <dataarea name="rom" size="1572864"> |
| 40580 | 44662 | <rom name="jimmy houston's bass tournament u.s.a. (usa).sfc" size="1572864" crc="e7e488d5" sha1="cea2667429d2650c06c6c2491438dd12a9a6d4ba" offset="0x000000" /> |
| 40581 | 44663 | </dataarea> |
| r21545 | r21546 | |
| 40592 | 44674 | <info name="release" value="19950825" /> |
| 40593 | 44675 | <info name="alt_title" value="実戦バスフィッシング必勝法 in USA" /> |
| 40594 | 44676 | <part name="cart" interface="snes_cart"> |
| 44677 | ||
| 44678 | <feature name="slot" value="lorom" /> | |
| 40595 | 44679 | <dataarea name="rom" size="1572864"> |
| 40596 | 44680 | <rom name="jissen bass fishing hisshouhou in usa (japan).sfc" size="1572864" crc="82ba9020" sha1="76648400a40d26da22236eef236d8deb86708bf2" offset="0x000000" /> |
| 40597 | 44681 | </dataarea> |
| r21545 | r21546 | |
| 40608 | 44692 | <info name="release" value="19950623" /> |
| 40609 | 44693 | <info name="alt_title" value="実戦競艇" /> |
| 40610 | 44694 | <part name="cart" interface="snes_cart"> |
| 44695 | ||
| 44696 | <feature name="slot" value="hirom" /> | |
| 40611 | 44697 | <dataarea name="rom" size="1572864"> |
| 40612 | 44698 | <rom name="jissen kyoutei (japan).sfc" size="1572864" crc="65815455" sha1="c795ae98acf450422ad11925ea1a5573fcbe555d" offset="0x000000" /> |
| 40613 | 44699 | </dataarea> |
| r21545 | r21546 | |
| 40624 | 44710 | <info name="release" value="19970315" /> |
| 40625 | 44711 | <info name="alt_title" value="実戦パチスロ必勝法! ツイン" /> |
| 40626 | 44712 | <part name="cart" interface="snes_cart"> |
| 44713 | ||
| 44714 | <feature name="slot" value="hirom" /> | |
| 40627 | 44715 | <dataarea name="rom" size="524288"> |
| 40628 | 44716 | <rom name="jissen pachi-slot hisshouhou! twin (japan).sfc" size="524288" crc="acbef43d" sha1="eaee7feadba8c14cbe5f7453300528f91472fc8c" offset="0x000000" /> |
| 40629 | 44717 | </dataarea> |
| r21545 | r21546 | |
| 40640 | 44728 | <info name="release" value="19970912" /> |
| 40641 | 44729 | <info name="alt_title" value="実戦パチスロ必勝法! ツイン Vol.2" /> |
| 40642 | 44730 | <part name="cart" interface="snes_cart"> |
| 44731 | ||
| 44732 | <feature name="slot" value="lorom" /> | |
| 40643 | 44733 | <dataarea name="rom" size="524288"> |
| 40644 | 44734 | <rom name="jissen pachi-slot hisshouhou! twin vol. 2 (japan).sfc" size="524288" crc="1013bcf3" sha1="b15fe02c973b98daaa4a7f65df5bce496f5bfedd" offset="0x000000" /> |
| 40645 | 44735 | </dataarea> |
| r21545 | r21546 | |
| 40657 | 44747 | <info name="alt_title" value="実戦パチンコ必勝法!2" /> |
| 40658 | 44748 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40659 | 44749 | <part name="cart" interface="snes_cart"> |
| 44750 | ||
| 44751 | <feature name="slot" value="lorom" /> | |
| 40660 | 44752 | <dataarea name="rom" size="1572864"> |
| 40661 | 44753 | <rom name="jissen pachinko hisshouhou! 2 (japan).sfc" size="1572864" crc="59884df2" sha1="36acd095ff832c32fda8f81cff601176a6c6fccf" offset="0x000000" /> |
| 40662 | 44754 | </dataarea> |
| r21545 | r21546 | |
| 40673 | 44765 | <info name="release" value="19950103" /> |
| 40674 | 44766 | <info name="alt_title" value="実戦!麻雀指南" /> |
| 40675 | 44767 | <part name="cart" interface="snes_cart"> |
| 44768 | ||
| 44769 | <feature name="slot" value="lorom" /> | |
| 40676 | 44770 | <dataarea name="rom" size="1048576"> |
| 40677 | 44771 | <rom name="jissen! mahjong shinan (japan).sfc" size="1048576" crc="457f3020" sha1="0b7785d0a778f48556d272001010e732b044b396" offset="0x000000" /> |
| 40678 | 44772 | </dataarea> |
| r21545 | r21546 | |
| 40689 | 44783 | <info name="release" value="19950707" /> |
| 40690 | 44784 | <info name="alt_title" value="実戦!パチスロ必勝法!クラシック" /> |
| 40691 | 44785 | <part name="cart" interface="snes_cart"> |
| 44786 | ||
| 44787 | <feature name="slot" value="lorom" /> | |
| 40692 | 44788 | <dataarea name="rom" size="1048576"> |
| 40693 | 44789 | <rom name="jissen! pachi-slot hisshouhou! classic (japan).sfc" size="1048576" crc="f28358c0" sha1="f1115ef15688ecba048e41c4372624c469379cc2" offset="0x000000" /> |
| 40694 | 44790 | </dataarea> |
| r21545 | r21546 | |
| 40706 | 44802 | <info name="alt_title" value="実戦!パチスロ必勝法!山佐伝説" /> |
| 40707 | 44803 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40708 | 44804 | <part name="cart" interface="snes_cart"> |
| 44805 | ||
| 44806 | <feature name="slot" value="lorom" /> | |
| 40709 | 44807 | <dataarea name="rom" size="1048576"> |
| 40710 | 44808 | <rom name="jissen! pachi-slot hisshouhou! yamasa densetsu (japan).sfc" size="1048576" crc="8fb6a868" sha1="c39fc0b5035ebc7d94ba911f53ec4577afd1cb81" offset="0x000000" /> |
| 40711 | 44809 | </dataarea> |
| r21545 | r21546 | |
| 40720 | 44818 | <publisher>Data East</publisher> |
| 40721 | 44819 | <info name="release" value="199201xx" /> |
| 40722 | 44820 | <part name="cart" interface="snes_cart"> |
| 44821 | ||
| 44822 | <feature name="slot" value="lorom" /> | |
| 40723 | 44823 | <dataarea name="rom" size="1048576"> |
| 40724 | 44824 | <rom name="joe & mac (usa).sfc" size="1048576" crc="3a2b6167" sha1="be48f2193ad088b6ea395caeb2d03fa190480418" offset="0x000000" /> |
| 40725 | 44825 | </dataarea> |
| r21545 | r21546 | |
| 40731 | 44831 | <year>1992</year> |
| 40732 | 44832 | <publisher>Elite Systems</publisher> |
| 40733 | 44833 | <part name="cart" interface="snes_cart"> |
| 44834 | ||
| 44835 | <feature name="slot" value="lorom" /> | |
| 40734 | 44836 | <dataarea name="rom" size="1048576"> |
| 40735 | 44837 | <rom name="joe & mac - caveman ninja (europe) (en,fr,de,es,it,nl) (beta).sfc" size="1048576" crc="db8447eb" sha1="0e2f55c1560b732b5a3595452415143cbe5d2f83" offset="0x000000" /> |
| 40736 | 44838 | </dataarea> |
| r21545 | r21546 | |
| 40742 | 44844 | <year>1992</year> |
| 40743 | 44845 | <publisher>Elite Systems</publisher> |
| 40744 | 44846 | <part name="cart" interface="snes_cart"> |
| 44847 | ||
| 44848 | <feature name="slot" value="lorom" /> | |
| 40745 | 44849 | <dataarea name="rom" size="1048576"> |
| 40746 | 44850 | <rom name="joe & mac - caveman ninja (europe) (en,fr,de,es,it,nl).sfc" size="1048576" crc="a423a9d8" sha1="1b9ce057fd686db93cba24403d728a8dfb9f3eb6" offset="0x000000" /> |
| 40747 | 44851 | </dataarea> |
| r21545 | r21546 | |
| 40756 | 44860 | <info name="release" value="19911206" /> |
| 40757 | 44861 | <info name="alt_title" value="戦え原始人 ジョー&マック" /> |
| 40758 | 44862 | <part name="cart" interface="snes_cart"> |
| 44863 | ||
| 44864 | <feature name="slot" value="lorom" /> | |
| 40759 | 44865 | <dataarea name="rom" size="1048576"> |
| 40760 | 44866 | <rom name="joe & mac - tatakae genshijin (japan).sfc" size="1048576" crc="fb9f19ba" sha1="8e3c0993676d8e22a83edc17b6b5335d34d2d631" offset="0x000000" /> |
| 40761 | 44867 | </dataarea> |
| r21545 | r21546 | |
| 40768 | 44874 | <publisher>Data East</publisher> |
| 40769 | 44875 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40770 | 44876 | <part name="cart" interface="snes_cart"> |
| 44877 | ||
| 44878 | <feature name="slot" value="lorom" /> | |
| 40771 | 44879 | <dataarea name="rom" size="1048576"> |
| 40772 | 44880 | <rom name="joe & mac 2 - lost in the tropics (usa) (beta).sfc" size="1048576" crc="ec7a2ed3" sha1="5cf89faa7c5b5253a03aebeca240417e98bb2ad5" offset="0x000000" /> |
| 40773 | 44881 | </dataarea> |
| r21545 | r21546 | |
| 40781 | 44889 | <info name="release" value="199404xx" /> |
| 40782 | 44890 | <sharedfeat name="compatibility" value="NTSC"/> |
| 40783 | 44891 | <part name="cart" interface="snes_cart"> |
| 44892 | ||
| 44893 | <feature name="slot" value="lorom" /> | |
| 40784 | 44894 | <dataarea name="rom" size="1048576"> |
| 40785 | 44895 | <rom name="joe & mac 2 - lost in the tropics (usa).sfc" size="1048576" crc="0c3b4201" sha1="14d4911403854bf0bb59e3a6081181678a23d598" offset="0x000000" /> |
| 40786 | 44896 | </dataarea> |
| r21545 | r21546 | |
| 40792 | 44902 | <year>1994</year> |
| 40793 | 44903 | <publisher>Data East</publisher> |
| 40794 | 44904 | <part name="cart" interface="snes_cart"> |
| 44905 | ||
| 44906 | <feature name="slot" value="lorom" /> | |
| 40795 | 44907 | <dataarea name="rom" size="1048576"> |
| 40796 | 44908 | <rom name="joe & mac 3 - lost in the tropics (europe) (en,fr,de) (beta).sfc" size="1048576" crc="5970fb74" sha1="c60473df45f5aa1eb91d0b1f7853c740550fd30a" offset="0x000000" /> |
| 40797 | 44909 | </dataarea> |
| r21545 | r21546 | |
| 40804 | 44916 | <publisher>Data East</publisher> |
| 40805 | 44917 | <sharedfeat name="compatibility" value="PAL"/> |
| 40806 | 44918 | <part name="cart" interface="snes_cart"> |
| 44919 | ||
| 44920 | <feature name="slot" value="lorom" /> | |
| 40807 | 44921 | <dataarea name="rom" size="1048576"> |
| 40808 | 44922 | <rom name="joe & mac 3 - lost in the tropics (europe) (en,fr,de).sfc" size="1048576" crc="b9d6269d" sha1="57722343b24590aeb1c894018fc68660cd7b9712" offset="0x000000" /> |
| 40809 | 44923 | </dataarea> |
| r21545 | r21546 | |
| 40815 | 44929 | <year>1992</year> |
| 40816 | 44930 | <publisher>Electronic Arts</publisher> |
| 40817 | 44931 | <part name="cart" interface="snes_cart"> |
| 44932 | ||
| 44933 | <feature name="slot" value="lorom" /> | |
| 40818 | 44934 | <dataarea name="rom" size="1048576"> |
| 40819 | 44935 | <rom name="john madden football '93 (europe).sfc" size="1048576" crc="b07b2a60" sha1="ea3bf28e2498745d7a040127b6fc578cb2e182f7" offset="0x000000" /> |
| 40820 | 44936 | </dataarea> |
| r21545 | r21546 | |
| 40827 | 44943 | <publisher>Electronic Arts</publisher> |
| 40828 | 44944 | <info name="release" value="199211xx" /> |
| 40829 | 44945 | <part name="cart" interface="snes_cart"> |
| 44946 | ||
| 44947 | <feature name="slot" value="lorom" /> | |
| 40830 | 44948 | <dataarea name="rom" size="1048576"> |
| 40831 | 44949 | <rom name="john madden football '93 (usa) (rev 1).sfc" size="1048576" crc="dc5a250b" sha1="ee75c2795558ddcc38bf5872a10acdfe933003a0" offset="0x000000" /> |
| 40832 | 44950 | </dataarea> |
| r21545 | r21546 | |
| 40839 | 44957 | <publisher>Electronic Arts</publisher> |
| 40840 | 44958 | <info name="release" value="199211xx" /> |
| 40841 | 44959 | <part name="cart" interface="snes_cart"> |
| 44960 | ||
| 44961 | <feature name="slot" value="lorom" /> | |
| 40842 | 44962 | <dataarea name="rom" size="1048576"> |
| 40843 | 44963 | <rom name="john madden football '93 (usa).sfc" size="1048576" crc="60190859" sha1="d20f815859b274bb2ce2f5e35853e1e0813cf67b" offset="0x000000" /> |
| 40844 | 44964 | </dataarea> |
| r21545 | r21546 | |
| 40851 | 44971 | <publisher>Electronic Arts</publisher> |
| 40852 | 44972 | <info name="release" value="199111xx" /> |
| 40853 | 44973 | <part name="cart" interface="snes_cart"> |
| 44974 | ||
| 44975 | <feature name="slot" value="lorom" /> | |
| 40854 | 44976 | <dataarea name="rom" size="524288"> |
| 40855 | 44977 | <rom name="john madden football (usa).sfc" size="524288" crc="796294c6" sha1="9b8d1fc31eb56c0a6d0e31dc385ec8ed860de9c3" offset="0x000000" /> |
| 40856 | 44978 | </dataarea> |
| r21545 | r21546 | |
| 40865 | 44987 | <info name="release" value="19930305" /> |
| 40866 | 44988 | <info name="alt_title" value="ジョジョの奇妙な冒険" /> |
| 40867 | 44989 | <part name="cart" interface="snes_cart"> |
| 44990 | ||
| 44991 | <feature name="slot" value="lorom" /> | |
| 40868 | 44992 | <dataarea name="rom" size="1048576"> |
| 40869 | 44993 | <rom name="jojo no kimyou na bouken (japan).sfc" size="1048576" crc="56ba694a" sha1="8f1c62568c930c47b271c960be9bb9bb9276b782" offset="0x000000" /> |
| 40870 | 44994 | </dataarea> |
| r21545 | r21546 | |
| 40881 | 45005 | <info name="release" value="19951027" /> |
| 40882 | 45006 | <info name="alt_title" value="ジャッジ・ドレット" /> |
| 40883 | 45007 | <part name="cart" interface="snes_cart"> |
| 45008 | ||
| 45009 | <feature name="slot" value="lorom" /> | |
| 40884 | 45010 | <dataarea name="rom" size="2097152"> |
| 40885 | 45011 | <rom name="judge dredd (japan).sfc" size="2097152" crc="d7bc8a52" sha1="7c672080b6ecfdec1afa0a1377257ddc1930746d" offset="0x000000" /> |
| 40886 | 45012 | </dataarea> |
| r21545 | r21546 | |
| 40892 | 45018 | <year>1995</year> |
| 40893 | 45019 | <publisher>Acclaim Entertainment</publisher> |
| 40894 | 45020 | <part name="cart" interface="snes_cart"> |
| 45021 | ||
| 45022 | <feature name="slot" value="lorom" /> | |
| 40895 | 45023 | <dataarea name="rom" size="2097152"> |
| 40896 | 45024 | <rom name="judge dredd (usa) (sample).sfc" size="2097152" crc="023fc5de" sha1="cd1996cef90b5e8b5f63511f74a10d6efe16ebbb" offset="0x000000" /> |
| 40897 | 45025 | </dataarea> |
| r21545 | r21546 | |
| 40904 | 45032 | <publisher>Acclaim Entertainment</publisher> |
| 40905 | 45033 | <info name="release" value="199506xx" /> |
| 40906 | 45034 | <part name="cart" interface="snes_cart"> |
| 45035 | ||
| 45036 | <feature name="slot" value="lorom" /> | |
| 40907 | 45037 | <dataarea name="rom" size="2097152"> |
| 40908 | 45038 | <rom name="judge dredd (usa).sfc" size="2097152" crc="0a3f0288" sha1="7e1c25cc6c8dfefe7f86c8143f7db8b3590a6171" offset="0x000000" /> |
| 40909 | 45039 | </dataarea> |
| r21545 | r21546 | |
| 40918 | 45048 | <info name="release" value="19910223" /> |
| 40919 | 45049 | <info name="alt_title" value="ジャンボ尾崎のホールインワン" /> |
| 40920 | 45050 | <part name="cart" interface="snes_cart"> |
| 45051 | ||
| 45052 | <feature name="slot" value="lorom" /> | |
| 40921 | 45053 | <dataarea name="rom" size="1048576"> |
| 40922 | 45054 | <rom name="jumbo ozaki no hole in one (japan).sfc" size="1048576" crc="0fd99721" sha1="64e653a0f35577ba66e365d0fb940ed4626dbe49" offset="0x000000" /> |
| 40923 | 45055 | </dataarea> |
| r21545 | r21546 | |
| 40933 | 45065 | <info name="alt_title" value="ジャンピンダービー" /> |
| 40934 | 45066 | <part name="cart" interface="snes_cart"> |
| 40935 | 45067 | <feature name="enhancement" value="SA1" /> |
| 45068 | ||
| 45069 | <feature name="slot" value="lorom_sa1" /> | |
| 40936 | 45070 | <dataarea name="rom" size="2097152"> |
| 40937 | 45071 | <rom name="jumpin' derby (japan).sfc" size="2097152" crc="a473b7e4" sha1="95556edb63fe27c0042a5fed789666d1e51a37f2" offset="0x000000" /> |
| 40938 | 45072 | </dataarea> |
| r21545 | r21546 | |
| 40949 | 45083 | <info name="release" value="19940715" /> |
| 40950 | 45084 | <info name="alt_title" value="ジャングルブック" /> |
| 40951 | 45085 | <part name="cart" interface="snes_cart"> |
| 45086 | ||
| 45087 | <feature name="slot" value="lorom" /> | |
| 40952 | 45088 | <dataarea name="rom" size="2097152"> |
| 40953 | 45089 | <rom name="jungle book, the (japan).sfc" size="2097152" crc="ce14892d" sha1="30c2b0119f697cfb3f9ed5cd8871cd56f47f62e0" offset="0x000000" /> |
| 40954 | 45090 | </dataarea> |
| r21545 | r21546 | |
| 40960 | 45096 | <year>1994</year> |
| 40961 | 45097 | <publisher>Virgin Interactive</publisher> |
| 40962 | 45098 | <part name="cart" interface="snes_cart"> |
| 45099 | ||
| 45100 | <feature name="slot" value="lorom" /> | |
| 40963 | 45101 | <dataarea name="rom" size="2097152"> |
| 40964 | 45102 | <rom name="jungle book, the (usa) (beta).sfc" size="2097152" crc="bd037a57" sha1="15a7f1e233484d1bc6b3688d0e6a394f2cd3c971" offset="0x000000" /> |
| 40965 | 45103 | </dataarea> |
| r21545 | r21546 | |
| 40972 | 45110 | <publisher>Electronic Arts</publisher> |
| 40973 | 45111 | <info name="release" value="199506xx" /> |
| 40974 | 45112 | <part name="cart" interface="snes_cart"> |
| 45113 | ||
| 45114 | <feature name="slot" value="lorom" /> | |
| 40975 | 45115 | <dataarea name="rom" size="2097152"> |
| 40976 | 45116 | <rom name="jungle strike (usa).sfc" size="2097152" crc="335487e5" sha1="8a37f3c440623306d7b60a484a9f83bd0daace26" offset="0x000000" /> |
| 40977 | 45117 | </dataarea> |
| r21545 | r21546 | |
| 40986 | 45126 | <info name="release" value="19950922" /> |
| 40987 | 45127 | <info name="alt_title" value="ジャングルストライク 受け継がれた狂気" /> |
| 40988 | 45128 | <part name="cart" interface="snes_cart"> |
| 45129 | ||
| 45130 | <feature name="slot" value="lorom" /> | |
| 40989 | 45131 | <dataarea name="rom" size="2097152"> |
| 40990 | 45132 | <rom name="jungle strike - uketsugareta kyouki (japan).sfc" size="2097152" crc="5bdf5a87" sha1="9ce69802bcaf3d1e85f2af77395fb6bbf262fd43" offset="0x000000" /> |
| 40991 | 45133 | </dataarea> |
| r21545 | r21546 | |
| 41000 | 45142 | <info name="release" value="19930319" /> |
| 41001 | 45143 | <info name="alt_title" value="ジャングルウォーズ2古代魔法アティモスの謎" /> |
| 41002 | 45144 | <part name="cart" interface="snes_cart"> |
| 45145 | ||
| 45146 | <feature name="slot" value="lorom" /> | |
| 41003 | 45147 | <dataarea name="rom" size="1572864"> |
| 41004 | 45148 | <rom name="jungle wars 2 - kodai mahou atimos no nazo (japan).sfc" size="1572864" crc="42014b93" sha1="b2d8118ca99f279cfa3f4fd6873e39b39253147e" offset="0x000000" /> |
| 41005 | 45149 | </dataarea> |
| r21545 | r21546 | |
| 41013 | 45157 | <year>1993</year> |
| 41014 | 45158 | <publisher>Ocean</publisher> |
| 41015 | 45159 | <part name="cart" interface="snes_cart"> |
| 45160 | ||
| 45161 | <feature name="slot" value="lorom" /> | |
| 41016 | 45162 | <dataarea name="rom" size="2097152"> |
| 41017 | 45163 | <rom name="jurassic park (europe) (beta).sfc" size="2097152" crc="b2b1804b" sha1="b6c52672796653cbc32483a53876e98b71c25056" offset="0x000000" /> |
| 41018 | 45164 | </dataarea> |
| r21545 | r21546 | |
| 41024 | 45170 | <year>1993</year> |
| 41025 | 45171 | <publisher>Ocean</publisher> |
| 41026 | 45172 | <part name="cart" interface="snes_cart"> |
| 45173 | ||
| 45174 | <feature name="slot" value="lorom" /> | |
| 41027 | 45175 | <dataarea name="rom" size="2097152"> |
| 41028 | 45176 | <rom name="jurassic park (europe).sfc" size="2097152" crc="7ccb8762" sha1="25ecfbcde78169f517e2a15bdb7a6daa54f414d3" offset="0x000000" /> |
| 41029 | 45177 | </dataarea> |
| r21545 | r21546 | |
| 41035 | 45183 | <year>1993</year> |
| 41036 | 45184 | <publisher>Ocean</publisher> |
| 41037 | 45185 | <part name="cart" interface="snes_cart"> |
| 45186 | ||
| 45187 | <feature name="slot" value="lorom" /> | |
| 41038 | 45188 | <dataarea name="rom" size="2097152"> |
| 41039 | 45189 | <rom name="jurassic park (france).sfc" size="2097152" crc="61011074" sha1="a02a935c4ad7164ae146623159a4efe746b28952" offset="0x000000" /> |
| 41040 | 45190 | </dataarea> |
| r21545 | r21546 | |
| 41046 | 45196 | <year>1993</year> |
| 41047 | 45197 | <publisher>Ocean</publisher> |
| 41048 | 45198 | <part name="cart" interface="snes_cart"> |
| 45199 | ||
| 45200 | <feature name="slot" value="lorom" /> | |
| 41049 | 45201 | <dataarea name="rom" size="2097152"> |
| 41050 | 45202 | <rom name="jurassic park (germany).sfc" size="2097152" crc="8c3f510d" sha1="5ba69a86a6a5a996212937e27c031b53456f090d" offset="0x000000" /> |
| 41051 | 45203 | </dataarea> |
| r21545 | r21546 | |
| 41057 | 45209 | <year>1993</year> |
| 41058 | 45210 | <publisher>Ocean</publisher> |
| 41059 | 45211 | <part name="cart" interface="snes_cart"> |
| 45212 | ||
| 45213 | <feature name="slot" value="lorom" /> | |
| 41060 | 45214 | <dataarea name="rom" size="2097152"> |
| 41061 | 45215 | <rom name="jurassic park (italy).sfc" size="2097152" crc="3ee3e840" sha1="e205bf1cad258fbe119e5305de06778d84548abf" offset="0x000000" /> |
| 41062 | 45216 | </dataarea> |
| r21545 | r21546 | |
| 41072 | 45226 | <info name="alt_title" value="ジュラシック・パーク" /> |
| 41073 | 45227 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41074 | 45228 | <part name="cart" interface="snes_cart"> |
| 45229 | ||
| 45230 | <feature name="slot" value="lorom" /> | |
| 41075 | 45231 | <dataarea name="rom" size="2097152"> |
| 41076 | 45232 | <rom name="jurassic park (japan).sfc" size="2097152" crc="559c7cf5" sha1="d2e247038570164f1271bbbd11929057c2b2bea4" offset="0x000000" /> |
| 41077 | 45233 | </dataarea> |
| r21545 | r21546 | |
| 41083 | 45239 | <year>1993</year> |
| 41084 | 45240 | <publisher>Ocean</publisher> |
| 41085 | 45241 | <part name="cart" interface="snes_cart"> |
| 45242 | ||
| 45243 | <feature name="slot" value="lorom" /> | |
| 41086 | 45244 | <dataarea name="rom" size="2097152"> |
| 41087 | 45245 | <rom name="jurassic park (spain).sfc" size="2097152" crc="3dee6fd9" sha1="0748801306572e7ebcdd8a9176c633dc98ec2945" offset="0x000000" /> |
| 41088 | 45246 | </dataarea> |
| r21545 | r21546 | |
| 41094 | 45252 | <year>1994</year> |
| 41095 | 45253 | <publisher>Ocean</publisher> |
| 41096 | 45254 | <part name="cart" interface="snes_cart"> |
| 45255 | ||
| 45256 | <feature name="slot" value="lorom" /> | |
| 41097 | 45257 | <dataarea name="rom" size="2097152"> |
| 41098 | 45258 | <rom name="jurassic park ii - the chaos continues (europe) (en,fr,de,it).sfc" size="2097152" crc="8a926d1a" sha1="2bb5e4a9e965e88e374d71bb14bff9a21453cd19" offset="0x000000" /> |
| 41099 | 45259 | </dataarea> |
| r21545 | r21546 | |
| 41105 | 45265 | <year>1994</year> |
| 41106 | 45266 | <publisher>Ocean</publisher> |
| 41107 | 45267 | <part name="cart" interface="snes_cart"> |
| 45268 | ||
| 45269 | <feature name="slot" value="lorom" /> | |
| 41108 | 45270 | <dataarea name="rom" size="2097152"> |
| 41109 | 45271 | <rom name="jurassic park ii - the chaos continues (usa) (en,fr,de,it) (beta).sfc" size="2097152" crc="49a6a9f3" sha1="4b9724736fe6401f5b03550389eae7d9faacbaa0" offset="0x000000" /> |
| 41110 | 45272 | </dataarea> |
| r21545 | r21546 | |
| 41117 | 45279 | <publisher>Ocean</publisher> |
| 41118 | 45280 | <info name="release" value="199411xx" /> |
| 41119 | 45281 | <part name="cart" interface="snes_cart"> |
| 45282 | ||
| 45283 | <feature name="slot" value="lorom" /> | |
| 41120 | 45284 | <dataarea name="rom" size="2097152"> |
| 41121 | 45285 | <rom name="jurassic park ii - the chaos continues (usa) (en,fr,de,it).sfc" size="2097152" crc="836ee990" sha1="23967b9dd586c01a8b6e89bb3774c3b3f7bdf3ba" offset="0x000000" /> |
| 41122 | 45286 | </dataarea> |
| r21545 | r21546 | |
| 41128 | 45292 | <year>1995</year> |
| 41129 | 45293 | <publisher>Acclaim Entertainment</publisher> |
| 41130 | 45294 | <part name="cart" interface="snes_cart"> |
| 45295 | ||
| 45296 | <feature name="slot" value="lorom" /> | |
| 41131 | 45297 | <dataarea name="rom" size="2621440"> |
| 41132 | 45298 | <rom name="justice league task force (europe).sfc" size="2621440" crc="e81203e0" sha1="40ff04b44f49985bb69a67b40533e0764b4d018e" offset="0x000000" /> |
| 41133 | 45299 | </dataarea> |
| r21545 | r21546 | |
| 41142 | 45308 | <info name="release" value="19951027" /> |
| 41143 | 45309 | <info name="alt_title" value="ジャスティスリーグ" /> |
| 41144 | 45310 | <part name="cart" interface="snes_cart"> |
| 45311 | ||
| 45312 | <feature name="slot" value="lorom" /> | |
| 41145 | 45313 | <dataarea name="rom" size="2621440"> |
| 41146 | 45314 | <rom name="justice league task force (japan).sfc" size="2621440" crc="bfa7f180" sha1="3ff24caba446b75076d0b7c49bb3b998a0af4d55" offset="0x000000" /> |
| 41147 | 45315 | </dataarea> |
| r21545 | r21546 | |
| 41154 | 45322 | <publisher>Acclaim Entertainment</publisher> |
| 41155 | 45323 | <info name="release" value="199506xx" /> |
| 41156 | 45324 | <part name="cart" interface="snes_cart"> |
| 45325 | ||
| 45326 | <feature name="slot" value="lorom" /> | |
| 41157 | 45327 | <dataarea name="rom" size="2621440"> |
| 41158 | 45328 | <rom name="justice league task force (usa).sfc" size="2621440" crc="31cf46d1" sha1="5f42f74a03e8a7c0145751a6563dec707cbbe37c" offset="0x000000" /> |
| 41159 | 45329 | </dataarea> |
| r21545 | r21546 | |
| 41169 | 45339 | <info name="alt_title" value="JWP女子プロレス ピュア・レッスル・クイーンズ" /> |
| 41170 | 45340 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41171 | 45341 | <part name="cart" interface="snes_cart"> |
| 45342 | ||
| 45343 | <feature name="slot" value="hirom" /> | |
| 41172 | 45344 | <dataarea name="rom" size="2097152"> |
| 41173 | 45345 | <rom name="jwp joshi pro wrestling - pure wrestle queens (japan).sfc" size="2097152" crc="69642b00" sha1="afb0d219cf4324b75602b1ac287b2d9dc8b84b8d" offset="0x000000" /> |
| 41174 | 45346 | </dataarea> |
| r21545 | r21546 | |
| 41181 | 45353 | <publisher>Imagineer</publisher> |
| 41182 | 45354 | <sharedfeat name="compatibility" value="PAL"/> |
| 41183 | 45355 | <part name="cart" interface="snes_cart"> |
| 45356 | ||
| 45357 | <feature name="slot" value="lorom" /> | |
| 41184 | 45358 | <dataarea name="rom" size="524288"> |
| 41185 | 45359 | <rom name="k.h. rummenigge's player manager (germany) (sample).sfc" size="524288" crc="17f946c5" sha1="34127afec159afd719887510e5deeb753cdd5af7" offset="0x000000" /> |
| 41186 | 45360 | </dataarea> |
| r21545 | r21546 | |
| 41195 | 45369 | <publisher>Imagineer</publisher> |
| 41196 | 45370 | <sharedfeat name="compatibility" value="PAL"/> |
| 41197 | 45371 | <part name="cart" interface="snes_cart"> |
| 45372 | ||
| 45373 | <feature name="slot" value="lorom" /> | |
| 41198 | 45374 | <dataarea name="rom" size="524288"> |
| 41199 | 45375 | <rom name="k.h. rummenigge's player manager (germany).sfc" size="524288" crc="5e66a52c" sha1="5cb9caf37bfedd3fa9b946b0d5c58b49b96f698c" offset="0x000000" /> |
| 41200 | 45376 | </dataarea> |
| r21545 | r21546 | |
| 41209 | 45385 | <publisher>Kemco</publisher> |
| 41210 | 45386 | <info name="release" value="199208xx" /> |
| 41211 | 45387 | <part name="cart" interface="snes_cart"> |
| 45388 | ||
| 45389 | <feature name="slot" value="lorom" /> | |
| 41212 | 45390 | <dataarea name="rom" size="524288"> |
| 41213 | 45391 | <rom name="kablooey (usa).sfc" size="524288" crc="b2592eae" sha1="87ef0656cc8ab138ca7fd591eda91a963d81ce55" offset="0x000000" /> |
| 41214 | 45392 | </dataarea> |
| r21545 | r21546 | |
| 41223 | 45401 | <info name="release" value="19940715" /> |
| 41224 | 45402 | <info name="alt_title" value="歌舞伎町 リーチ麻雀 東風戦" /> |
| 41225 | 45403 | <part name="cart" interface="snes_cart"> |
| 45404 | ||
| 45405 | <feature name="slot" value="lorom" /> | |
| 41226 | 45406 | <dataarea name="rom" size="524288"> |
| 41227 | 45407 | <rom name="kabuki chou reach mahjong tonpuusen (japan).sfc" size="524288" crc="d4ef91ce" sha1="aad89324a58fa0bbc9cc3d7cdea5e84bdf63ac8a" offset="0x000000" /> |
| 41228 | 45408 | </dataarea> |
| r21545 | r21546 | |
| 41239 | 45419 | <info name="release" value="19940304" /> |
| 41240 | 45420 | <info name="alt_title" value="カブキロックス" /> |
| 41241 | 45421 | <part name="cart" interface="snes_cart"> |
| 45422 | ||
| 45423 | <feature name="slot" value="lorom" /> | |
| 41242 | 45424 | <dataarea name="rom" size="1572864"> |
| 41243 | 45425 | <rom name="kabuki rocks (japan).sfc" size="1572864" crc="ad324f9d" sha1="391d2144290f287fb5fbc872c14a6102d98fc7f5" offset="0x000000" /> |
| 41244 | 45426 | </dataarea> |
| r21545 | r21546 | |
| 41255 | 45437 | <info name="release" value="19930917" /> |
| 41256 | 45438 | <info name="alt_title" value="課長 島 耕作 スーパービジネスアドベンチャー" /> |
| 41257 | 45439 | <part name="cart" interface="snes_cart"> |
| 45440 | ||
| 45441 | <feature name="slot" value="lorom" /> | |
| 41258 | 45442 | <dataarea name="rom" size="1048576"> |
| 41259 | 45443 | <rom name="kachou shima kousaku (japan).sfc" size="1048576" crc="b9dca26d" sha1="18f6451f3973f2c649726cb719b9e383fb13eac6" offset="0x000000" /> |
| 41260 | 45444 | </dataarea> |
| r21545 | r21546 | |
| 41271 | 45455 | <info name="release" value="19941028" /> |
| 41272 | 45456 | <info name="alt_title" value="化学者ハリーの波乱万丈" /> |
| 41273 | 45457 | <part name="cart" interface="snes_cart"> |
| 45458 | ||
| 45459 | <feature name="slot" value="lorom" /> | |
| 41274 | 45460 | <dataarea name="rom" size="524288"> |
| 41275 | 45461 | <rom name="kagakusha harley no haran banjou (japan).sfc" size="524288" crc="f34b6aa2" sha1="2cedd514c34fb2a4b00c544a17c3137f2394c264" offset="0x000000" /> |
| 41276 | 45462 | </dataarea> |
| r21545 | r21546 | |
| 41286 | 45472 | <info name="alt_title" value="柿木将棋" /> |
| 41287 | 45473 | <part name="cart" interface="snes_cart"> |
| 41288 | 45474 | <feature name="enhancement" value="SA1" /> |
| 45475 | ||
| 45476 | <feature name="slot" value="lorom_sa1" /> | |
| 41289 | 45477 | <dataarea name="rom" size="1572864"> |
| 41290 | 45478 | <rom name="kakinoki shougi (japan).sfc" size="1572864" crc="bc1a265f" sha1="659db940bb26a655972e4d62d00c5c6d3fdae76c" offset="0x000000" /> |
| 41291 | 45479 | </dataarea> |
| r21545 | r21546 | |
| 41302 | 45490 | <info name="release" value="19931112" /> |
| 41303 | 45491 | <info name="alt_title" value="仮面ライダー 恐怖!復活のショッカー軍団!!" /> |
| 41304 | 45492 | <part name="cart" interface="snes_cart"> |
| 45493 | ||
| 45494 | <feature name="slot" value="lorom" /> | |
| 41305 | 45495 | <dataarea name="rom" size="1572864"> |
| 41306 | 45496 | <rom name="kamen rider (japan).sfc" size="1572864" crc="f3c44423" sha1="70db2d8e6e98c9436f7c24d9b1cd03082e7d9fad" offset="0x000000" /> |
| 41307 | 45497 | </dataarea> |
| r21545 | r21546 | |
| 41316 | 45506 | <info name="release" value="19930709" /> |
| 41317 | 45507 | <info name="alt_title" value="仮面ライダーSD 出撃!!ライダーマシン" /> |
| 41318 | 45508 | <part name="cart" interface="snes_cart"> |
| 45509 | ||
| 45510 | <feature name="slot" value="lorom" /> | |
| 41319 | 45511 | <dataarea name="rom" size="1048576"> |
| 41320 | 45512 | <rom name="kamen rider sd - shutsugeki!! rider machine (japan).sfc" size="1048576" crc="a2c7cb5f" sha1="9ca328cd2e6ced05e0d0571f425a781c185e6d41" offset="0x000000" /> |
| 41321 | 45513 | </dataarea> |
| r21545 | r21546 | |
| 41330 | 45522 | <info name="release" value="19940218" /> |
| 41331 | 45523 | <info name="alt_title" value="迦楼羅王" /> |
| 41332 | 45524 | <part name="cart" interface="snes_cart"> |
| 45525 | ||
| 45526 | <feature name="slot" value="lorom" /> | |
| 41333 | 45527 | <dataarea name="rom" size="1048576"> |
| 41334 | 45528 | <rom name="karura ou (japan).sfc" size="1048576" crc="5cf9a482" sha1="b040563783bd9ce68d4e7d1db8f1fe3f06d2d615" offset="0x000000" /> |
| 41335 | 45529 | </dataarea> |
| r21545 | r21546 | |
| 41345 | 45539 | <info name="alt_title" value="柏木重孝のトップ ウォーター バッシンク" /> |
| 41346 | 45540 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41347 | 45541 | <part name="cart" interface="snes_cart"> |
| 45542 | ||
| 45543 | <feature name="slot" value="lorom" /> | |
| 41348 | 45544 | <dataarea name="rom" size="2097152"> |
| 41349 | 45545 | <rom name="kashiwagi shigetaka no top water bassing (japan).sfc" size="2097152" crc="21e72036" sha1="033a112fe4409229664da3fd69ff55706ee61e36" offset="0x000000" /> |
| 41350 | 45546 | </dataarea> |
| r21545 | r21546 | |
| 41359 | 45555 | <info name="release" value="19950714" /> |
| 41360 | 45556 | <info name="alt_title" value="キャッツ・ラン全日本Kカー選手権" /> |
| 41361 | 45557 | <part name="cart" interface="snes_cart"> |
| 45558 | ||
| 45559 | <feature name="slot" value="lorom" /> | |
| 41362 | 45560 | <dataarea name="rom" size="2621440"> |
| 41363 | 45561 | <rom name="kat's run - zen-nihon k-car senshuken (japan).sfc" size="2621440" crc="9dab5ab1" sha1="0350f8e43b7b9eac8600239ad15dff202c2b75b3" offset="0x000000" /> |
| 41364 | 45562 | </dataarea> |
| r21545 | r21546 | |
| 41373 | 45571 | <info name="release" value="19970516" /> |
| 41374 | 45572 | <info name="alt_title" value="加藤一二三 九段 将棋倶楽部" /> |
| 41375 | 45573 | <part name="cart" interface="snes_cart"> |
| 45574 | ||
| 45575 | <feature name="slot" value="hirom" /> | |
| 41376 | 45576 | <dataarea name="rom" size="1048576"> |
| 41377 | 45577 | <rom name="katou hifumi kudan - shougi club (japan).sfc" size="1048576" crc="49b60293" sha1="5e17cdaddc7de3fc553fa7048eb036c877a7bc74" offset="0x000000" /> |
| 41378 | 45578 | </dataarea> |
| r21545 | r21546 | |
| 41385 | 45585 | <publisher>GameTek</publisher> |
| 41386 | 45586 | <info name="release" value="199306xx" /> |
| 41387 | 45587 | <part name="cart" interface="snes_cart"> |
| 45588 | ||
| 45589 | <feature name="slot" value="lorom" /> | |
| 41388 | 45590 | <dataarea name="rom" size="1572864"> |
| 41389 | 45591 | <rom name="kawasaki caribbean challenge (usa).sfc" size="1572864" crc="37d8ac57" sha1="5ad5b2703a375a4b65696c9800e2873a32d87592" offset="0x000000" /> |
| 41390 | 45592 | </dataarea> |
| r21545 | r21546 | |
| 41396 | 45598 | <year>1995</year> |
| 41397 | 45599 | <publisher>Time Warner Interactive</publisher> |
| 41398 | 45600 | <part name="cart" interface="snes_cart"> |
| 45601 | ||
| 45602 | <feature name="slot" value="lorom" /> | |
| 41399 | 45603 | <dataarea name="rom" size="1048576"> |
| 41400 | 45604 | <rom name="kawasaki superbike challenge (europe).sfc" size="1048576" crc="c736dfc0" sha1="86955b8e5b579250489eeed189743e8ac9ce40cf" offset="0x000000" /> |
| 41401 | 45605 | </dataarea> |
| r21545 | r21546 | |
| 41410 | 45614 | <info name="release" value="19940715" /> |
| 41411 | 45615 | <info name="alt_title" value="キーパー" /> |
| 41412 | 45616 | <part name="cart" interface="snes_cart"> |
| 45617 | ||
| 45618 | <feature name="slot" value="lorom" /> | |
| 41413 | 45619 | <dataarea name="rom" size="524288"> |
| 41414 | 45620 | <rom name="keeper (japan).sfc" size="524288" crc="8676126b" sha1="a79b186f9b02c58d60bd77aa69b3711725faee2e" offset="0x000000" /> |
| 41415 | 45621 | </dataarea> |
| r21545 | r21546 | |
| 41424 | 45630 | <info name="release" value="19931210" /> |
| 41425 | 45631 | <info name="alt_title" value="競馬エイトスペシャル ○秘 馬券購入術" /> |
| 41426 | 45632 | <part name="cart" interface="snes_cart"> |
| 45633 | ||
| 45634 | <feature name="slot" value="lorom" /> | |
| 41427 | 45635 | <dataarea name="rom" size="1048576"> |
| 41428 | 45636 | <rom name="keiba eight special (japan) (rev 1).sfc" size="1048576" crc="5d4e4ee1" sha1="b11badc115f54f267a22d90ca30d2cc7dd57ae14" offset="0x000000" /> |
| 41429 | 45637 | </dataarea> |
| r21545 | r21546 | |
| 41440 | 45648 | <info name="release" value="19931210" /> |
| 41441 | 45649 | <info name="alt_title" value="競馬エイトスペシャル ○秘 馬券購入術" /> |
| 41442 | 45650 | <part name="cart" interface="snes_cart"> |
| 45651 | ||
| 45652 | <feature name="slot" value="lorom" /> | |
| 41443 | 45653 | <dataarea name="rom" size="1048576"> |
| 41444 | 45654 | <rom name="keiba eight special (japan).sfc" size="1048576" crc="a5faefaa" sha1="af2e7ace9edc1d1d6d109ee0e28c8a61bdd22b0e" offset="0x000000" /> |
| 41445 | 45655 | </dataarea> |
| r21545 | r21546 | |
| 41454 | 45664 | <publisher>Seta</publisher> |
| 41455 | 45665 | <info name="release" value="199310xx" /> |
| 41456 | 45666 | <part name="cart" interface="snes_cart"> |
| 45667 | ||
| 45668 | <feature name="slot" value="lorom" /> | |
| 41457 | 45669 | <dataarea name="rom" size="1048576"> |
| 41458 | 45670 | <rom name="kendo rage (usa).sfc" size="1048576" crc="d1048918" sha1="1930e1f67f28afee0a666980ea1a018af9b77b6a" offset="0x000000" /> |
| 41459 | 45671 | </dataarea> |
| r21545 | r21546 | |
| 41468 | 45680 | <info name="release" value="19920428" /> |
| 41469 | 45681 | <info name="alt_title" value="拳闘王ワールドチャンピオン" /> |
| 41470 | 45682 | <part name="cart" interface="snes_cart"> |
| 45683 | ||
| 45684 | <feature name="slot" value="lorom" /> | |
| 41471 | 45685 | <dataarea name="rom" size="524288"> |
| 41472 | 45686 | <rom name="kentou ou world champion (japan).sfc" size="524288" crc="e8359cdb" sha1="e7d46120a5869955e5255c46fc34d379f1da9c4a" offset="0x000000" /> |
| 41473 | 45687 | </dataarea> |
| r21545 | r21546 | |
| 41483 | 45697 | <info name="alt_title" value="剣勇伝説 ヤイバ" /> |
| 41484 | 45698 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41485 | 45699 | <part name="cart" interface="snes_cart"> |
| 45700 | ||
| 45701 | <feature name="slot" value="lorom" /> | |
| 41486 | 45702 | <dataarea name="rom" size="1572864"> |
| 41487 | 45703 | <rom name="kenyuu densetsu yaiba (japan).sfc" size="1572864" crc="91fe7070" sha1="a3c391d3ae370467b8af9fd91a430e8b6098f9da" offset="0x000000" /> |
| 41488 | 45704 | </dataarea> |
| r21545 | r21546 | |
| 41499 | 45715 | <info name="release" value="19940325" /> |
| 41500 | 45716 | <info name="alt_title" value="けろけろけろっぴの冒険日記 眠れる森のけろりーぬ" /> |
| 41501 | 45717 | <part name="cart" interface="snes_cart"> |
| 45718 | ||
| 45719 | <feature name="slot" value="lorom" /> | |
| 41502 | 45720 | <dataarea name="rom" size="524288"> |
| 41503 | 45721 | <rom name="kero kero keroppi no bouken nikki - nemureru mori no keroleen (japan).sfc" size="524288" crc="c33c01c4" sha1="309460114502c0bc98bda97d0c61977e17dee8c3" offset="0x000000" /> |
| 41504 | 45722 | </dataarea> |
| r21545 | r21546 | |
| 41511 | 45729 | <publisher>Imagineer</publisher> |
| 41512 | 45730 | <sharedfeat name="compatibility" value="PAL"/> |
| 41513 | 45731 | <part name="cart" interface="snes_cart"> |
| 45732 | ||
| 45733 | <feature name="slot" value="lorom" /> | |
| 41514 | 45734 | <dataarea name="rom" size="524288"> |
| 41515 | 45735 | <rom name="kevin keegan's player manager (europe).sfc" size="524288" crc="fce7bade" sha1="e5c17afe16ff7571b2576bcce044362ab559ada7" offset="0x000000" /> |
| 41516 | 45736 | </dataarea> |
| r21545 | r21546 | |
| 41524 | 45744 | <year>1993</year> |
| 41525 | 45745 | <publisher>Imagineer</publisher> |
| 41526 | 45746 | <part name="cart" interface="snes_cart"> |
| 45747 | ||
| 45748 | <feature name="slot" value="lorom" /> | |
| 41527 | 45749 | <dataarea name="rom" size="524288"> |
| 41528 | 45750 | <rom name="kick off (europe).sfc" size="524288" crc="a1306f3b" sha1="5a7c0a88d439fdf5458e8ef4109b9f3ca75d9273" offset="0x000000" /> |
| 41529 | 45751 | </dataarea> |
| r21545 | r21546 | |
| 41537 | 45759 | <year>1994</year> |
| 41538 | 45760 | <publisher>Vic Tokai</publisher> |
| 41539 | 45761 | <part name="cart" interface="snes_cart"> |
| 45762 | ||
| 45763 | <feature name="slot" value="lorom" /> | |
| 41540 | 45764 | <dataarea name="rom" size="1048576"> |
| 41541 | 45765 | <rom name="kick off 3 - european challenge (europe) (beta).sfc" size="1048576" crc="ea93aa27" sha1="f54232a687288702559a6cb6f68d1196001fa7a3" offset="0x000000" /> |
| 41542 | 45766 | </dataarea> |
| r21545 | r21546 | |
| 41551 | 45775 | <publisher>Vic Tokai</publisher> |
| 41552 | 45776 | <sharedfeat name="compatibility" value="PAL"/> |
| 41553 | 45777 | <part name="cart" interface="snes_cart"> |
| 45778 | ||
| 45779 | <feature name="slot" value="lorom" /> | |
| 41554 | 45780 | <dataarea name="rom" size="1048576"> |
| 41555 | 45781 | <rom name="kick off 3 - european challenge (europe) (en,fr,de,es,it).sfc" size="1048576" crc="1ac7f523" sha1="7ab7898b0d00fa91e75365a060bd36ddba232f6a" offset="0x000000" /> |
| 41556 | 45782 | </dataarea> |
| r21545 | r21546 | |
| 41563 | 45789 | <publisher>Kemco</publisher> |
| 41564 | 45790 | <sharedfeat name="compatibility" value="PAL"/> |
| 41565 | 45791 | <part name="cart" interface="snes_cart"> |
| 45792 | ||
| 45793 | <feature name="slot" value="lorom" /> | |
| 41566 | 45794 | <dataarea name="rom" size="1048576"> |
| 41567 | 45795 | <rom name="kid klown in crazy chase (europe).sfc" size="1048576" crc="93af89c6" sha1="60c0a944a30aa7c601946b46c9c293dc15ff9f27" offset="0x000000" /> |
| 41568 | 45796 | </dataarea> |
| r21545 | r21546 | |
| 41575 | 45803 | <publisher>Kemco</publisher> |
| 41576 | 45804 | <info name="release" value="199409xx" /> |
| 41577 | 45805 | <part name="cart" interface="snes_cart"> |
| 45806 | ||
| 45807 | <feature name="slot" value="lorom" /> | |
| 41578 | 45808 | <dataarea name="rom" size="1048576"> |
| 41579 | 45809 | <rom name="kid klown in crazy chase (usa).sfc" size="1048576" crc="bd6c8ab1" sha1="eefeed2e27357ebd3d535194c16cd8045173b4ef" offset="0x000000" /> |
| 41580 | 45810 | </dataarea> |
| r21545 | r21546 | |
| 41589 | 45819 | <info name="release" value="19941021" /> |
| 41590 | 45820 | <info name="alt_title" value="キッドクラウンのクレイジーチェイス" /> |
| 41591 | 45821 | <part name="cart" interface="snes_cart"> |
| 45822 | ||
| 45823 | <feature name="slot" value="lorom" /> | |
| 41592 | 45824 | <dataarea name="rom" size="1048576"> |
| 41593 | 45825 | <rom name="kid klown no crazy chase (japan).sfc" size="1048576" crc="26e0d862" sha1="d0b7a53a35b42172b6a2eca09d56f82eea75074b" offset="0x000000" /> |
| 41594 | 45826 | </dataarea> |
| r21545 | r21546 | |
| 41603 | 45835 | <info name="release" value="19941227" /> |
| 41604 | 45836 | <info name="alt_title" value="機動武闘伝Gガンダム" /> |
| 41605 | 45837 | <part name="cart" interface="snes_cart"> |
| 45838 | ||
| 45839 | <feature name="slot" value="hirom" /> | |
| 41606 | 45840 | <dataarea name="rom" size="2097152"> |
| 41607 | 45841 | <rom name="kidou butouden g gundam (japan).sfc" size="2097152" crc="723d7b46" sha1="3e79d57a27e5333cd34ca74046e7f766938173ec" offset="0x000000" /> |
| 41608 | 45842 | </dataarea> |
| r21545 | r21546 | |
| 41617 | 45851 | <info name="release" value="19960301" /> |
| 41618 | 45852 | <info name="alt_title" value="機動戦士Zガンダム AWAY TO THE NEWTYPE" /> |
| 41619 | 45853 | <part name="cart" interface="snes_cart"> |
| 45854 | ||
| 45855 | <feature name="slot" value="lorom" /> | |
| 41620 | 45856 | <dataarea name="rom" size="3145728"> |
| 41621 | 45857 | <rom name="kidou senshi z gundam - away to the newtype (japan).sfc" size="3145728" crc="61abd015" sha1="e9de2af45a11a17a33b2fe436ee593f48ef9175f" offset="0x000000" /> |
| 41622 | 45858 | </dataarea> |
| r21545 | r21546 | |
| 41633 | 45869 | <info name="release" value="19921214" /> |
| 41634 | 45870 | <info name="alt_title" value="機動装甲ダイオン" /> |
| 41635 | 45871 | <part name="cart" interface="snes_cart"> |
| 45872 | ||
| 45873 | <feature name="slot" value="lorom" /> | |
| 41636 | 45874 | <dataarea name="rom" size="1048576"> |
| 41637 | 45875 | <rom name="kidou soukou dion (japan).sfc" size="1048576" crc="1e54f2c6" sha1="e98065e1dfc3e8ab1fc00f16ee90d4ea5a46d1bf" offset="0x000000" /> |
| 41638 | 45876 | </dataarea> |
| r21545 | r21546 | |
| 41647 | 45885 | <info name="release" value="19940422" /> |
| 41648 | 45886 | <info name="alt_title" value="機動警察パトレイバー" /> |
| 41649 | 45887 | <part name="cart" interface="snes_cart"> |
| 45888 | ||
| 45889 | <feature name="slot" value="lorom" /> | |
| 41650 | 45890 | <dataarea name="rom" size="1572864"> |
| 41651 | 45891 | <rom name="kidoukeisatsu patlabor (japan).sfc" size="1572864" crc="0bac88bb" sha1="a2bd5fdad41f4687b882c52c040226da0dfcf10e" offset="0x000000" /> |
| 41652 | 45892 | </dataarea> |
| r21545 | r21546 | |
| 41664 | 45904 | <info name="release" value="19921222" /> |
| 41665 | 45905 | <info name="alt_title" value="奇々怪界 謎の黒マント" /> |
| 41666 | 45906 | <part name="cart" interface="snes_cart"> |
| 45907 | ||
| 45908 | <feature name="slot" value="lorom" /> | |
| 41667 | 45909 | <dataarea name="rom" size="1048576"> |
| 41668 | 45910 | <rom name="kikikaikai - nazo no kuro manteau (japan).sfc" size="1048576" crc="1c57f2c6" sha1="9afc61ff13312112880d6d5854baa6b529e0f250" offset="0x000000" /> |
| 41669 | 45911 | </dataarea> |
| r21545 | r21546 | |
| 41678 | 45920 | <info name="release" value="19940617" /> |
| 41679 | 45921 | <info name="alt_title" value="奇々怪界 月夜草子" /> |
| 41680 | 45922 | <part name="cart" interface="snes_cart"> |
| 45923 | ||
| 45924 | <feature name="slot" value="lorom" /> | |
| 41681 | 45925 | <dataarea name="rom" size="1572864"> |
| 41682 | 45926 | <rom name="kikikaikai - tsukiyo soushi (japan).sfc" size="1572864" crc="5c971bed" sha1="ef721d912e8c56fc5f180cb996004ad8574a0f68" offset="0x000000" /> |
| 41683 | 45927 | </dataarea> |
| r21545 | r21546 | |
| 41692 | 45936 | <info name="release" value="19920731" /> |
| 41693 | 45937 | <info name="alt_title" value="機甲警察メタルジャック" /> |
| 41694 | 45938 | <part name="cart" interface="snes_cart"> |
| 45939 | ||
| 45940 | <feature name="slot" value="lorom" /> | |
| 41695 | 45941 | <dataarea name="rom" size="1048576"> |
| 41696 | 45942 | <rom name="kikou keisatsu metal jack (japan).sfc" size="1048576" crc="5577de70" sha1="0f8c662c012d866f42209b0ed66ce9722d689968" offset="0x000000" /> |
| 41697 | 45943 | </dataarea> |
| r21545 | r21546 | |
| 41706 | 45952 | <info name="release" value="19930219" /> |
| 41707 | 45953 | <info name="alt_title" value="喜国雅彦の雀闘士 銅鑼王" /> |
| 41708 | 45954 | <part name="cart" interface="snes_cart"> |
| 45955 | ||
| 45956 | <feature name="slot" value="lorom" /> | |
| 41709 | 45957 | <dataarea name="rom" size="1048576"> |
| 41710 | 45958 | <rom name="kikuni masahiko no jantoushi doraou (japan).sfc" size="1048576" crc="ef034532" sha1="79f39b6fd1685ceeb8ddc3a60af29c24767e05e9" offset="0x000000" /> |
| 41711 | 45959 | </dataarea> |
| r21545 | r21546 | |
| 41720 | 45968 | <info name="release" value="19931203" /> |
| 41721 | 45969 | <info name="alt_title" value="喜国雅彦の雀闘士 銅鑼王2" /> |
| 41722 | 45970 | <part name="cart" interface="snes_cart"> |
| 45971 | ||
| 45972 | <feature name="slot" value="lorom" /> | |
| 41723 | 45973 | <dataarea name="rom" size="1048576"> |
| 41724 | 45974 | <rom name="kikuni masahiko no jantoushi doraou 2 (japan).sfc" size="1048576" crc="c985925c" sha1="13f3cd38c5246bdd0f0bbbdbde83e7aa94384849" offset="0x000000" /> |
| 41725 | 45975 | </dataarea> |
| r21545 | r21546 | |
| 41731 | 45981 | <year>1995</year> |
| 41732 | 45982 | <publisher>Nintendo</publisher> |
| 41733 | 45983 | <part name="cart" interface="snes_cart"> |
| 45984 | ||
| 45985 | <feature name="slot" value="hirom" /> | |
| 41734 | 45986 | <dataarea name="rom" size="4194304"> |
| 41735 | 45987 | <rom name="killer instinct (usa) (beta).sfc" size="4194304" crc="0a2ef2b6" sha1="8028ef197b84f1722192a26779a265639facf970" offset="0x000000" /> |
| 41736 | 45988 | </dataarea> |
| r21545 | r21546 | |
| 41745 | 45997 | <publisher>Nintendo</publisher> |
| 41746 | 45998 | <info name="release" value="199508xx" /> |
| 41747 | 45999 | <part name="cart" interface="snes_cart"> |
| 46000 | ||
| 46001 | <feature name="slot" value="hirom" /> | |
| 41748 | 46002 | <dataarea name="rom" size="4194304"> |
| 41749 | 46003 | <rom name="killer instinct (usa) (rev 1).sfc" size="4194304" crc="09e9a04e" sha1="d31ae8e41c743c9ad8b6d43bbbbe660151f052df" offset="0x000000" /> |
| 41750 | 46004 | </dataarea> |
| r21545 | r21546 | |
| 41759 | 46013 | <info name="release" value="19950331" /> |
| 41760 | 46014 | <info name="alt_title" value="近代麻雀スペシャル" /> |
| 41761 | 46015 | <part name="cart" interface="snes_cart"> |
| 46016 | ||
| 46017 | <feature name="slot" value="lorom" /> | |
| 41762 | 46018 | <dataarea name="rom" size="1048576"> |
| 41763 | 46019 | <rom name="kindai mahjong special (japan).sfc" size="1048576" crc="7ee385a7" sha1="48b560c8c34d999d3dfc7d0606b02958b69f626c" offset="0x000000" /> |
| 41764 | 46020 | </dataarea> |
| r21545 | r21546 | |
| 41770 | 46026 | <year>1993</year> |
| 41771 | 46027 | <publisher>Jaleco</publisher> |
| 41772 | 46028 | <part name="cart" interface="snes_cart"> |
| 46029 | ||
| 46030 | <feature name="slot" value="lorom" /> | |
| 41773 | 46031 | <dataarea name="rom" size="524288"> |
| 41774 | 46032 | <rom name="king arthur's world (europe).sfc" size="524288" crc="a0972c36" sha1="78302947c76cf03449242223a24bbbd84fc5fe3f" offset="0x000000" /> |
| 41775 | 46033 | </dataarea> |
| r21545 | r21546 | |
| 41781 | 46039 | <year>1993</year> |
| 41782 | 46040 | <publisher>Jaleco</publisher> |
| 41783 | 46041 | <part name="cart" interface="snes_cart"> |
| 46042 | ||
| 46043 | <feature name="slot" value="lorom" /> | |
| 41784 | 46044 | <dataarea name="rom" size="524288"> |
| 41785 | 46045 | <rom name="king arthur's world (usa) (beta).sfc" size="524288" crc="cf00d401" sha1="6337842736b7bcbd22191d2a2664f802c1bf7b54" offset="0x000000" /> |
| 41786 | 46046 | </dataarea> |
| r21545 | r21546 | |
| 41795 | 46055 | <info name="release" value="19940304" /> |
| 41796 | 46056 | <info name="alt_title" value="ザ・キングオブドラゴンズ" /> |
| 41797 | 46057 | <part name="cart" interface="snes_cart"> |
| 46058 | ||
| 46059 | <feature name="slot" value="hirom" /> | |
| 41798 | 46060 | <dataarea name="rom" size="2097152"> |
| 41799 | 46061 | <rom name="king of dragons, the (japan).sfc" size="2097152" crc="68b09b12" sha1="8ea9cd119bb2b23ff1db2b64a06db31bae5eca09" offset="0x000000" /> |
| 41800 | 46062 | </dataarea> |
| r21545 | r21546 | |
| 41807 | 46069 | <publisher>Capcom</publisher> |
| 41808 | 46070 | <info name="release" value="199404xx" /> |
| 41809 | 46071 | <part name="cart" interface="snes_cart"> |
| 46072 | ||
| 46073 | <feature name="slot" value="hirom" /> | |
| 41810 | 46074 | <dataarea name="rom" size="2097152"> |
| 41811 | 46075 | <rom name="king of dragons, the (usa).sfc" size="2097152" crc="dd505df7" sha1="792355fb2ce50496b84760e3833662ca1c63cfc5" offset="0x000000" /> |
| 41812 | 46076 | </dataarea> |
| r21545 | r21546 | |
| 41821 | 46085 | <info name="release" value="19921228" /> |
| 41822 | 46086 | <info name="alt_title" value="ザ・キング・オブ・ラリー パリ―モスクワ―北京" /> |
| 41823 | 46087 | <part name="cart" interface="snes_cart"> |
| 46088 | ||
| 46089 | <feature name="slot" value="lorom" /> | |
| 41824 | 46090 | <dataarea name="rom" size="1048576"> |
| 41825 | 46091 | <rom name="king of rally, the (japan).sfc" size="1048576" crc="4fa380a4" sha1="210e88859fe969d0f3bb4264066604caf9ca4908" offset="0x000000" /> |
| 41826 | 46092 | </dataarea> |
| r21545 | r21546 | |
| 41832 | 46098 | <year>1992</year> |
| 41833 | 46099 | <publisher>Takara</publisher> |
| 41834 | 46100 | <part name="cart" interface="snes_cart"> |
| 46101 | ||
| 46102 | <feature name="slot" value="lorom" /> | |
| 41835 | 46103 | <dataarea name="rom" size="1048576"> |
| 41836 | 46104 | <rom name="king of the monsters (europe).sfc" size="1048576" crc="799b1787" sha1="f97f5c663d5d593eb862bd5f6b7120ee9a4a515e" offset="0x000000" /> |
| 41837 | 46105 | </dataarea> |
| r21545 | r21546 | |
| 41844 | 46112 | <publisher>Takara</publisher> |
| 41845 | 46113 | <info name="release" value="199210xx" /> |
| 41846 | 46114 | <part name="cart" interface="snes_cart"> |
| 46115 | ||
| 46116 | <feature name="slot" value="lorom" /> | |
| 41847 | 46117 | <dataarea name="rom" size="1048576"> |
| 41848 | 46118 | <rom name="king of the monsters (usa).sfc" size="1048576" crc="c285c7ff" sha1="02e05bb0d95573c75d5c860c251ef4e8582c1d9a" offset="0x000000" /> |
| 41849 | 46119 | </dataarea> |
| r21545 | r21546 | |
| 41856 | 46126 | <publisher>Takara</publisher> |
| 41857 | 46127 | <info name="release" value="199406xx" /> |
| 41858 | 46128 | <part name="cart" interface="snes_cart"> |
| 46129 | ||
| 46130 | <feature name="slot" value="hirom" /> | |
| 41859 | 46131 | <dataarea name="rom" size="2097152"> |
| 41860 | 46132 | <rom name="king of the monsters 2 (usa).sfc" size="2097152" crc="0b677a37" sha1="27494e5feb4fd0a6bb407a58b68f8b98fa07810b" offset="0x000000" /> |
| 41861 | 46133 | </dataarea> |
| r21545 | r21546 | |
| 41870 | 46142 | <info name="release" value="19940318" /> |
| 41871 | 46143 | <info name="alt_title" value="きんぎょ注意報! とびだせ!ゲーム学園" /> |
| 41872 | 46144 | <part name="cart" interface="snes_cart"> |
| 46145 | ||
| 46146 | <feature name="slot" value="hirom" /> | |
| 41873 | 46147 | <dataarea name="rom" size="2097152"> |
| 41874 | 46148 | <rom name="kingyo chuuihou! - tobidase! game gakuen (japan).sfc" size="2097152" crc="c819109c" sha1="4d1dd9561323f42ee3505aa4301d9d510cac6908" offset="0x000000" /> |
| 41875 | 46149 | </dataarea> |
| r21545 | r21546 | |
| 41884 | 46158 | <info name="release" value="19920821" /> |
| 41885 | 46159 | <info name="alt_title" value="キン肉マン ダーティー・チャレンジャー" /> |
| 41886 | 46160 | <part name="cart" interface="snes_cart"> |
| 46161 | ||
| 46162 | <feature name="slot" value="lorom" /> | |
| 41887 | 46163 | <dataarea name="rom" size="524288"> |
| 41888 | 46164 | <rom name="kinnikuman - dirty challenger (japan).sfc" size="524288" crc="5c869ca5" sha1="961b0b1f53c92bb1d62ff1c0440dcad5e4f5e157" offset="0x000000" /> |
| 41889 | 46165 | </dataarea> |
| r21545 | r21546 | |
| 41899 | 46175 | <info name="alt_title" value="カービィのきらきらきっす" /> |
| 41900 | 46176 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41901 | 46177 | <part name="cart" interface="snes_cart"> |
| 46178 | ||
| 46179 | <feature name="slot" value="lorom" /> | |
| 41902 | 46180 | <dataarea name="rom" size="2097152"> |
| 41903 | 46181 | <rom name="kirby no kirakira kids (japan).sfc" size="2097152" crc="035265bf" sha1="dc252753d4964516419ca981d59a8e704ba41842" offset="0x000000" /> |
| 41904 | 46182 | </dataarea> |
| r21545 | r21546 | |
| 41914 | 46192 | <info name="release" value="199502xx" /> |
| 41915 | 46193 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41916 | 46194 | <part name="cart" interface="snes_cart"> |
| 46195 | ||
| 46196 | <feature name="slot" value="lorom" /> | |
| 41917 | 46197 | <dataarea name="rom" size="1048576"> |
| 41918 | 46198 | <rom name="kirby's dream course (usa).sfc" size="1048576" crc="df8153d9" sha1="e1f29ad02981ec84156b68d4fb95b2182dc8cd82" offset="0x000000" /> |
| 41919 | 46199 | </dataarea> |
| r21545 | r21546 | |
| 41929 | 46209 | <info name="release" value="199711xx" /> |
| 41930 | 46210 | <part name="cart" interface="snes_cart"> |
| 41931 | 46211 | <feature name="enhancement" value="SA1" /> |
| 46212 | ||
| 46213 | <feature name="slot" value="lorom_sa1" /> | |
| 41932 | 46214 | <dataarea name="rom" size="4194304"> |
| 41933 | 46215 | <rom name="kirby's dream land 3 (usa).sfc" size="4194304" crc="ec8a48f6" sha1="12aff7538f43641a1e2bf424593df5b49fe150f6" offset="0x000000" /> |
| 41934 | 46216 | </dataarea> |
| r21545 | r21546 | |
| 41943 | 46225 | <publisher>Nintendo</publisher> |
| 41944 | 46226 | <sharedfeat name="compatibility" value="PAL"/> |
| 41945 | 46227 | <part name="cart" interface="snes_cart"> |
| 46228 | ||
| 46229 | <feature name="slot" value="lorom" /> | |
| 41946 | 46230 | <dataarea name="rom" size="1048576"> |
| 41947 | 46231 | <rom name="kirby's ghost trap (europe).sfc" size="1048576" crc="dd0d08be" sha1="51118691a6e5761f9031d50d00ef7b8510a899ea" offset="0x000000" /> |
| 41948 | 46232 | </dataarea> |
| r21545 | r21546 | |
| 41958 | 46242 | <info name="alt_title" value="鬼神童子 ゼンキ 烈闘雷伝" /> |
| 41959 | 46243 | <sharedfeat name="compatibility" value="NTSC"/> |
| 41960 | 46244 | <part name="cart" interface="snes_cart"> |
| 46245 | ||
| 46246 | <feature name="slot" value="hirom" /> | |
| 41961 | 46247 | <dataarea name="rom" size="2097152"> |
| 41962 | 46248 | <rom name="kishin douji zenki - battle raiden (japan).sfc" size="2097152" crc="0becfc92" sha1="7706caf2c6b6f36ff7cad5cbdde0a1b6ec03cae0" offset="0x000000" /> |
| 41963 | 46249 | </dataarea> |
| r21545 | r21546 | |
| 41972 | 46258 | <info name="release" value="19951124" /> |
| 41973 | 46259 | <info name="alt_title" value="鬼神童子 ゼンキ 電影雷舞" /> |
| 41974 | 46260 | <part name="cart" interface="snes_cart"> |
| 46261 | ||
| 46262 | <feature name="slot" value="hirom" /> | |
| 41975 | 46263 | <dataarea name="rom" size="2097152"> |
| 41976 | 46264 | <rom name="kishin douji zenki - denei raibu (japan).sfc" size="2097152" crc="068cc21b" sha1="9193f29c34dff2d7045120f9402dc21204cedc78" offset="0x000000" /> |
| 41977 | 46265 | </dataarea> |
| r21545 | r21546 | |
| 41986 | 46274 | <info name="release" value="19960223" /> |
| 41987 | 46275 | <info name="alt_title" value="鬼神童子 ゼンキ 天地鳴動" /> |
| 41988 | 46276 | <part name="cart" interface="snes_cart"> |
| 46277 | ||
| 46278 | <feature name="slot" value="hirom" /> | |
| 41989 | 46279 | <dataarea name="rom" size="2097152"> |
| 41990 | 46280 | <rom name="kishin douji zenki - tenchi meidou (japan).sfc" size="2097152" crc="d910990c" sha1="f6c91cf1062150e4ca9e98e07ff9d09a9516c425" offset="0x000000" /> |
| 41991 | 46281 | </dataarea> |
| r21545 | r21546 | |
| 41997 | 46287 | <year>1994</year> |
| 41998 | 46288 | <publisher>Banpresto</publisher> |
| 41999 | 46289 | <part name="cart" interface="snes_cart"> |
| 46290 | ||
| 46291 | <feature name="slot" value="hirom" /> | |
| 42000 | 46292 | <dataarea name="rom" size="1572864"> |
| 42001 | 46293 | <rom name="kishin kourinden oni (japan) (beta).sfc" size="1572864" crc="5a137504" sha1="254be6420472624b0a97cb4b5ab2c93c940d2614" offset="0x000000" /> |
| 42002 | 46294 | </dataarea> |
| r21545 | r21546 | |
| 42014 | 46306 | <info name="alt_title" value="キテレツ大百科 超時空すごろく" /> |
| 42015 | 46307 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42016 | 46308 | <part name="cart" interface="snes_cart"> |
| 46309 | ||
| 46310 | <feature name="slot" value="lorom" /> | |
| 42017 | 46311 | <dataarea name="rom" size="1310720"> |
| 42018 | 46312 | <rom name="kiteretsu daihyakka - choujikuu sugoroku (japan).sfc" size="1310720" crc="55219ca3" sha1="d85a0b67b45f51204209a8fef38f458998fb5535" offset="0x000000" /> |
| 42019 | 46313 | </dataarea> |
| r21545 | r21546 | |
| 42027 | 46321 | <year>1994</year> |
| 42028 | 46322 | <publisher>Capcom</publisher> |
| 42029 | 46323 | <part name="cart" interface="snes_cart"> |
| 46324 | ||
| 46325 | <feature name="slot" value="lorom" /> | |
| 42030 | 46326 | <dataarea name="rom" size="1572864"> |
| 42031 | 46327 | <rom name="knights of the round (europe).sfc" size="1572864" crc="9b40082d" sha1="a23b5d5e3f4ee5832fc5c3f35d3e5f4889d06237" offset="0x000000" /> |
| 42032 | 46328 | </dataarea> |
| r21545 | r21546 | |
| 42041 | 46337 | <info name="release" value="19940610" /> |
| 42042 | 46338 | <info name="alt_title" value="ナイツ オブ ザ ラウンド" /> |
| 42043 | 46339 | <part name="cart" interface="snes_cart"> |
| 46340 | ||
| 46341 | <feature name="slot" value="lorom" /> | |
| 42044 | 46342 | <dataarea name="rom" size="1572864"> |
| 42045 | 46343 | <rom name="knights of the round (japan).sfc" size="1572864" crc="f27c9c29" sha1="8761c32bac934f8a2b2bf78ae98094b6bc418b32" offset="0x000000" /> |
| 42046 | 46344 | </dataarea> |
| r21545 | r21546 | |
| 42054 | 46352 | <info name="release" value="199404xx" /> |
| 42055 | 46353 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42056 | 46354 | <part name="cart" interface="snes_cart"> |
| 46355 | ||
| 46356 | <feature name="slot" value="lorom" /> | |
| 42057 | 46357 | <dataarea name="rom" size="1572864"> |
| 42058 | 46358 | <rom name="knights of the round (usa).sfc" size="1572864" crc="aaa82126" sha1="dd0b603b51e9b8d78af67696e0e0ea8f0ab9ccf8" offset="0x000000" /> |
| 42059 | 46359 | </dataarea> |
| r21545 | r21546 | |
| 42068 | 46368 | <info name="release" value="19951102" /> |
| 42069 | 46369 | <info name="alt_title" value="紺碧の艦隊" /> |
| 42070 | 46370 | <part name="cart" interface="snes_cart"> |
| 46371 | ||
| 46372 | <feature name="slot" value="lorom" /> | |
| 42071 | 46373 | <dataarea name="rom" size="1572864"> |
| 42072 | 46374 | <rom name="konpeki no kantai (japan).sfc" size="1572864" crc="e57583ef" sha1="04eb58b37a23e610f1f220ccfac33ef1b26e02ed" offset="0x000000" /> |
| 42073 | 46375 | </dataarea> |
| r21545 | r21546 | |
| 42084 | 46386 | <info name="release" value="19950714" /> |
| 42085 | 46387 | <info name="alt_title" value="攻略カジノバー" /> |
| 42086 | 46388 | <part name="cart" interface="snes_cart"> |
| 46389 | ||
| 46390 | <feature name="slot" value="lorom" /> | |
| 42087 | 46391 | <dataarea name="rom" size="1048576"> |
| 42088 | 46392 | <rom name="kouryaku casino bar (japan).sfc" size="1048576" crc="13454204" sha1="4717ab83c3ef0ee0d0b4f134ce69e301f3c0a122" offset="0x000000" /> |
| 42089 | 46393 | </dataarea> |
| r21545 | r21546 | |
| 42098 | 46402 | <info name="release" value="19951222" /> |
| 42099 | 46403 | <info name="alt_title" value="黄龍の耳" /> |
| 42100 | 46404 | <part name="cart" interface="snes_cart"> |
| 46405 | ||
| 46406 | <feature name="slot" value="lorom" /> | |
| 42101 | 46407 | <dataarea name="rom" size="1048576"> |
| 42102 | 46408 | <rom name="kouryuu no mimi (japan).sfc" size="1048576" crc="89276c88" sha1="31cfb40be76291c33f124b2ac3c0f65f976c8be7" offset="0x000000" /> |
| 42103 | 46409 | </dataarea> |
| r21545 | r21546 | |
| 42112 | 46418 | <info name="release" value="19920619" /> |
| 42113 | 46419 | <info name="alt_title" value="甲子園2" /> |
| 42114 | 46420 | <part name="cart" interface="snes_cart"> |
| 46421 | ||
| 46422 | <feature name="slot" value="lorom" /> | |
| 42115 | 46423 | <dataarea name="rom" size="1048576"> |
| 42116 | 46424 | <rom name="koushien 2 (japan).sfc" size="1048576" crc="767164dd" sha1="ab1f6da568d8592a933578e85f7286bf161cbec2" offset="0x000000" /> |
| 42117 | 46425 | </dataarea> |
| r21545 | r21546 | |
| 42128 | 46436 | <info name="release" value="19940729" /> |
| 42129 | 46437 | <info name="alt_title" value="甲子園3" /> |
| 42130 | 46438 | <part name="cart" interface="snes_cart"> |
| 46439 | ||
| 46440 | <feature name="slot" value="lorom" /> | |
| 42131 | 46441 | <dataarea name="rom" size="1572864"> |
| 42132 | 46442 | <rom name="koushien 3 (japan).sfc" size="1572864" crc="3f18d0cc" sha1="6dad546d99cd73013ba86d2f9597d711baca9c89" offset="0x000000" /> |
| 42133 | 46443 | </dataarea> |
| r21545 | r21546 | |
| 42144 | 46454 | <info name="release" value="19950714" /> |
| 42145 | 46455 | <info name="alt_title" value="甲子園4" /> |
| 42146 | 46456 | <part name="cart" interface="snes_cart"> |
| 46457 | ||
| 46458 | <feature name="slot" value="lorom" /> | |
| 42147 | 46459 | <dataarea name="rom" size="2097152"> |
| 42148 | 46460 | <rom name="koushien 4 (japan).sfc" size="2097152" crc="57753105" sha1="1a7e9bdbc1580b21766456170f4e9eeab03e3333" offset="0x000000" /> |
| 42149 | 46461 | </dataarea> |
| r21545 | r21546 | |
| 42161 | 46473 | <info name="release" value="19930219" /> |
| 42162 | 46474 | <info name="alt_title" value="鋼鉄の騎士" /> |
| 42163 | 46475 | <part name="cart" interface="snes_cart"> |
| 46476 | ||
| 46477 | <feature name="slot" value="lorom" /> | |
| 42164 | 46478 | <dataarea name="rom" size="1048576"> |
| 42165 | 46479 | <rom name="koutetsu no kishi (japan).sfc" size="1048576" crc="d66b9ae5" sha1="adabeb096ed522b1f3c60738b2c132bbe4e884f2" offset="0x000000" /> |
| 42166 | 46480 | </dataarea> |
| r21545 | r21546 | |
| 42178 | 46492 | <info name="alt_title" value="鋼鉄の騎士2 砂漠のロンメル軍団" /> |
| 42179 | 46493 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42180 | 46494 | <part name="cart" interface="snes_cart"> |
| 46495 | ||
| 46496 | <feature name="slot" value="lorom" /> | |
| 42181 | 46497 | <dataarea name="rom" size="1572864"> |
| 42182 | 46498 | <rom name="koutetsu no kishi 2 - sabaku no rommel gundan (japan).sfc" size="1572864" crc="9d5ea7f5" sha1="e84f72b99d816ee28c5bc68d41bcd909871de7f6" offset="0x000000" /> |
| 42183 | 46499 | </dataarea> |
| r21545 | r21546 | |
| 42195 | 46511 | <info name="alt_title" value="鋼鉄の騎士3 -激突ヨーロッパ戦線 -" /> |
| 42196 | 46512 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42197 | 46513 | <part name="cart" interface="snes_cart"> |
| 46514 | ||
| 46515 | <feature name="slot" value="lorom" /> | |
| 42198 | 46516 | <dataarea name="rom" size="1572864"> |
| 42199 | 46517 | <rom name="koutetsu no kishi 3 - gekitotsu europe sensen (japan).sfc" size="1572864" crc="d889dbdf" sha1="72b507358d21eb9a95119c2b2fb41eaaf72f5c2b" offset="0x000000" /> |
| 42200 | 46518 | </dataarea> |
| r21545 | r21546 | |
| 42211 | 46529 | <info name="release" value="19930129" /> |
| 42212 | 46530 | <info name="alt_title" value="クリスティーワールド" /> |
| 42213 | 46531 | <part name="cart" interface="snes_cart"> |
| 46532 | ||
| 46533 | <feature name="slot" value="lorom" /> | |
| 42214 | 46534 | <dataarea name="rom" size="524288"> |
| 42215 | 46535 | <rom name="krusty world (japan).sfc" size="524288" crc="dee4bcb3" sha1="f04315cecf1954072c5749342fa2d2dbe4416e75" offset="0x000000" /> |
| 42216 | 46536 | </dataarea> |
| r21545 | r21546 | |
| 42222 | 46542 | <year>1992</year> |
| 42223 | 46543 | <publisher>Acclaim Entertainment</publisher> |
| 42224 | 46544 | <part name="cart" interface="snes_cart"> |
| 46545 | ||
| 46546 | <feature name="slot" value="lorom" /> | |
| 42225 | 46547 | <dataarea name="rom" size="524288"> |
| 42226 | 46548 | <rom name="krusty's super fun house (europe) (rev 1).sfc" size="524288" crc="f605a5e4" sha1="b5dffb0cb1a890b7441acc58da84ec9b4322ccc2" offset="0x000000" /> |
| 42227 | 46549 | </dataarea> |
| r21545 | r21546 | |
| 42233 | 46555 | <year>1992</year> |
| 42234 | 46556 | <publisher>Acclaim Entertainment</publisher> |
| 42235 | 46557 | <part name="cart" interface="snes_cart"> |
| 46558 | ||
| 46559 | <feature name="slot" value="lorom" /> | |
| 42236 | 46560 | <dataarea name="rom" size="524288"> |
| 42237 | 46561 | <rom name="krusty's super fun house (europe).sfc" size="524288" crc="fd44df1f" sha1="ed52dbb46d9d9602f870cee9f004ee42cdc9fa26" offset="0x000000" /> |
| 42238 | 46562 | </dataarea> |
| r21545 | r21546 | |
| 42245 | 46569 | <publisher>Acclaim Entertainment</publisher> |
| 42246 | 46570 | <info name="release" value="199206xx" /> |
| 42247 | 46571 | <part name="cart" interface="snes_cart"> |
| 46572 | ||
| 46573 | <feature name="slot" value="lorom" /> | |
| 42248 | 46574 | <dataarea name="rom" size="524288"> |
| 42249 | 46575 | <rom name="krusty's super fun house (usa).sfc" size="524288" crc="5fd03cac" sha1="94b7b3b7d37059ba5182fbbd24dc8a44c8ca6f23" offset="0x000000" /> |
| 42250 | 46576 | </dataarea> |
| r21545 | r21546 | |
| 42259 | 46585 | <info name="release" value="19940527" /> |
| 42260 | 46586 | <info name="alt_title" value="くにおのおでん" /> |
| 42261 | 46587 | <part name="cart" interface="snes_cart"> |
| 46588 | ||
| 46589 | <feature name="slot" value="lorom" /> | |
| 42262 | 46590 | <dataarea name="rom" size="524288"> |
| 42263 | 46591 | <rom name="kunio no oden (japan).sfc" size="524288" crc="d8939a59" sha1="9a037792b793011c259b88685502d34b3a8a5d85" offset="0x000000" /> |
| 42264 | 46592 | </dataarea> |
| r21545 | r21546 | |
| 42273 | 46601 | <info name="release" value="19930806" /> |
| 42274 | 46602 | <info name="alt_title" value="くにおくんのドッジボールだよ 全員集合!" /> |
| 42275 | 46603 | <part name="cart" interface="snes_cart"> |
| 46604 | ||
| 46605 | <feature name="slot" value="lorom" /> | |
| 42276 | 46606 | <dataarea name="rom" size="1572864"> |
| 42277 | 46607 | <rom name="kunio-kun no dodge ball dayo zenin shuugou! (japan).sfc" size="1572864" crc="7bf62174" sha1="3474ca5cc8af0f73faca4fc8c83c5ab1eaf62031" offset="0x000000" /> |
| 42278 | 46608 | </dataarea> |
| r21545 | r21546 | |
| 42290 | 46620 | <part name="cart" interface="snes_cart"> |
| 42291 | 46621 | <feature name="cart_model" value="SHVC-006" /> |
| 42292 | 46622 | <feature name="cart_back_label" value="920214" /> |
| 46623 | ||
| 46624 | <feature name="slot" value="lorom" /> | |
| 42293 | 46625 | <dataarea name="rom" size="524288"> |
| 42294 | 46626 | <rom name="kunio-kun no dodge ball dayo zenin shuugou! - tournament special (japan).sfc" size="524288" crc="b267576d" sha1="33258f1a9ba8e498de99c4656eb49565621b3531" offset="0x000000" /> |
| 42295 | 46627 | </dataarea> |
| r21545 | r21546 | |
| 42306 | 46638 | <info name="release" value="19960628" /> |
| 42307 | 46639 | <info name="alt_title" value="空想科学世界 ガリバーボーイ" /> |
| 42308 | 46640 | <part name="cart" interface="snes_cart"> |
| 46641 | ||
| 46642 | <feature name="slot" value="lorom" /> | |
| 42309 | 46643 | <dataarea name="rom" size="1572864"> |
| 42310 | 46644 | <rom name="kuusou kagaku sekai gulliver boy (japan).sfc" size="1572864" crc="f3f8a200" sha1="540fcb3619298945fe3ec08f1b32e936c830a97c" offset="0x000000" /> |
| 42311 | 46645 | </dataarea> |
| r21545 | r21546 | |
| 42320 | 46654 | <publisher>Williams Entertainment</publisher> |
| 42321 | 46655 | <info name="release" value="199504xx" /> |
| 42322 | 46656 | <part name="cart" interface="snes_cart"> |
| 46657 | ||
| 46658 | <feature name="slot" value="hirom" /> | |
| 42323 | 46659 | <dataarea name="rom" size="3145728"> |
| 42324 | 46660 | <rom name="kyle petty's no fear racing (usa).sfc" size="3145728" crc="aee90a85" sha1="458337dc717df640ff5d8aa377c8e12c73f9a02e" offset="0x000000" /> |
| 42325 | 46661 | </dataarea> |
| r21545 | r21546 | |
| 42335 | 46671 | <info name="alt_title" value="旧約・女神転生 女神転生I, 女神転生II" /> |
| 42336 | 46672 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42337 | 46673 | <part name="cart" interface="snes_cart"> |
| 46674 | ||
| 46675 | <feature name="slot" value="lorom" /> | |
| 42338 | 46676 | <dataarea name="rom" size="2097152"> |
| 42339 | 46677 | <rom name="kyuuyaku megami tensei (japan).sfc" size="2097152" crc="c8d286c9" sha1="827f6e0534e2317e3348ce76bd47bec8691b3563" offset="0x000000" /> |
| 42340 | 46678 | </dataarea> |
| r21545 | r21546 | |
| 42351 | 46689 | <info name="release" value="19950421" /> |
| 42352 | 46690 | <info name="alt_title" value="真・聖刻" /> |
| 42353 | 46691 | <part name="cart" interface="snes_cart"> |
| 46692 | ||
| 46693 | <feature name="slot" value="hirom" /> | |
| 42354 | 46694 | <dataarea name="rom" size="1572864"> |
| 42355 | 46695 | <rom name="la wares (japan).sfc" size="1572864" crc="866a4bee" sha1="8b79a4633ee9d624680f0594492740a48b7b56d5" offset="0x000000" /> |
| 42356 | 46696 | </dataarea> |
| r21545 | r21546 | |
| 42367 | 46707 | <info name="release" value="19950401" /> |
| 42368 | 46708 | <info name="alt_title" value="レディストーカー ~過去からの挑 戦~" /> |
| 42369 | 46709 | <part name="cart" interface="snes_cart"> |
| 46710 | ||
| 46711 | <feature name="slot" value="hirom" /> | |
| 42370 | 46712 | <dataarea name="rom" size="2621440"> |
| 42371 | 46713 | <rom name="lady stalker - kako kara no chousen (japan).sfc" size="2621440" crc="4390d719" sha1="fdf42f544af6bfb45d82556b62253f0f81cc6ba9" offset="0x000000" /> |
| 42372 | 46714 | </dataarea> |
| r21545 | r21546 | |
| 42380 | 46722 | <year>1991</year> |
| 42381 | 46723 | <publisher>Kemco</publisher> |
| 42382 | 46724 | <part name="cart" interface="snes_cart"> |
| 46725 | ||
| 46726 | <feature name="slot" value="lorom" /> | |
| 42383 | 46727 | <dataarea name="rom" size="1048576"> |
| 42384 | 46728 | <rom name="lagoon (europe).sfc" size="1048576" crc="840d0c53" sha1="1dd1600c9ec94e114317e6f2306a1f651a30d750" offset="0x000000" /> |
| 42385 | 46729 | </dataarea> |
| r21545 | r21546 | |
| 42393 | 46737 | <year>1991</year> |
| 42394 | 46738 | <publisher>Kemco</publisher> |
| 42395 | 46739 | <part name="cart" interface="snes_cart"> |
| 46740 | ||
| 46741 | <feature name="slot" value="lorom" /> | |
| 42396 | 46742 | <dataarea name="rom" size="1048576"> |
| 42397 | 46743 | <rom name="lagoon (germany).sfc" size="1048576" crc="b24f5c0b" sha1="05e48a5916b5c8d0e4f99fa18866ab1db1454615" offset="0x000000" /> |
| 42398 | 46744 | </dataarea> |
| r21545 | r21546 | |
| 42409 | 46755 | <info name="release" value="19911213" /> |
| 42410 | 46756 | <info name="alt_title" value="ラグーン" /> |
| 42411 | 46757 | <part name="cart" interface="snes_cart"> |
| 46758 | ||
| 46759 | <feature name="slot" value="lorom" /> | |
| 42412 | 46760 | <dataarea name="rom" size="1048576"> |
| 42413 | 46761 | <rom name="lagoon (japan).sfc" size="1048576" crc="6f2015fb" sha1="93cb073f0d63026067c4fda11889b1abe4e1cb22" offset="0x000000" /> |
| 42414 | 46762 | </dataarea> |
| r21545 | r21546 | |
| 42423 | 46771 | <publisher>Kemco</publisher> |
| 42424 | 46772 | <info name="release" value="199112xx" /> |
| 42425 | 46773 | <part name="cart" interface="snes_cart"> |
| 46774 | ||
| 46775 | <feature name="slot" value="lorom" /> | |
| 42426 | 46776 | <dataarea name="rom" size="1048576"> |
| 42427 | 46777 | <rom name="lagoon (usa).sfc" size="1048576" crc="d2554270" sha1="416aad89d76d4a74e2db985db1aee3a50dbafec8" offset="0x000000" /> |
| 42428 | 46778 | </dataarea> |
| r21545 | r21546 | |
| 42437 | 46787 | <publisher>Titus</publisher> |
| 42438 | 46788 | <info name="release" value="199311xx" /> |
| 42439 | 46789 | <part name="cart" interface="snes_cart"> |
| 46790 | ||
| 46791 | <feature name="slot" value="lorom" /> | |
| 42440 | 46792 | <dataarea name="rom" size="524288"> |
| 42441 | 46793 | <rom name="lamborghini - american challenge (usa).sfc" size="524288" crc="d2fb701b" sha1="62afa5e2bd795c9b205421e9b50db175bc04b527" offset="0x000000" /> |
| 42442 | 46794 | </dataarea> |
| r21545 | r21546 | |
| 42451 | 46803 | <info name="release" value="19950630" /> |
| 42452 | 46804 | <info name="alt_title" value="デア ラングリッサー" /> |
| 42453 | 46805 | <part name="cart" interface="snes_cart"> |
| 46806 | ||
| 46807 | <feature name="slot" value="lorom" /> | |
| 42454 | 46808 | <dataarea name="rom" size="2097152"> |
| 42455 | 46809 | <rom name="langrisser, der (japan) (rev 1).sfc" size="2097152" crc="35f9eecc" sha1="e2cb4935cfb5b442928ecad43da8b59ee5b159e4" offset="0x000000" /> |
| 42456 | 46810 | </dataarea> |
| r21545 | r21546 | |
| 42467 | 46821 | <info name="release" value="19950714" /> |
| 42468 | 46822 | <info name="alt_title" value="ラプラスの魔" /> |
| 42469 | 46823 | <part name="cart" interface="snes_cart"> |
| 46824 | ||
| 46825 | <feature name="slot" value="lorom" /> | |
| 42470 | 46826 | <dataarea name="rom" size="2097152"> |
| 42471 | 46827 | <rom name="laplace no ma (japan).sfc" size="2097152" crc="49c4cc15" sha1="3386462d9a7670f94bcbace6c19adc1ff64c1575" offset="0x000000" /> |
| 42472 | 46828 | </dataarea> |
| r21545 | r21546 | |
| 42484 | 46840 | <info name="alt_title" value="ラリー・ニクソン スーパー・バス・フィッシング" /> |
| 42485 | 46841 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42486 | 46842 | <part name="cart" interface="snes_cart"> |
| 46843 | ||
| 46844 | <feature name="slot" value="hirom" /> | |
| 42487 | 46845 | <dataarea name="rom" size="1572864"> |
| 42488 | 46846 | <rom name="larry nixon's super bass fishing (japan).sfc" size="1572864" crc="e190b880" sha1="fef69d924e56a33b31e2e7b69a299054ad8c35d3" offset="0x000000" /> |
| 42489 | 46847 | </dataarea> |
| r21545 | r21546 | |
| 42497 | 46855 | <year>1993</year> |
| 42498 | 46856 | <publisher>Sony Imagesoft</publisher> |
| 42499 | 46857 | <part name="cart" interface="snes_cart"> |
| 46858 | ||
| 46859 | <feature name="slot" value="lorom" /> | |
| 42500 | 46860 | <dataarea name="rom" size="1048576"> |
| 42501 | 46861 | <rom name="last action hero (europe).sfc" size="1048576" crc="91633d95" sha1="74adbac06fe174fd5876db89c4ec5738e4dc90ad" offset="0x000000" /> |
| 42502 | 46862 | </dataarea> |
| r21545 | r21546 | |
| 42509 | 46869 | <publisher>Sony Imagesoft</publisher> |
| 42510 | 46870 | <info name="release" value="199310xx" /> |
| 42511 | 46871 | <part name="cart" interface="snes_cart"> |
| 46872 | ||
| 46873 | <feature name="slot" value="lorom" /> | |
| 42512 | 46874 | <dataarea name="rom" size="1048576"> |
| 42513 | 46875 | <rom name="last action hero (usa).sfc" size="1048576" crc="88017df9" sha1="099bf2ea5dd17c52621c4558d89a4da0593cf5de" offset="0x000000" /> |
| 42514 | 46876 | </dataarea> |
| r21545 | r21546 | |
| 42523 | 46885 | <info name="release" value="19941202" /> |
| 42524 | 46886 | <info name="alt_title" value="ザ・ラストバトル" /> |
| 42525 | 46887 | <part name="cart" interface="snes_cart"> |
| 46888 | ||
| 46889 | <feature name="slot" value="lorom" /> | |
| 42526 | 46890 | <dataarea name="rom" size="2097152"> |
| 42527 | 46891 | <rom name="last battle, the (japan).sfc" size="2097152" crc="200ec9c8" sha1="2474c7aa8451d51784a3b852b9806495b4147cfb" offset="0x000000" /> |
| 42528 | 46892 | </dataarea> |
| r21545 | r21546 | |
| 42536 | 46900 | <year>1993</year> |
| 42537 | 46901 | <publisher>T*HQ</publisher> |
| 42538 | 46902 | <part name="cart" interface="snes_cart"> |
| 46903 | ||
| 46904 | <feature name="slot" value="lorom" /> | |
| 42539 | 46905 | <dataarea name="rom" size="1048576"> |
| 42540 | 46906 | <rom name="lawnmower man, the (europe).sfc" size="1048576" crc="1a97c479" sha1="407b621c92ba91f9d80dcc4a6d469b9edf8729b6" offset="0x000000" /> |
| 42541 | 46907 | </dataarea> |
| r21545 | r21546 | |
| 42547 | 46913 | <year>1993</year> |
| 42548 | 46914 | <publisher>T*HQ</publisher> |
| 42549 | 46915 | <part name="cart" interface="snes_cart"> |
| 46916 | ||
| 46917 | <feature name="slot" value="lorom" /> | |
| 42550 | 46918 | <dataarea name="rom" size="1048576"> |
| 42551 | 46919 | <rom name="lawnmower man, the (usa) (beta).sfc" size="1048576" crc="750f8068" sha1="99678d41077573fbe99e5657c0cb784a73888332" offset="0x000000" /> |
| 42552 | 46920 | </dataarea> |
| r21545 | r21546 | |
| 42559 | 46927 | <publisher>T*HQ</publisher> |
| 42560 | 46928 | <info name="release" value="199311xx" /> |
| 42561 | 46929 | <part name="cart" interface="snes_cart"> |
| 46930 | ||
| 46931 | <feature name="slot" value="lorom" /> | |
| 42562 | 46932 | <dataarea name="rom" size="1048576"> |
| 42563 | 46933 | <rom name="lawnmower man, the (usa).sfc" size="1048576" crc="2736b607" sha1="6d6064594b3f9144cb5bc4310946c08c2de7f635" offset="0x000000" /> |
| 42564 | 46934 | </dataarea> |
| r21545 | r21546 | |
| 42573 | 46943 | <info name="release" value="19930226" /> |
| 42574 | 46944 | <info name="alt_title" value="リーディングカンパニー" /> |
| 42575 | 46945 | <part name="cart" interface="snes_cart"> |
| 46946 | ||
| 46947 | <feature name="slot" value="lorom" /> | |
| 42576 | 46948 | <dataarea name="rom" size="1048576"> |
| 42577 | 46949 | <rom name="leading company (japan).sfc" size="1048576" crc="a931c7c9" sha1="7eb0b5920e56d9f370192883be3cc26cb3b7aeb9" offset="0x000000" /> |
| 42578 | 46950 | </dataarea> |
| r21545 | r21546 | |
| 42589 | 46961 | <info name="release" value="19940916" /> |
| 42590 | 46962 | <info name="alt_title" value="リーディングジョッキー" /> |
| 42591 | 46963 | <part name="cart" interface="snes_cart"> |
| 46964 | ||
| 46965 | <feature name="slot" value="hirom" /> | |
| 42592 | 46966 | <dataarea name="rom" size="524288"> |
| 42593 | 46967 | <rom name="leading jockey (japan).sfc" size="524288" crc="57db06bf" sha1="a7356ee2b7c49f0434b331b8970d64011919f046" offset="0x000000" /> |
| 42594 | 46968 | </dataarea> |
| r21545 | r21546 | |
| 42605 | 46979 | <info name="release" value="19951124" /> |
| 42606 | 46980 | <info name="alt_title" value="リーディングジョッキー2" /> |
| 42607 | 46981 | <part name="cart" interface="snes_cart"> |
| 46982 | ||
| 46983 | <feature name="slot" value="hirom" /> | |
| 42608 | 46984 | <dataarea name="rom" size="1048576"> |
| 42609 | 46985 | <rom name="leading jockey 2 (japan).sfc" size="1048576" crc="feefaec4" sha1="b5326a0be9743d9755961137046a5b79d47c0084" offset="0x000000" /> |
| 42610 | 46986 | </dataarea> |
| r21545 | r21546 | |
| 42618 | 46994 | <year>1994</year> |
| 42619 | 46995 | <publisher>Seika</publisher> |
| 42620 | 46996 | <part name="cart" interface="snes_cart"> |
| 46997 | ||
| 46998 | <feature name="slot" value="lorom" /> | |
| 42621 | 46999 | <dataarea name="rom" size="1048576"> |
| 42622 | 47000 | <rom name="legend (europe).sfc" size="1048576" crc="0cac572f" sha1="bc544f98599073edc8bf61da3c8762e350310f3c" offset="0x000000" /> |
| 42623 | 47001 | </dataarea> |
| r21545 | r21546 | |
| 42629 | 47007 | <year>1994</year> |
| 42630 | 47008 | <publisher>Seika</publisher> |
| 42631 | 47009 | <part name="cart" interface="snes_cart"> |
| 47010 | ||
| 47011 | <feature name="slot" value="lorom" /> | |
| 42632 | 47012 | <dataarea name="rom" size="1048576"> |
| 42633 | 47013 | <rom name="legend (usa) (beta).sfc" size="1048576" crc="42e3774e" sha1="0b636416ed0a2ea7a35afd9572aa8b4163f164d3" offset="0x000000" /> |
| 42634 | 47014 | </dataarea> |
| r21545 | r21546 | |
| 42640 | 47020 | <year>1992</year> |
| 42641 | 47021 | <publisher>Konami</publisher> |
| 42642 | 47022 | <part name="cart" interface="snes_cart"> |
| 47023 | ||
| 47024 | <feature name="slot" value="lorom" /> | |
| 42643 | 47025 | <dataarea name="rom" size="1048576"> |
| 42644 | 47026 | <rom name="legend of the mystical ninja, the (europe).sfc" size="1048576" crc="797724c8" sha1="64e05dfa9712299536dec8caaaaa94994b9cfbba" offset="0x000000" /> |
| 42645 | 47027 | </dataarea> |
| r21545 | r21546 | |
| 42651 | 47033 | <year>1992</year> |
| 42652 | 47034 | <publisher>Nintendo</publisher> |
| 42653 | 47035 | <part name="cart" interface="snes_cart"> |
| 47036 | ||
| 47037 | <feature name="slot" value="lorom" /> | |
| 42654 | 47038 | <dataarea name="rom" size="1048576"> |
| 42655 | 47039 | <rom name="legend of zelda, the - a link to the past (europe).sfc" size="1048576" crc="04d55e12" sha1="7c073a222569b9b8e8ca5fcb5dfec3b5e31da895" offset="0x000000" /> |
| 42656 | 47040 | </dataarea> |
| r21545 | r21546 | |
| 42664 | 47048 | <year>1992</year> |
| 42665 | 47049 | <publisher>Sunsoft</publisher> |
| 42666 | 47050 | <part name="cart" interface="snes_cart"> |
| 47051 | ||
| 47052 | <feature name="slot" value="lorom" /> | |
| 42667 | 47053 | <dataarea name="rom" size="1048576"> |
| 42668 | 47054 | <rom name="lemmings (europe).sfc" size="1048576" crc="aebadcef" sha1="781c944f1ad7624af24af24991d8faf570c2f6cf" offset="0x000000" /> |
| 42669 | 47055 | </dataarea> |
| r21545 | r21546 | |
| 42676 | 47062 | <publisher>Sunsoft</publisher> |
| 42677 | 47063 | <info name="release" value="199203xx" /> |
| 42678 | 47064 | <part name="cart" interface="snes_cart"> |
| 47065 | ||
| 47066 | <feature name="slot" value="lorom_sfx" /> | |
| 42679 | 47067 | <dataarea name="rom" size="1048576"> |
| 42680 | 47068 | <rom name="lemmings (usa) (rev 1).sfc" size="1048576" crc="51e3d566" sha1="10fcf1268cf9bc53e7815c843ea506a77d5e1a9e" offset="0x000000" /> |
| 42681 | 47069 | </dataarea> |
| r21545 | r21546 | |
| 42688 | 47076 | <publisher>Sunsoft</publisher> |
| 42689 | 47077 | <info name="release" value="199203xx" /> |
| 42690 | 47078 | <part name="cart" interface="snes_cart"> |
| 47079 | ||
| 47080 | <feature name="slot" value="lorom_sfx" /> | |
| 42691 | 47081 | <dataarea name="rom" size="1048576"> |
| 42692 | 47082 | <rom name="lemmings (usa).sfc" size="1048576" crc="7f8b51a1" sha1="385152eba550e19a15f691f77f7880bf359ec209" offset="0x000000" /> |
| 42693 | 47083 | </dataarea> |
| r21545 | r21546 | |
| 42702 | 47092 | <info name="release" value="19940812" /> |
| 42703 | 47093 | <info name="alt_title" value="レミングス2" /> |
| 42704 | 47094 | <part name="cart" interface="snes_cart"> |
| 47095 | ||
| 47096 | <feature name="slot" value="lorom" /> | |
| 42705 | 47097 | <dataarea name="rom" size="2097152"> |
| 42706 | 47098 | <rom name="lemmings 2 - the tribes (japan).sfc" size="2097152" crc="1e7a945a" sha1="265ab3cf95e4816c46bfd7d6a5a0bdac9d659cb2" offset="0x000000" /> |
| 42707 | 47099 | </dataarea> |
| r21545 | r21546 | |
| 42716 | 47108 | <publisher>Psygnosis</publisher> |
| 42717 | 47109 | <info name="release" value="199411xx" /> |
| 42718 | 47110 | <part name="cart" interface="snes_cart"> |
| 47111 | ||
| 47112 | <feature name="slot" value="lorom" /> | |
| 42719 | 47113 | <dataarea name="rom" size="2097152"> |
| 42720 | 47114 | <rom name="lemmings 2 - the tribes (usa).sfc" size="2097152" crc="df7200c8" sha1="2a4ee59fb47a8cc50113839c9400348a33eb80c3" offset="0x000000" /> |
| 42721 | 47115 | </dataarea> |
| r21545 | r21546 | |
| 42731 | 47125 | <info name="release" value="199401xx" /> |
| 42732 | 47126 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42733 | 47127 | <part name="cart" interface="snes_cart"> |
| 47128 | ||
| 47129 | <feature name="slot" value="hirom" /> | |
| 42734 | 47130 | <dataarea name="rom" size="1048576"> |
| 42735 | 47131 | <rom name="lester the unlikely (usa).sfc" size="1048576" crc="1a52fee5" sha1="3cc5406045f28dc48163d360d30313d23c1ef9b8" offset="0x000000" /> |
| 42736 | 47132 | </dataarea> |
| r21545 | r21546 | |
| 42744 | 47140 | <info name="release" value="199401xx" /> |
| 42745 | 47141 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42746 | 47142 | <part name="cart" interface="snes_cart"> |
| 47143 | ||
| 47144 | <feature name="slot" value="lorom" /> | |
| 42747 | 47145 | <dataarea name="rom" size="2097152"> |
| 42748 | 47146 | <rom name="lethal enforcers (usa).sfc" size="2097152" crc="5aff8cd5" sha1="6e5ed586d7e32de0d0432f349819f473fd42fb31" offset="0x000000" /> |
| 42749 | 47147 | </dataarea> |
| r21545 | r21546 | |
| 42755 | 47153 | <year>1992</year> |
| 42756 | 47154 | <publisher>Ocean</publisher> |
| 42757 | 47155 | <part name="cart" interface="snes_cart"> |
| 47156 | ||
| 47157 | <feature name="slot" value="lorom" /> | |
| 42758 | 47158 | <dataarea name="rom" size="1048576"> |
| 42759 | 47159 | <rom name="lethal weapon (europe).sfc" size="1048576" crc="13cd7fc1" sha1="6de92e2eace487548b5d7267fd8199a0579407c0" offset="0x000000" /> |
| 42760 | 47160 | </dataarea> |
| r21545 | r21546 | |
| 42770 | 47170 | <info name="alt_title" value="リブルラブル" /> |
| 42771 | 47171 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42772 | 47172 | <part name="cart" interface="snes_cart"> |
| 47173 | ||
| 47174 | <feature name="slot" value="hirom" /> | |
| 42773 | 47175 | <dataarea name="rom" size="524288"> |
| 42774 | 47176 | <rom name="libble rabble (japan).sfc" size="524288" crc="6160829b" sha1="1916537fa72e7692d7225c4efc18920a048b1bfc" offset="0x000000" /> |
| 42775 | 47177 | </dataarea> |
| r21545 | r21546 | |
| 42782 | 47184 | <publisher>Koei</publisher> |
| 42783 | 47185 | <info name="release" value="199404xx" /> |
| 42784 | 47186 | <part name="cart" interface="snes_cart"> |
| 47187 | ||
| 47188 | <feature name="slot" value="hirom" /> | |
| 42785 | 47189 | <dataarea name="rom" size="1310720"> |
| 42786 | 47190 | <rom name="liberty or death (usa).sfc" size="1310720" crc="75e362a6" sha1="a3db7fe324acf5248e54fb3d8e7acf3918bc0fd6" offset="0x000000" /> |
| 42787 | 47191 | </dataarea> |
| r21545 | r21546 | |
| 42798 | 47202 | <info name="release" value="19920703" /> |
| 42799 | 47203 | <info name="alt_title" value="ライトファンタジー" /> |
| 42800 | 47204 | <part name="cart" interface="snes_cart"> |
| 47205 | ||
| 47206 | <feature name="slot" value="lorom" /> | |
| 42801 | 47207 | <dataarea name="rom" size="1048576"> |
| 42802 | 47208 | <rom name="light fantasy (japan).sfc" size="1048576" crc="17bbf914" sha1="7c4be5b562695e737ea614ec375b6b3d0d5dd7b0" offset="0x000000" /> |
| 42803 | 47209 | </dataarea> |
| r21545 | r21546 | |
| 42814 | 47220 | <info name="release" value="19951027" /> |
| 42815 | 47221 | <info name="alt_title" value="ライトファンタジーII" /> |
| 42816 | 47222 | <part name="cart" interface="snes_cart"> |
| 47223 | ||
| 47224 | <feature name="slot" value="lorom" /> | |
| 42817 | 47225 | <dataarea name="rom" size="2097152"> |
| 42818 | 47226 | <rom name="light fantasy ii (japan).sfc" size="2097152" crc="d8f1bf0e" sha1="f96b9ca521ac6a98f6b0fa0b36f9281dd801f920" offset="0x000000" /> |
| 42819 | 47227 | </dataarea> |
| r21545 | r21546 | |
| 42830 | 47238 | <info name="release" value="19941209" /> |
| 42831 | 47239 | <info name="alt_title" value="ライオンキンク" /> |
| 42832 | 47240 | <part name="cart" interface="snes_cart"> |
| 47241 | ||
| 47242 | <feature name="slot" value="hirom" /> | |
| 42833 | 47243 | <dataarea name="rom" size="3145728"> |
| 42834 | 47244 | <rom name="lion king, the (japan).sfc" size="3145728" crc="79a9b2d0" sha1="abfe570d79ed91eb8da0354b230cc6430ee123c6" offset="0x000000" /> |
| 42835 | 47245 | </dataarea> |
| r21545 | r21546 | |
| 42841 | 47251 | <year>1993</year> |
| 42842 | 47252 | <publisher>Altron</publisher> |
| 42843 | 47253 | <part name="cart" interface="snes_cart"> |
| 47254 | ||
| 47255 | <feature name="slot" value="lorom" /> | |
| 42844 | 47256 | <dataarea name="rom" size="524288"> |
| 42845 | 47257 | <rom name="little magic (japan) (beta).sfc" size="524288" crc="0e201e8f" sha1="8b607f785e9ab15dddb3bb572d494bd79b15cce0" offset="0x000000" /> |
| 42846 | 47258 | </dataarea> |
| r21545 | r21546 | |
| 42855 | 47267 | <info name="release" value="19931228" /> |
| 42856 | 47268 | <info name="alt_title" value="リトル・マジック" /> |
| 42857 | 47269 | <part name="cart" interface="snes_cart"> |
| 47270 | ||
| 47271 | <feature name="slot" value="lorom" /> | |
| 42858 | 47272 | <dataarea name="rom" size="524288"> |
| 42859 | 47273 | <rom name="little magic (japan).sfc" size="524288" crc="9654194d" sha1="60794dfdebaf4a3f2295b388f02ce605e7de8231" offset="0x000000" /> |
| 42860 | 47274 | </dataarea> |
| r21545 | r21546 | |
| 42869 | 47283 | <info name="release" value="19950630" /> |
| 42870 | 47284 | <info name="alt_title" value="リトルマスター~虹色の魔石~" /> |
| 42871 | 47285 | <part name="cart" interface="snes_cart"> |
| 47286 | ||
| 47287 | <feature name="slot" value="lorom" /> | |
| 42872 | 47288 | <dataarea name="rom" size="2097152"> |
| 42873 | 47289 | <rom name="little master - nijiiro no maseki (japan).sfc" size="2097152" crc="b916334c" sha1="75b76715d4a20371e0340dbeee3a51ff6a1dbad3" offset="0x000000" /> |
| 42874 | 47290 | </dataarea> |
| r21545 | r21546 | |
| 42886 | 47302 | <info name="alt_title" value="ロードランナー Twin ジャスティ とリバティの大冒険" /> |
| 42887 | 47303 | <sharedfeat name="compatibility" value="NTSC"/> |
| 42888 | 47304 | <part name="cart" interface="snes_cart"> |
| 47305 | ||
| 47306 | <feature name="slot" value="lorom" /> | |
| 42889 | 47307 | <dataarea name="rom" size="1048576"> |
| 42890 | 47308 | <rom name="lode runner twin - justy to liberty no daibouken (japan).sfc" size="1048576" crc="aba0a671" sha1="ca52e3798425010067e856520880231fadbeb5ff" offset="0x000000" /> |
| 42891 | 47309 | </dataarea> |
| r21545 | r21546 | |
| 42900 | 47318 | <info name="release" value="19951222" /> |
| 42901 | 47319 | <info name="alt_title" value="ロードス島戦記" /> |
| 42902 | 47320 | <part name="cart" interface="snes_cart"> |
| 47321 | ||
| 47322 | <feature name="slot" value="lorom" /> | |
| 42903 | 47323 | <dataarea name="rom" size="2621440"> |
| 42904 | 47324 | <rom name="lodoss-tou senki (japan).sfc" size="2621440" crc="1b3e22c3" sha1="0959f81e86fb39f1cd79c780e2f1abe7af2d6ca7" offset="0x000000" /> |
| 42905 | 47325 | </dataarea> |
| r21545 | r21546 | |
| 42916 | 47336 | <info name="release" value="19951117" /> |
| 42917 | 47337 | <info name="alt_title" value="ロゴスパニックごあいさつ" /> |
| 42918 | 47338 | <part name="cart" interface="snes_cart"> |
| 47339 | ||
| 47340 | <feature name="slot" value="lorom" /> | |
| 42919 | 47341 | <dataarea name="rom" size="1310720"> |
| 42920 | 47342 | <rom name="logos panic goaisatsu (japan).sfc" size="1310720" crc="4808e2b2" sha1="73d817b43224c3fa5e1bee697d25b7090c23b099" offset="0x000000" /> |
| 42921 | 47343 | </dataarea> |
| r21545 | r21546 | |
| 42931 | 47353 | <info name="release" value="19921009" /> |
| 42932 | 47354 | <info name="alt_title" value="ロードモナーク" /> |
| 42933 | 47355 | <part name="cart" interface="snes_cart"> |
| 47356 | ||
| 47357 | <feature name="slot" value="hirom" /> | |
| 42934 | 47358 | <dataarea name="rom" size="524288"> |
| 42935 | 47359 | <rom name="lord monarch (japan).sfc" size="524288" crc="41736e7e" sha1="a563f34c80275d13c7de5087eca56f6dd32bc37b" offset="0x000000" /> |
| 42936 | 47360 | </dataarea> |
| r21545 | r21546 | |
| 42944 | 47368 | <year>1997</year> |
| 42945 | 47369 | <publisher>Interplay</publisher> |
| 42946 | 47370 | <part name="cart" interface="snes_cart"> |
| 47371 | ||
| 47372 | <feature name="slot" value="lorom" /> | |
| 42947 | 47373 | <dataarea name="rom" size="1048576"> |
| 42948 | 47374 | <rom name="lost vikings ii, the (europe) (en,fr,de).sfc" size="1048576" crc="3c49a285" sha1="fa76c28408d6d9b441423c1349e1908d8c155001" offset="0x000000" /> |
| 42949 | 47375 | </dataarea> |
| r21545 | r21546 | |
| 42956 | 47382 | <publisher>Interplay</publisher> |
| 42957 | 47383 | <info name="release" value="199705xx" /> |
| 42958 | 47384 | <part name="cart" interface="snes_cart"> |
| 47385 | ||
| 47386 | <feature name="slot" value="lorom" /> | |
| 42959 | 47387 | <dataarea name="rom" size="1048576"> |
| 42960 | 47388 | <rom name="lost vikings ii, the (usa).sfc" size="1048576" crc="3aa01dbd" sha1="7a461513fcea58e3c8c9dbaa431ab6635dbb3ffd" offset="0x000000" /> |
| 42961 | 47389 | </dataarea> |
| r21545 | r21546 | |
| 42967 | 47395 | <year>1993</year> |
| 42968 | 47396 | <publisher>Interplay</publisher> |
| 42969 | 47397 | <part name="cart" interface="snes_cart"> |
| 47398 | ||
| 47399 | <feature name="slot" value="lorom" /> | |
| 42970 | 47400 | <dataarea name="rom" size="1048576"> |
| 42971 | 47401 | <rom name="lost vikings, the (europe).sfc" size="1048576" crc="66989491" sha1="2bd4c2af6e5d7252d16342fd1a64454dca3ce557" offset="0x000000" /> |
| 42972 | 47402 | </dataarea> |
| r21545 | r21546 | |
| 42978 | 47408 | <year>1993</year> |
| 42979 | 47409 | <publisher>Interplay</publisher> |
| 42980 | 47410 | <part name="cart" interface="snes_cart"> |
| 47411 | ||
| 47412 | <feature name="slot" value="lorom" /> | |
| 42981 | 47413 | <dataarea name="rom" size="1048576"> |
| 42982 | 47414 | <rom name="lost vikings, the (france) (en,fr).sfc" size="1048576" crc="94093298" sha1="72b472a389a6392ed8189bdc24bceafea238f6fb" offset="0x000000" /> |
| 42983 | 47415 | </dataarea> |
| r21545 | r21546 | |
| 42989 | 47421 | <year>1993</year> |
| 42990 | 47422 | <publisher>Interplay</publisher> |
| 42991 | 47423 | <part name="cart" interface="snes_cart"> |
| 47424 | ||
| 47425 | <feature name="slot" value="lorom" /> | |
| 42992 | 47426 | <dataarea name="rom" size="1048576"> |
| 42993 | 47427 | <rom name="lost vikings, the (spain).sfc" size="1048576" crc="6e8a1081" sha1="6c4b1326755230c870a407df7a30e1f849eacf6c" offset="0x000000" /> |
| 42994 | 47428 | </dataarea> |
| r21545 | r21546 | |
| 43000 | 47434 | <year>1993</year> |
| 43001 | 47435 | <publisher>Interplay</publisher> |
| 43002 | 47436 | <part name="cart" interface="snes_cart"> |
| 47437 | ||
| 47438 | <feature name="slot" value="lorom" /> | |
| 43003 | 47439 | <dataarea name="rom" size="1048576"> |
| 43004 | 47440 | <rom name="lost vikings, the (usa) (beta).sfc" size="1048576" crc="f20e0c69" sha1="ffe66962a3dc9182b00e92c0a5e956e9435aacce" offset="0x000000" /> |
| 43005 | 47441 | </dataarea> |
| r21545 | r21546 | |
| 43012 | 47448 | <publisher>Interplay</publisher> |
| 43013 | 47449 | <info name="release" value="199304xx" /> |
| 43014 | 47450 | <part name="cart" interface="snes_cart"> |
| 47451 | ||
| 47452 | <feature name="slot" value="lorom" /> | |
| 43015 | 47453 | <dataarea name="rom" size="1048576"> |
| 43016 | 47454 | <rom name="lost vikings, the (usa).sfc" size="1048576" crc="6838be08" sha1="ed1b3038825835d6614ec8a2f3d22517f5334deb" offset="0x000000" /> |
| 43017 | 47455 | </dataarea> |
| r21545 | r21546 | |
| 43024 | 47462 | <publisher>Ocean</publisher> |
| 43025 | 47463 | <sharedfeat name="compatibility" value="PAL"/> |
| 43026 | 47464 | <part name="cart" interface="snes_cart"> |
| 47465 | ||
| 47466 | <feature name="slot" value="lorom" /> | |
| 43027 | 47467 | <dataarea name="rom" size="1048576"> |
| 43028 | 47468 | <rom name="lothar matthaeus super soccer (germany).sfc" size="1048576" crc="96dec679" sha1="21e6ce377e3de7052bfe06402d08ccb58678bb52" offset="0x000000" /> |
| 43029 | 47469 | </dataarea> |
| r21545 | r21546 | |
| 43038 | 47478 | <info name="release" value="19950317" /> |
| 43039 | 47479 | <info name="alt_title" value="ラブクエスト" /> |
| 43040 | 47480 | <part name="cart" interface="snes_cart"> |
| 47481 | ||
| 47482 | <feature name="slot" value="lorom" /> | |
| 43041 | 47483 | <dataarea name="rom" size="1572864"> |
| 43042 | 47484 | <rom name="love quest (japan).sfc" size="1572864" crc="92fad6fc" sha1="b8cb0fb89dec3e3dd7820e53562189efc1875149" offset="0x000000" /> |
| 43043 | 47485 | </dataarea> |
| r21545 | r21546 | |
| 43052 | 47494 | <publisher>Infogrames</publisher> |
| 43053 | 47495 | <sharedfeat name="compatibility" value="PAL"/> |
| 43054 | 47496 | <part name="cart" interface="snes_cart"> |
| 47497 | ||
| 47498 | <feature name="slot" value="lorom" /> | |
| 43055 | 47499 | <dataarea name="rom" size="1572864"> |
| 43056 | 47500 | <rom name="lucky luke (europe) (en,fr,de,es).sfc" size="1572864" crc="7e2c7143" sha1="82cef93f124906e49c4e9ec6f58e23ef7e9f77f9" offset="0x000000" /> |
| 43057 | 47501 | </dataarea> |
| r21545 | r21546 | |
| 43063 | 47507 | <year>1996</year> |
| 43064 | 47508 | <publisher>Natsume</publisher> |
| 43065 | 47509 | <part name="cart" interface="snes_cart"> |
| 47510 | ||
| 47511 | <feature name="slot" value="lorom" /> | |
| 43066 | 47512 | <dataarea name="rom" size="2621440"> |
| 43067 | 47513 | <rom name="lufia (europe).sfc" size="2621440" crc="fdb80165" sha1="495686e039759b400b557d1ec3cf040336adf343" offset="0x000000" /> |
| 43068 | 47514 | </dataarea> |
| r21545 | r21546 | |
| 43076 | 47522 | <year>1996</year> |
| 43077 | 47523 | <publisher>Natsume</publisher> |
| 43078 | 47524 | <part name="cart" interface="snes_cart"> |
| 47525 | ||
| 47526 | <feature name="slot" value="lorom" /> | |
| 43079 | 47527 | <dataarea name="rom" size="3145728"> |
| 43080 | 47528 | <rom name="lufia (netherlands).sfc" size="3145728" crc="380d91fe" sha1="2cbb1a60656c6571ecb0b0cd8ae8e46609f37514" offset="0x000000" /> |
| 43081 | 47529 | </dataarea> |
| r21545 | r21546 | |
| 43089 | 47537 | <year>1996</year> |
| 43090 | 47538 | <publisher>Natsume</publisher> |
| 43091 | 47539 | <part name="cart" interface="snes_cart"> |
| 47540 | ||
| 47541 | <feature name="slot" value="lorom" /> | |
| 43092 | 47542 | <dataarea name="rom" size="3145728"> |
| 43093 | 47543 | <rom name="lufia (spain).sfc" size="3145728" crc="d93c0dd4" sha1="eaf67e123573ca50d7fb8828c59e4f7a1df23fa2" offset="0x000000" /> |
| 43094 | 47544 | </dataarea> |
| r21545 | r21546 | |
| 43105 | 47555 | <info name="release" value="19941227" /> |
| 43106 | 47556 | <info name="alt_title" value="ルパン三世 伝説の秘宝を追 え!" /> |
| 43107 | 47557 | <part name="cart" interface="snes_cart"> |
| 47558 | ||
| 47559 | <feature name="slot" value="hirom" /> | |
| 43108 | 47560 | <dataarea name="rom" size="1572864"> |
| 43109 | 47561 | <rom name="lupin sansei - densetsu no hihou o oe! (japan).sfc" size="1572864" crc="74adc6e2" sha1="99ae1fcd0b778d221d04f8980458824b809392e7" offset="0x000000" /> |
| 43110 | 47562 | </dataarea> |
| r21545 | r21546 | |
| 43116 | 47568 | <year>1993</year> |
| 43117 | 47569 | <publisher>Electronic Arts</publisher> |
| 43118 | 47570 | <part name="cart" interface="snes_cart"> |
| 47571 | ||
| 47572 | <feature name="slot" value="hirom" /> | |
| 43119 | 47573 | <dataarea name="rom" size="1048576"> |
| 43120 | 47574 | <rom name="madden nfl '94 (europe).sfc" size="1048576" crc="a7d31544" sha1="b5090344070e9e60bdd27cc928b5c6998735487e" offset="0x000000" /> |
| 43121 | 47575 | </dataarea> |
| r21545 | r21546 | |
| 43127 | 47581 | <year>1995</year> |
| 43128 | 47582 | <publisher>Electronic Arts</publisher> |
| 43129 | 47583 | <part name="cart" interface="snes_cart"> |
| 47584 | ||
| 47585 | <feature name="slot" value="hirom" /> | |
| 43130 | 47586 | <dataarea name="rom" size="1572864"> |
| 43131 | 47587 | <rom name="madden nfl 96 (usa) (sample).sfc" size="1572864" crc="4c78d04a" sha1="9c1d5ddb1ed4e41006265029f2826afc039b307e" offset="0x000000" /> |
| 43132 | 47588 | </dataarea> |
| r21545 | r21546 | |
| 43141 | 47597 | <publisher>Electronic Arts</publisher> |
| 43142 | 47598 | <info name="release" value="199511xx" /> |
| 43143 | 47599 | <part name="cart" interface="snes_cart"> |
| 47600 | ||
| 47601 | <feature name="slot" value="hirom" /> | |
| 43144 | 47602 | <dataarea name="rom" size="1572864"> |
| 43145 | 47603 | <rom name="madden nfl 96 (usa).sfc" size="1572864" crc="51a1fe86" sha1="5b0f8dde35b6ea35540ae67c85c4b42e70919796" offset="0x000000" /> |
| 43146 | 47604 | </dataarea> |
| r21545 | r21546 | |
| 43155 | 47613 | <publisher>Black Pearl</publisher> |
| 43156 | 47614 | <info name="release" value="199711xx" /> |
| 43157 | 47615 | <part name="cart" interface="snes_cart"> |
| 47616 | ||
| 47617 | <feature name="slot" value="hirom" /> | |
| 43158 | 47618 | <dataarea name="rom" size="2097152"> |
| 43159 | 47619 | <rom name="madden nfl 98 (usa).sfc" size="2097152" crc="cf10cc01" sha1="a7f0ea92ebf11e3726e3ccc494a9df0ef9edbed5" offset="0x000000" /> |
| 43160 | 47620 | </dataarea> |
| r21545 | r21546 | |
| 43171 | 47631 | <info name="release" value="19960112" /> |
| 43172 | 47632 | <info name="alt_title" value="魔導物語 はなまる大幼稚園児" /> |
| 43173 | 47633 | <part name="cart" interface="snes_cart"> |
| 47634 | ||
| 47635 | <feature name="slot" value="lorom" /> | |
| 43174 | 47636 | <dataarea name="rom" size="2097152"> |
| 43175 | 47637 | <rom name="madou monogatari - hanamaru daiyouchienji (japan).sfc" size="2097152" crc="1354e81e" sha1="164d51ce6cf2228a399ba11fc1f5803cace53cb7" offset="0x000000" /> |
| 43176 | 47638 | </dataarea> |
| r21545 | r21546 | |
| 43187 | 47649 | <info name="release" value="19940422" /> |
| 43188 | 47650 | <info name="alt_title" value="MARCHEN ADVENTURE コットン100%" /> |
| 43189 | 47651 | <part name="cart" interface="snes_cart"> |
| 47652 | ||
| 47653 | <feature name="slot" value="lorom" /> | |
| 43190 | 47654 | <dataarea name="rom" size="2097152"> |
| 43191 | 47655 | <rom name="maerchen adventure cotton 100% (japan).sfc" size="2097152" crc="5fb7a31d" sha1="5e12d00f5da6c4a7cb9ac1731ba77d11dcb61d6d" offset="0x000000" /> |
| 43192 | 47656 | </dataarea> |
| r21545 | r21546 | |
| 43198 | 47662 | <year>1996</year> |
| 43199 | 47663 | <publisher>JVC</publisher> |
| 43200 | 47664 | <part name="cart" interface="snes_cart"> |
| 47665 | ||
| 47666 | <feature name="slot" value="lorom" /> | |
| 43201 | 47667 | <dataarea name="rom" size="524288"> |
| 43202 | 47668 | <rom name="magic boy (europe).sfc" size="524288" crc="7718c867" sha1="1673c38cf9e37f11649ac6183f415815d0256904" offset="0x000000" /> |
| 43203 | 47669 | </dataarea> |
| r21545 | r21546 | |
| 43210 | 47676 | <publisher>JVC</publisher> |
| 43211 | 47677 | <info name="release" value="199608xx" /> |
| 43212 | 47678 | <part name="cart" interface="snes_cart"> |
| 47679 | ||
| 47680 | <feature name="slot" value="lorom" /> | |
| 43213 | 47681 | <dataarea name="rom" size="524288"> |
| 43214 | 47682 | <rom name="magic boy (usa).sfc" size="524288" crc="ab57a2f9" sha1="2f0b370dc8650f45938663f03a513f9e001391a5" offset="0x000000" /> |
| 43215 | 47683 | </dataarea> |
| r21545 | r21546 | |
| 43224 | 47692 | <info name="release" value="19930716" /> |
| 43225 | 47693 | <info name="alt_title" value="マジックジョンソンのスーパースラムダンク" /> |
| 43226 | 47694 | <part name="cart" interface="snes_cart"> |
| 47695 | ||
| 47696 | <feature name="slot" value="lorom" /> | |
| 43227 | 47697 | <dataarea name="rom" size="1048576"> |
| 43228 | 47698 | <rom name="magic johnson no super slam dunk (japan).sfc" size="1048576" crc="3276e449" sha1="37f2329e72908ce6794a3355ab5a5f842fd93e4d" offset="0x000000" /> |
| 43229 | 47699 | </dataarea> |
| r21545 | r21546 | |
| 43238 | 47708 | <info name="release" value="19950929" /> |
| 43239 | 47709 | <info name="alt_title" value="マジックナイト レイアース" /> |
| 43240 | 47710 | <part name="cart" interface="snes_cart"> |
| 47711 | ||
| 47712 | <feature name="slot" value="hirom" /> | |
| 43241 | 47713 | <dataarea name="rom" size="1572864"> |
| 43242 | 47714 | <rom name="magic knight rayearth (japan).sfc" size="1572864" crc="ede4b627" sha1="b0bd7e46c98c1ccf042be0ea3401445c461b76bd" offset="0x000000" /> |
| 43243 | 47715 | </dataarea> |
| r21545 | r21546 | |
| 43251 | 47723 | <year>1992</year> |
| 43252 | 47724 | <publisher>Capcom</publisher> |
| 43253 | 47725 | <part name="cart" interface="snes_cart"> |
| 47726 | ||
| 47727 | <feature name="slot" value="lorom" /> | |
| 43254 | 47728 | <dataarea name="rom" size="1048576"> |
| 43255 | 47729 | <rom name="magic sword (europe).sfc" size="1048576" crc="9e50509f" sha1="1c5bc94edc7d612593c740dce7f21d2f9e917bb6" offset="0x000000" /> |
| 43256 | 47730 | </dataarea> |
| r21545 | r21546 | |
| 43263 | 47737 | <publisher>Capcom</publisher> |
| 43264 | 47738 | <info name="release" value="199208xx" /> |
| 43265 | 47739 | <part name="cart" interface="snes_cart"> |
| 47740 | ||
| 47741 | <feature name="slot" value="lorom" /> | |
| 43266 | 47742 | <dataarea name="rom" size="1048576"> |
| 43267 | 47743 | <rom name="magic sword (usa).sfc" size="1048576" crc="27325e4d" sha1="0d64ef4149b71d13d287122f58eca9c580fa7d0f" offset="0x000000" /> |
| 43268 | 47744 | </dataarea> |
| r21545 | r21546 | |
| 43277 | 47753 | <info name="release" value="19951020" /> |
| 43278 | 47754 | <info name="alt_title" value="マジカルドロッフ" /> |
| 43279 | 47755 | <part name="cart" interface="snes_cart"> |
| 47756 | ||
| 47757 | <feature name="slot" value="lorom" /> | |
| 43280 | 47758 | <dataarea name="rom" size="1048576"> |
| 43281 | 47759 | <rom name="magical drop (japan).sfc" size="1048576" crc="51177158" sha1="6743599515300e35bd55fd7418c70abe001c5c68" offset="0x000000" /> |
| 43282 | 47760 | </dataarea> |
| r21545 | r21546 | |
| 43291 | 47769 | <info name="release" value="19960920" /> |
| 43292 | 47770 | <info name="alt_title" value="マジカルドロップ2" /> |
| 43293 | 47771 | <part name="cart" interface="snes_cart"> |
| 47772 | ||
| 47773 | <feature name="slot" value="hirom" /> | |
| 43294 | 47774 | <dataarea name="rom" size="2097152"> |
| 43295 | 47775 | <rom name="magical drop 2 (japan).sfc" size="2097152" crc="2cf5094c" sha1="33c8b174eaec2095eba54bd4f8e3751cb638f8ff" offset="0x000000" /> |
| 43296 | 47776 | </dataarea> |
| r21545 | r21546 | |
| 43306 | 47786 | <info name="alt_title" value="マジカルポップン" /> |
| 43307 | 47787 | <sharedfeat name="compatibility" value="NTSC"/> |
| 43308 | 47788 | <part name="cart" interface="snes_cart"> |
| 47789 | ||
| 47790 | <feature name="slot" value="lorom" /> | |
| 43309 | 47791 | <dataarea name="rom" size="2097152"> |
| 43310 | 47792 | <rom name="magical pop'n (japan).sfc" size="2097152" crc="c49d28a4" sha1="50f70512c7e0972e9bbcded52137df8e8d21c937" offset="0x000000" /> |
| 43311 | 47793 | </dataarea> |
| r21545 | r21546 | |
| 43317 | 47799 | <year>1992</year> |
| 43318 | 47800 | <publisher>Capcom</publisher> |
| 43319 | 47801 | <part name="cart" interface="snes_cart"> |
| 47802 | ||
| 47803 | <feature name="slot" value="lorom" /> | |
| 43320 | 47804 | <dataarea name="rom" size="1048576"> |
| 43321 | 47805 | <rom name="magical quest starring mickey mouse, the (europe).sfc" size="1048576" crc="51a7d63c" sha1="6487ce257ed888ae24d5634f7af5e780ed2ed7a7" offset="0x000000" /> |
| 43322 | 47806 | </dataarea> |
| r21545 | r21546 | |
| 43328 | 47812 | <year>1992</year> |
| 43329 | 47813 | <publisher>Capcom</publisher> |
| 43330 | 47814 | <part name="cart" interface="snes_cart"> |
| 47815 | ||
| 47816 | <feature name="slot" value="lorom" /> | |
| 43331 | 47817 | <dataarea name="rom" size="1048576"> |
| 43332 | 47818 | <rom name="magical quest starring mickey mouse, the (germany) (rev 1).sfc" size="1048576" crc="e295009f" sha1="89db73911485e7868ca8329bb463fe114afdd021" offset="0x000000" /> |
| 43333 | 47819 | </dataarea> |
| r21545 | r21546 | |
| 43339 | 47825 | <year>1992</year> |
| 43340 | 47826 | <publisher>Capcom</publisher> |
| 43341 | 47827 | <part name="cart" interface="snes_cart"> |
| 47828 | ||
| 47829 | <feature name="slot" value="lorom" /> | |
| 43342 | 47830 | <dataarea name="rom" size="1048576"> |
| 43343 | 47831 | <rom name="magical quest starring mickey mouse, the (usa) (beta).sfc" size="1048576" crc="0aca9f18" sha1="02fe6c3d66d5ef2dc2daae83d77880977e77e131" offset="0x000000" /> |
| 43344 | 47832 | </dataarea> |
| r21545 | r21546 | |
| 43351 | 47839 | <publisher>Capcom</publisher> |
| 43352 | 47840 | <info name="release" value="199212xx" /> |
| 43353 | 47841 | <part name="cart" interface="snes_cart"> |
| 47842 | ||
| 47843 | <feature name="slot" value="lorom" /> | |
| 43354 | 47844 | <dataarea name="rom" size="1048576"> |
| 43355 | 47845 | <rom name="magical quest starring mickey mouse, the (usa).sfc" size="1048576" crc="10874c70" sha1="30e75cf0749a99e88f6c710b44c1b36f0ec0f4a5" offset="0x000000" /> |
| 43356 | 47846 | </dataarea> |
| r21545 | r21546 | |
| 43365 | 47855 | <info name="release" value="19941118" /> |
| 43366 | 47856 | <info name="alt_title" value="マグナブラバン~遍歴の勇者" /> |
| 43367 | 47857 | <part name="cart" interface="snes_cart"> |
| 47858 | ||
| 47859 | <feature name="slot" value="lorom" /> | |
| 43368 | 47860 | <dataarea name="rom" size="1572864"> |
| 43369 | 47861 | <rom name="magna braban - henreki no yuusha (japan).sfc" size="1572864" crc="5f86ada5" sha1="afb45f14f4c5b31d419a1166044877b12a0a3707" offset="0x000000" /> |
| 43370 | 47862 | </dataarea> |
| r21545 | r21546 | |
| 43381 | 47873 | <info name="release" value="19941222" /> |
| 43382 | 47874 | <info name="alt_title" value="麻雀倶楽部" /> |
| 43383 | 47875 | <part name="cart" interface="snes_cart"> |
| 47876 | ||
| 47877 | <feature name="slot" value="lorom" /> | |
| 43384 | 47878 | <dataarea name="rom" size="262144"> |
| 43385 | 47879 | <rom name="mahjong club (japan).sfc" size="262144" crc="1d8748fa" sha1="cebb6dea616a0e2af1bb937650f86170d37efe08" offset="0x000000" /> |
| 43386 | 47880 | </dataarea> |
| r21545 | r21546 | |
| 43395 | 47889 | <info name="release" value="19940819" /> |
| 43396 | 47890 | <info name="alt_title" value="麻雀悟空 天竺" /> |
| 43397 | 47891 | <part name="cart" interface="snes_cart"> |
| 47892 | ||
| 47893 | <feature name="slot" value="lorom" /> | |
| 43398 | 47894 | <dataarea name="rom" size="524288"> |
| 43399 | 47895 | <rom name="mahjong gokuu tenjiku (japan).sfc" size="524288" crc="ee50159a" sha1="ed0e19b84632fc07432084ba2de7eb9e8e12f32a" offset="0x000000" /> |
| 43400 | 47896 | </dataarea> |
| r21545 | r21546 | |
| 43411 | 47907 | <info name="release" value="19950728" /> |
| 43412 | 47908 | <info name="alt_title" value="麻雀繁盛記" /> |
| 43413 | 47909 | <part name="cart" interface="snes_cart"> |
| 47910 | ||
| 47911 | <feature name="slot" value="lorom" /> | |
| 43414 | 47912 | <dataarea name="rom" size="524288"> |
| 43415 | 47913 | <rom name="mahjong hanjouki (japan).sfc" size="524288" crc="8a9d74f6" sha1="58483c2e1dff773236a512d1278829806fa5a913" offset="0x000000" /> |
| 43416 | 47914 | </dataarea> |
| r21545 | r21546 | |
| 43425 | 47923 | <info name="release" value="19951027" /> |
| 43426 | 47924 | <info name="alt_title" value="麻雀飛翔伝 真 哭きの竜" /> |
| 43427 | 47925 | <part name="cart" interface="snes_cart"> |
| 47926 | ||
| 47927 | <feature name="slot" value="lorom" /> | |
| 43428 | 47928 | <dataarea name="rom" size="1048576"> |
| 43429 | 47929 | <rom name="mahjong hishouden - shin naki no ryuu (japan).sfc" size="1048576" crc="66fbe563" sha1="ebaf486f64af90eab6f7735598e0d5f8da7c5806" offset="0x000000" /> |
| 43430 | 47930 | </dataarea> |
| r21545 | r21546 | |
| 43439 | 47939 | <info name="release" value="19940923" /> |
| 43440 | 47940 | <info name="alt_title" value="麻雀戦国物語" /> |
| 43441 | 47941 | <part name="cart" interface="snes_cart"> |
| 47942 | ||
| 47943 | <feature name="slot" value="lorom" /> | |
| 43442 | 47944 | <dataarea name="rom" size="1048576"> |
| 43443 | 47945 | <rom name="mahjong sengoku monogatari (japan).sfc" size="1048576" crc="2e89db51" sha1="5d7dbecba63a9795e79d3da1365866278a9e7b49" offset="0x000000" /> |
| 43444 | 47946 | </dataarea> |
| r21545 | r21546 | |
| 43455 | 47957 | <info name="release" value="19930416" /> |
| 43456 | 47958 | <info name="alt_title" value="The麻雀 闘牌伝" /> |
| 43457 | 47959 | <part name="cart" interface="snes_cart"> |
| 47960 | ||
| 47961 | <feature name="slot" value="lorom" /> | |
| 43458 | 47962 | <dataarea name="rom" size="1048576"> |
| 43459 | 47963 | <rom name="mahjong touhaiden, the (japan).sfc" size="1048576" crc="bf355ded" sha1="a8a5ae1487c07c84ef6dc61a61396af43da8d6f3" offset="0x000000" /> |
| 43460 | 47964 | </dataarea> |
| r21545 | r21546 | |
| 43471 | 47975 | <info name="release" value="19940805" /> |
| 43472 | 47976 | <info name="alt_title" value="魔法ぽいぽい ぽいっと!" /> |
| 43473 | 47977 | <part name="cart" interface="snes_cart"> |
| 47978 | ||
| 47979 | <feature name="slot" value="lorom" /> | |
| 43474 | 47980 | <dataarea name="rom" size="1048576"> |
| 43475 | 47981 | <rom name="mahou poi poi poitto! (japan).sfc" size="1048576" crc="bdf35044" sha1="9903ada5efa56d644ae0d2fe1f5fd378bddc135b" offset="0x000000" /> |
| 43476 | 47982 | </dataarea> |
| r21545 | r21546 | |
| 43486 | 47992 | <info name="alt_title" value="魔神転生" /> |
| 43487 | 47993 | <sharedfeat name="compatibility" value="NTSC"/> |
| 43488 | 47994 | <part name="cart" interface="snes_cart"> |
| 47995 | ||
| 47996 | <feature name="slot" value="lorom" /> | |
| 43489 | 47997 | <dataarea name="rom" size="1572864"> |
| 43490 | 47998 | <rom name="majin tensei (japan) (rev 1).sfc" size="1572864" crc="9743e190" sha1="02aa3b58d04900b7147fc5ebb5e25a7d11184d4b" offset="0x000000" /> |
| 43491 | 47999 | </dataarea> |
| r21545 | r21546 | |
| 43503 | 48011 | <info name="alt_title" value="魔神転生" /> |
| 43504 | 48012 | <sharedfeat name="compatibility" value="NTSC"/> |
| 43505 | 48013 | <part name="cart" interface="snes_cart"> |
| 48014 | ||
| 48015 | <feature name="slot" value="lorom" /> | |
| 43506 | 48016 | <dataarea name="rom" size="1572864"> |
| 43507 | 48017 | <rom name="majin tensei (japan) (rev 2).sfc" size="1572864" crc="5415b5e9" sha1="26f5c4afdbe5f4130b10b8aedf393596fba216cb" offset="0x000000" /> |
| 43508 | 48018 | </dataarea> |
| r21545 | r21546 | |
| 43520 | 48030 | <info name="alt_title" value="魔神転生II スパイラルネメシス" /> |
| 43521 | 48031 | <sharedfeat name="compatibility" value="NTSC"/> |
| 43522 | 48032 | <part name="cart" interface="snes_cart"> |
| 48033 | ||
| 48034 | <feature name="slot" value="hirom" /> | |
| 43523 | 48035 | <dataarea name="rom" size="3145728"> |
| 43524 | 48036 | <rom name="majin tensei ii - spiral nemesis (japan).sfc" size="3145728" crc="31b2b1b4" sha1="ca85f07bd9ca49edca44a1c052a4159f5f229720" offset="0x000000" /> |
| 43525 | 48037 | </dataarea> |
| r21545 | r21546 | |
| 43536 | 48048 | <info name="release" value="19950825" /> |
| 43537 | 48049 | <info name="alt_title" value="魔獣王" /> |
| 43538 | 48050 | <part name="cart" interface="snes_cart"> |
| 48051 | ||
| 48052 | <feature name="slot" value="lorom" /> | |
| 43539 | 48053 | <dataarea name="rom" size="1572864"> |
| 43540 | 48054 | <rom name="majuu ou (japan).sfc" size="1572864" crc="4737370b" sha1="54048324bf80bd36e372f58a68f1d3f2b5ffe498" offset="0x000000" /> |
| 43541 | 48055 | </dataarea> |
| r21545 | r21546 | |
| 43550 | 48064 | <info name="release" value="19920424" /> |
| 43551 | 48065 | <info name="alt_title" value="摩訶摩訶" /> |
| 43552 | 48066 | <part name="cart" interface="snes_cart"> |
| 48067 | ||
| 48068 | <feature name="slot" value="lorom" /> | |
| 43553 | 48069 | <dataarea name="rom" size="1048576"> |
| 43554 | 48070 | <rom name="maka maka (japan).sfc" size="1048576" crc="e8e7904f" sha1="fcbb0bdf2f5e8cea3ac894da3feaaf96a7483c0e" offset="0x000000" /> |
| 43555 | 48071 | </dataarea> |
| r21545 | r21546 | |
| 43566 | 48082 | <info name="release" value="19930122" /> |
| 43567 | 48083 | <info name="alt_title" value="負けるな!魔剣道" /> |
| 43568 | 48084 | <part name="cart" interface="snes_cart"> |
| 48085 | ||
| 48086 | <feature name="slot" value="lorom" /> | |
| 43569 | 48087 | <dataarea name="rom" size="1048576"> |
| 43570 | 48088 | <rom name="makeruna! makendou (japan).sfc" size="1048576" crc="bb95bc9f" sha1="ea0d895a6830df5195f489bfda0727c44ffc2c2c" offset="0x000000" /> |
| 43571 | 48089 | </dataarea> |
| r21545 | r21546 | |
| 43580 | 48098 | <info name="release" value="19950317" /> |
| 43581 | 48099 | <info name="alt_title" value="負けるな!魔剣道2 決めろ!妖怪 総理大臣" /> |
| 43582 | 48100 | <part name="cart" interface="snes_cart"> |
| 48101 | ||
| 48102 | <feature name="slot" value="lorom" /> | |
| 43583 | 48103 | <dataarea name="rom" size="2097152"> |
| 43584 | 48104 | <rom name="makeruna! makendou 2 - kimero! youkai souridaijin (japan).sfc" size="2097152" crc="a20fbb88" sha1="f42ef34806a6cef98400d95f923d827380a65430" offset="0x000000" /> |
| 43585 | 48105 | </dataarea> |
| r21545 | r21546 | |
| 43591 | 48111 | <year>1995</year> |
| 43592 | 48112 | <publisher>Ocean</publisher> |
| 43593 | 48113 | <part name="cart" interface="snes_cart"> |
| 48114 | ||
| 48115 | <feature name="slot" value="lorom" /> | |
| 43594 | 48116 | <dataarea name="rom" size="1048576"> |
| 43595 | 48117 | <rom name="manchester united championship soccer (europe) (beta).sfc" size="1048576" crc="8b3fa5d3" sha1="7e2d53250ec9fcdb06bc105b4b10746ee49ec93b" offset="0x000000" /> |
| 43596 | 48118 | </dataarea> |
| r21545 | r21546 | |
| 43603 | 48125 | <publisher>Ocean</publisher> |
| 43604 | 48126 | <sharedfeat name="compatibility" value="PAL"/> |
| 43605 | 48127 | <part name="cart" interface="snes_cart"> |
| 48128 | ||
| 48129 | <feature name="slot" value="lorom" /> | |
| 43606 | 48130 | <dataarea name="rom" size="1048576"> |
| 43607 | 48131 | <rom name="manchester united championship soccer (europe).sfc" size="1048576" crc="8d2596a7" sha1="68af2d08b94dde84e3a3d82c76f0d4c5a48d0aec" offset="0x000000" /> |
| 43608 | 48132 | </dataarea> |
| r21545 | r21546 | |
| 43614 | 48138 | <year>1993</year> |
| 43615 | 48139 | <publisher>Software Toolworks</publisher> |
| 43616 | 48140 | <part name="cart" interface="snes_cart"> |
| 48141 | ||
| 48142 | <feature name="slot" value="lorom" /> | |
| 43617 | 48143 | <dataarea name="rom" size="1048576"> |
| 43618 | 48144 | <rom name="mario is missing! (europe).sfc" size="1048576" crc="5e04efb5" sha1="6787b42040b2e6ac79246e6b439af2281a396cd0" offset="0x000000" /> |
| 43619 | 48145 | </dataarea> |
| r21545 | r21546 | |
| 43625 | 48151 | <year>1993</year> |
| 43626 | 48152 | <publisher>Software Toolworks</publisher> |
| 43627 | 48153 | <part name="cart" interface="snes_cart"> |
| 48154 | ||
| 48155 | <feature name="slot" value="lorom" /> | |
| 43628 | 48156 | <dataarea name="rom" size="1048576"> |
| 43629 | 48157 | <rom name="mario is missing! (france).sfc" size="1048576" crc="2ec7c6fe" sha1="c7fac77270ecc64cd1541be9a86a007231b06cc6" offset="0x000000" /> |
| 43630 | 48158 | </dataarea> |
| r21545 | r21546 | |
| 43637 | 48165 | <publisher>Software Toolworks</publisher> |
| 43638 | 48166 | <info name="release" value="199410xx" /> |
| 43639 | 48167 | <part name="cart" interface="snes_cart"> |
| 48168 | ||
| 48169 | <feature name="slot" value="hirom" /> | |
| 43640 | 48170 | <dataarea name="rom" size="1048576"> |
| 43641 | 48171 | <rom name="mario's early years! - fun with letters (usa).sfc" size="1048576" crc="480b043a" sha1="d88373e0dc6f21711ee103d787dc5369f322d15e" offset="0x000000" /> |
| 43642 | 48172 | </dataarea> |
| r21545 | r21546 | |
| 43649 | 48179 | <publisher>Software Toolworks</publisher> |
| 43650 | 48180 | <info name="release" value="199409xx" /> |
| 43651 | 48181 | <part name="cart" interface="snes_cart"> |
| 48182 | ||
| 48183 | <feature name="slot" value="hirom" /> | |
| 43652 | 48184 | <dataarea name="rom" size="1048576"> |
| 43653 | 48185 | <rom name="mario's early years! - fun with numbers (usa).sfc" size="1048576" crc="8c0c37f4" sha1="012d92c1afed571a2c4b79845e4b382ed1ece429" offset="0x000000" /> |
| 43654 | 48186 | </dataarea> |
| r21545 | r21546 | |
| 43661 | 48193 | <publisher>Mindscape</publisher> |
| 43662 | 48194 | <info name="release" value="199411xx" /> |
| 43663 | 48195 | <part name="cart" interface="snes_cart"> |
| 48196 | ||
| 48197 | <feature name="slot" value="hirom" /> | |
| 43664 | 48198 | <dataarea name="rom" size="1048576"> |
| 43665 | 48199 | <rom name="mario's early years! - preschool fun (usa).sfc" size="1048576" crc="85a6b2a8" sha1="cd4b58d8b12e91ae537f5cf2111f95f7b11cf969" offset="0x000000" /> |
| 43666 | 48200 | </dataarea> |
| r21545 | r21546 | |
| 43672 | 48206 | <year>1993</year> |
| 43673 | 48207 | <publisher>Software Toolworks</publisher> |
| 43674 | 48208 | <part name="cart" interface="snes_cart"> |
| 48209 | ||
| 48210 | <feature name="slot" value="lorom" /> | |
| 43675 | 48211 | <dataarea name="rom" size="1048576"> |
| 43676 | 48212 | <rom name="mario's time machine (europe).sfc" size="1048576" crc="9c7cf22d" sha1="d3eefc2d7412be346608c09d5c975912106dda8d" offset="0x000000" /> |
| 43677 | 48213 | </dataarea> |
| r21545 | r21546 | |
| 43683 | 48219 | <year>1993</year> |
| 43684 | 48220 | <publisher>Software Toolworks</publisher> |
| 43685 | 48221 | <part name="cart" interface="snes_cart"> |
| 48222 | ||
| 48223 | <feature name="slot" value="lorom" /> | |
| 43686 | 48224 | <dataarea name="rom" size="1048576"> |
| 43687 | 48225 | <rom name="mario's time machine (germany).sfc" size="1048576" crc="1d5a48d3" sha1="7b20b6235a1c64486946fe71bb62cac03d6f3f6d" offset="0x000000" /> |
| 43688 | 48226 | </dataarea> |
| r21545 | r21546 | |
| 43695 | 48233 | <publisher>Software Toolworks</publisher> |
| 43696 | 48234 | <info name="release" value="199312xx" /> |
| 43697 | 48235 | <part name="cart" interface="snes_cart"> |
| 48236 | ||
| 48237 | <feature name="slot" value="lorom" /> | |
| 43698 | 48238 | <dataarea name="rom" size="1048576"> |
| 43699 | 48239 | <rom name="mario's time machine (usa).sfc" size="1048576" crc="5e7397e0" sha1="e5140776ed65480ace64deb0b8cbba23295a9a25" offset="0x000000" /> |
| 43700 | 48240 | </dataarea> |
| r21545 | r21546 | |
| 43707 | 48247 | <publisher>Natsume</publisher> |
| 43708 | 48248 | <info name="release" value="199604xx" /> |
| 43709 | 48249 | <part name="cart" interface="snes_cart"> |
| 48250 | ||
| 48251 | <feature name="slot" value="hirom" /> | |
| 43710 | 48252 | <dataarea name="rom" size="2097152"> |
| 43711 | 48253 | <rom name="mark davis' the fishing master (usa).sfc" size="2097152" crc="22a109b9" sha1="5cf1ae9c513b3447a904cfe0c062bbf09d4ab2fb" offset="0x000000" /> |
| 43712 | 48254 | </dataarea> |
| r21545 | r21546 | |
| 43721 | 48263 | <publisher>Acclaim Entertainment</publisher> |
| 43722 | 48264 | <sharedfeat name="compatibility" value="PAL"/> |
| 43723 | 48265 | <part name="cart" interface="snes_cart"> |
| 48266 | ||
| 48267 | <feature name="slot" value="lorom" /> | |
| 43724 | 48268 | <dataarea name="rom" size="2097152"> |
| 43725 | 48269 | <rom name="marko's magic football (europe) (en,fr,de,es).sfc" size="2097152" crc="4824a630" sha1="a3e6d7711dc62a3092e96b5d9ea636a8ab6dee36" offset="0x000000" /> |
| 43726 | 48270 | </dataarea> |
| r21545 | r21546 | |
| 43735 | 48279 | <info name="release" value="19950421" /> |
| 43736 | 48280 | <info name="alt_title" value="ママレード・ボーイ" /> |
| 43737 | 48281 | <part name="cart" interface="snes_cart"> |
| 48282 | ||
| 48283 | <feature name="slot" value="lorom" /> | |
| 43738 | 48284 | <dataarea name="rom" size="1048576"> |
| 43739 | 48285 | <rom name="marmalade boy (japan).sfc" size="1048576" crc="5299b3a6" sha1="50e72aebb03e3ea8c20146edcc5ad6ab40bc60ca" offset="0x000000" /> |
| 43740 | 48286 | </dataarea> |
| r21545 | r21546 | |
| 43748 | 48294 | <year>1996</year> |
| 43749 | 48295 | <publisher>Capcom</publisher> |
| 43750 | 48296 | <part name="cart" interface="snes_cart"> |
| 48297 | ||
| 48298 | <feature name="slot" value="hirom" /> | |
| 43751 | 48299 | <dataarea name="rom" size="2097152"> |
| 43752 | 48300 | <rom name="marvel super heroes - war of the gems (europe).sfc" size="2097152" crc="ac0f2c23" sha1="5efb59770af39636595d5e5eb86abaf0c5d8309b" offset="0x000000" /> |
| 43753 | 48301 | </dataarea> |
| r21545 | r21546 | |
| 43762 | 48310 | <info name="release" value="19961018" /> |
| 43763 | 48311 | <info name="alt_title" value="マーヴル・スーパーヒーローズ ウォー オブ ザ ジェム" /> |
| 43764 | 48312 | <part name="cart" interface="snes_cart"> |
| 48313 | ||
| 48314 | <feature name="slot" value="hirom" /> | |
| 43765 | 48315 | <dataarea name="rom" size="2097152"> |
| 43766 | 48316 | <rom name="marvel super heroes - war of the gems (japan).sfc" size="2097152" crc="ab628c0c" sha1="8662105aae89d1fe9a0cd484ca96fb39fe7dc638" offset="0x000000" /> |
| 43767 | 48317 | </dataarea> |
| r21545 | r21546 | |
| 43774 | 48324 | <publisher>Capcom</publisher> |
| 43775 | 48325 | <info name="release" value="199611xx" /> |
| 43776 | 48326 | <part name="cart" interface="snes_cart"> |
| 48327 | ||
| 48328 | <feature name="slot" value="hirom" /> | |
| 43777 | 48329 | <dataarea name="rom" size="2097152"> |
| 43778 | 48330 | <rom name="marvel super heroes - war of the gems (usa).sfc" size="2097152" crc="00af56e8" sha1="df1bc952ac6b947a9cc55e21225e0a87647d1cb9" offset="0x000000" /> |
| 43779 | 48331 | </dataarea> |
| r21545 | r21546 | |
| 43789 | 48341 | <info name="alt_title" value="マーヴェラス ~もうひとつの宝島~" /> |
| 43790 | 48342 | <part name="cart" interface="snes_cart"> |
| 43791 | 48343 | <feature name="enhancement" value="SA1" /> |
| 48344 | ||
| 48345 | <feature name="slot" value="lorom_sa1" /> | |
| 43792 | 48346 | <dataarea name="rom" size="3145728"> |
| 43793 | 48347 | <rom name="marvelous - mou hitotsu no takarajima (japan).sfc" size="3145728" crc="cedf3ba7" sha1="46fe42f195d43b71ba0608356eb7c2b65bff70ac" offset="0x000000" /> |
| 43794 | 48348 | </dataarea> |
| r21545 | r21546 | |
| 43802 | 48356 | <year>1994</year> |
| 43803 | 48357 | <publisher>Sony Imagesoft</publisher> |
| 43804 | 48358 | <part name="cart" interface="snes_cart"> |
| 48359 | ||
| 48360 | <feature name="slot" value="lorom" /> | |
| 43805 | 48361 | <dataarea name="rom" size="2097152"> |
| 43806 | 48362 | <rom name="mary shelley's frankenstein (usa) (beta).sfc" size="2097152" crc="22e1403f" sha1="3ed31ba0ac26de6a074fbf78c26fea6406c14a83" offset="0x000000" /> |
| 43807 | 48363 | </dataarea> |
| r21545 | r21546 | |
| 43814 | 48370 | <publisher>Sony Imagesoft</publisher> |
| 43815 | 48371 | <info name="release" value="199411xx" /> |
| 43816 | 48372 | <part name="cart" interface="snes_cart"> |
| 48373 | ||
| 48374 | <feature name="slot" value="lorom" /> | |
| 43817 | 48375 | <dataarea name="rom" size="2097152"> |
| 43818 | 48376 | <rom name="mary shelley's frankenstein (usa).sfc" size="2097152" crc="91415d1e" sha1="521249ed57c74dc85349aa5e2afca587443a7cef" offset="0x000000" /> |
| 43819 | 48377 | </dataarea> |
| r21545 | r21546 | |
| 43825 | 48383 | <year>1995</year> |
| 43826 | 48384 | <publisher>Black Pearl</publisher> |
| 43827 | 48385 | <part name="cart" interface="snes_cart"> |
| 48386 | ||
| 48387 | <feature name="slot" value="lorom" /> | |
| 43828 | 48388 | <dataarea name="rom" size="2097152"> |
| 43829 | 48389 | <rom name="mask, the (europe).sfc" size="2097152" crc="a5f6839a" sha1="3cac518f5666ab1a2389133cf95b92f78ca22d69" offset="0x000000" /> |
| 43830 | 48390 | </dataarea> |
| r21545 | r21546 | |
| 43839 | 48399 | <info name="release" value="19961227" /> |
| 43840 | 48400 | <info name="alt_title" value="マスク" /> |
| 43841 | 48401 | <part name="cart" interface="snes_cart"> |
| 48402 | ||
| 48403 | <feature name="slot" value="lorom" /> | |
| 43842 | 48404 | <dataarea name="rom" size="2097152"> |
| 43843 | 48405 | <rom name="mask, the (japan).sfc" size="2097152" crc="e91bb876" sha1="e772ea32f969edb3bb6b92a519e26186b9480f91" offset="0x000000" /> |
| 43844 | 48406 | </dataarea> |
| r21545 | r21546 | |
| 43850 | 48412 | <year>1995</year> |
| 43851 | 48413 | <publisher>Black Pearl</publisher> |
| 43852 | 48414 | <part name="cart" interface="snes_cart"> |
| 48415 | ||
| 48416 | <feature name="slot" value="lorom" /> | |
| 43853 | 48417 | <dataarea name="rom" size="2097152"> |
| 43854 | 48418 | <rom name="mask, the (usa) (beta).sfc" size="2097152" crc="cf727f64" sha1="6332fd5519f07aeb88f2442bf61c55ca9d1ab948" offset="0x000000" /> |
| 43855 | 48419 | </dataarea> |
| r21545 | r21546 | |
| 43862 | 48426 | <publisher>Black Pearl</publisher> |
| 43863 | 48427 | <info name="release" value="199510xx" /> |
| 43864 | 48428 | <part name="cart" interface="snes_cart"> |
| 48429 | ||
| 48430 | <feature name="slot" value="lorom" /> | |
| 43865 | 48431 | <dataarea name="rom" size="2097152"> |
| 43866 | 48432 | <rom name="mask, the (usa).sfc" size="2097152" crc="e17626e2" sha1="6831f93eaa478eb87a51e0cae10f6935730575bb" offset="0x000000" /> |
| 43867 | 48433 | </dataarea> |
| r21545 | r21546 | |
| 43876 | 48442 | <info name="release" value="19951027" /> |
| 43877 | 48443 | <info name="alt_title" value="魔天伝説 戦慄のオーパーツ" /> |
| 43878 | 48444 | <part name="cart" interface="snes_cart"> |
| 48445 | ||
| 48446 | <feature name="slot" value="hirom" /> | |
| 43879 | 48447 | <dataarea name="rom" size="3145728"> |
| 43880 | 48448 | <rom name="maten densetsu - senritsu no ooparts (japan).sfc" size="3145728" crc="0f02330f" sha1="64d3f337e06fa33eb012c98169426a92e4058f1f" offset="0x000000" /> |
| 43881 | 48449 | </dataarea> |
| r21545 | r21546 | |
| 43890 | 48458 | <publisher>Davidson & Associates</publisher> |
| 43891 | 48459 | <info name="release" value="199410xx" /> |
| 43892 | 48460 | <part name="cart" interface="snes_cart"> |
| 48461 | ||
| 48462 | <feature name="slot" value="lorom" /> | |
| 43893 | 48463 | <dataarea name="rom" size="1048576"> |
| 43894 | 48464 | <rom name="math blaster - episode 1 (usa).sfc" size="1048576" crc="4c4e5f4a" sha1="239ab10d88b3b60a631e9ae91339bb815840bd60" offset="0x000000" /> |
| 43895 | 48465 | </dataarea> |
| r21545 | r21546 | |
| 43904 | 48474 | <info name="release" value="19940826" /> |
| 43905 | 48475 | <info name="alt_title" value="松村邦洋伝 最強の歴史をぬりかえ ろ!" /> |
| 43906 | 48476 | <part name="cart" interface="snes_cart"> |
| 48477 | ||
| 48478 | <feature name="slot" value="hirom" /> | |
| 43907 | 48479 | <dataarea name="rom" size="3145728"> |
| 43908 | 48480 | <rom name="matsumura kunihiro den - saikyou no rekishi o nurikaero! (japan).sfc" size="3145728" crc="8f3da172" sha1="e8ebc058a74ac7e5f88376dbbebadcd9fc43d7fb" offset="0x000000" /> |
| 43909 | 48481 | </dataarea> |
| r21545 | r21546 | |
| 43917 | 48489 | <info name="release" value="199611xx" /> |
| 43918 | 48490 | <sharedfeat name="compatibility" value="NTSC"/> |
| 43919 | 48491 | <part name="cart" interface="snes_cart"> |
| 48492 | ||
| 48493 | <feature name="slot" value="lorom" /> | |
| 43920 | 48494 | <dataarea name="rom" size="3145728"> |
| 43921 | 48495 | <rom name="maui mallard in cold shadow (usa).sfc" size="3145728" crc="2d3b9662" sha1="04f200d4ae97f9aee9eb461e02e8d1c91f2bb372" offset="0x000000" /> |
| 43922 | 48496 | </dataarea> |
| r21545 | r21546 | |
| 43929 | 48503 | <publisher>Toho</publisher> |
| 43930 | 48504 | <info name="release" value="199309xx" /> |
| 43931 | 48505 | <part name="cart" interface="snes_cart"> |
| 48506 | ||
| 48507 | <feature name="slot" value="lorom" /> | |
| 43932 | 48508 | <dataarea name="rom" size="1048576"> |
| 43933 | 48509 | <rom name="mecarobot golf (usa).sfc" size="1048576" crc="82ceee3a" sha1="7fc213cf74189df1ada9633852a3843e082ee677" offset="0x000000" /> |
| 43934 | 48510 | </dataarea> |
| r21545 | r21546 | |
| 43942 | 48518 | <year>1993</year> |
| 43943 | 48519 | <publisher>Activision</publisher> |
| 43944 | 48520 | <part name="cart" interface="snes_cart"> |
| 48521 | ||
| 48522 | <feature name="slot" value="lorom" /> | |
| 43945 | 48523 | <dataarea name="rom" size="1048576"> |
| 43946 | 48524 | <rom name="mechwarrior (europe).sfc" size="1048576" crc="fba97820" sha1="6687f893ac79e7ce497695bbd833fba5e4cd6f4d" offset="0x000000" /> |
| 43947 | 48525 | </dataarea> |
| r21545 | r21546 | |
| 43955 | 48533 | <year>1993</year> |
| 43956 | 48534 | <publisher>Activision</publisher> |
| 43957 | 48535 | <part name="cart" interface="snes_cart"> |
| 48536 | ||
| 48537 | <feature name="slot" value="lorom" /> | |
| 43958 | 48538 | <dataarea name="rom" size="1048576"> |
| 43959 | 48539 | <rom name="mechwarrior (france).sfc" size="1048576" crc="de2552ad" sha1="2b146b18e7a323b92a3a8ce33bd34ee738bc2154" offset="0x000000" /> |
| 43960 | 48540 | </dataarea> |
| r21545 | r21546 | |
| 43968 | 48548 | <year>1993</year> |
| 43969 | 48549 | <publisher>Activision</publisher> |
| 43970 | 48550 | <part name="cart" interface="snes_cart"> |
| 48551 | ||
| 48552 | <feature name="slot" value="lorom" /> | |
| 43971 | 48553 | <dataarea name="rom" size="1048576"> |
| 43972 | 48554 | <rom name="mechwarrior (germany).sfc" size="1048576" crc="503d467a" sha1="29bcc2df05198f27ee24534e7aa1840b5b0eb914" offset="0x000000" /> |
| 43973 | 48555 | </dataarea> |
| r21545 | r21546 | |
| 43981 | 48563 | <year>1993</year> |
| 43982 | 48564 | <publisher>Activision</publisher> |
| 43983 | 48565 | <part name="cart" interface="snes_cart"> |
| 48566 | ||
| 48567 | <feature name="slot" value="lorom" /> | |
| 43984 | 48568 | <dataarea name="rom" size="1048576"> |
| 43985 | 48569 | <rom name="mechwarrior (spain).sfc" size="1048576" crc="d713a74f" sha1="48d6f2e0c8f673d79c2394bf9d7fc7b1218b0e6f" offset="0x000000" /> |
| 43986 | 48570 | </dataarea> |
| r21545 | r21546 | |
| 43994 | 48578 | <year>1995</year> |
| 43995 | 48579 | <publisher>Activision</publisher> |
| 43996 | 48580 | <part name="cart" interface="snes_cart"> |
| 48581 | ||
| 48582 | <feature name="slot" value="hirom" /> | |
| 43997 | 48583 | <dataarea name="rom" size="1572864"> |
| 43998 | 48584 | <rom name="mechwarrior 3050 (europe).sfc" size="1572864" crc="4ccc3651" sha1="74218280b2c2681671bef1b54bb50e8566f15ea9" offset="0x000000" /> |
| 43999 | 48585 | </dataarea> |
| r21545 | r21546 | |
| 44006 | 48592 | <publisher>Activision</publisher> |
| 44007 | 48593 | <info name="release" value="199510xx" /> |
| 44008 | 48594 | <part name="cart" interface="snes_cart"> |
| 48595 | ||
| 48596 | <feature name="slot" value="hirom" /> | |
| 44009 | 48597 | <dataarea name="rom" size="1572864"> |
| 44010 | 48598 | <rom name="mechwarrior 3050 (usa).sfc" size="1572864" crc="c0acc92d" sha1="2e9ad76ef580813fa799bec5559474f3e881e11a" offset="0x000000" /> |
| 44011 | 48599 | </dataarea> |
| r21545 | r21546 | |
| 44018 | 48606 | <publisher>Virgin Interactive</publisher> |
| 44019 | 48607 | <sharedfeat name="compatibility" value="PAL"/> |
| 44020 | 48608 | <part name="cart" interface="snes_cart"> |
| 48609 | ||
| 48610 | <feature name="slot" value="lorom" /> | |
| 44021 | 48611 | <dataarea name="rom" size="1048576"> |
| 44022 | 48612 | <rom name="mega lo mania (europe) (en,fr,de) (beta).sfc" size="1048576" crc="44a9db5c" sha1="ba3584492ec4b566cc8043bc3571a664d51b6e33" offset="0x000000" /> |
| 44023 | 48613 | </dataarea> |
| r21545 | r21546 | |
| 44030 | 48620 | <publisher>Virgin Interactive</publisher> |
| 44031 | 48621 | <sharedfeat name="compatibility" value="PAL"/> |
| 44032 | 48622 | <part name="cart" interface="snes_cart"> |
| 48623 | ||
| 48624 | <feature name="slot" value="lorom" /> | |
| 44033 | 48625 | <dataarea name="rom" size="1048576"> |
| 44034 | 48626 | <rom name="mega lo mania (europe) (en,fr,de).sfc" size="1048576" crc="e8042edf" sha1="e8de68aee66e5a524a0ee4a0fc76142e9a3c7a95" offset="0x000000" /> |
| 44035 | 48627 | </dataarea> |
| r21545 | r21546 | |
| 44041 | 48633 | <year>1995</year> |
| 44042 | 48634 | <publisher>Capcom</publisher> |
| 44043 | 48635 | <part name="cart" interface="snes_cart"> |
| 48636 | ||
| 48637 | <feature name="slot" value="hirom" /> | |
| 44044 | 48638 | <dataarea name="rom" size="2097152"> |
| 44045 | 48639 | <rom name="megaman 7 (europe).sfc" size="2097152" crc="03579738" sha1="d11e3793f46f2b1bd00150438d394e4b13489a14" offset="0x000000" /> |
| 44046 | 48640 | </dataarea> |
| r21545 | r21546 | |
| 44053 | 48647 | <publisher>Capcom</publisher> |
| 44054 | 48648 | <info name="release" value="199509xx" /> |
| 44055 | 48649 | <part name="cart" interface="snes_cart"> |
| 48650 | ||
| 48651 | <feature name="slot" value="hirom" /> | |
| 44056 | 48652 | <dataarea name="rom" size="2097152"> |
| 44057 | 48653 | <rom name="megaman 7 (usa).sfc" size="2097152" crc="2d947536" sha1="6e7c9c9dd397f771303ee4aec29d106b9f86c832" offset="0x000000" /> |
| 44058 | 48654 | </dataarea> |
| r21545 | r21546 | |
| 44066 | 48662 | <info name="release" value="199404xx" /> |
| 44067 | 48663 | <sharedfeat name="compatibility" value="NTSC"/> |
| 44068 | 48664 | <part name="cart" interface="snes_cart"> |
| 48665 | ||
| 48666 | <feature name="slot" value="lorom" /> | |
| 44069 | 48667 | <dataarea name="rom" size="1310720"> |
| 44070 | 48668 | <rom name="megaman soccer (usa).sfc" size="1310720" crc="fa9ee2ce" sha1="7e59c9457829ed3f0fbd9cd0ceeb3432a4739e98" offset="0x000000" /> |
| 44071 | 48669 | </dataarea> |
| r21545 | r21546 | |
| 44078 | 48676 | <publisher>Capcom</publisher> |
| 44079 | 48677 | <info name="release" value="199401xx" /> |
| 44080 | 48678 | <part name="cart" interface="snes_cart"> |
| 48679 | ||
| 48680 | <feature name="slot" value="lorom" /> | |
| 44081 | 48681 | <dataarea name="rom" size="1572864"> |
| 44082 | 48682 | <rom name="megaman x (usa) (rev 1).sfc" size="1572864" crc="ded53c64" sha1="c65216760ba99178100a10d98457cf11496c2097" offset="0x000000" /> |
| 44083 | 48683 | </dataarea> |
| r21545 | r21546 | |
| 44090 | 48690 | <publisher>Capcom</publisher> |
| 44091 | 48691 | <part name="cart" interface="snes_cart"> |
| 44092 | 48692 | <feature name="enhancement" value="CX4" /> |
| 48693 | ||
| 48694 | <feature name="slot" value="lorom_cx4" /> | |
| 44093 | 48695 | <dataarea name="rom" size="1572864"> |
| 44094 | 48696 | <rom name="megaman x2 (europe).sfc" size="1572864" crc="3c49c39c" sha1="5c767285da713de2bc883a6291d32adc9b2d13fa" offset="0x000000" /> |
| 44095 | 48697 | </dataarea> |
| 48698 | <dataarea name="addon" size="3072"> | |
| 48699 | <rom name="cx4.bin" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 48700 | </dataarea> | |
| 44096 | 48701 | </part> |
| 44097 | 48702 | </software> |
| 44098 | 48703 | |
| r21545 | r21546 | |
| 44103 | 48708 | <info name="release" value="199501xx" /> |
| 44104 | 48709 | <part name="cart" interface="snes_cart"> |
| 44105 | 48710 | <feature name="enhancement" value="CX4" /> |
| 48711 | ||
| 48712 | <feature name="slot" value="lorom_cx4" /> | |
| 44106 | 48713 | <dataarea name="rom" size="1572864"> |
| 44107 | 48714 | <rom name="megaman x2 (usa).sfc" size="1572864" crc="947b0355" sha1="637079014421563283cded6aeaa0604597b2e33c" offset="0x000000" /> |
| 44108 | 48715 | </dataarea> |
| 48716 | <dataarea name="addon" size="3072"> | |
| 48717 | <rom name="cx4.bin" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 48718 | </dataarea> | |
| 44109 | 48719 | </part> |
| 44110 | 48720 | </software> |
| 44111 | 48721 | |
| r21545 | r21546 | |
| 44115 | 48725 | <publisher>Capcom</publisher> |
| 44116 | 48726 | <part name="cart" interface="snes_cart"> |
| 44117 | 48727 | <feature name="enhancement" value="CX4" /> |
| 48728 | ||
| 48729 | <feature name="slot" value="lorom_cx4" /> | |
| 44118 | 48730 | <dataarea name="rom" size="2097152"> |
| 44119 | 48731 | <rom name="megaman x3 (europe).sfc" size="2097152" crc="c504ddfd" sha1="69a11324aeb57d005800771d6147603d5479b282" offset="0x000000" /> |
| 44120 | 48732 | </dataarea> |
| 48733 | <dataarea name="addon" size="3072"> | |
| 48734 | <rom name="cx4.bin" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 48735 | </dataarea> | |
| 44121 | 48736 | </part> |
| 44122 | 48737 | </software> |
| 44123 | 48738 | |
| r21545 | r21546 | |
| 44128 | 48743 | <info name="release" value="199601xx" /> |
| 44129 | 48744 | <part name="cart" interface="snes_cart"> |
| 44130 | 48745 | <feature name="enhancement" value="CX4" /> |
| 48746 | ||
| 48747 | <feature name="slot" value="lorom_cx4" /> | |
| 44131 | 48748 | <dataarea name="rom" size="2097152"> |
| 44132 | 48749 | <rom name="megaman x3 (usa).sfc" size="2097152" crc="fa0fe671" sha1="b226f7ec59283b05c1e276e2f433893f45027cac" offset="0x000000" /> |
| 44133 | 48750 | </dataarea> |
| 48751 | <dataarea name="addon" size="3072"> | |
| 48752 | <rom name="cx4.bin" size="3072" crc="b6e76a6a" sha1="a002f4efba42775a31185d443f3ed1790b0e949a" offset="0x000000" /> | |
| 48753 | </dataarea> | |
| 44134 | 48754 | </part> |
| 44135 | 48755 | </software> |
| 44136 | 48756 | |
| r21545 | r21546 | |
| 44142 | 48762 | <info name="release" value="19940325" /> |
| 44143 | 48763 | <info name="alt_title" value="メルファンドストーリース" /> |
| 44144 | 48764 | <part name="cart" interface="snes_cart"> |
| 48765 | ||
| 48766 | <feature name="slot" value="lorom" /> | |
| 44145 | 48767 | <dataarea name="rom" size="1572864"> |
| 44146 | 48768 | <rom name="melfand stories (japan).sfc" size="1572864" crc="0928fc15" sha1="f321fecc3ead4f2e5ec981ed591d87eedc068e5b" offset="0x000000" /> |
| 44147 | 48769 | </dataarea> |
| r21545 | r21546 | |
| 44155 | 48777 | <info name="release" value="199312xx" /> |
| 44156 | 48778 | <part name="cart" interface="snes_cart"> |
| 44157 | 48779 | <feature name="enhancement" value="OBC1" /> |
| 48780 | ||
| 48781 | <feature name="slot" value="lorom_obc1" /> | |
| 44158 | 48782 | <dataarea name="rom" size="2097152"> |
| 44159 | 48783 | <rom name="metal combat - falcon's revenge (usa).sfc" size="2097152" crc="c3131b49" sha1="da88fc5830ddb0cdf8ffc2e8340a607d0ad8eaa1" offset="0x000000" /> |
| 44160 | 48784 | </dataarea> |
| r21545 | r21546 | |
| 44171 | 48795 | <info name="release" value="19930305" /> |
| 44172 | 48796 | <info name="alt_title" value="メタルマックス2" /> |
| 44173 | 48797 | <part name="cart" interface="snes_cart"> |
| 48798 | ||
| 48799 | <feature name="slot" value="lorom" /> | |
| 44174 | 48800 | <dataarea name="rom" size="1048576"> |
| 44175 | 48801 | <rom name="metal max 2 (japan).sfc" size="1048576" crc="9516bf39" sha1="bd1ca8f771169cfff111046a79bcb297987e3bdc" offset="0x000000" /> |
| 44176 | 48802 | </dataarea> |
| r21545 | r21546 | |
| 44188 | 48814 | <info name="alt_title" value="メタルマックスリターンス" /> |
| 44189 | 48815 | <sharedfeat name="compatibility" value="NTSC"/> |
| 44190 | 48816 | <part name="cart" interface="snes_cart"> |
| 48817 | ||
| 48818 | <feature name="slot" value="lorom" /> | |
| 44191 | 48819 | <dataarea name="rom" size="4194304"> |
| 44192 | 48820 | <rom name="metal max returns (japan).sfc" size="4194304" crc="4396a35b" sha1="fdd81b8d91e4a46935189f31e5bc7ddce868f7ba" offset="0x000000" /> |
| 44193 | 48821 | </dataarea> |
| r21545 | r21546 | |
| 44202 | 48830 | <publisher>FCI</publisher> |
| 44203 | 48831 | <info name="release" value="199412xx" /> |
| 44204 | 48832 | <part name="cart" interface="snes_cart"> |
| 48833 | ||
| 48834 | <feature name="slot" value="lorom" /> | |
| 44205 | 48835 | <dataarea name="rom" size="1572864"> |
| 44206 | 48836 | <rom name="metal morph (usa).sfc" size="1572864" crc="0adaa9da" sha1="51c3723214012451280b22cf3cc81b903f0f6bf4" offset="0x000000" /> |
| 44207 | 48837 | </dataarea> |
| r21545 | r21546 | |
| 44216 | 48846 | <info name="release" value="20001129 / 20001201" /> |
| 44217 | 48847 | <info name="alt_title" value="メタルスレイダーグローリー ディレクターズカット" /> |
| 44218 | 48848 | <part name="cart" interface="snes_cart"> |
| 48849 | ||
| 48850 | <feature name="slot" value="lorom" /> | |
| 44219 | 48851 | <dataarea name="rom" size="3145728"> |
| 44220 | 48852 | <rom name="metal slader glory - director's cut (japan) (np).sfc" size="3145728" crc="2cab2502" sha1="045e084c81bd84371e16ef770d29c1d11df98be2" offset="0x000000" /> |
| 44221 | 48853 | </dataarea> |
| r21545 | r21546 | |
| 44231 | 48863 | <info name="alt_title" value="マイケル・アンドレッティー インディ カーチャレンシ" /> |
| 44232 | 48864 | <part name="cart" interface="snes_cart"> |
| 44233 | 48865 | <feature name="enhancement" value="DSP1" /> |
| 48866 | ||
| 48867 | <feature name="slot" value="hirom_dsp" /> | |
| 44234 | 48868 | <dataarea name="rom" size="1048576"> |
| 44235 | 48869 | <rom name="michael andretti's indycar challenge (japan).sfc" size="1048576" crc="1128572b" sha1="ec07f7e81f13193805c3cd4b486118d218653da3" offset="0x000000" /> |
| 44236 | 48870 | </dataarea> |
| 48871 | <dataarea name="addon" size="10240"> | |
| 48872 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 48873 | </dataarea> | |
| 44237 | 48874 | </part> |
| 44238 | 48875 | </software> |
| 44239 | 48876 | |
| r21545 | r21546 | |
| 44244 | 48881 | <info name="release" value="199409xx" /> |
| 44245 | 48882 | <part name="cart" interface="snes_cart"> |
| 44246 | 48883 | <feature name="enhancement" value="DSP1" /> |
| 48884 | ||
| 48885 | <feature name="slot" value="hirom_dsp" /> | |
| 44247 | 48886 | <dataarea name="rom" size="1048576"> |
| 44248 | 48887 | <rom name="michael andretti's indycar challenge (usa).sfc" size="1048576" crc="0fdb210e" sha1="20b7fd6a8604fa36f75edf9ccb24380b13d8c905" offset="0x000000" /> |
| 44249 | 48888 | </dataarea> |
| 48889 | <dataarea name="addon" size="10240"> | |
| 48890 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 48891 | </dataarea> | |
| 44250 | 48892 | </part> |
| 44251 | 48893 | </software> |
| 44252 | 48894 | |
| r21545 | r21546 | |
| 44255 | 48897 | <year>1994</year> |
| 44256 | 48898 | <publisher>Electronic Arts</publisher> |
| 44257 | 48899 | <part name="cart" interface="snes_cart"> |
| 48900 | ||
| 48901 | <feature name="slot" value="hirom" /> | |
| 44258 | 48902 | <dataarea name="rom" size="1310720"> |
| 44259 | 48903 | <rom name="michael jordan - chaos in the windy city (europe).sfc" size="1310720" crc="8e37db87" sha1="f5adf0df565f88d6e0155660efecde259292a1c0" offset="0x000000" /> |
| 44260 | 48904 | </dataarea> |
| r21545 | r21546 | |
| 44267 | 48911 | <publisher>Electronic Arts</publisher> |
| 44268 | 48912 | <info name="release" value="199411xx" /> |
| 44269 | 48913 | <part name="cart" interface="snes_cart"> |
| 48914 | ||
| 48915 | <feature name="slot" value="hirom" /> | |
| 44270 | 48916 | <dataarea name="rom" size="1310720"> |
| 44271 | 48917 | <rom name="michael jordan - chaos in the windy city (usa).sfc" size="1310720" crc="f57dba3b" sha1="08524189bd10051005c2a15bdaae999c3a90359d" offset="0x000000" /> |
| 44272 | 48918 | </dataarea> |
| r21545 | r21546 | |
| 44278 | 48924 | <year>1994</year> |
| 44279 | 48925 | <publisher>Sony Imagesoft</publisher> |
| 44280 | 48926 | <part name="cart" interface="snes_cart"> |
| 48927 | ||
| 48928 | <feature name="slot" value="lorom" /> | |
| 44281 | 48929 | <dataarea name="rom" size="2097152"> |
| 44282 | 48930 | <rom name="mickey mania - the timeless adventures of mickey mouse (europe).sfc" size="2097152" crc="75fddf27" sha1="69a1f2a6541565f86abbb568dbf04a8bb3ac90b0" offset="0x000000" /> |
| 44283 | 48931 | </dataarea> |
| r21545 | r21546 | |
| 44292 | 48940 | <info name="release" value="19941216" /> |
| 44293 | 48941 | <info name="alt_title" value="ミッキーの東京ディズニーランド 大冒険" /> |
| 44294 | 48942 | <part name="cart" interface="snes_cart"> |
| 48943 | ||
| 48944 | <feature name="slot" value="lorom" /> | |
| 44295 | 48945 | <dataarea name="rom" size="1572864"> |
| 44296 | 48946 | <rom name="mickey no tokyo disneyland daibouken (japan).sfc" size="1572864" crc="e235f0c6" sha1="1ad723c995c8aa6393569f68489811585f5a1c12" offset="0x000000" /> |
| 44297 | 48947 | </dataarea> |
| r21545 | r21546 | |
| 44306 | 48956 | <info name="release" value="19951208" /> |
| 44307 | 48957 | <info name="alt_title" value="ミッキーとドナルド マジカルア ドベンチャー3" /> |
| 44308 | 48958 | <part name="cart" interface="snes_cart"> |
| 48959 | ||
| 48960 | <feature name="slot" value="hirom" /> | |
| 44309 | 48961 | <dataarea name="rom" size="2097152"> |
| 44310 | 48962 | <rom name="mickey to donald - magical adventure 3 (japan).sfc" size="2097152" crc="32eea1e9" sha1="8a153f92ad2498fbf66e4cb100f6e5b950098044" offset="0x000000" /> |
| 44311 | 48963 | </dataarea> |
| r21545 | r21546 | |
| 44317 | 48969 | <year>1994</year> |
| 44318 | 48970 | <publisher>Capcom</publisher> |
| 44319 | 48971 | <part name="cart" interface="snes_cart"> |
| 48972 | ||
| 48973 | <feature name="slot" value="hirom" /> | |
| 44320 | 48974 | <dataarea name="rom" size="1572864"> |
| 44321 | 48975 | <rom name="mickey to minnie - magical adventure 2 (japan) (sample).sfc" size="1572864" crc="d39b39ec" sha1="5e3262a680f795102abde36efdba09544e3d9e79" offset="0x000000" /> |
| 44322 | 48976 | </dataarea> |
| r21545 | r21546 | |
| 44330 | 48984 | <info name="serial" value="SNS-6U-USA" /> |
| 44331 | 48985 | <info name="release" value="199402xx" /> |
| 44332 | 48986 | <part name="cart" interface="snes_cart"> |
| 48987 | ||
| 48988 | <feature name="slot" value="lorom" /> | |
| 44333 | 48989 | <dataarea name="rom" size="1048576"> |
| 44334 | 48990 | <rom name="mickey's ultimate challenge (usa).sfc" size="1048576" crc="d6c60a84" sha1="2ae6116162503b06f91a06d3a9e4924c21d80488" offset="0x000000" /> |
| 44335 | 48991 | </dataarea> |
| r21545 | r21546 | |
| 44342 | 48998 | <publisher>Ocean</publisher> |
| 44343 | 48999 | <info name="release" value="199412xx" /> |
| 44344 | 49000 | <part name="cart" interface="snes_cart"> |
| 49001 | ||
| 49002 | <feature name="slot" value="lorom" /> | |
| 44345 | 49003 | <dataarea name="rom" size="524288"> |
| 44346 | 49004 | <rom name="micro machines (usa).sfc" size="524288" crc="364e68bb" sha1="282c4f27d08a9def36dc4e7fe71deaaf0a5f2b43" offset="0x000000" /> |
| 44347 | 49005 | </dataarea> |
| r21545 | r21546 | |
| 44353 | 49011 | <year>1994</year> |
| 44354 | 49012 | <publisher>Codemasters</publisher> |
| 44355 | 49013 | <part name="cart" interface="snes_cart"> |
| 49014 | ||
| 49015 | <feature name="slot" value="lorom" /> | |
| 44356 | 49016 | <dataarea name="rom" size="1048576"> |
| 44357 | 49017 | <rom name="micro machines 2 - turbo tournament (europe).sfc" size="1048576" crc="1619b619" sha1="7bc2410807e5424894297b6bb57999d730249bce" offset="0x000000" /> |
| 44358 | 49018 | </dataarea> |
| r21545 | r21546 | |
| 44367 | 49027 | <info name="release" value="19930122" /> |
| 44368 | 49028 | <info name="alt_title" value="マイト&マジック BOOK II" /> |
| 44369 | 49029 | <part name="cart" interface="snes_cart"> |
| 49030 | ||
| 49031 | <feature name="slot" value="lorom" /> | |
| 44370 | 49032 | <dataarea name="rom" size="1048576"> |
| 44371 | 49033 | <rom name="might and magic - book ii (japan).sfc" size="1048576" crc="e60eb6c0" sha1="562d0fd49642ee0c3f36f051dd256ba181e488be" offset="0x000000" /> |
| 44372 | 49034 | </dataarea> |
| r21545 | r21546 | |
| 44380 | 49042 | <year>1993</year> |
| 44381 | 49043 | <publisher>Elite System</publisher> |
| 44382 | 49044 | <part name="cart" interface="snes_cart"> |
| 49045 | ||
| 49046 | <feature name="slot" value="lorom" /> | |
| 44383 | 49047 | <dataarea name="rom" size="1048576"> |
| 44384 | 49048 | <rom name="might and magic ii - gates to another world (europe).sfc" size="1048576" crc="4062244b" sha1="84031c687ef2a1784f6f49b1b304ff5952dfd0b6" offset="0x000000" /> |
| 44385 | 49049 | </dataarea> |
| r21545 | r21546 | |
| 44393 | 49057 | <year>1995</year> |
| 44394 | 49058 | <publisher>FCI</publisher> |
| 44395 | 49059 | <part name="cart" interface="snes_cart"> |
| 49060 | ||
| 49061 | <feature name="slot" value="lorom" /> | |
| 44396 | 49062 | <dataarea name="rom" size="1572864"> |
| 44397 | 49063 | <rom name="might and magic iii - isles of terra (usa) (beta).sfc" size="1572864" crc="4c3814d5" sha1="e06c35251b6a4ba3bb1f9761a87b9fcf081ddfbf" offset="0x000000" /> |
| 44398 | 49064 | </dataarea> |
| r21545 | r21546 | |
| 44407 | 49073 | <publisher>FCI</publisher> |
| 44408 | 49074 | <info name="release" value="199501xx" /> |
| 44409 | 49075 | <part name="cart" interface="snes_cart"> |
| 49076 | ||
| 49077 | <feature name="slot" value="lorom" /> | |
| 44410 | 49078 | <dataarea name="rom" size="1572864"> |
| 44411 | 49079 | <rom name="might and magic iii - isles of terra (usa).sfc" size="1572864" crc="8af25e7e" sha1="f09addfc729c6c3a000ce5abed4b13ea3bbfdd6b" offset="0x000000" /> |
| 44412 | 49080 | </dataarea> |
| r21545 | r21546 | |
| 44421 | 49089 | <publisher>Ocean</publisher> |
| 44422 | 49090 | <sharedfeat name="compatibility" value="PAL"/> |
| 44423 | 49091 | <part name="cart" interface="snes_cart"> |
| 49092 | ||
| 49093 | <feature name="slot" value="lorom" /> | |
| 44424 | 49094 | <dataarea name="rom" size="1048576"> |
| 44425 | 49095 | <rom name="mighty max (europe).sfc" size="1048576" crc="62a7c74b" sha1="fb1b7715b23005fe49df0d2a619aba9f55054258" offset="0x000000" /> |
| 44426 | 49096 | </dataarea> |
| r21545 | r21546 | |
| 44433 | 49103 | <publisher>Ocean</publisher> |
| 44434 | 49104 | <sharedfeat name="compatibility" value="NTSC"/> |
| 44435 | 49105 | <part name="cart" interface="snes_cart"> |
| 49106 | ||
| 49107 | <feature name="slot" value="lorom" /> | |
| 44436 | 49108 | <dataarea name="rom" size="1048576"> |
| 44437 | 49109 | <rom name="mighty max (usa) (beta).sfc" size="1048576" crc="4a0e225f" sha1="cd3db1766afa5c0e5bd6685b5b25e56b85b495fe" offset="0x000000" /> |
| 44438 | 49110 | </dataarea> |
| r21545 | r21546 | |
| 44444 | 49116 | <year>1995</year> |
| 44445 | 49117 | <publisher>Bandai</publisher> |
| 44446 | 49118 | <part name="cart" interface="snes_cart"> |
| 49119 | ||
| 49120 | <feature name="slot" value="lorom" /> | |
| 44447 | 49121 | <dataarea name="rom" size="2097152"> |
| 44448 | 49122 | <rom name="mighty morphin power rangers (europe).sfc" size="2097152" crc="1df7233c" sha1="f0cff996ec3ab7da5ff7e8474647fde767dd0b12" offset="0x000000" /> |
| 44449 | 49123 | </dataarea> |
| r21545 | r21546 | |
| 44458 | 49132 | <info name="release" value="19951124" /> |
| 44459 | 49133 | <info name="alt_title" value="マイティーモーフィン パワーレンジャー" /> |
| 44460 | 49134 | <part name="cart" interface="snes_cart"> |
| 49135 | ||
| 49136 | <feature name="slot" value="lorom" /> | |
| 44461 | 49137 | <dataarea name="rom" size="2097152"> |
| 44462 | 49138 | <rom name="mighty morphin power rangers (japan).sfc" size="2097152" crc="812329c2" sha1="5f2c815e36b3c7e1fd0b8e66dddfe14d7a453ff2" offset="0x000000" /> |
| 44463 | 49139 | </dataarea> |
| r21545 | r21546 | |
| 44470 | 49146 | <publisher>Bandai</publisher> |
| 44471 | 49147 | <info name="release" value="199409xx" /> |
| 44472 | 49148 | <part name="cart" interface="snes_cart"> |
| 49149 | ||
| 49150 | <feature name="slot" value="lorom" /> | |
| 44473 | 49151 | <dataarea name="rom" size="2097152"> |
| 44474 | 49152 | <rom name="mighty morphin power rangers (usa).sfc" size="2097152" crc="a56eb77a" sha1="f2b093f57b511fc30d40114649dafc342872186b" offset="0x000000" /> |
| 44475 | 49153 | </dataarea> |
| r21545 | r21546 | |
| 44481 | 49159 | <year>1995</year> |
| 44482 | 49160 | <publisher>Bandai</publisher> |
| 44483 | 49161 | <part name="cart" interface="snes_cart"> |
| 49162 | ||
| 49163 | <feature name="slot" value="lorom" /> | |
| 44484 | 49164 | <dataarea name="rom" size="1572864"> |
| 44485 | 49165 | <rom name="mighty morphin power rangers - the fighting edition (europe).sfc" size="1572864" crc="6fc37d96" sha1="da7f96e3e2e69e644e240e106d6b6dbe0725e39b" offset="0x000000" /> |
| 44486 | 49166 | </dataarea> |
| r21545 | r21546 | |
| 44493 | 49173 | <publisher>Bandai</publisher> |
| 44494 | 49174 | <info name="release" value="199509xx" /> |
| 44495 | 49175 | <part name="cart" interface="snes_cart"> |
| 49176 | ||
| 49177 | <feature name="slot" value="lorom" /> | |
| 44496 | 49178 | <dataarea name="rom" size="1572864"> |
| 44497 | 49179 | <rom name="mighty morphin power rangers - the fighting edition (usa).sfc" size="1572864" crc="460b0a60" sha1="80a856dba0f12fd1e9eded75d219b854910e990f" offset="0x000000" /> |
| 44498 | 49180 | </dataarea> |
| r21545 | r21546 | |
| 44504 | 49186 | <year>1995</year> |
| 44505 | 49187 | <publisher>Bandai</publisher> |
| 44506 | 49188 | <part name="cart" interface="snes_cart"> |
| 49189 | ||
| 49190 | <feature name="slot" value="lorom" /> | |
| 44507 | 49191 | <dataarea name="rom" size="1572864"> |
| 44508 | 49192 | <rom name="mighty morphin power rangers - the movie (europe).sfc" size="1572864" crc="e722e2a7" sha1="e61564637d4b6906103f57643ff4f388acab5cfa" offset="0x000000" /> |
| 44509 | 49193 | </dataarea> |
| r21545 | r21546 | |
| 44516 | 49200 | <publisher>Bandai</publisher> |
| 44517 | 49201 | <info name="release" value="199506xx" /> |
| 44518 | 49202 | <part name="cart" interface="snes_cart"> |
| 49203 | ||
| 49204 | <feature name="slot" value="lorom" /> | |
| 44519 | 49205 | <dataarea name="rom" size="1572864"> |
| 44520 | 49206 | <rom name="mighty morphin power rangers - the movie (usa).sfc" size="1572864" crc="e3ef6201" sha1="82fbe365bc96fe3f03c3eb12e1620910b15f01f9" offset="0x000000" /> |
| 44521 | 49207 | </dataarea> |
| r21545 | r21546 | |
| 44530 | 49216 | <info name="release" value="19970131" /> |
| 44531 | 49217 | <info name="alt_title" value="ミランドラ" /> |
| 44532 | 49218 | <part name="cart" interface="snes_cart"> |
| 49219 | ||
| 49220 | <feature name="slot" value="lorom" /> | |
| 44533 | 49221 | <dataarea name="rom" size="3145728"> |
| 44534 | 49222 | <rom name="milandra (japan).sfc" size="3145728" crc="67b5fb22" sha1="3e383e4d0b1f998900bf9829bc518ba6abfe5297" offset="0x000000" /> |
| 44535 | 49223 | </dataarea> |
| r21545 | r21546 | |
| 44546 | 49234 | <info name="release" value="19950127" /> |
| 44547 | 49235 | <info name="alt_title" value="みらくるカジノパラダイス" /> |
| 44548 | 49236 | <part name="cart" interface="snes_cart"> |
| 49237 | ||
| 49238 | <feature name="slot" value="lorom" /> | |
| 44549 | 49239 | <dataarea name="rom" size="1048576"> |
| 44550 | 49240 | <rom name="miracle casino paradise (japan).sfc" size="1048576" crc="db6b9db1" sha1="723bcab119f733d0ca9b7e46cc94c83ff83f4a9f" offset="0x000000" /> |
| 44551 | 49241 | </dataarea> |
| r21545 | r21546 | |
| 44560 | 49250 | <info name="release" value="19931022" /> |
| 44561 | 49251 | <info name="alt_title" value="ミラクルガールズ ともみとみかげの不思議世界の大冒険 " /> |
| 44562 | 49252 | <part name="cart" interface="snes_cart"> |
| 49253 | ||
| 49254 | <feature name="slot" value="hirom" /> | |
| 44563 | 49255 | <dataarea name="rom" size="1048576"> |
| 44564 | 49256 | <rom name="miracle girls (japan).sfc" size="1048576" crc="ab82ebbe" sha1="f62471127ca7e6ac834fc90bbf1058a9e4102256" offset="0x000000" /> |
| 44565 | 49257 | </dataarea> |
| r21545 | r21546 | |
| 44574 | 49266 | <info name="release" value="19950421" /> |
| 44575 | 49267 | <info name="alt_title" value=" 宮路社長のパチンコファン勝利 宣言2" /> |
| 44576 | 49268 | <part name="cart" interface="snes_cart"> |
| 49269 | ||
| 49270 | <feature name="slot" value="lorom" /> | |
| 44577 | 49271 | <dataarea name="rom" size="1048576"> |
| 44578 | 49272 | <rom name="miyaji shachou no pachinko fan - shouri sengen 2 (japan).sfc" size="1048576" crc="31197a53" sha1="088e9d1a3f30fdd8f7183339e97fe4a68d99cb16" offset="0x000000" /> |
| 44579 | 49273 | </dataarea> |
| r21545 | r21546 | |
| 44590 | 49284 | <info name="release" value="19951220" /> |
| 44591 | 49285 | <info name="alt_title" value="水木しげるの妖怪百鬼夜行" /> |
| 44592 | 49286 | <part name="cart" interface="snes_cart"> |
| 49287 | ||
| 49288 | <feature name="slot" value="lorom" /> | |
| 44593 | 49289 | <dataarea name="rom" size="1572864"> |
| 44594 | 49290 | <rom name="mizuki shigeru no youkai hyakkiyakou (japan).sfc" size="1572864" crc="70740cf4" sha1="a8f5a561072f4f5913dc001877863656ecd09f11" offset="0x000000" /> |
| 44595 | 49291 | </dataarea> |
| r21545 | r21546 | |
| 44604 | 49300 | <publisher>Electronic Arts</publisher> |
| 44605 | 49301 | <info name="release" value="199403xx" /> |
| 44606 | 49302 | <part name="cart" interface="snes_cart"> |
| 49303 | ||
| 49304 | <feature name="slot" value="lorom" /> | |
| 44607 | 49305 | <dataarea name="rom" size="1048576"> |
| 44608 | 49306 | <rom name="mlbpa baseball (usa).sfc" size="1048576" crc="62a92e57" sha1="79db2e2117b8f5651bd79fcf1c2162a5437dcd06" offset="0x000000" /> |
| 44609 | 49307 | </dataarea> |
| r21545 | r21546 | |
| 44615 | 49313 | <year>1996</year> |
| 44616 | 49314 | <publisher>T*HQ</publisher> |
| 44617 | 49315 | <part name="cart" interface="snes_cart"> |
| 49316 | ||
| 49317 | <feature name="slot" value="lorom" /> | |
| 44618 | 49318 | <dataarea name="rom" size="2097152"> |
| 44619 | 49319 | <rom name="mohawk & headphone jack (europe).sfc" size="2097152" crc="6cf14848" sha1="820a6342326556fdae1affd822bd2bb2fcb941cb" offset="0x000000" /> |
| 44620 | 49320 | </dataarea> |
| r21545 | r21546 | |
| 44629 | 49329 | <info name="release" value="19960927" /> |
| 44630 | 49330 | <info name="alt_title" value="モンスタニア" /> |
| 44631 | 49331 | <part name="cart" interface="snes_cart"> |
| 49332 | ||
| 49333 | <feature name="slot" value="hirom" /> | |
| 44632 | 49334 | <dataarea name="rom" size="2621440"> |
| 44633 | 49335 | <rom name="monstania (japan).sfc" size="2621440" crc="f3887022" sha1="ff2e0c3e3b95699e1860a2b2d0ef88e8cb20fc57" offset="0x000000" /> |
| 44634 | 49336 | </dataarea> |
| r21545 | r21546 | |
| 44645 | 49347 | <info name="release" value="19931224" /> |
| 44646 | 49348 | <info name="alt_title" value="モンスターメーカー3 光の魔術士" /> |
| 44647 | 49349 | <part name="cart" interface="snes_cart"> |
| 49350 | ||
| 49351 | <feature name="slot" value="lorom" /> | |
| 44648 | 49352 | <dataarea name="rom" size="2097152"> |
| 44649 | 49353 | <rom name="monster maker iii - hikari no majutsushi (japan).sfc" size="2097152" crc="d1e14d4f" sha1="8fa122ee163d9060580a7b3553f398b9f8683aa9" offset="0x000000" /> |
| 44650 | 49354 | </dataarea> |
| r21545 | r21546 | |
| 44662 | 49366 | <info name="alt_title" value="モンスターメーカーキッズ 王 様になりたい" /> |
| 44663 | 49367 | <sharedfeat name="compatibility" value="NTSC"/> |
| 44664 | 49368 | <part name="cart" interface="snes_cart"> |
| 49369 | ||
| 49370 | <feature name="slot" value="lorom" /> | |
| 44665 | 49371 | <dataarea name="rom" size="1048576"> |
| 44666 | 49372 | <rom name="monster maker kids - ousama ni naritai (japan).sfc" size="1048576" crc="d1b621ac" sha1="e26b4599e07a5eb1c5d995af2dad838ff3d229c7" offset="0x000000" /> |
| 44667 | 49373 | </dataarea> |
| r21545 | r21546 | |
| 44675 | 49381 | <year>1993</year> |
| 44676 | 49382 | <publisher>Acclaim Entertainment</publisher> |
| 44677 | 49383 | <part name="cart" interface="snes_cart"> |
| 49384 | ||
| 49385 | <feature name="slot" value="lorom" /> | |
| 44678 | 49386 | <dataarea name="rom" size="2097152"> |
| 44679 | 49387 | <rom name="mortal kombat (europe) (beta).sfc" size="2097152" crc="91af0cec" sha1="937815a4fa571dc089895032bc6601f195968694" offset="0x000000" /> |
| 44680 | 49388 | </dataarea> |
| r21545 | r21546 | |
| 44689 | 49397 | <info name="release" value="19931224" /> |
| 44690 | 49398 | <info name="alt_title" value="モータルコンバット神拳降臨伝説" /> |
| 44691 | 49399 | <part name="cart" interface="snes_cart"> |
| 49400 | ||
| 49401 | <feature name="slot" value="lorom" /> | |
| 44692 | 49402 | <dataarea name="rom" size="2097152"> |
| 44693 | 49403 | <rom name="mortal kombat - shinken kourin densetsu (japan).sfc" size="2097152" crc="0bd8ec55" sha1="3eef203a3f878473c528ed3f3d2194da27243907" offset="0x000000" /> |
| 44694 | 49404 | </dataarea> |
| r21545 | r21546 | |
| 44700 | 49410 | <year>1995</year> |
| 44701 | 49411 | <publisher>Williams Entertainment</publisher> |
| 44702 | 49412 | <part name="cart" interface="snes_cart"> |
| 49413 | ||
| 49414 | <feature name="slot" value="hirom" /> | |
| 44703 | 49415 | <dataarea name="rom" size="4194304"> |
| 44704 | 49416 | <rom name="mortal kombat 3 (europe) (beta).sfc" size="4194304" crc="342bf9d0" sha1="73975ca0707248159c036eca4cb0a7e516f80e56" offset="0x000000" /> |
| 44705 | 49417 | </dataarea> |
| r21545 | r21546 | |
| 44711 | 49423 | <year>1995</year> |
| 44712 | 49424 | <publisher>Acclaim Entertainment</publisher> |
| 44713 | 49425 | <part name="cart" interface="snes_cart"> |
| 49426 | ||
| 49427 | <feature name="slot" value="hirom" /> | |
| 44714 | 49428 | <dataarea name="rom" size="4194304"> |
| 44715 | 49429 | <rom name="mortal kombat 3 (usa) (beta).sfc" size="4194304" crc="ffcbf355" sha1="d3030a0a80ff173dd07a3e7362efeb31d4553543" offset="0x000000" /> |
| 44716 | 49430 | </dataarea> |
| r21545 | r21546 | |
| 44723 | 49437 | <year>1995</year> |
| 44724 | 49438 | <publisher>Williams Entertainment</publisher> |
| 44725 | 49439 | <part name="cart" interface="snes_cart"> |
| 49440 | ||
| 49441 | <feature name="slot" value="hirom" /> | |
| 44726 | 49442 | <dataarea name="rom" size="4194304"> |
| 44727 | 49443 | <rom name="mortal kombat 3 r21.sfc" size="4194304" crc="8db650f1" sha1="1fa8c39e5d904ff68d095785ce611b96d4c2809c" offset="0x000000" /> |
| 44728 | 49444 | </dataarea> |
| r21545 | r21546 | |
| 44734 | 49450 | <year>1994</year> |
| 44735 | 49451 | <publisher>Acclaim Entertainment</publisher> |
| 44736 | 49452 | <part name="cart" interface="snes_cart"> |
| 49453 | ||
| 49454 | <feature name="slot" value="hirom" /> | |
| 44737 | 49455 | <dataarea name="rom" size="3145728"> |
| 44738 | 49456 | <rom name="mortal kombat ii (europe).sfc" size="3145728" crc="1cc0c6ef" sha1="5e078f59779dc4d26fea5b5b38292f30e1e64961" offset="0x000000" /> |
| 44739 | 49457 | </dataarea> |
| r21545 | r21546 | |
| 44746 | 49464 | <publisher>Acclaim Entertainment</publisher> |
| 44747 | 49465 | <info name="release" value="199409xx" /> |
| 44748 | 49466 | <part name="cart" interface="snes_cart"> |
| 49467 | ||
| 49468 | <feature name="slot" value="hirom" /> | |
| 44749 | 49469 | <dataarea name="rom" size="3145728"> |
| 44750 | 49470 | <rom name="mortal kombat ii (usa).sfc" size="3145728" crc="1c3d3b72" sha1="c312f03638cf09aded2b662597d4d407c3904764" offset="0x000000" /> |
| 44751 | 49471 | </dataarea> |
| r21545 | r21546 | |
| 44760 | 49480 | <info name="release" value="19941111" /> |
| 44761 | 49481 | <info name="alt_title" value="モータルコンバットII 究極神拳" /> |
| 44762 | 49482 | <part name="cart" interface="snes_cart"> |
| 49483 | ||
| 49484 | <feature name="slot" value="hirom" /> | |
| 44763 | 49485 | <dataarea name="rom" size="3145728"> |
| 44764 | 49486 | <rom name="mortal kombat ii - kyuukyoku shinken (japan).sfc" size="3145728" crc="fb2d267c" sha1="cef60bbad2a194f87243413f02803167100afe8f" offset="0x000000" /> |
| 44765 | 49487 | </dataarea> |
| r21545 | r21546 | |
| 44774 | 49496 | <info name="release" value="19930901" /> |
| 44775 | 49497 | <info name="alt_title" value="もと子ちゃんのワンダーキッチン" /> |
| 44776 | 49498 | <part name="cart" interface="snes_cart"> |
| 49499 | ||
| 49500 | <feature name="slot" value="lorom" /> | |
| 44777 | 49501 | <dataarea name="rom" size="1048576"> |
| 44778 | 49502 | <rom name="motoko-chan no wonder kitchen (japan).sfc" size="1048576" crc="18aff666" sha1="83698c00b7e5c6902768ddc96d5d88a701715e19" offset="0x000000" /> |
| 44779 | 49503 | </dataarea> |
| r21545 | r21546 | |
| 44789 | 49513 | <info name="alt_title" value="もってけoh ! ドロボー" /> |
| 44790 | 49514 | <sharedfeat name="compatibility" value="NTSC"/> |
| 44791 | 49515 | <part name="cart" interface="snes_cart"> |
| 49516 | ||
| 49517 | <feature name="slot" value="hirom" /> | |
| 44792 | 49518 | <dataarea name="rom" size="1572864"> |
| 44793 | 49519 | <rom name="motteke oh! dorobou (japan).sfc" size="1572864" crc="843506bb" sha1="1c3ecdd32de0a5aa1604a1bcede99eda35d7fa4a" offset="0x000000" /> |
| 44794 | 49520 | </dataarea> |
| r21545 | r21546 | |
| 44803 | 49529 | <info name="release" value="19941007" /> |
| 44804 | 49530 | <info name="alt_title" value="ミスターナッツ" /> |
| 44805 | 49531 | <part name="cart" interface="snes_cart"> |
| 49532 | ||
| 49533 | <feature name="slot" value="lorom" /> | |
| 44806 | 49534 | <dataarea name="rom" size="1048576"> |
| 44807 | 49535 | <rom name="mr nutz (japan).sfc" size="1048576" crc="3dadd536" sha1="9caa452368b34c86d55793c4c0835bbf42ef0f77" offset="0x000000" /> |
| 44808 | 49536 | </dataarea> |
| r21545 | r21546 | |
| 44814 | 49542 | <year>1994</year> |
| 44815 | 49543 | <publisher>Ocean</publisher> |
| 44816 | 49544 | <part name="cart" interface="snes_cart"> |
| 49545 | ||
| 49546 | <feature name="slot" value="lorom" /> | |
| 44817 | 49547 | <dataarea name="rom" size="1048576"> |
| 44818 | 49548 | <rom name="mr nutz (usa) (en,fr) (beta).sfc" size="1048576" crc="549d03ca" sha1="94be59a54747623fc6c35ca3882cf5a01a25f4de" offset="0x000000" /> |
| 44819 | 49549 | </dataarea> |
| r21545 | r21546 | |
| 44826 | 49556 | <publisher>Ocean</publisher> |
| 44827 | 49557 | <info name="release" value="199408xx" /> |
| 44828 | 49558 | <part name="cart" interface="snes_cart"> |
| 49559 | ||
| 49560 | <feature name="slot" value="lorom" /> | |
| 44829 | 49561 | <dataarea name="rom" size="1048576"> |
| 44830 | 49562 | <rom name="mr nutz (usa) (en,fr).sfc" size="1048576" crc="a99bdd9a" sha1="e803e7c067832c3a2604463e2262728117efeca4" offset="0x000000" /> |
| 44831 | 49563 | </dataarea> |
| r21545 | r21546 | |
| 44837 | 49569 | <year>1996</year> |
| 44838 | 49570 | <publisher>Black Pearl</publisher> |
| 44839 | 49571 | <part name="cart" interface="snes_cart"> |
| 49572 | ||
| 49573 | <feature name="slot" value="lorom" /> | |
| 44840 | 49574 | <dataarea name="rom" size="262144"> |
| 44841 | 49575 | <rom name="mr. do! (europe).sfc" size="262144" crc="ccebb6e8" sha1="b81d186807854094718a7cdc6f8fc927a081da0e" offset="0x000000" /> |
| 44842 | 49576 | </dataarea> |
| r21545 | r21546 | |
| 44851 | 49585 | <info name="release" value="19950623" /> |
| 44852 | 49586 | <info name="alt_title" value="ミスタードゥ" /> |
| 44853 | 49587 | <part name="cart" interface="snes_cart"> |
| 49588 | ||
| 49589 | <feature name="slot" value="lorom" /> | |
| 44854 | 49590 | <dataarea name="rom" size="262144"> |
| 44855 | 49591 | <rom name="mr. do! (japan).sfc" size="262144" crc="3847cf64" sha1="3dd5b75afe94e28f9c0d82a18fc2b2ecca100b64" offset="0x000000" /> |
| 44856 | 49592 | </dataarea> |
| r21545 | r21546 | |
| 44863 | 49599 | <publisher>Black Pearl</publisher> |
| 44864 | 49600 | <info name="release" value="199612xx" /> |
| 44865 | 49601 | <part name="cart" interface="snes_cart"> |
| 49602 | ||
| 49603 | <feature name="slot" value="lorom" /> | |
| 44866 | 49604 | <dataarea name="rom" size="262144"> |
| 44867 | 49605 | <rom name="mr. do! (usa).sfc" size="262144" crc="1c1025e2" sha1="34cf15e802feafda7ed224b69e1f9f2ca692857a" offset="0x000000" /> |
| 44868 | 49606 | </dataarea> |
| r21545 | r21546 | |
| 44874 | 49612 | <year>1994</year> |
| 44875 | 49613 | <publisher>Sales Curve Interactive</publisher> <!-- cancelled --> |
| 44876 | 49614 | <part name="cart" interface="snes_cart"> |
| 49615 | ||
| 49616 | <feature name="slot" value="lorom" /> | |
| 44877 | 49617 | <dataarea name="rom" size="1572864"> |
| 44878 | 49618 | <rom name="mr. tuff (europe) (en,fr,de,es,it) (proto) (1994-12-05).sfc" size="1572864" crc="78cd52d5" sha1="52e7d817807a2488555e68f4273aa859c07efd87" offset="0x000000" /> |
| 44879 | 49619 | </dataarea> |
| r21545 | r21546 | |
| 44885 | 49625 | <year>1996</year> |
| 44886 | 49626 | <publisher>Williams Entertainment</publisher> |
| 44887 | 49627 | <part name="cart" interface="snes_cart"> |
| 49628 | ||
| 49629 | <feature name="slot" value="lorom" /> | |
| 44888 | 49630 | <dataarea name="rom" size="262144"> |
| 44889 | 49631 | <rom name="ms. pac-man (europe).sfc" size="262144" crc="37c89424" sha1="bb833f58ed18e929195bd870ee79f1b1e87ad7fc" offset="0x000000" /> |
| 44890 | 49632 | </dataarea> |
| r21545 | r21546 | |
| 44897 | 49639 | <publisher>Williams Entertainment</publisher> |
| 44898 | 49640 | <info name="release" value="199609xx" /> |
| 44899 | 49641 | <part name="cart" interface="snes_cart"> |
| 49642 | ||
| 49643 | <feature name="slot" value="lorom" /> | |
| 44900 | 49644 | <dataarea name="rom" size="262144"> |
| 44901 | 49645 | <rom name="ms. pac-man (usa).sfc" size="262144" crc="74d210d3" sha1="5cf53b3706560e9b3b3ffb2ea688b7ff95475969" offset="0x000000" /> |
| 44902 | 49646 | </dataarea> |
| r21545 | r21546 | |
| 44911 | 49655 | <info name="release" value="19960126" /> |
| 44912 | 49656 | <info name="alt_title" value="無人島物語" /> |
| 44913 | 49657 | <part name="cart" interface="snes_cart"> |
| 49658 | ||
| 49659 | <feature name="slot" value="lorom" /> | |
| 44914 | 49660 | <dataarea name="rom" size="2097152"> |
| 44915 | 49661 | <rom name="mujintou monogatari (japan).sfc" size="2097152" crc="0e984752" sha1="251d892c74e245cde8ec684407d79e7720e389fa" offset="0x000000" /> |
| 44916 | 49662 | </dataarea> |
| r21545 | r21546 | |
| 44927 | 49673 | <info name="release" value="19941028" /> |
| 44928 | 49674 | <info name="alt_title" value="マルチプレイバレーボール" /> |
| 44929 | 49675 | <part name="cart" interface="snes_cart"> |
| 49676 | ||
| 49677 | <feature name="slot" value="lorom" /> | |
| 44930 | 49678 | <dataarea name="rom" size="1048576"> |
| 44931 | 49679 | <rom name="multi play volleyball (japan).sfc" size="1048576" crc="60844b65" sha1="19baa189fca29f40bd118ef58a3cbc2aae56d6ab" offset="0x000000" /> |
| 44932 | 49680 | </dataarea> |
| r21545 | r21546 | |
| 44939 | 49687 | <publisher>Seta</publisher> |
| 44940 | 49688 | <info name="release" value="199212xx" /> |
| 44941 | 49689 | <part name="cart" interface="snes_cart"> |
| 49690 | ||
| 49691 | <feature name="slot" value="lorom" /> | |
| 44942 | 49692 | <dataarea name="rom" size="1048576"> |
| 44943 | 49693 | <rom name="musya (usa).sfc" size="1048576" crc="011907a4" sha1="0ed1ded11d9d7c3f52e68b974dfabbe82209dc03" offset="0x000000" /> |
| 44944 | 49694 | </dataarea> |
| r21545 | r21546 | |
| 44953 | 49703 | <info name="release" value="19921204" /> |
| 44954 | 49704 | <info name="alt_title" value="ミステリーサークル" /> |
| 44955 | 49705 | <part name="cart" interface="snes_cart"> |
| 49706 | ||
| 49707 | <feature name="slot" value="lorom" /> | |
| 44956 | 49708 | <dataarea name="rom" size="1048576"> |
| 44957 | 49709 | <rom name="mystery circle (japan).sfc" size="1048576" crc="7341ce40" sha1="042b8dad2e8219cca33351c68ffe1d8270d83156" offset="0x000000" /> |
| 44958 | 49710 | </dataarea> |
| r21545 | r21546 | |
| 44964 | 49716 | <year>1992</year> |
| 44965 | 49717 | <publisher>Square</publisher> |
| 44966 | 49718 | <part name="cart" interface="snes_cart"> |
| 49719 | ||
| 49720 | <feature name="slot" value="lorom" /> | |
| 44967 | 49721 | <dataarea name="rom" size="524288"> |
| 44968 | 49722 | <rom name="mystic quest legend (europe).sfc" size="524288" crc="45a7328f" sha1="3d3ec05a11d808600752c89895f04d5213e532b6" offset="0x000000" /> |
| 44969 | 49723 | </dataarea> |
| r21545 | r21546 | |
| 44977 | 49731 | <year>1992</year> |
| 44978 | 49732 | <publisher>Square</publisher> |
| 44979 | 49733 | <part name="cart" interface="snes_cart"> |
| 49734 | ||
| 49735 | <feature name="slot" value="lorom" /> | |
| 44980 | 49736 | <dataarea name="rom" size="524288"> |
| 44981 | 49737 | <rom name="mystic quest legend (france).sfc" size="524288" crc="f997debc" sha1="6c2bcb3be5ad46cc96fd35b50446931fc046a167" offset="0x000000" /> |
| 44982 | 49738 | </dataarea> |
| r21545 | r21546 | |
| 44993 | 49749 | <info name="release" value="19950224" /> |
| 44994 | 49750 | <info name="alt_title" value="ナージュリーブル ~静寂の水深~" /> |
| 44995 | 49751 | <part name="cart" interface="snes_cart"> |
| 49752 | ||
| 49753 | <feature name="slot" value="lorom" /> | |
| 44996 | 49754 | <dataarea name="rom" size="1572864"> |
| 44997 | 49755 | <rom name="nage libre - seijaku no suishin (japan).sfc" size="1572864" crc="a98f24e1" sha1="25a013e43989870f4f3e59ff4e4c34bda7bc5c44" offset="0x000000" /> |
| 44998 | 49756 | </dataarea> |
| r21545 | r21546 | |
| 45009 | 49767 | <info name="release" value="19940922" /> |
| 45010 | 49768 | <info name="alt_title" value="中嶋悟監修F-1ヒーロー'94" /> |
| 45011 | 49769 | <part name="cart" interface="snes_cart"> |
| 49770 | ||
| 49771 | <feature name="slot" value="hirom" /> | |
| 45012 | 49772 | <dataarea name="rom" size="1048576"> |
| 45013 | 49773 | <rom name="nakajima satoru kanshuu f-1 hero '94 (japan).sfc" size="1048576" crc="c708db00" sha1="afc843388179fe57ad4f60ae780eec439855f1ae" offset="0x000000" /> |
| 45014 | 49774 | </dataarea> |
| r21545 | r21546 | |
| 45025 | 49785 | <info name="release" value="19921218" /> |
| 45026 | 49786 | <info name="alt_title" value="中嶋悟監修 スーパーF-1ヒーロー" /> |
| 45027 | 49787 | <part name="cart" interface="snes_cart"> |
| 49788 | ||
| 49789 | <feature name="slot" value="lorom" /> | |
| 45028 | 49790 | <dataarea name="rom" size="1048576"> |
| 45029 | 49791 | <rom name="nakajima satoru kanshuu super f-1 hero (japan).sfc" size="1048576" crc="d7d6a0e9" sha1="fe66b32ebfffd2c8b9b303aa2272265d22fbda4b" offset="0x000000" /> |
| 45030 | 49792 | </dataarea> |
| r21545 | r21546 | |
| 45039 | 49801 | <info name="release" value="19921225" /> |
| 45040 | 49802 | <info name="alt_title" value="哭きの竜 麻雀飛翔伝" /> |
| 45041 | 49803 | <part name="cart" interface="snes_cart"> |
| 49804 | ||
| 49805 | <feature name="slot" value="lorom" /> | |
| 45042 | 49806 | <dataarea name="rom" size="1048576"> |
| 45043 | 49807 | <rom name="naki no ryuu - mahjong hishouden (japan).sfc" size="1048576" crc="cf2c0800" sha1="7391abbb8cc98827ec5ffa9c6122fe5e6b81d43e" offset="0x000000" /> |
| 45044 | 49808 | </dataarea> |
| r21545 | r21546 | |
| 45055 | 49819 | <info name="release" value="19940325" /> |
| 45056 | 49820 | <info name="alt_title" value="南国少年パプワくん" /> |
| 45057 | 49821 | <part name="cart" interface="snes_cart"> |
| 49822 | ||
| 49823 | <feature name="slot" value="lorom" /> | |
| 45058 | 49824 | <dataarea name="rom" size="1048576"> |
| 45059 | 49825 | <rom name="nangoku shounen papuwa-kun (japan).sfc" size="1048576" crc="8bda9255" sha1="d16976a856c849f6568685ac4b8b94bdf15dd256" offset="0x000000" /> |
| 45060 | 49826 | </dataarea> |
| r21545 | r21546 | |
| 45069 | 49835 | <info name="release" value="19950421" /> |
| 45070 | 49836 | <info name="alt_title" value="なつきクライシスバトル" /> |
| 45071 | 49837 | <part name="cart" interface="snes_cart"> |
| 49838 | ||
| 49839 | <feature name="slot" value="hirom" /> | |
| 45072 | 49840 | <dataarea name="rom" size="2621440"> |
| 45073 | 49841 | <rom name="natsuki crisis battle (japan).sfc" size="2621440" crc="97727818" sha1="ce568cc556bd293866452b338ab746ab517d15df" offset="0x000000" /> |
| 45074 | 49842 | </dataarea> |
| r21545 | r21546 | |
| 45080 | 49848 | <year>1992</year> |
| 45081 | 49849 | <publisher>LJN</publisher> |
| 45082 | 49850 | <part name="cart" interface="snes_cart"> |
| 49851 | ||
| 49852 | <feature name="slot" value="lorom" /> | |
| 45083 | 49853 | <dataarea name="rom" size="1048576"> |
| 45084 | 49854 | <rom name="nba all-star challenge (europe).sfc" size="1048576" crc="b5693b18" sha1="9dbb08f640479762ddbd7d744695f8f43a9e6ae6" offset="0x000000" /> |
| 45085 | 49855 | </dataarea> |
| r21545 | r21546 | |
| 45094 | 49864 | <info name="release" value="19930521" /> |
| 45095 | 49865 | <info name="alt_title" value="NBAオールスターチャレンジ" /> |
| 45096 | 49866 | <part name="cart" interface="snes_cart"> |
| 49867 | ||
| 49868 | <feature name="slot" value="lorom" /> | |
| 45097 | 49869 | <dataarea name="rom" size="1048576"> |
| 45098 | 49870 | <rom name="nba all-star challenge (japan).sfc" size="1048576" crc="e5014292" sha1="5a2ac60b132f103dbd43b3a8442a6dbdd12df8cd" offset="0x000000" /> |
| 45099 | 49871 | </dataarea> |
| r21545 | r21546 | |
| 45107 | 49879 | <info name="serial" value="SNS-NB-USA" /> |
| 45108 | 49880 | <info name="release" value="199212xx" /> |
| 45109 | 49881 | <part name="cart" interface="snes_cart"> |
| 49882 | ||
| 49883 | <feature name="slot" value="lorom" /> | |
| 45110 | 49884 | <dataarea name="rom" size="1048576"> |
| 45111 | 49885 | <rom name="nba all-star challenge (usa).sfc" size="1048576" crc="a905a565" sha1="d0f0778dc6f32a841e6f62b0daa84ffe6f8415eb" offset="0x000000" /> |
| 45112 | 49886 | </dataarea> |
| r21545 | r21546 | |
| 45119 | 49893 | <publisher>Konami</publisher> |
| 45120 | 49894 | <sharedfeat name="compatibility" value="PAL"/> |
| 45121 | 49895 | <part name="cart" interface="snes_cart"> |
| 49896 | ||
| 49897 | <feature name="slot" value="lorom" /> | |
| 45122 | 49898 | <dataarea name="rom" size="2097152"> |
| 45123 | 49899 | <rom name="nba give 'n go (europe).sfc" size="2097152" crc="e52b9af6" sha1="5e56c0d6fead29a10d07816aa1a619ffad7098c3" offset="0x000000" /> |
| 45124 | 49900 | </dataarea> |
| r21545 | r21546 | |
| 45132 | 49908 | <info name="release" value="199511xx" /> |
| 45133 | 49909 | <sharedfeat name="compatibility" value="NTSC"/> |
| 45134 | 49910 | <part name="cart" interface="snes_cart"> |
| 49911 | ||
| 49912 | <feature name="slot" value="lorom" /> | |
| 45135 | 49913 | <dataarea name="rom" size="2097152"> |
| 45136 | 49914 | <rom name="nba give 'n go (usa).sfc" size="2097152" crc="68c8b643" sha1="71310d8db76cb7134e9a65cc8a28003ba3bdb5f2" offset="0x000000" /> |
| 45137 | 49915 | </dataarea> |
| r21545 | r21546 | |
| 45144 | 49922 | <publisher>Midway</publisher> |
| 45145 | 49923 | <sharedfeat name="compatibility" value="PAL"/> |
| 45146 | 49924 | <part name="cart" interface="snes_cart"> |
| 49925 | ||
| 49926 | <feature name="slot" value="hirom" /> | |
| 45147 | 49927 | <dataarea name="rom" size="3145728"> |
| 45148 | 49928 | <rom name="nba hang time (europe).sfc" size="3145728" crc="f1fe37a4" sha1="fbc484ab942d6ddc91fb68606dc95d2bf7d0f7ea" offset="0x000000" /> |
| 45149 | 49929 | </dataarea> |
| r21545 | r21546 | |
| 45159 | 49939 | <info name="release" value="199611xx" /> |
| 45160 | 49940 | <sharedfeat name="compatibility" value="NTSC"/> |
| 45161 | 49941 | <part name="cart" interface="snes_cart"> |
| 49942 | ||
| 49943 | <feature name="slot" value="hirom" /> | |
| 45162 | 49944 | <dataarea name="rom" size="3145728"> |
| 45163 | 49945 | <rom name="nba hang time (usa).sfc" size="3145728" crc="262ce76b" sha1="6d9e3a5bc20ab1eaf728dd87d77cee855e3eec45" offset="0x000000" /> |
| 45164 | 49946 | </dataarea> |
| r21545 | r21546 | |
| 45172 | 49954 | <year>1994</year> |
| 45173 | 49955 | <publisher>Acclaim Entertainment</publisher> |
| 45174 | 49956 | <part name="cart" interface="snes_cart"> |
| 49957 | ||
| 49958 | <feature name="slot" value="lorom" /> | |
| 45175 | 49959 | <dataarea name="rom" size="2097152"> |
| 45176 | 49960 | <rom name="nba jam (europe) (rev 1).sfc" size="2097152" crc="fa9a577a" sha1="ccfd2a5c4195a4080f60fcfa4fc8a1f28511c902" offset="0x000000" /> |
| 45177 | 49961 | </dataarea> |
| r21545 | r21546 | |
| 45186 | 49970 | <info name="release" value="19940429" /> |
| 45187 | 49971 | <info name="alt_title" value="NBAジャム" /> |
| 45188 | 49972 | <part name="cart" interface="snes_cart"> |
| 49973 | ||
| 49974 | <feature name="slot" value="lorom" /> | |
| 45189 | 49975 | <dataarea name="rom" size="2097152"> |
| 45190 | 49976 | <rom name="nba jam (japan).sfc" size="2097152" crc="118b162e" sha1="8c5be1e760a6eb91e29312ad71d25d4bb093cff5" offset="0x000000" /> |
| 45191 | 49977 | </dataarea> |
| r21545 | r21546 | |
| 45198 | 49984 | <publisher>Acclaim Entertainment</publisher> |
| 45199 | 49985 | <info name="release" value="199403xx" /> |
| 45200 | 49986 | <part name="cart" interface="snes_cart"> |
| 49987 | ||
| 49988 | <feature name="slot" value="lorom" /> | |
| 45201 | 49989 | <dataarea name="rom" size="2097152"> |
| 45202 | 49990 | <rom name="nba jam (usa) (rev 1).sfc" size="2097152" crc="8f42cae7" sha1="62acc93fa1e3009b3a2e92d11aaf612848c1e7ff" offset="0x000000" /> |
| 45203 | 49991 | </dataarea> |
| r21545 | r21546 | |
| 45210 | 49998 | <publisher>Acclaim Entertainment</publisher> |
| 45211 | 49999 | <info name="release" value="199403xx" /> |
| 45212 | 50000 | <part name="cart" interface="snes_cart"> |
| 50001 | ||
| 50002 | <feature name="slot" value="lorom" /> | |
| 45213 | 50003 | <dataarea name="rom" size="2097152"> |
| 45214 | 50004 | <rom name="nba jam (usa).sfc" size="2097152" crc="43f1c013" sha1="1405efa8183ff65b645f8453dcb40b6cad5ddc07" offset="0x000000" /> |
| 45215 | 50005 | </dataarea> |
| r21545 | r21546 | |
| 45224 | 50014 | <info name="release" value="19950224" /> |
| 45225 | 50015 | <info name="alt_title" value="NBA ジャム トーナメントエディション" /> |
| 45226 | 50016 | <part name="cart" interface="snes_cart"> |
| 50017 | ||
| 50018 | <feature name="slot" value="lorom" /> | |
| 45227 | 50019 | <dataarea name="rom" size="3145728"> |
| 45228 | 50020 | <rom name="nba jam - tournament edition (japan).sfc" size="3145728" crc="3c169224" sha1="73903679034e74b4972ea0c796501697ba4cb331" offset="0x000000" /> |
| 45229 | 50021 | </dataarea> |
| r21545 | r21546 | |
| 45237 | 50029 | <year>1995</year> |
| 45238 | 50030 | <publisher>Acclaim Entertainment</publisher> |
| 45239 | 50031 | <part name="cart" interface="snes_cart"> |
| 50032 | ||
| 50033 | <feature name="slot" value="lorom" /> | |
| 45240 | 50034 | <dataarea name="rom" size="3145728"> |
| 45241 | 50035 | <rom name="nba jam - tournament edition (usa) (beta).sfc" size="3145728" crc="8d7b1828" sha1="8680b3d814a34617a08a7a06170ece2a7a5a330c" offset="0x000000" /> |
| 45242 | 50036 | </dataarea> |
| r21545 | r21546 | |
| 45249 | 50043 | <publisher>Acclaim Entertainment</publisher> |
| 45250 | 50044 | <info name="release" value="199502xx" /> |
| 45251 | 50045 | <part name="cart" interface="snes_cart"> |
| 50046 | ||
| 50047 | <feature name="slot" value="lorom" /> | |
| 45252 | 50048 | <dataarea name="rom" size="3145728"> |
| 45253 | 50049 | <rom name="nba jam - tournament edition (usa).sfc" size="3145728" crc="1fbc1ddb" sha1="93075f16701c734ebc369eabf61ec5216f86d9c5" offset="0x000000" /> |
| 45254 | 50050 | </dataarea> |
| r21545 | r21546 | |
| 45266 | 50062 | <info name="alt_title" value="NBA実況バスケット ウイニング ダンク" /> |
| 45267 | 50063 | <sharedfeat name="compatibility" value="NTSC"/> |
| 45268 | 50064 | <part name="cart" interface="snes_cart"> |
| 50065 | ||
| 50066 | <feature name="slot" value="lorom" /> | |
| 45269 | 50067 | <dataarea name="rom" size="3145728"> |
| 45270 | 50068 | <rom name="nba jikkyou basket - winning dunk (japan).sfc" size="3145728" crc="7ecaa194" sha1="ba1809df7760e97e6411b94ca49dfff348da39b5" offset="0x000000" /> |
| 45271 | 50069 | </dataarea> |
| r21545 | r21546 | |
| 45281 | 50079 | <info name="serial" value="SHVC-ANBJ-JPN" /> |
| 45282 | 50080 | <info name="release" value="19941216" /> |
| 45283 | 50081 | <part name="cart" interface="snes_cart"> |
| 50082 | ||
| 50083 | <feature name="slot" value="lorom" /> | |
| 45284 | 50084 | <dataarea name="rom" size="1572864"> |
| 45285 | 50085 | <rom name="nba live 95 (japan).sfc" size="1572864" crc="500f57d3" sha1="5fd159391da48c6ede94a7ccd1a56041d35fd3f9" offset="0x000000" /> |
| 45286 | 50086 | </dataarea> |
| r21545 | r21546 | |
| 45295 | 50095 | <publisher>Electronic Arts</publisher> |
| 45296 | 50096 | <info name="release" value="199410xx" /> |
| 45297 | 50097 | <part name="cart" interface="snes_cart"> |
| 50098 | ||
| 50099 | <feature name="slot" value="lorom" /> | |
| 45298 | 50100 | <dataarea name="rom" size="1572864"> |
| 45299 | 50101 | <rom name="nba live 95 (usa).sfc" size="1572864" crc="1cd2393d" sha1="071350136c1f50fc56322794288bb5ebfda9e99d" offset="0x000000" /> |
| 45300 | 50102 | </dataarea> |
| r21545 | r21546 | |
| 45308 | 50110 | <year>1995</year> |
| 45309 | 50111 | <publisher>Electronic Arts</publisher> |
| 45310 | 50112 | <part name="cart" interface="snes_cart"> |
| 50113 | ||
| 50114 | <feature name="slot" value="lorom" /> | |
| 45311 | 50115 | <dataarea name="rom" size="1572864"> |
| 45312 | 50116 | <rom name="nba live 96 (europe).sfc" size="1572864" crc="17689c62" sha1="dc7ebb56279740557d59bb84c5e7d43a5f4c518d" offset="0x000000" /> |
| 45313 | 50117 | </dataarea> |
| r21545 | r21546 | |
| 45321 | 50125 | <year>1998</year> |
| 45322 | 50126 | <publisher>T*HQ</publisher> |
| 45323 | 50127 | <part name="cart" interface="snes_cart"> |
| 50128 | ||
| 50129 | <feature name="slot" value="lorom" /> | |
| 45324 | 50130 | <dataarea name="rom" size="2097152"> |
| 45325 | 50131 | <rom name="nba live 98 (usa).sfc" size="2097152" crc="514bfcb5" sha1="ecaef1ecae3d6f55b7520f87d6344b9ad9a3dc98" offset="0x000000" /> |
| 45326 | 50132 | </dataarea> |
| r21545 | r21546 | |
| 45337 | 50143 | <info name="release" value="19931203" /> |
| 45338 | 50144 | <info name="alt_title" value="NBAプロバスケットボール'94 ブルズVSサンズ" /> |
| 45339 | 50145 | <part name="cart" interface="snes_cart"> |
| 50146 | ||
| 50147 | <feature name="slot" value="lorom" /> | |
| 45340 | 50148 | <dataarea name="rom" size="1048576"> |
| 45341 | 50149 | <rom name="nba pro basketball '94 - bulls vs suns (japan).sfc" size="1048576" crc="573c8a65" sha1="4265f1b266760623a15b00d85f46d3de0f281457" offset="0x000000" /> |
| 45342 | 50150 | </dataarea> |
| r21545 | r21546 | |
| 45353 | 50161 | <info name="release" value="19930226" /> |
| 45354 | 50162 | <info name="alt_title" value="NBAプロバスケットボール ブルズVSブレイザーズ" /> |
| 45355 | 50163 | <part name="cart" interface="snes_cart"> |
| 50164 | ||
| 50165 | <feature name="slot" value="lorom" /> | |
| 45356 | 50166 | <dataarea name="rom" size="1048576"> |
| 45357 | 50167 | <rom name="nba pro basketball - bulls vs blazers (japan).sfc" size="1048576" crc="c5148840" sha1="54e6345809cdec6be08b9296f04edef1dceef899" offset="0x000000" /> |
| 45358 | 50168 | </dataarea> |
| r21545 | r21546 | |
| 45364 | 50174 | <year>1993</year> |
| 45365 | 50175 | <publisher>Electronic Arts</publisher> |
| 45366 | 50176 | <part name="cart" interface="snes_cart"> |
| 50177 | ||
| 50178 | <feature name="slot" value="lorom" /> | |
| 45367 | 50179 | <dataarea name="rom" size="1048576"> |
| 45368 | 50180 | <rom name="nba showdown (usa) (beta).sfc" size="1048576" crc="8f3c36ab" sha1="45b8a603bcac29034221403ef796b9ed0c9c4074" offset="0x000000" /> |
| 45369 | 50181 | </dataarea> |
| r21545 | r21546 | |
| 45378 | 50190 | <publisher>Electronic Arts</publisher> |
| 45379 | 50191 | <info name="release" value="199310xx" /> |
| 45380 | 50192 | <part name="cart" interface="snes_cart"> |
| 50193 | ||
| 50194 | <feature name="slot" value="lorom" /> | |
| 45381 | 50195 | <dataarea name="rom" size="1048576"> |
| 45382 | 50196 | <rom name="nba showdown (usa).sfc" size="1048576" crc="65746f02" sha1="22ffe4b8918e41d1a79a35f28869824f4d3fdb11" offset="0x000000" /> |
| 45383 | 50197 | </dataarea> |
| r21545 | r21546 | |
| 45391 | 50205 | <year>1992</year> |
| 45392 | 50206 | <publisher>Nintendo</publisher> |
| 45393 | 50207 | <part name="cart" interface="snes_cart"> |
| 50208 | ||
| 50209 | <feature name="slot" value="lorom" /> | |
| 45394 | 50210 | <dataarea name="rom" size="1048576"> |
| 45395 | 50211 | <rom name="ncaa basketball (usa) (beta).sfc" size="1048576" crc="25c43074" sha1="f9ed0a13f0e7e90eaf3f84cce9df125449287358" offset="0x000000" /> |
| 45396 | 50212 | </dataarea> |
| r21545 | r21546 | |
| 45403 | 50219 | <publisher>Nintendo</publisher> |
| 45404 | 50220 | <info name="release" value="199210xx" /> |
| 45405 | 50221 | <part name="cart" interface="snes_cart"> |
| 50222 | ||
| 50223 | <feature name="slot" value="lorom" /> | |
| 45406 | 50224 | <dataarea name="rom" size="1048576"> |
| 45407 | 50225 | <rom name="ncaa basketball (usa) (rev 1).sfc" size="1048576" crc="200370a2" sha1="261683b05f2f9149cb8d367a76d8a3c3b864dd7c" offset="0x000000" /> |
| 45408 | 50226 | </dataarea> |
| r21545 | r21546 | |
| 45417 | 50235 | <publisher>Nintendo</publisher> |
| 45418 | 50236 | <info name="release" value="199210xx" /> |
| 45419 | 50237 | <part name="cart" interface="snes_cart"> |
| 50238 | ||
| 50239 | <feature name="slot" value="lorom" /> | |
| 45420 | 50240 | <dataarea name="rom" size="1048576"> |
| 45421 | 50241 | <rom name="ncaa basketball (usa).sfc" size="1048576" crc="8d4c2300" sha1="04eae5352b59a6035098a716248ce11edefb21dd" offset="0x000000" /> |
| 45422 | 50242 | </dataarea> |
| r21545 | r21546 | |
| 45431 | 50251 | <publisher>Mindscape</publisher> |
| 45432 | 50252 | <info name="release" value="199502xx" /> |
| 45433 | 50253 | <part name="cart" interface="snes_cart"> |
| 50254 | ||
| 50255 | <feature name="slot" value="lorom" /> | |
| 45434 | 50256 | <dataarea name="rom" size="1572864"> |
| 45435 | 50257 | <rom name="ncaa final four basketball (usa).sfc" size="1572864" crc="b07cfa91" sha1="962a9168c6a1ccc397d251931383aeb5ee26cd78" offset="0x000000" /> |
| 45436 | 50258 | </dataarea> |
| r21545 | r21546 | |
| 45445 | 50267 | <publisher>Mindscape</publisher> |
| 45446 | 50268 | <info name="release" value="199307xx" /> |
| 45447 | 50269 | <part name="cart" interface="snes_cart"> |
| 50270 | ||
| 50271 | <feature name="slot" value="lorom" /> | |
| 45448 | 50272 | <dataarea name="rom" size="1048576"> |
| 45449 | 50273 | <rom name="ncaa football (usa).sfc" size="1048576" crc="2641c12a" sha1="42108f1194fe01fe4571c4874b02a8a3986d77c6" offset="0x000000" /> |
| 45450 | 50274 | </dataarea> |
| r21545 | r21546 | |
| 45461 | 50285 | <info name="release" value="19950317" /> |
| 45462 | 50286 | <info name="alt_title" value="熱血大陸 バーニング ヒーロース" /> |
| 45463 | 50287 | <part name="cart" interface="snes_cart"> |
| 50288 | ||
| 50289 | <feature name="slot" value="hirom" /> | |
| 45464 | 50290 | <dataarea name="rom" size="2097152"> |
| 45465 | 50291 | <rom name="nekketsu tairiku burning heroes (japan).sfc" size="2097152" crc="da105a27" sha1="8c0646a8660ce3ed8c9f811edae56ea5343e6246" offset="0x000000" /> |
| 45466 | 50292 | </dataarea> |
| r21545 | r21546 | |
| 45474 | 50300 | <year>1995</year> |
| 45475 | 50301 | <publisher>Europress</publisher> |
| 45476 | 50302 | <part name="cart" interface="snes_cart"> |
| 50303 | ||
| 50304 | <feature name="slot" value="lorom" /> | |
| 45477 | 50305 | <dataarea name="rom" size="1048576"> |
| 45478 | 50306 | <rom name="network q rally (usa) (proto).sfc" size="1048576" crc="5b5f152f" sha1="94169aaeb1557a25b1e03a181a28b4b29ece6f5f" offset="0x000000" /> |
| 45479 | 50307 | </dataarea> |
| r21545 | r21546 | |
| 45488 | 50316 | <info name="release" value="19930326" /> |
| 45489 | 50317 | <info name="alt_title" value="ノイギーア ~海と風の鼓動~" /> |
| 45490 | 50318 | <part name="cart" interface="snes_cart"> |
| 50319 | ||
| 50320 | <feature name="slot" value="lorom" /> | |
| 45491 | 50321 | <dataarea name="rom" size="1048576"> |
| 45492 | 50322 | <rom name="neugier - umi to kaze no kodou (japan).sfc" size="1048576" crc="7f0ddccf" sha1="f065c1079a1c795c7c5dbb4f6a6d3b792a811a67" offset="0x000000" /> |
| 45493 | 50323 | </dataarea> |
| r21545 | r21546 | |
| 45501 | 50331 | <year>1993</year> |
| 45502 | 50332 | <publisher>T&E Soft</publisher> |
| 45503 | 50333 | <part name="cart" interface="snes_cart"> |
| 50334 | ||
| 50335 | <feature name="slot" value="lorom" /> | |
| 45504 | 50336 | <dataarea name="rom" size="524288"> |
| 45505 | 50337 | <rom name="new 3d golf simulation - devil's course (japan) (sample).sfc" size="524288" crc="e983b63a" sha1="cd7c4627fb3d2db77fcb0e97798d0d7804f71c37" offset="0x000000" /> |
| 45506 | 50338 | </dataarea> |
| r21545 | r21546 | |
| 45515 | 50347 | <info name="release" value="19960322" /> |
| 45516 | 50348 | <info name="alt_title" value="タイム・ボカンシリーズ NEWヤッターマン 難題かんだいヤジロベエ" /> |
| 45517 | 50349 | <part name="cart" interface="snes_cart"> |
| 50350 | ||
| 50351 | <feature name="slot" value="lorom" /> | |
| 45518 | 50352 | <dataarea name="rom" size="1572864"> |
| 45519 | 50353 | <rom name="new yatterman - nandai kandai yajirobee (japan).sfc" size="1572864" crc="facc2423" sha1="986caaff1daeea2dc16f90bc9072d56ead23c2a0" offset="0x000000" /> |
| 45520 | 50354 | </dataarea> |
| r21545 | r21546 | |
| 45526 | 50360 | <year>1994</year> |
| 45527 | 50361 | <publisher>Acclaim Entertainment</publisher> |
| 45528 | 50362 | <part name="cart" interface="snes_cart"> |
| 50363 | ||
| 50364 | <feature name="slot" value="lorom" /> | |
| 45529 | 50365 | <dataarea name="rom" size="2097152"> |
| 45530 | 50366 | <rom name="newman-haas indycar featuring nigel mansell (europe).sfc" size="2097152" crc="595684af" sha1="a514e5a1362946b1e50060ff17eb4e6cd8289702" offset="0x000000" /> |
| 45531 | 50367 | </dataarea> |
| r21545 | r21546 | |
| 45540 | 50376 | <info name="release" value="19941216" /> |
| 45541 | 50377 | <info name="alt_title" value="ナイジェルマンセル・インディカー" /> |
| 45542 | 50378 | <part name="cart" interface="snes_cart"> |
| 50379 | ||
| 50380 | <feature name="slot" value="lorom" /> | |
| 45543 | 50381 | <dataarea name="rom" size="2097152"> |
| 45544 | 50382 | <rom name="newman-haas indycar featuring nigel mansell (japan).sfc" size="2097152" crc="546062c7" sha1="572246049c52d2af2796229f5fe84508f2461fd8" offset="0x000000" /> |
| 45545 | 50383 | </dataarea> |
| r21545 | r21546 | |
| 45552 | 50390 | <publisher>Acclaim Entertainment</publisher> |
| 45553 | 50391 | <info name="release" value="199412xx" /> |
| 45554 | 50392 | <part name="cart" interface="snes_cart"> |
| 50393 | ||
| 50394 | <feature name="slot" value="lorom" /> | |
| 45555 | 50395 | <dataarea name="rom" size="2097152"> |
| 45556 | 50396 | <rom name="newman-haas indycar featuring nigel mansell (usa).sfc" size="2097152" crc="a0f80c02" sha1="eb12afa9e2771c45fdabd6b43e65ae89b7181037" offset="0x000000" /> |
| 45557 | 50397 | </dataarea> |
| r21545 | r21546 | |
| 45564 | 50404 | <year>1993</year> |
| 45565 | 50405 | <publisher>Konami</publisher> |
| 45566 | 50406 | <part name="cart" interface="snes_cart"> |
| 50407 | ||
| 50408 | <feature name="slot" value="lorom" /> | |
| 45567 | 50409 | <dataarea name="rom" size="1048576"> |
| 45568 | 50410 | <rom name="nfl football (europe).sfc" size="1048576" crc="5ee9d7e4" sha1="c741df70bc87fa03edd4c3d52eea7dcaaa03b5d2" offset="0x000000" /> |
| 45569 | 50411 | </dataarea> |
| r21545 | r21546 | |
| 45578 | 50420 | <info name="release" value="19930917" /> |
| 45579 | 50421 | <info name="alt_title" value="NFLフットボール" /> |
| 45580 | 50422 | <part name="cart" interface="snes_cart"> |
| 50423 | ||
| 50424 | <feature name="slot" value="lorom" /> | |
| 45581 | 50425 | <dataarea name="rom" size="1048576"> |
| 45582 | 50426 | <rom name="nfl football (japan).sfc" size="1048576" crc="a4b1dd93" sha1="f8d1c903616f7b4302df6d2ba36967ede9940258" offset="0x000000" /> |
| 45583 | 50427 | </dataarea> |
| r21545 | r21546 | |
| 45590 | 50434 | <publisher>Konami</publisher> |
| 45591 | 50435 | <info name="release" value="199307xx" /> |
| 45592 | 50436 | <part name="cart" interface="snes_cart"> |
| 50437 | ||
| 50438 | <feature name="slot" value="lorom" /> | |
| 45593 | 50439 | <dataarea name="rom" size="1048576"> |
| 45594 | 50440 | <rom name="nfl football (usa).sfc" size="1048576" crc="adb7731b" sha1="e1e5c81ea3cf52821e24c016daf484df13730422" offset="0x000000" /> |
| 45595 | 50441 | </dataarea> |
| r21545 | r21546 | |
| 45601 | 50447 | <year>1994</year> |
| 45602 | 50448 | <publisher>LJN</publisher> |
| 45603 | 50449 | <part name="cart" interface="snes_cart"> |
| 50450 | ||
| 50451 | <feature name="slot" value="lorom" /> | |
| 45604 | 50452 | <dataarea name="rom" size="3145728"> |
| 45605 | 50453 | <rom name="nfl quarterback club (europe).sfc" size="3145728" crc="87bc35af" sha1="686acb92449123718f5691c235bf00ed2dba53af" offset="0x000000" /> |
| 45606 | 50454 | </dataarea> |
| r21545 | r21546 | |
| 45614 | 50462 | <year>1994</year> |
| 45615 | 50463 | <publisher>LJN</publisher> |
| 45616 | 50464 | <part name="cart" interface="snes_cart"> |
| 50465 | ||
| 50466 | <feature name="slot" value="lorom" /> | |
| 45617 | 50467 | <dataarea name="rom" size="3145728"> |
| 45618 | 50468 | <rom name="nfl quarterback club (usa) (beta).sfc" size="3145728" crc="78d10e07" sha1="647184b58dec1922e2eba02282be18795869ecfa" offset="0x000000" /> |
| 45619 | 50469 | </dataarea> |
| r21545 | r21546 | |
| 45628 | 50478 | <publisher>LJN</publisher> |
| 45629 | 50479 | <info name="release" value="199412xx" /> |
| 45630 | 50480 | <part name="cart" interface="snes_cart"> |
| 50481 | ||
| 50482 | <feature name="slot" value="lorom" /> | |
| 45631 | 50483 | <dataarea name="rom" size="3145728"> |
| 45632 | 50484 | <rom name="nfl quarterback club (usa).sfc" size="3145728" crc="79f16421" sha1="078c3f6ae65c243fe3e330c699a75df536a5c20a" offset="0x000000" /> |
| 45633 | 50485 | </dataarea> |
| r21545 | r21546 | |
| 45641 | 50493 | <year>1995</year> |
| 45642 | 50494 | <publisher>Acclaim Entertainment</publisher> |
| 45643 | 50495 | <part name="cart" interface="snes_cart"> |
| 50496 | ||
| 50497 | <feature name="slot" value="lorom" /> | |
| 45644 | 50498 | <dataarea name="rom" size="3145728"> |
| 45645 | 50499 | <rom name="nfl quarterback club 96 (europe).sfc" size="3145728" crc="9708abe3" sha1="62dfafdff7fea26dd77b4e8cf6f5e898894ec50d" offset="0x000000" /> |
| 45646 | 50500 | </dataarea> |
| r21545 | r21546 | |
| 45657 | 50511 | <info name="release" value="19960301" /> |
| 45658 | 50512 | <info name="alt_title" value="NFLクォーターバッククラブ'96" /> |
| 45659 | 50513 | <part name="cart" interface="snes_cart"> |
| 50514 | ||
| 50515 | <feature name="slot" value="lorom" /> | |
| 45660 | 50516 | <dataarea name="rom" size="3145728"> |
| 45661 | 50517 | <rom name="nfl quarterback club 96 (japan).sfc" size="3145728" crc="3a4c0de6" sha1="db582254119a83d34943cd276ac649330f894627" offset="0x000000" /> |
| 45662 | 50518 | </dataarea> |
| r21545 | r21546 | |
| 45671 | 50527 | <publisher>Acclaim Entertainment</publisher> |
| 45672 | 50528 | <info name="release" value="199511xx" /> |
| 45673 | 50529 | <part name="cart" interface="snes_cart"> |
| 50530 | ||
| 50531 | <feature name="slot" value="lorom" /> | |
| 45674 | 50532 | <dataarea name="rom" size="3145728"> |
| 45675 | 50533 | <rom name="nfl quarterback club 96 (usa).sfc" size="3145728" crc="e557689f" sha1="e118e5a9d4c1df53483947036db0daf1766df7c8" offset="0x000000" /> |
| 45676 | 50534 | </dataarea> |
| r21545 | r21546 | |
| 45684 | 50542 | <year>1993</year> |
| 45685 | 50543 | <publisher>Electronic Arts</publisher> |
| 45686 | 50544 | <part name="cart" interface="snes_cart"> |
| 50545 | ||
| 50546 | <feature name="slot" value="lorom" /> | |
| 45687 | 50547 | <dataarea name="rom" size="1048576"> |
| 45688 | 50548 | <rom name="nhl '94 (europe).sfc" size="1048576" crc="208fbf59" sha1="7ff7f505dd76b9ab5c02fcfc7ef46d228922eb66" offset="0x000000" /> |
| 45689 | 50549 | </dataarea> |
| r21545 | r21546 | |
| 45695 | 50555 | <year>1993</year> |
| 45696 | 50556 | <publisher>Electronic Arts</publisher> |
| 45697 | 50557 | <part name="cart" interface="snes_cart"> |
| 50558 | ||
| 50559 | <feature name="slot" value="lorom" /> | |
| 45698 | 50560 | <dataarea name="rom" size="1048576"> |
| 45699 | 50561 | <rom name="nhl '94 (usa) (beta).sfc" size="1048576" crc="00ff0c74" sha1="872727944a3d79ebdf21da4be945a8ae619e7b5a" offset="0x000000" /> |
| 45700 | 50562 | </dataarea> |
| r21545 | r21546 | |
| 45707 | 50569 | <publisher>Electronic Arts</publisher> |
| 45708 | 50570 | <info name="release" value="199310xx" /> |
| 45709 | 50571 | <part name="cart" interface="snes_cart"> |
| 50572 | ||
| 50573 | <feature name="slot" value="lorom" /> | |
| 45710 | 50574 | <dataarea name="rom" size="1048576"> |
| 45711 | 50575 | <rom name="nhl '94 (usa).sfc" size="1048576" crc="42212a77" sha1="10dcd21be9c5542e82b0b94473bf5ff569b36cf5" offset="0x000000" /> |
| 45712 | 50576 | </dataarea> |
| r21545 | r21546 | |
| 45719 | 50583 | <publisher>Electronic Arts</publisher> |
| 45720 | 50584 | <info name="release" value="199509xx" /> |
| 45721 | 50585 | <part name="cart" interface="snes_cart"> |
| 50586 | ||
| 50587 | <feature name="slot" value="hirom" /> | |
| 45722 | 50588 | <dataarea name="rom" size="1572864"> |
| 45723 | 50589 | <rom name="nhl '96 (usa).sfc" size="1572864" crc="b6c6e7f3" sha1="e6114c7580398a07ada26d740348b95756fc2858" offset="0x000000" /> |
| 45724 | 50590 | </dataarea> |
| r21545 | r21546 | |
| 45732 | 50598 | <year>1996</year> |
| 45733 | 50599 | <publisher>Black Pearl</publisher> |
| 45734 | 50600 | <part name="cart" interface="snes_cart"> |
| 50601 | ||
| 50602 | <feature name="slot" value="hirom" /> | |
| 45735 | 50603 | <dataarea name="rom" size="1572864"> |
| 45736 | 50604 | <rom name="nhl '97 (usa) (beta).sfc" size="1572864" crc="91da8d5c" sha1="99ea1d1fb2b3c9b0fa9153103790ba7e297d3560" offset="0x000000" /> |
| 45737 | 50605 | </dataarea> |
| r21545 | r21546 | |
| 45746 | 50614 | <publisher>Black Pearl</publisher> |
| 45747 | 50615 | <info name="release" value="199610xx" /> |
| 45748 | 50616 | <part name="cart" interface="snes_cart"> |
| 50617 | ||
| 50618 | <feature name="slot" value="hirom" /> | |
| 45749 | 50619 | <dataarea name="rom" size="1572864"> |
| 45750 | 50620 | <rom name="nhl '97 (usa).sfc" size="1572864" crc="06badb74" sha1="7d38eb42b77d05dd46ddd8c4460be6a87a3c6501" offset="0x000000" /> |
| 45751 | 50621 | </dataarea> |
| r21545 | r21546 | |
| 45760 | 50630 | <publisher>Electronic Arts</publisher> |
| 45761 | 50631 | <info name="release" value="199712xx" /> |
| 45762 | 50632 | <part name="cart" interface="snes_cart"> |
| 50633 | ||
| 50634 | <feature name="slot" value="hirom" /> | |
| 45763 | 50635 | <dataarea name="rom" size="2097152"> |
| 45764 | 50636 | <rom name="nhl '98 (usa).sfc" size="2097152" crc="03cad2d2" sha1="6ca7cefa28d701c0be8c2b987e1ce5893613f4c4" offset="0x000000" /> |
| 45765 | 50637 | </dataarea> |
| r21545 | r21546 | |
| 45776 | 50648 | <info name="release" value="19940408" /> |
| 45777 | 50649 | <info name="alt_title" value="NHLプロホッケー'94" /> |
| 45778 | 50650 | <part name="cart" interface="snes_cart"> |
| 50651 | ||
| 50652 | <feature name="slot" value="lorom" /> | |
| 45779 | 50653 | <dataarea name="rom" size="1048576"> |
| 45780 | 50654 | <rom name="nhl pro hockey '94 (japan).sfc" size="1048576" crc="bc37d603" sha1="42c2056c0304be4ae54385993ad80fa8f639117d" offset="0x000000" /> |
| 45781 | 50655 | </dataarea> |
| r21545 | r21546 | |
| 45788 | 50662 | <publisher>Nintendo</publisher> |
| 45789 | 50663 | <info name="release" value="199311xx" /> |
| 45790 | 50664 | <part name="cart" interface="snes_cart"> |
| 50665 | ||
| 50666 | <feature name="slot" value="lorom" /> | |
| 45791 | 50667 | <dataarea name="rom" size="1048576"> |
| 45792 | 50668 | <rom name="nhl stanley cup (usa) (en,fr).sfc" size="1048576" crc="584ce502" sha1="d5fd9281a7d7cd25d87ed917873914829937d626" offset="0x000000" /> |
| 45793 | 50669 | </dataarea> |
| r21545 | r21546 | |
| 45804 | 50680 | <info name="release" value="19950526" /> |
| 45805 | 50681 | <info name="alt_title" value="ニチブツ アーケード クラシックス" /> |
| 45806 | 50682 | <part name="cart" interface="snes_cart"> |
| 50683 | ||
| 50684 | <feature name="slot" value="hirom" /> | |
| 45807 | 50685 | <dataarea name="rom" size="524288"> |
| 45808 | 50686 | <rom name="nichibutsu arcade classics (japan).sfc" size="524288" crc="2839940e" sha1="d091ffcd6d7bd955c700b1b59cdbbc887968f807" offset="0x000000" /> |
| 45809 | 50687 | </dataarea> |
| r21545 | r21546 | |
| 45818 | 50696 | <info name="release" value="19951215" /> |
| 45819 | 50697 | <info name="alt_title" value="ニチブツアーケードクラシックス2 平安京エイリアン" /> |
| 45820 | 50698 | <part name="cart" interface="snes_cart"> |
| 50699 | ||
| 50700 | <feature name="slot" value="lorom" /> | |
| 45821 | 50701 | <dataarea name="rom" size="524288"> |
| 45822 | 50702 | <rom name="nichibutsu arcade classics 2 - heiankyou alien (japan).sfc" size="524288" crc="65717023" sha1="c40c9bf482f8bfa2b4e1b27ab41cccc737ed8004" offset="0x000000" /> |
| 45823 | 50703 | </dataarea> |
| r21545 | r21546 | |
| 45832 | 50712 | <info name="release" value="19961129 " /> |
| 45833 | 50713 | <info name="alt_title" value="ニチブツコレクション1 攻略カジノバー, 祗園花" /> |
| 45834 | 50714 | <part name="cart" interface="snes_cart"> |
| 50715 | ||
| 50716 | <feature name="slot" value="lorom" /> | |
| 45835 | 50717 | <dataarea name="rom" size="2097152"> |
| 45836 | 50718 | <rom name="nichibutsu collection 1 (japan).sfc" size="2097152" crc="a8a85c55" sha1="457a4f2275012cf45e8c3c3c88bc61d932db5f25" offset="0x000000" /> |
| 45837 | 50719 | </dataarea> |
| r21545 | r21546 | |
| 45847 | 50729 | <info name="alt_title" value="ナイジェル・マンセルF1チャレンジ" /> |
| 45848 | 50730 | <sharedfeat name="compatibility" value="NTSC"/> |
| 45849 | 50731 | <part name="cart" interface="snes_cart"> |
| 50732 | ||
| 50733 | <feature name="slot" value="lorom" /> | |
| 45850 | 50734 | <dataarea name="rom" size="1048576"> |
| 45851 | 50735 | <rom name="nigel mansell f-1 challenge (japan).sfc" size="1048576" crc="40b0c585" sha1="2c09cd8bc1f4f31bc962364ec9b217d61d9c9acf" offset="0x000000" /> |
| 45852 | 50736 | </dataarea> |
| r21545 | r21546 | |
| 45861 | 50745 | <info name="release" value="19931216" /> |
| 45862 | 50746 | <sharedfeat name="compatibility" value="PAL"/> |
| 45863 | 50747 | <part name="cart" interface="snes_cart"> |
| 50748 | ||
| 50749 | <feature name="slot" value="lorom" /> | |
| 45864 | 50750 | <dataarea name="rom" size="1048576"> |
| 45865 | 50751 | <rom name="nigel mansell's world championship racing (europe) (rev 1).sfc" size="1048576" crc="c65e0e5b" sha1="4cb9959fa54962b2edc484afd48b29fc4b606c6e" offset="0x000000" /> |
| 45866 | 50752 | </dataarea> |
| r21545 | r21546 | |
| 45875 | 50761 | <info name="release" value="19931216" /> |
| 45876 | 50762 | <sharedfeat name="compatibility" value="PAL"/> |
| 45877 | 50763 | <part name="cart" interface="snes_cart"> |
| 50764 | ||
| 50765 | <feature name="slot" value="lorom" /> | |
| 45878 | 50766 | <dataarea name="rom" size="1048576"> |
| 45879 | 50767 | <rom name="nigel mansell's world championship racing (europe).sfc" size="1048576" crc="fc23e228" sha1="19a6e24dab124523ae6242337d2470839a7713b8" offset="0x000000" /> |
| 45880 | 50768 | </dataarea> |
| r21545 | r21546 | |
| 45890 | 50778 | <info name="alt_title" value="忍者龍剣伝 巴" /> |
| 45891 | 50779 | <sharedfeat name="compatibility" value="NTSC"/> |
| 45892 | 50780 | <part name="cart" interface="snes_cart"> |
| 50781 | ||
| 50782 | <feature name="slot" value="lorom" /> | |
| 45893 | 50783 | <dataarea name="rom" size="1572864"> |
| 45894 | 50784 | <rom name="ninja ryuukenden tomoe (japan).sfc" size="1572864" crc="5995cf46" sha1="9a58b5d4fe833c17972cf0ba6061ce75ec9d8627" offset="0x000000" /> |
| 45895 | 50785 | </dataarea> |
| r21545 | r21546 | |
| 45904 | 50794 | <info name="release" value="19940128" /> |
| 45905 | 50795 | <info name="alt_title" value="ザ・ニンジャウォーリアーズ アケイン" /> |
| 45906 | 50796 | <part name="cart" interface="snes_cart"> |
| 50797 | ||
| 50798 | <feature name="slot" value="lorom" /> | |
| 45907 | 50799 | <dataarea name="rom" size="1572864"> |
| 45908 | 50800 | <rom name="ninjawarriors again, the (japan).sfc" size="1572864" crc="3bc037b6" sha1="2705b8f7707d2071911f5aabba3144d302441e48" offset="0x000000" /> |
| 45909 | 50801 | </dataarea> |
| r21545 | r21546 | |
| 45915 | 50807 | <year>1994</year> |
| 45916 | 50808 | <publisher>Titus</publisher> |
| 45917 | 50809 | <part name="cart" interface="snes_cart"> |
| 50810 | ||
| 50811 | <feature name="slot" value="lorom" /> | |
| 45918 | 50812 | <dataarea name="rom" size="1572864"> |
| 45919 | 50813 | <rom name="ninjawarriors, the - the new generation (europe).sfc" size="1572864" crc="733764d7" sha1="f3c00b4a8f52160593fa296b3e4e21e20f53b8e3" offset="0x000000" /> |
| 45920 | 50814 | </dataarea> |
| r21545 | r21546 | |
| 45929 | 50823 | <info name="release" value="19950728" /> |
| 45930 | 50824 | <info name="alt_title" value="忍たま乱太郎" /> |
| 45931 | 50825 | <part name="cart" interface="snes_cart"> |
| 50826 | ||
| 50827 | <feature name="slot" value="lorom" /> | |
| 45932 | 50828 | <dataarea name="rom" size="1572864"> |
| 45933 | 50829 | <rom name="nintama rantarou (japan).sfc" size="1572864" crc="359f02af" sha1="4174ae65229898aab31c82a5fef138d8eafc56f2" offset="0x000000" /> |
| 45934 | 50830 | </dataarea> |
| r21545 | r21546 | |
| 45943 | 50839 | <info name="release" value="19960329" /> |
| 45944 | 50840 | <info name="alt_title" value="忍たま乱太郎2" /> |
| 45945 | 50841 | <part name="cart" interface="snes_cart"> |
| 50842 | ||
| 50843 | <feature name="slot" value="lorom" /> | |
| 45946 | 50844 | <dataarea name="rom" size="1048576"> |
| 45947 | 50845 | <rom name="nintama rantarou 2 (japan).sfc" size="1048576" crc="78a066f1" sha1="aa693c6d70598656cad82fcac1c40ce7375d40ca" offset="0x000000" /> |
| 45948 | 50846 | </dataarea> |
| r21545 | r21546 | |
| 45957 | 50855 | <info name="release" value="19970228" /> |
| 45958 | 50856 | <info name="alt_title" value="忍たま乱太郎3" /> |
| 45959 | 50857 | <part name="cart" interface="snes_cart"> |
| 50858 | ||
| 50859 | <feature name="slot" value="lorom" /> | |
| 45960 | 50860 | <dataarea name="rom" size="1048576"> |
| 45961 | 50861 | <rom name="nintama rantarou 3 (japan).sfc" size="1048576" crc="9ed8f6b3" sha1="c4f95ab23079daf820730d06c08ffef9dc25e532" offset="0x000000" /> |
| 45962 | 50862 | </dataarea> |
| r21545 | r21546 | |
| 45971 | 50871 | <info name="release" value="19960809" /> |
| 45972 | 50872 | <info name="alt_title" value="忍たま乱太郎すぺしゃる" /> |
| 45973 | 50873 | <part name="cart" interface="snes_cart"> |
| 50874 | ||
| 50875 | <feature name="slot" value="lorom" /> | |
| 45974 | 50876 | <dataarea name="rom" size="524288"> |
| 45975 | 50877 | <rom name="nintama rantarou special (japan).sfc" size="524288" crc="70a6029a" sha1="318d95526d47d9e36b76c6d17e803e471887137e" offset="0x000000" /> |
| 45976 | 50878 | </dataarea> |
| r21545 | r21546 | |
| 45985 | 50887 | <info name="release" value="19961220" /> |
| 45986 | 50888 | <info name="alt_title" value="西陣パチンコ3" /> |
| 45987 | 50889 | <part name="cart" interface="snes_cart"> |
| 50890 | ||
| 50891 | <feature name="slot" value="hirom" /> | |
| 45988 | 50892 | <dataarea name="rom" size="1310720"> |
| 45989 | 50893 | <rom name="nishijin pachinko 3 (japan).sfc" size="1310720" crc="7d149029" sha1="8a5ef1739570a8b6f2bf054fc7c9cac704b9afc8" offset="0x000000" /> |
| 45990 | 50894 | </dataarea> |
| r21545 | r21546 | |
| 45999 | 50903 | <info name="release" value="19960628" /> |
| 46000 | 50904 | <info name="alt_title" value="西陣パチンコ物語2" /> |
| 46001 | 50905 | <part name="cart" interface="snes_cart"> |
| 50906 | ||
| 50907 | <feature name="slot" value="hirom" /> | |
| 46002 | 50908 | <dataarea name="rom" size="2097152"> |
| 46003 | 50909 | <rom name="nishijin pachinko monogatari 2 (japan).sfc" size="2097152" crc="3da9bb8c" sha1="da3a751794fcf81ac48dedbbc61650c98d861f43" offset="0x000000" /> |
| 46004 | 50910 | </dataarea> |
| r21545 | r21546 | |
| 46013 | 50919 | <info name="release" value="19930730" /> |
| 46014 | 50920 | <info name="alt_title" value="ニトロパンクス マイトヘッズ" /> |
| 46015 | 50921 | <part name="cart" interface="snes_cart"> |
| 50922 | ||
| 50923 | <feature name="slot" value="lorom" /> | |
| 46016 | 50924 | <dataarea name="rom" size="1048576"> |
| 46017 | 50925 | <rom name="nitropunks - might heads (japan).sfc" size="1048576" crc="5d8426e9" sha1="9e89c6a9fc841cfdfbb2eb5d99ab58a0723a5533" offset="0x000000" /> |
| 46018 | 50926 | </dataarea> |
| r21545 | r21546 | |
| 46025 | 50933 | <publisher>Sony Imagesoft</publisher> |
| 46026 | 50934 | <info name="release" value="199411xx" /> |
| 46027 | 50935 | <part name="cart" interface="snes_cart"> |
| 50936 | ||
| 50937 | <feature name="slot" value="lorom" /> | |
| 46028 | 50938 | <dataarea name="rom" size="2097152"> |
| 46029 | 50939 | <rom name="no escape (usa).sfc" size="2097152" crc="c1082880" sha1="5eb879199bbaaf68119e5af08f865a15770210e2" offset="0x000000" /> |
| 46030 | 50940 | </dataarea> |
| r21545 | r21546 | |
| 46037 | 50947 | <publisher>Koei</publisher> |
| 46038 | 50948 | <info name="release" value="199312xx" /> |
| 46039 | 50949 | <part name="cart" interface="snes_cart"> |
| 50950 | ||
| 50951 | <feature name="slot" value="hirom" /> | |
| 46040 | 50952 | <dataarea name="rom" size="524288"> |
| 46041 | 50953 | <rom name="nobunaga's ambition (usa).sfc" size="524288" crc="49da3583" sha1="2400f6d79aff8eb82c2dba767901c0c0a5d08ea9" offset="0x000000" /> |
| 46042 | 50954 | </dataarea> |
| r21545 | r21546 | |
| 46051 | 50963 | <publisher>Koei</publisher> |
| 46052 | 50964 | <info name="release" value="199410xx" /> |
| 46053 | 50965 | <part name="cart" interface="snes_cart"> |
| 50966 | ||
| 50967 | <feature name="slot" value="lorom" /> | |
| 46054 | 50968 | <dataarea name="rom" size="1048576"> |
| 46055 | 50969 | <rom name="nobunaga's ambition - lord of darkness (usa).sfc" size="1048576" crc="4d7b39cd" sha1="b88ef0a395072974578e4df4b194412637f3bbe8" offset="0x000000" /> |
| 46056 | 50970 | </dataarea> |
| r21545 | r21546 | |
| 46065 | 50979 | <publisher>Romstar</publisher> |
| 46066 | 50980 | <info name="release" value="199202xx" /> |
| 46067 | 50981 | <part name="cart" interface="snes_cart"> |
| 50982 | ||
| 50983 | <feature name="slot" value="lorom" /> | |
| 46068 | 50984 | <dataarea name="rom" size="524288"> |
| 46069 | 50985 | <rom name="nolan ryan's baseball (usa).sfc" size="524288" crc="1919baff" sha1="e52e1d8c8825d52c9fa65a39c3b28f83d1df59ae" offset="0x000000" /> |
| 46070 | 50986 | </dataarea> |
| r21545 | r21546 | |
| 46081 | 50997 | <info name="release" value="19950929" /> |
| 46082 | 50998 | <info name="alt_title" value="ノーマーク爆牌党 史上最強の雀士 達" /> |
| 46083 | 50999 | <part name="cart" interface="snes_cart"> |
| 51000 | ||
| 51001 | <feature name="slot" value="hirom" /> | |
| 46084 | 51002 | <dataarea name="rom" size="1572864"> |
| 46085 | 51003 | <rom name="nomark baku haitou - shijou saikyou no janshi-tachi (japan).sfc" size="1572864" crc="41dffe15" sha1="e8b09c0b20734c95d843bbd1e8a41b3400fb26c5" offset="0x000000" /> |
| 46086 | 51004 | </dataarea> |
| r21545 | r21546 | |
| 46097 | 51015 | <info name="release" value="19941125" /> |
| 46098 | 51016 | <info name="alt_title" value="ノンタンといっしょ くるくる ぱずる" /> |
| 46099 | 51017 | <part name="cart" interface="snes_cart"> |
| 51018 | ||
| 51019 | <feature name="slot" value="lorom" /> | |
| 46100 | 51020 | <dataarea name="rom" size="524288"> |
| 46101 | 51021 | <rom name="nontan to issho - kurukuru puzzle (japan).sfc" size="524288" crc="de346477" sha1="f2bfed3a65c38319fb11dada2eab31d1d10d5466" offset="0x000000" /> |
| 46102 | 51022 | </dataarea> |
| r21545 | r21546 | |
| 46111 | 51031 | <info name="release" value="19941007" /> |
| 46112 | 51032 | <info name="alt_title" value="ノスフェラトゥ" /> |
| 46113 | 51033 | <part name="cart" interface="snes_cart"> |
| 51034 | ||
| 51035 | <feature name="slot" value="lorom" /> | |
| 46114 | 51036 | <dataarea name="rom" size="2097152"> |
| 46115 | 51037 | <rom name="nosferatu (japan).sfc" size="2097152" crc="2c5df175" sha1="5b8efdb03542c112d66d5ef017637e8a8aafe89e" offset="0x000000" /> |
| 46116 | 51038 | </dataarea> |
| r21545 | r21546 | |
| 46123 | 51045 | <publisher>Seta</publisher> |
| 46124 | 51046 | <info name="release" value="199510xx" /> |
| 46125 | 51047 | <part name="cart" interface="snes_cart"> |
| 51048 | ||
| 51049 | <feature name="slot" value="lorom" /> | |
| 46126 | 51050 | <dataarea name="rom" size="2097152"> |
| 46127 | 51051 | <rom name="nosferatu (usa).sfc" size="2097152" crc="de762764" sha1="8cbda4cfd74228cf041695382cccb5c4ac893e75" offset="0x000000" /> |
| 46128 | 51052 | </dataarea> |
| r21545 | r21546 | |
| 46137 | 51061 | <info name="release" value="19960830" /> |
| 46138 | 51062 | <info name="alt_title" value="ナンバーズパラダイス" /> |
| 46139 | 51063 | <part name="cart" interface="snes_cart"> |
| 51064 | ||
| 51065 | <feature name="slot" value="lorom" /> | |
| 46140 | 51066 | <dataarea name="rom" size="524288"> |
| 46141 | 51067 | <rom name="numbers paradise (japan).sfc" size="524288" crc="612a07f9" sha1="d358cdca75f67a5b932b13aef8136c35fadaaf49" offset="0x000000" /> |
| 46142 | 51068 | </dataarea> |
| r21545 | r21546 | |
| 46153 | 51079 | <info name="release" value="19951201" /> |
| 46154 | 51080 | <info name="alt_title" value="おーちゃんのお絵かきロジック" /> |
| 46155 | 51081 | <part name="cart" interface="snes_cart"> |
| 51082 | ||
| 51083 | <feature name="slot" value="lorom" /> | |
| 46156 | 51084 | <dataarea name="rom" size="524288"> |
| 46157 | 51085 | <rom name="o-chan no oekaki logic (japan).sfc" size="524288" crc="9a5f2955" sha1="87d4aa8b1e049d1a81296b6b3b0382ed9ebfc007" offset="0x000000" /> |
| 46158 | 51086 | </dataarea> |
| r21545 | r21546 | |
| 46167 | 51095 | <publisher>Bullet-Proof Software</publisher> |
| 46168 | 51096 | <info name="release" value="199409xx" /> |
| 46169 | 51097 | <part name="cart" interface="snes_cart"> |
| 51098 | ||
| 51099 | <feature name="slot" value="lorom" /> | |
| 46170 | 51100 | <dataarea name="rom" size="1048576"> |
| 46171 | 51101 | <rom name="obitus (usa).sfc" size="1048576" crc="7c495b36" sha1="83fa98c639c9480836c8b3ae4a7020125f868d67" offset="0x000000" /> |
| 46172 | 51102 | </dataarea> |
| r21545 | r21546 | |
| 46183 | 51113 | <info name="release" value="19940916" /> |
| 46184 | 51114 | <info name="alt_title" value="おでかけレスタ~ れれれのれ(^^;" /> |
| 46185 | 51115 | <part name="cart" interface="snes_cart"> |
| 51116 | ||
| 51117 | <feature name="slot" value="hirom" /> | |
| 46186 | 51118 | <dataarea name="rom" size="1048576"> |
| 46187 | 51119 | <rom name="odekake lester - lelele no le (^^; (japan).sfc" size="1048576" crc="8d89a8e8" sha1="0ec5e8c1b0fa17301a5b6b335f98552bb3a6d7d2" offset="0x000000" /> |
| 46188 | 51120 | </dataarea> |
| r21545 | r21546 | |
| 46197 | 51129 | <info name="release" value="19990601" /> |
| 46198 | 51130 | <info name="alt_title" value="お絵かきロジック" /> |
| 46199 | 51131 | <part name="cart" interface="snes_cart"> |
| 51132 | ||
| 51133 | <feature name="slot" value="hirom" /> | |
| 46200 | 51134 | <dataarea name="rom" size="524288"> |
| 46201 | 51135 | <rom name="oekaki logic (japan) (np).sfc" size="524288" crc="39a0c010" sha1="aa4d2c78f6831e939de902aa3f0641d0aadf5cac" offset="0x000000" /> |
| 46202 | 51136 | </dataarea> |
| r21545 | r21546 | |
| 46213 | 51147 | <info name="release" value="19991101" /> |
| 46214 | 51148 | <info name="alt_title" value="お絵かきロジック2" /> |
| 46215 | 51149 | <part name="cart" interface="snes_cart"> |
| 51150 | ||
| 51151 | <feature name="slot" value="hirom" /> | |
| 46216 | 51152 | <dataarea name="rom" size="524288"> |
| 46217 | 51153 | <rom name="oekaki logic 2 (japan) (np).sfc" size="524288" crc="4b32c8aa" sha1="08b98ecf75f36accf3dc3b213b1d6f87f9cb306e" offset="0x000000" /> |
| 46218 | 51154 | </dataarea> |
| r21545 | r21546 | |
| 46227 | 51163 | <publisher>Enix</publisher> |
| 46228 | 51164 | <info name="release" value="199505xx" /> |
| 46229 | 51165 | <part name="cart" interface="snes_cart"> |
| 51166 | ||
| 51167 | <feature name="slot" value="lorom" /> | |
| 46230 | 51168 | <dataarea name="rom" size="1572864"> |
| 46231 | 51169 | <rom name="ogre battle - the march of the black queen (usa).sfc" size="1572864" crc="acfdb7b8" sha1="cfc45162b91791a61d4260e348ad43cb3b2eca0f" offset="0x000000" /> |
| 46232 | 51170 | </dataarea> |
| r21545 | r21546 | |
| 46243 | 51181 | <info name="release" value="19941221" /> |
| 46244 | 51182 | <info name="alt_title" value="岡本綾子とマッチプレイゴルフコ・オリナゴルフクラブ in ハワイ" /> |
| 46245 | 51183 | <part name="cart" interface="snes_cart"> |
| 51184 | ||
| 51185 | <feature name="slot" value="lorom" /> | |
| 46246 | 51186 | <dataarea name="rom" size="1048576"> |
| 46247 | 51187 | <rom name="okamoto ayako to match play golf - ko olina golf club in hawaii (japan).sfc" size="1048576" crc="e6c805a7" sha1="b5b85165aeb97d75466a72023c1386fd1b71f688" offset="0x000000" /> |
| 46248 | 51188 | </dataarea> |
| r21545 | r21546 | |
| 46259 | 51199 | <info name="release" value="19940204" /> |
| 46260 | 51200 | <info name="alt_title" value="オリビアのミステリー" /> |
| 46261 | 51201 | <part name="cart" interface="snes_cart"> |
| 51202 | ||
| 51203 | <feature name="slot" value="lorom" /> | |
| 46262 | 51204 | <dataarea name="rom" size="1048576"> |
| 46263 | 51205 | <rom name="olivia no mystery (japan).sfc" size="1048576" crc="0dfde2aa" sha1="df542ffbfa614fa640b5425aa05ac7ceecb723dd" offset="0x000000" /> |
| 46264 | 51206 | </dataarea> |
| r21545 | r21546 | |
| 46270 | 51212 | <year>1996</year> |
| 46271 | 51213 | <publisher>U.S. Gold</publisher> |
| 46272 | 51214 | <part name="cart" interface="snes_cart"> |
| 51215 | ||
| 51216 | <feature name="slot" value="hirom" /> | |
| 46273 | 51217 | <dataarea name="rom" size="2097152"> |
| 46274 | 51218 | <rom name="olympic summer games (europe).sfc" size="2097152" crc="3ed21333" sha1="2b217cbb0f499227412edc3a36ac453639c1be4a" offset="0x000000" /> |
| 46275 | 51219 | </dataarea> |
| r21545 | r21546 | |
| 46282 | 51226 | <publisher>Black Pearl</publisher> |
| 46283 | 51227 | <info name="release" value="199606xx" /> |
| 46284 | 51228 | <part name="cart" interface="snes_cart"> |
| 51229 | ||
| 51230 | <feature name="slot" value="hirom" /> | |
| 46285 | 51231 | <dataarea name="rom" size="2097152"> |
| 46286 | 51232 | <rom name="olympic summer games (usa).sfc" size="2097152" crc="6b882d11" sha1="878916b1ce5c535c5d167499ec282e2a6a0b824f" offset="0x000000" /> |
| 46287 | 51233 | </dataarea> |
| r21545 | r21546 | |
| 46293 | 51239 | <year>1992</year> |
| 46294 | 51240 | <publisher>Taito</publisher> |
| 46295 | 51241 | <part name="cart" interface="snes_cart"> |
| 51242 | ||
| 51243 | <feature name="slot" value="lorom" /> | |
| 46296 | 51244 | <dataarea name="rom" size="1048576"> |
| 46297 | 51245 | <rom name="on the ball (europe).sfc" size="1048576" crc="b577815d" sha1="a1c2d3ea6d3c67c186948aa09e26878be129e2fd" offset="0x000000" /> |
| 46298 | 51246 | </dataarea> |
| r21545 | r21546 | |
| 46305 | 51253 | <publisher>Taito</publisher> |
| 46306 | 51254 | <info name="release" value="199211xx" /> |
| 46307 | 51255 | <part name="cart" interface="snes_cart"> |
| 51256 | ||
| 51257 | <feature name="slot" value="lorom" /> | |
| 46308 | 51258 | <dataarea name="rom" size="1048576"> |
| 46309 | 51259 | <rom name="on the ball (usa).sfc" size="1048576" crc="50ad3fe8" sha1="0c54bd1d43ca3bd6a56f55fcf8f4d97466864d92" offset="0x000000" /> |
| 46310 | 51260 | </dataarea> |
| r21545 | r21546 | |
| 46319 | 51269 | <info name="release" value="19931126" /> |
| 46320 | 51270 | <info name="alt_title" value="鬼塚勝也スーパーヴァーチャルボクシング~真拳闘王伝説~" /> |
| 46321 | 51271 | <part name="cart" interface="snes_cart"> |
| 51272 | ||
| 51273 | <feature name="slot" value="lorom" /> | |
| 46322 | 51274 | <dataarea name="rom" size="1048576"> |
| 46323 | 51275 | <rom name="onizuka katsuya super virtual boxing - shin kentou ou densetsu (japan).sfc" size="1048576" crc="f0c936e5" sha1="224ad27031f6b9d13898df20e5e18f65aeb54c1a" offset="0x000000" /> |
| 46324 | 51276 | </dataarea> |
| r21545 | r21546 | |
| 46333 | 51285 | <info name="release" value="19930806" /> |
| 46334 | 51286 | <info name="alt_title" value="大仁田厚 FMW" /> |
| 46335 | 51287 | <part name="cart" interface="snes_cart"> |
| 51288 | ||
| 51289 | <feature name="slot" value="lorom" /> | |
| 46336 | 51290 | <dataarea name="rom" size="1572864"> |
| 46337 | 51291 | <rom name="oonita atsushi fmw (japan).sfc" size="1572864" crc="88b2da36" sha1="89fef293229d5c4f7adc0aa985bdf906f1e4ff78" offset="0x000000" /> |
| 46338 | 51292 | </dataarea> |
| r21545 | r21546 | |
| 46345 | 51299 | <publisher>Koei</publisher> |
| 46346 | 51300 | <info name="release" value="199406xx" /> |
| 46347 | 51301 | <part name="cart" interface="snes_cart"> |
| 51302 | ||
| 51303 | <feature name="slot" value="hirom" /> | |
| 46348 | 51304 | <dataarea name="rom" size="1310720"> |
| 46349 | 51305 | <rom name="operation europe - path to victory 1939-45 (usa).sfc" size="1310720" crc="f84c2bb6" sha1="2c08d0daf70a44a4d73d16c803a0c323cd4d01e8" offset="0x000000" /> |
| 46350 | 51306 | </dataarea> |
| r21545 | r21546 | |
| 46359 | 51315 | <publisher>Jaleco</publisher> |
| 46360 | 51316 | <info name="release" value="199309xx" /> |
| 46361 | 51317 | <part name="cart" interface="snes_cart"> |
| 51318 | ||
| 51319 | <feature name="slot" value="lorom" /> | |
| 46362 | 51320 | <dataarea name="rom" size="1048576"> |
| 46363 | 51321 | <rom name="operation logic bomb (usa).sfc" size="1048576" crc="65bbe8b4" sha1="d030c6512be1e10c4c8b8b27d8acaa59661ac264" offset="0x000000" /> |
| 46364 | 51322 | </dataarea> |
| r21545 | r21546 | |
| 46372 | 51330 | <info name="release" value="199410xx" /> |
| 46373 | 51331 | <sharedfeat name="compatibility" value="NTSC"/> |
| 46374 | 51332 | <part name="cart" interface="snes_cart"> |
| 51333 | ||
| 51334 | <feature name="slot" value="hirom" /> | |
| 46375 | 51335 | <dataarea name="rom" size="1310720"> |
| 46376 | 51336 | <rom name="operation thunderbolt (usa).sfc" size="1310720" crc="3042b049" sha1="204b7e98053ca51d6539198379c3fa025c7cb9fb" offset="0x000000" /> |
| 46377 | 51337 | </dataarea> |
| r21545 | r21546 | |
| 46383 | 51343 | <year>1995</year> |
| 46384 | 51344 | <publisher>Vic Tokai</publisher> |
| 46385 | 51345 | <part name="cart" interface="snes_cart"> |
| 51346 | ||
| 51347 | <feature name="slot" value="lorom" /> | |
| 46386 | 51348 | <dataarea name="rom" size="524288"> |
| 46387 | 51349 | <rom name="oraga land shusai - best farmer shuukakusai (japan) (sample).sfc" size="524288" crc="27ced447" sha1="1799a26d19fa86e49ee33351374a9084441e0dcf" offset="0x000000" /> |
| 46388 | 51350 | </dataarea> |
| r21545 | r21546 | |
| 46397 | 51359 | <info name="release" value="19950317" /> |
| 46398 | 51360 | <info name="alt_title" value="おらがランド主催 ベストファー マー収穫祭" /> |
| 46399 | 51361 | <part name="cart" interface="snes_cart"> |
| 51362 | ||
| 51363 | <feature name="slot" value="lorom" /> | |
| 46400 | 51364 | <dataarea name="rom" size="524288"> |
| 46401 | 51365 | <rom name="oraga land shusai - best farmer shuukakusai (japan).sfc" size="524288" crc="32a4612f" sha1="5d4c489f96c5c6165dc2686d94242a37feb3815e" offset="0x000000" /> |
| 46402 | 51366 | </dataarea> |
| r21545 | r21546 | |
| 46408 | 51372 | <year>1996</year> |
| 46409 | 51373 | <publisher>Titus</publisher> |
| 46410 | 51374 | <part name="cart" interface="snes_cart"> |
| 51375 | ||
| 51376 | <feature name="slot" value="lorom" /> | |
| 46411 | 51377 | <dataarea name="rom" size="524288"> |
| 46412 | 51378 | <rom name="oscar (europe).sfc" size="524288" crc="b458fdbc" sha1="ee40af66f9088ac1b695c8a197d38f85afecddc5" offset="0x000000" /> |
| 46413 | 51379 | </dataarea> |
| r21545 | r21546 | |
| 46420 | 51386 | <publisher>Titus</publisher> |
| 46421 | 51387 | <info name="release" value="199610xx" /> |
| 46422 | 51388 | <part name="cart" interface="snes_cart"> |
| 51389 | ||
| 51390 | <feature name="slot" value="lorom" /> | |
| 46423 | 51391 | <dataarea name="rom" size="524288"> |
| 46424 | 51392 | <rom name="oscar (usa).sfc" size="524288" crc="cdf463c0" sha1="7d981c08b8f418f80c1b8d565eb46323d087f6ab" offset="0x000000" /> |
| 46425 | 51393 | </dataarea> |
| r21545 | r21546 | |
| 46434 | 51402 | <info name="release" value="19920405" /> |
| 46435 | 51403 | <info name="alt_title" value="オセロワールド" /> |
| 46436 | 51404 | <part name="cart" interface="snes_cart"> |
| 51405 | ||
| 51406 | <feature name="slot" value="lorom" /> | |
| 46437 | 51407 | <dataarea name="rom" size="1048576"> |
| 46438 | 51408 | <rom name="othello world (japan).sfc" size="1048576" crc="1345ed19" sha1="238f54922a4856c95c68d8a79e427114ba079624" offset="0x000000" /> |
| 46439 | 51409 | </dataarea> |
| r21545 | r21546 | |
| 46448 | 51418 | <info name="release" value="19950225" /> |
| 46449 | 51419 | <info name="alt_title" value="おとぼけ忍者コロシアム" /> |
| 46450 | 51420 | <part name="cart" interface="snes_cart"> |
| 51421 | ||
| 51422 | <feature name="slot" value="lorom" /> | |
| 46451 | 51423 | <dataarea name="rom" size="1048576"> |
| 46452 | 51424 | <rom name="otoboke ninja colosseum (japan).sfc" size="1048576" crc="ade02a40" sha1="3c11d009a98f659241698e9b01d3b0429137f5e0" offset="0x000000" /> |
| 46453 | 51425 | </dataarea> |
| r21545 | r21546 | |
| 46459 | 51431 | <year>1992</year> |
| 46460 | 51432 | <publisher>Interplay</publisher> |
| 46461 | 51433 | <part name="cart" interface="snes_cart"> |
| 51434 | ||
| 51435 | <feature name="slot" value="lorom" /> | |
| 46462 | 51436 | <dataarea name="rom" size="1048576"> |
| 46463 | 51437 | <rom name="out of this world (usa) (beta).sfc" size="1048576" crc="cc665b17" sha1="7f94b3dfa220b3dd4c372802fe4fa373bde27752" offset="0x000000" /> |
| 46464 | 51438 | </dataarea> |
| r21545 | r21546 | |
| 46473 | 51447 | <publisher>Interplay</publisher> |
| 46474 | 51448 | <info name="release" value="199211xx" /> |
| 46475 | 51449 | <part name="cart" interface="snes_cart"> |
| 51450 | ||
| 51451 | <feature name="slot" value="lorom" /> | |
| 46476 | 51452 | <dataarea name="rom" size="1048576"> |
| 46477 | 51453 | <rom name="out of this world (usa).sfc" size="1048576" crc="5f40a869" sha1="fa8382794b19f8b36753f33091ad3e8b3bda7018" offset="0x000000" /> |
| 46478 | 51454 | </dataarea> |
| r21545 | r21546 | |
| 46484 | 51460 | <year>1993</year> |
| 46485 | 51461 | <publisher>Mindscape</publisher> |
| 46486 | 51462 | <part name="cart" interface="snes_cart"> |
| 51463 | ||
| 51464 | <feature name="slot" value="lorom" /> | |
| 46487 | 51465 | <dataarea name="rom" size="1048576"> |
| 46488 | 51466 | <rom name="out to lunch (europe).sfc" size="1048576" crc="a9764a20" sha1="c5d52c27c4eeb1f34fbb91899cb809280867008b" offset="0x000000" /> |
| 46489 | 51467 | </dataarea> |
| r21545 | r21546 | |
| 46496 | 51474 | <publisher>Mindscape</publisher> |
| 46497 | 51475 | <info name="release" value="199311xx" /> |
| 46498 | 51476 | <part name="cart" interface="snes_cart"> |
| 51477 | ||
| 51478 | <feature name="slot" value="lorom" /> | |
| 46499 | 51479 | <dataarea name="rom" size="1048576"> |
| 46500 | 51480 | <rom name="out to lunch (usa).sfc" size="1048576" crc="3d0c8974" sha1="0a8051f7744ec11464f75c235a4a5d003da799d1" offset="0x000000" /> |
| 46501 | 51481 | </dataarea> |
| r21545 | r21546 | |
| 46510 | 51490 | <info name="release" value="19921127" /> |
| 46511 | 51491 | <info name="alt_title" value="アウター・ワールド" /> |
| 46512 | 51492 | <part name="cart" interface="snes_cart"> |
| 51493 | ||
| 51494 | <feature name="slot" value="lorom" /> | |
| 46513 | 51495 | <dataarea name="rom" size="1048576"> |
| 46514 | 51496 | <rom name="outer world (japan).sfc" size="1048576" crc="8d004dbb" sha1="6dea2ecad28782748dac38489a7afa493fb93c77" offset="0x000000" /> |
| 46515 | 51497 | </dataarea> |
| r21545 | r21546 | |
| 46522 | 51504 | <publisher>Mindscape</publisher> |
| 46523 | 51505 | <info name="release" value="199304xx" /> |
| 46524 | 51506 | <part name="cart" interface="snes_cart"> |
| 51507 | ||
| 51508 | <feature name="slot" value="lorom" /> | |
| 46525 | 51509 | <dataarea name="rom" size="1048576"> |
| 46526 | 51510 | <rom name="outlander (usa).sfc" size="1048576" crc="a978b36f" sha1="4dd01cd2f950b70bd08a6b16115cd647c7147c04" offset="0x000000" /> |
| 46527 | 51511 | </dataarea> |
| r21545 | r21546 | |
| 46537 | 51521 | <info name="alt_title" value="P・マン" /> |
| 46538 | 51522 | <sharedfeat name="compatibility" value="NTSC"/> |
| 46539 | 51523 | <part name="cart" interface="snes_cart"> |
| 51524 | ||
| 51525 | <feature name="slot" value="lorom" /> | |
| 46540 | 51526 | <dataarea name="rom" size="1048576"> |
| 46541 | 51527 | <rom name="p-man (japan).sfc" size="1048576" crc="c4f299b5" sha1="047f62ccf6fef833a1addc523001e1b403507b56" offset="0x000000" /> |
| 46542 | 51528 | </dataarea> |
| r21545 | r21546 | |
| 46549 | 51535 | <publisher>Koei</publisher> |
| 46550 | 51536 | <info name="release" value="199309xx" /> |
| 46551 | 51537 | <part name="cart" interface="snes_cart"> |
| 51538 | ||
| 51539 | <feature name="slot" value="lorom" /> | |
| 46552 | 51540 | <dataarea name="rom" size="1310720"> |
| 46553 | 51541 | <rom name="p.t.o. - pacific theater of operations (usa).sfc" size="1310720" crc="e51bbac8" sha1="da4d2d18f27c1ecce0269fcb1bf185d878a6714d" offset="0x000000" /> |
| 46554 | 51542 | </dataarea> |
| r21545 | r21546 | |
| 46563 | 51551 | <publisher>Koei</publisher> |
| 46564 | 51552 | <info name="release" value="199512xx" /> |
| 46565 | 51553 | <part name="cart" interface="snes_cart"> |
| 51554 | ||
| 51555 | <feature name="slot" value="hirom" /> | |
| 46566 | 51556 | <dataarea name="rom" size="3145728"> |
| 46567 | 51557 | <rom name="p.t.o. ii - pacific theater of operations (usa).sfc" size="3145728" crc="a614d268" sha1="5118c620595194752a8926511548c54aba4a34a5" offset="0x000000" /> |
| 46568 | 51558 | </dataarea> |
| r21545 | r21546 | |
| 46577 | 51567 | <publisher>Namco</publisher> |
| 46578 | 51568 | <sharedfeat name="compatibility" value="PAL"/> |
| 46579 | 51569 | <part name="cart" interface="snes_cart"> |
| 51570 | ||
| 51571 | <feature name="slot" value="lorom" /> | |
| 46580 | 51572 | <dataarea name="rom" size="524288"> |
| 46581 | 51573 | <rom name="pac-attack (europe).sfc" size="524288" crc="79941300" sha1="b33c5f4f00e54c97dc2be87f42d26e6e72e30399" offset="0x000000" /> |
| 46582 | 51574 | </dataarea> |
| r21545 | r21546 | |
| 46589 | 51581 | <publisher>Namco</publisher> |
| 46590 | 51582 | <info name="release" value="199310xx" /> |
| 46591 | 51583 | <part name="cart" interface="snes_cart"> |
| 51584 | ||
| 51585 | <feature name="slot" value="lorom" /> | |
| 46592 | 51586 | <dataarea name="rom" size="524288"> |
| 46593 | 51587 | <rom name="pac-attack (usa).sfc" size="524288" crc="191b1a19" sha1="270dbc7ef0b0d25c39cd1ee6badfef6a7a914830" offset="0x000000" /> |
| 46594 | 51588 | </dataarea> |
| r21545 | r21546 | |
| 46600 | 51594 | <year>1995</year> |
| 46601 | 51595 | <publisher>Namco</publisher> |
| 46602 | 51596 | <part name="cart" interface="snes_cart"> |
| 51597 | ||
| 51598 | <feature name="slot" value="lorom" /> | |
| 46603 | 51599 | <dataarea name="rom" size="1048576"> |
| 46604 | 51600 | <rom name="pac-in-time (europe) (beta).sfc" size="1048576" crc="98af5de4" sha1="95e54e912e6a9fb5220efd258432a525dffab5f3" offset="0x000000" /> |
| 46605 | 51601 | </dataarea> |
| r21545 | r21546 | |
| 46612 | 51608 | <publisher>Namco</publisher> |
| 46613 | 51609 | <sharedfeat name="compatibility" value="PAL"/> |
| 46614 | 51610 | <part name="cart" interface="snes_cart"> |
| 51611 | ||
| 51612 | <feature name="slot" value="lorom" /> | |
| 46615 | 51613 | <dataarea name="rom" size="1048576"> |
| 46616 | 51614 | <rom name="pac-in-time (europe).sfc" size="1048576" crc="348be5ca" sha1="7cc73d8a4778ae83787603e1c26c0acba2bc3393" offset="0x000000" /> |
| 46617 | 51615 | </dataarea> |
| r21545 | r21546 | |
| 46627 | 51625 | <info name="alt_title" value="パックインタイム" /> |
| 46628 | 51626 | <sharedfeat name="compatibility" value="NTSC"/> |
| 46629 | 51627 | <part name="cart" interface="snes_cart"> |
| 51628 | ||
| 51629 | <feature name="slot" value="lorom" /> | |
| 46630 | 51630 | <dataarea name="rom" size="1048576"> |
| 46631 | 51631 | <rom name="pac-in-time (japan).sfc" size="1048576" crc="bb6b3b1f" sha1="2c7c5de3352dd4c6221ceb19d146e8ce025ce691" offset="0x000000" /> |
| 46632 | 51632 | </dataarea> |
| r21545 | r21546 | |
| 46640 | 51640 | <info name="release" value="199501xx" /> |
| 46641 | 51641 | <sharedfeat name="compatibility" value="NTSC"/> |
| 46642 | 51642 | <part name="cart" interface="snes_cart"> |
| 51643 | ||
| 51644 | <feature name="slot" value="lorom" /> | |
| 46643 | 51645 | <dataarea name="rom" size="1048576"> |
| 46644 | 51646 | <rom name="pac-in-time (usa).sfc" size="1048576" crc="44375368" sha1="ed8cea2dcf6742cdb7c22c6440c74768d7040b3c" offset="0x000000" /> |
| 46645 | 51647 | </dataarea> |
| r21545 | r21546 | |
| 46652 | 51654 | <publisher>Nintendo</publisher> |
| 46653 | 51655 | <sharedfeat name="compatibility" value="PAL"/> |
| 46654 | 51656 | <part name="cart" interface="snes_cart"> |
| 51657 | ||
| 51658 | <feature name="slot" value="lorom" /> | |
| 46655 | 51659 | <dataarea name="rom" size="1572864"> |
| 46656 | 51660 | <rom name="pac-man 2 - the new adventures (europe).sfc" size="1572864" crc="51c8a0eb" sha1="21a5e1fe16419df1f769e1b44e9f054b6008e929" offset="0x000000" /> |
| 46657 | 51661 | </dataarea> |
| r21545 | r21546 | |
| 46664 | 51668 | <publisher>Nintendo</publisher> |
| 46665 | 51669 | <sharedfeat name="compatibility" value="PAL"/> |
| 46666 | 51670 | <part name="cart" interface="snes_cart"> |
| 51671 | ||
| 51672 | <feature name="slot" value="lorom" /> | |
| 46667 | 51673 | <dataarea name="rom" size="1572864"> |
| 46668 | 51674 | <rom name="pac-man 2 - the new adventures (france).sfc" size="1572864" crc="30478a49" sha1="8da6606676b6bc98db3d3908df3a8271d354ba60" offset="0x000000" /> |
| 46669 | 51675 | </dataarea> |
| r21545 | r21546 | |
| 46676 | 51682 | <publisher>Nintendo</publisher> |
| 46677 | 51683 | <sharedfeat name="compatibility" value="PAL"/> |
| 46678 | 51684 | <part name="cart" interface="snes_cart"> |
| 51685 | ||
| 51686 | <feature name="slot" value="lorom" /> | |
| 46679 | 51687 | <dataarea name="rom" size="1572864"> |
| 46680 | 51688 | <rom name="pac-man 2 - the new adventures (germany).sfc" size="1572864" crc="df6a092d" sha1="c2d28f3a63c1199fa098f591eb100a9e1fc6c3c3" offset="0x000000" /> |
| 46681 | 51689 | </dataarea> |
| r21545 | r21546 | |
| 46688 | 51696 | <publisher>Namco</publisher> |
| 46689 | 51697 | <info name="release" value="199409xx" /> |
| 46690 | 51698 | <part name="cart" interface="snes_cart"> |
| 51699 | ||
| 51700 | <feature name="slot" value="lorom" /> | |
| 46691 | 51701 | <dataarea name="rom" size="1572864"> |
| 46692 | 51702 | <rom name="pac-man 2 - the new adventures (usa).sfc" size="1572864" crc="9fc62bcc" sha1="405669090d002949b2d69ce3d6401f21531103c4" offset="0x000000" /> |
| 46693 | 51703 | </dataarea> |
| r21545 | r21546 | |
| 46702 | 51712 | <info name="release" value="19941223" /> |
| 46703 | 51713 | <info name="alt_title" value="パチスロ勝負師" /> |
| 46704 | 51714 | <part name="cart" interface="snes_cart"> |
| 51715 | ||
| 51716 | <feature name="slot" value="lorom" /> | |
| 46705 | 51717 | <dataarea name="rom" size="1048576"> |
| 46706 | 51718 | <rom name="pachi-slot gambler (japan).sfc" size="1048576" crc="b0c89ec1" sha1="e7e13ca42083a4886c799ba763340757a64f4f27" offset="0x000000" /> |
| 46707 | 51719 | </dataarea> |
| r21545 | r21546 | |
| 46718 | 51730 | <info name="release" value="19970307" /> |
| 46719 | 51731 | <info name="alt_title" value="パチスロ完全攻略 ユニバー サル新台入荷 volume1" /> |
| 46720 | 51732 | <part name="cart" interface="snes_cart"> |
| 51733 | ||
| 51734 | <feature name="slot" value="hirom" /> | |
| 46721 | 51735 | <dataarea name="rom" size="524288"> |
| 46722 | 51736 | <rom name="pachi-slot kanzen kouryaku - universal shindai nyuuka volume 1 (japan).sfc" size="524288" crc="a9c26ca1" sha1="7040c4cebb25e92583ad4e4282b1da1ef37e14b4" offset="0x000000" /> |
| 46723 | 51737 | </dataarea> |
| r21545 | r21546 | |
| 46734 | 51748 | <info name="release" value="19940715" /> |
| 46735 | 51749 | <info name="alt_title" value="パチスロ研究" /> |
| 46736 | 51750 | <part name="cart" interface="snes_cart"> |
| 51751 | ||
| 51752 | <feature name="slot" value="lorom" /> | |
| 46737 | 51753 | <dataarea name="rom" size="524288"> |
| 46738 | 51754 | <rom name="pachi-slot kenkyuu (japan).sfc" size="524288" crc="0d5bd100" sha1="af7cf77c385c5a36cf580dc8b5594319143f2907" offset="0x000000" /> |
| 46739 | 51755 | </dataarea> |
| r21545 | r21546 | |
| 46748 | 51764 | <info name="release" value="19940225" /> |
| 46749 | 51765 | <info name="alt_title" value="パチスロランド ぱちぱちコ インの伝説" /> |
| 46750 | 51766 | <part name="cart" interface="snes_cart"> |
| 51767 | ||
| 51768 | <feature name="slot" value="lorom" /> | |
| 46751 | 51769 | <dataarea name="rom" size="524288"> |
| 46752 | 51770 | <rom name="pachi-slot land - pachipachi coin no densetsu (japan).sfc" size="524288" crc="ba2dd0bc" sha1="d4effe660f342dd4b449041c54bed6c0fa467337" offset="0x000000" /> |
| 46753 | 51771 | </dataarea> |
| r21545 | r21546 | |
| 46763 | 51781 | <info name="alt_title" value="パチスロ物語 パル工業スペシャル" /> |
| 46764 | 51782 | <sharedfeat name="compatibility" value="NTSC"/> |
| 46765 | 51783 | <part name="cart" interface="snes_cart"> |
| 51784 | ||
| 51785 | <feature name="slot" value="lorom" /> | |
| 46766 | 51786 | <dataarea name="rom" size="1310720"> |
| 46767 | 51787 | <rom name="pachi-slot monogatari - pal kougyou special (japan).sfc" size="1310720" crc="9eb5c153" sha1="83f2b48ecaca85cc2e32ae7ebe85f697f18289a8" offset="0x000000" /> |
| 46768 | 51788 | </dataarea> |
| r21545 | r21546 | |
| 46777 | 51797 | <info name="release" value="19950707" /> |
| 46778 | 51798 | <info name="alt_title" value="パチンコチャレンジャーV" /> |
| 46779 | 51799 | <part name="cart" interface="snes_cart"> |
| 51800 | ||
| 51801 | <feature name="slot" value="lorom" /> | |
| 46780 | 51802 | <dataarea name="rom" size="1048576"> |
| 46781 | 51803 | <rom name="pachinko challenger (japan).sfc" size="1048576" crc="0bf543bf" sha1="535e25af034cb4f2ce2431ec5b400e8c73b6ee00" offset="0x000000" /> |
| 46782 | 51804 | </dataarea> |
| r21545 | r21546 | |
| 46791 | 51813 | <info name="release" value="19941015" /> |
| 46792 | 51814 | <info name="alt_title" value="パチンコファン 勝利宣言" /> |
| 46793 | 51815 | <part name="cart" interface="snes_cart"> |
| 51816 | ||
| 51817 | <feature name="slot" value="lorom" /> | |
| 46794 | 51818 | <dataarea name="rom" size="1048576"> |
| 46795 | 51819 | <rom name="pachinko fan - shouri sengen (japan).sfc" size="1048576" crc="4f560dca" sha1="01fce937722542d3062dd9201a3684c32b4cd155" offset="0x000000" /> |
| 46796 | 51820 | </dataarea> |
| r21545 | r21546 | |
| 46807 | 51831 | <info name="release" value="19941118" /> |
| 46808 | 51832 | <info name="alt_title" value="パチンコ○秘必勝法" /> |
| 46809 | 51833 | <part name="cart" interface="snes_cart"> |
| 51834 | ||
| 51835 | <feature name="slot" value="lorom" /> | |
| 46810 | 51836 | <dataarea name="rom" size="1048576"> |
| 46811 | 51837 | <rom name="pachinko maruhi hisshouhou (japan).sfc" size="1048576" crc="f7047c67" sha1="831283076e34787c1e59f5eb5f0621978b089cf3" offset="0x000000" /> |
| 46812 | 51838 | </dataarea> |
| r21545 | r21546 | |
| 46821 | 51847 | <info name="release" value="19950526" /> |
| 46822 | 51848 | <info name="alt_title" value="パチンコ 連チャン天国 スーパー CRスペシャル" /> |
| 46823 | 51849 | <part name="cart" interface="snes_cart"> |
| 51850 | ||
| 51851 | <feature name="slot" value="lorom" /> | |
| 46824 | 51852 | <dataarea name="rom" size="524288"> |
| 46825 | 51853 | <rom name="pachinko ren-chan tengoku - super cr special (japan).sfc" size="524288" crc="012c80bd" sha1="e4c003f19792fdaee3a14fc3f543c4f41879ec98" offset="0x000000" /> |
| 46826 | 51854 | </dataarea> |
| r21545 | r21546 | |
| 46834 | 51862 | <info name="serial" value="SHVC-A77J-JPN" /> |
| 46835 | 51863 | <info name="release" value="19950929" /> |
| 46836 | 51864 | <part name="cart" interface="snes_cart"> |
| 51865 | ||
| 51866 | <feature name="slot" value="lorom" /> | |
| 46837 | 51867 | <dataarea name="rom" size="1572864"> |
| 46838 | 51868 | <rom name="pachinko tetsujin - nanaban shoubu (japan).sfc" size="1572864" crc="a1ebb364" sha1="51582d23c7d5720042ba800f5d310365586d3841" offset="0x000000" /> |
| 46839 | 51869 | </dataarea> |
| r21545 | r21546 | |
| 46850 | 51880 | <info name="release" value="19951201" /> |
| 46851 | 51881 | <info name="alt_title" value="パチ夫くんスペシャル3" /> |
| 46852 | 51882 | <part name="cart" interface="snes_cart"> |
| 51883 | ||
| 51884 | <feature name="slot" value="lorom" /> | |
| 46853 | 51885 | <dataarea name="rom" size="1048576"> |
| 46854 | 51886 | <rom name="pachio-kun special 3 (japan).sfc" size="1048576" crc="3449de71" sha1="90258124583335ec530c00b8032e7781a944690c" offset="0x000000" /> |
| 46855 | 51887 | </dataarea> |
| r21545 | r21546 | |
| 46864 | 51896 | <publisher>Raya Systems</publisher> |
| 46865 | 51897 | <info name="release" value="199506xx" /> |
| 46866 | 51898 | <part name="cart" interface="snes_cart"> |
| 51899 | ||
| 51900 | <feature name="slot" value="lorom" /> | |
| 46867 | 51901 | <dataarea name="rom" size="1048576"> |
| 46868 | 51902 | <rom name="packy & marlon (usa) (en,fr,es).sfc" size="1048576" crc="bab26e9c" sha1="bbfbc9a781e5dda63cafee9b1c3047db3ee3a182" offset="0x000000" /> |
| 46869 | 51903 | </dataarea> |
| r21545 | r21546 | |
| 46875 | 51909 | <year>1994</year> |
| 46876 | 51910 | <publisher>Fox Interactive</publisher> |
| 46877 | 51911 | <part name="cart" interface="snes_cart"> |
| 51912 | ||
| 51913 | <feature name="slot" value="lorom" /> | |
| 46878 | 51914 | <dataarea name="rom" size="2097152"> |
| 46879 | 51915 | <rom name="pagemaster, the (europe).sfc" size="2097152" crc="3c42a7b6" sha1="a5acc9871b5465cf835da14c1f7b4c49cea5280a" offset="0x000000" /> |
| 46880 | 51916 | </dataarea> |
| r21545 | r21546 | |
| 46887 | 51923 | <publisher>Fox Interactive</publisher> |
| 46888 | 51924 | <info name="release" value="199411xx" /> |
| 46889 | 51925 | <part name="cart" interface="snes_cart"> |
| 51926 | ||
| 51927 | <feature name="slot" value="lorom" /> | |
| 46890 | 51928 | <dataarea name="rom" size="2097152"> |
| 46891 | 51929 | <rom name="pagemaster, the (usa).sfc" size="2097152" crc="26c38eee" sha1="02fa190bfbed8699ce8f741bac6675f3582ced68" offset="0x000000" /> |
| 46892 | 51930 | </dataarea> |
| r21545 | r21546 | |
| 46901 | 51939 | <info name="release" value="19941118" /> |
| 46902 | 51940 | <info name="alt_title" value="パニック イン なかよしワールト" /> |
| 46903 | 51941 | <part name="cart" interface="snes_cart"> |
| 51942 | ||
| 51943 | <feature name="slot" value="lorom" /> | |
| 46904 | 51944 | <dataarea name="rom" size="524288"> |
| 46905 | 51945 | <rom name="panic in nakayoshi world (japan).sfc" size="524288" crc="7ac3c0c6" sha1="daecbde6a09489baa5c1ffd63ee0252ce78b3e77" offset="0x000000" /> |
| 46906 | 51946 | </dataarea> |
| r21545 | r21546 | |
| 46913 | 51953 | <publisher>Mindscape</publisher> |
| 46914 | 51954 | <info name="release" value="199111xx" /> |
| 46915 | 51955 | <part name="cart" interface="snes_cart"> |
| 51956 | ||
| 51957 | <feature name="slot" value="lorom" /> | |
| 46916 | 51958 | <dataarea name="rom" size="524288"> |
| 46917 | 51959 | <rom name="paperboy 2 (usa).sfc" size="524288" crc="c85aa66a" sha1="dc9e458d9463877802d4440141186bcafea0eba2" offset="0x000000" /> |
| 46918 | 51960 | </dataarea> |
| 46919 | 51961 | </part> |
| 46920 | 51962 | </software> |
| 46921 | 51963 | |
| 51964 | <software name="paramev1"> | |
| 51965 | <description>Parame ROM Cassette Vol. 1 (Jpn)</description> | |
| 51966 | <year>199?</year> | |
| 51967 | <publisher><unlicensed></publisher> | |
| 51968 | <part name="cart" interface="snes_cart"> | |
| 51969 | ||
| 51970 | <feature name="slot" value="lorom" /> | |
| 51971 | <dataarea name="rom" size="524288"> | |
| 51972 | <rom name="parame rom cassette vol. 1 (japan) (unl).sfc" size="524288" crc="4c4bc223" sha1="c94660c2353127a2b2742e7bbbc62077629dd4af" offset="0x000000" /> | |
| 51973 | </dataarea> | |
| 51974 | </part> | |
| 51975 | </software> | |
| 51976 | ||
| 51977 | <software name="paramev2"> | |
| 51978 | <description>Parame ROM Cassette Vol. 2 (Jpn)</description> | |
| 51979 | <year>199?</year> | |
| 51980 | <publisher><unlicensed></publisher> | |
| 51981 | <part name="cart" interface="snes_cart"> | |
| 51982 | ||
| 51983 | <feature name="slot" value="lorom" /> | |
| 51984 | <dataarea name="rom" size="524288"> | |
| 51985 | <rom name="parame rom cassette vol. 2 (japan) (unl).sfc" size="524288" crc="dcf534f1" sha1="ca80e147a6783d897ebc22b1524c584bcf91654b" offset="0x000000" /> | |
| 51986 | </dataarea> | |
| 51987 | </part> | |
| 51988 | </software> | |
| 51989 | ||
| 51990 | <software name="paramev3"> | |
| 51991 | <description>Parame ROM Cassette Vol. 3 (Jpn)</description> | |
| 51992 | <year>199?</year> | |
| 51993 | <publisher><unlicensed></publisher> | |
| 51994 | <part name="cart" interface="snes_cart"> | |
| 51995 | ||
| 51996 | <feature name="slot" value="lorom" /> | |
| 51997 | <dataarea name="rom" size="262144"> | |
| 51998 | <rom name="parame rom cassette vol. 3 (japan) (unl).sfc" size="262144" crc="9f14e993" sha1="a3c5e3616977a066a7f54a2df2ce91e004aea190" offset="0x000000" /> | |
| 51999 | </dataarea> | |
| 52000 | </part> | |
| 52001 | </software> | |
| 52002 | ||
| 46922 | 52003 | <software name="paramev4"> |
| 46923 | 52004 | <!-- single cartridge source: d4s --> |
| 46924 | 52005 | <description>Parame ROM Cassette Vol. 4 (Jpn)</description> |
| 46925 | 52006 | <year>199?</year> |
| 46926 | 52007 | <publisher><unlicensed></publisher> |
| 46927 | 52008 | <part name="cart" interface="snes_cart"> |
| 52009 | ||
| 52010 | <feature name="slot" value="lorom" /> | |
| 46928 | 52011 | <dataarea name="rom" size="262144"> |
| 46929 | 52012 | <rom name="parame rom cassette vol. 4 (japan) (unl).sfc" size="262144" crc="9a30c538" sha1="9e0f5ab5176ae2812a8fe2747cf7ea3421edbb91" offset="0x000000" /> |
| 46930 | 52013 | </dataarea> |
| r21545 | r21546 | |
| 46937 | 52020 | <year>199?</year> |
| 46938 | 52021 | <publisher><unlicensed></publisher> |
| 46939 | 52022 | <part name="cart" interface="snes_cart"> |
| 52023 | ||
| 52024 | <feature name="slot" value="lorom" /> | |
| 46940 | 52025 | <dataarea name="rom" size="262144"> |
| 46941 | 52026 | <rom name="parame rom cassette vol. 5 (japan) (unl).sfc" size="262144" crc="69150d4c" sha1="8d34fec2fda60d29b37238f1a6310f45b48338c7" offset="0x000000" /> |
| 46942 | 52027 | </dataarea> |
| r21545 | r21546 | |
| 46951 | 52036 | <info name="release" value="19960426" /> |
| 46952 | 52037 | <info name="alt_title" value="パーラー!ミニ パチンコ実機シミュレー ションゲーム" /> |
| 46953 | 52038 | <part name="cart" interface="snes_cart"> |
| 52039 | ||
| 52040 | <feature name="slot" value="hirom" /> | |
| 46954 | 52041 | <dataarea name="rom" size="1048576"> |
| 46955 | 52042 | <rom name="parlor! mini - pachinko jikki simulation game (japan).sfc" size="1048576" crc="836e5194" sha1="e30a33d57fdc68d48a19ca281182a3ff78cb3938" offset="0x000000" /> |
| 46956 | 52043 | </dataarea> |
| r21545 | r21546 | |
| 46965 | 52052 | <info name="release" value="19960927" /> |
| 46966 | 52053 | <info name="alt_title" value="パーラー!ミニ3 パチンコ実機シミュレー ションゲーム" /> |
| 46967 | 52054 | <part name="cart" interface="snes_cart"> |
| 52055 | ||
| 52056 | <feature name="slot" value="hirom" /> | |
| 46968 | 52057 | <dataarea name="rom" size="1048576"> |
| 46969 | 52058 | <rom name="parlor! mini 3 - pachinko jikki simulation game (japan).sfc" size="1048576" crc="55b93658" sha1="1cef7a96b3ba263e6771e7f6d7ca655fb495b4ef" offset="0x000000" /> |
| 46970 | 52059 | </dataarea> |
| r21545 | r21546 | |
| 46979 | 52068 | <info name="release" value="19970328" /> |
| 46980 | 52069 | <info name="alt_title" value="パーラー!ミニ5" /> |
| 46981 | 52070 | <part name="cart" interface="snes_cart"> |
| 52071 | ||
| 52072 | <feature name="slot" value="hirom" /> | |
| 46982 | 52073 | <dataarea name="rom" size="1048576"> |
| 46983 | 52074 | <rom name="parlor! mini 5 - pachinko jikki simulation game (japan).sfc" size="1048576" crc="3571f873" sha1="56936365dc66de078263b790cbbdd50e017bde66" offset="0x000000" /> |
| 46984 | 52075 | </dataarea> |
| r21545 | r21546 | |
| 46994 | 52085 | <info name="release" value="19950825" /> |
| 46995 | 52086 | <info name="alt_title" value="Parlor ! パーラー!2" /> |
| 46996 | 52087 | <part name="cart" interface="snes_cart"> |
| 52088 | ||
| 52089 | <feature name="slot" value="hirom" /> | |
| 46997 | 52090 | <dataarea name="rom" size="2097152"> |
| 46998 | 52091 | <rom name="parlor! parlor! 2 (japan).sfc" size="2097152" crc="05d73187" sha1="404029bad5359184a623812f330ef180231e2eaf" offset="0x000000" /> |
| 46999 | 52092 | </dataarea> |
| r21545 | r21546 | |
| 47010 | 52103 | <info name="release" value="19960329" /> |
| 47011 | 52104 | <info name="alt_title" value="Parlor ! パーラー! 5" /> |
| 47012 | 52105 | <part name="cart" interface="snes_cart"> |
| 52106 | ||
| 52107 | <feature name="slot" value="hirom" /> | |
| 47013 | 52108 | <dataarea name="rom" size="1572864"> |
| 47014 | 52109 | <rom name="parlor! parlor! 5 (japan).sfc" size="1572864" crc="fe6c5da7" sha1="244c67e0d47c61b278aa81721fcd304b64c06570" offset="0x000000" /> |
| 47015 | 52110 | </dataarea> |
| r21545 | r21546 | |
| 47027 | 52122 | <info name="release" value="19951229" /> |
| 47028 | 52123 | <info name="alt_title" value="Parlor ! パーラー!IV CR" /> |
| 47029 | 52124 | <part name="cart" interface="snes_cart"> |
| 52125 | ||
| 52126 | <feature name="slot" value="hirom" /> | |
| 47030 | 52127 | <dataarea name="rom" size="2097152"> |
| 47031 | 52128 | <rom name="parlor! parlor! iv cr (japan).sfc" size="2097152" crc="f6d7210f" sha1="b4c1d6466d1b05ffccedaadef54816ff55627a69" offset="0x000000" /> |
| 47032 | 52129 | </dataarea> |
| r21545 | r21546 | |
| 47042 | 52139 | <info name="release" value="199403xx" /> |
| 47043 | 52140 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47044 | 52141 | <part name="cart" interface="snes_cart"> |
| 52142 | ||
| 52143 | <feature name="slot" value="hirom" /> | |
| 47045 | 52144 | <dataarea name="rom" size="2097152"> |
| 47046 | 52145 | <rom name="peace keepers, the (usa).sfc" size="2097152" crc="8071e5db" sha1="259f894520a04b4f2daafc1d4c24d6d7db7fd701" offset="0x000000" /> |
| 47047 | 52146 | </dataarea> |
| r21545 | r21546 | |
| 47054 | 52153 | <publisher>Black Pearl</publisher> |
| 47055 | 52154 | <part name="cart" interface="snes_cart"> |
| 47056 | 52155 | <feature name="enhancement" value="SA1" /> |
| 52156 | ||
| 52157 | <feature name="slot" value="lorom_sa1" /> | |
| 47057 | 52158 | <dataarea name="rom" size="2097152"> |
| 47058 | 52159 | <rom name="pga tour 96 (europe).sfc" size="2097152" crc="c5ac2e72" sha1="207b0b37f4dcc11afd5d6caf7877d8408399fd3e" offset="0x000000" /> |
| 47059 | 52160 | </dataarea> |
| r21545 | r21546 | |
| 47069 | 52170 | <info name="release" value="199601xx" /> |
| 47070 | 52171 | <part name="cart" interface="snes_cart"> |
| 47071 | 52172 | <feature name="enhancement" value="SA1" /> |
| 52173 | ||
| 52174 | <feature name="slot" value="lorom_sa1" /> | |
| 47072 | 52175 | <dataarea name="rom" size="2097152"> |
| 47073 | 52176 | <rom name="pga tour 96 (usa).sfc" size="2097152" crc="bc5df071" sha1="090c312c9b305e423d099cf16dc4fad08c2d513a" offset="0x000000" /> |
| 47074 | 52177 | </dataarea> |
| r21545 | r21546 | |
| 47083 | 52186 | <publisher>Electronic Arts</publisher> |
| 47084 | 52187 | <part name="cart" interface="snes_cart"> |
| 47085 | 52188 | <feature name="enhancement" value="SA1" /> |
| 52189 | ||
| 52190 | <feature name="slot" value="lorom_sa1" /> | |
| 47086 | 52191 | <dataarea name="rom" size="524288"> |
| 47087 | 52192 | <rom name="pga tour golf (europe).sfc" size="524288" crc="5daf9dbd" sha1="df453ef9222af3d6cb77b37091e9677d9d2b9b54" offset="0x000000" /> |
| 47088 | 52193 | </dataarea> |
| r21545 | r21546 | |
| 47099 | 52204 | <info name="release" value="19920703" /> |
| 47100 | 52205 | <info name="alt_title" value="PGAツアーゴルフ" /> |
| 47101 | 52206 | <part name="cart" interface="snes_cart"> |
| 52207 | ||
| 52208 | <feature name="slot" value="lorom" /> | |
| 47102 | 52209 | <dataarea name="rom" size="524288"> |
| 47103 | 52210 | <rom name="pga tour golf (japan).sfc" size="524288" crc="8a2d377e" sha1="21cfaade0721e2a893637b77b694cb22cca16997" offset="0x000000" /> |
| 47104 | 52211 | </dataarea> |
| r21545 | r21546 | |
| 47113 | 52220 | <publisher>Electronic Arts</publisher> |
| 47114 | 52221 | <info name="release" value="199203xx" /> |
| 47115 | 52222 | <part name="cart" interface="snes_cart"> |
| 52223 | ||
| 52224 | <feature name="slot" value="lorom" /> | |
| 47116 | 52225 | <dataarea name="rom" size="524288"> |
| 47117 | 52226 | <rom name="pga tour golf (usa).sfc" size="524288" crc="b6566944" sha1="3aa397aa2b58c99b846411a415ff12bc2cc8e27b" offset="0x000000" /> |
| 47118 | 52227 | </dataarea> |
| r21545 | r21546 | |
| 47126 | 52235 | <year>1992</year> |
| 47127 | 52236 | <publisher>Kemco</publisher> |
| 47128 | 52237 | <part name="cart" interface="snes_cart"> |
| 52238 | ||
| 52239 | <feature name="slot" value="lorom" /> | |
| 47129 | 52240 | <dataarea name="rom" size="1048576"> |
| 47130 | 52241 | <rom name="phalanx - the enforce fighter a-144 (europe).sfc" size="1048576" crc="1fd515d6" sha1="f9523cc140c6006b9931ca4a2794c05f83a05865" offset="0x000000" /> |
| 47131 | 52242 | </dataarea> |
| r21545 | r21546 | |
| 47141 | 52252 | <info name="release" value="19920807" /> |
| 47142 | 52253 | <info name="alt_title" value="ファランクス" /> |
| 47143 | 52254 | <part name="cart" interface="snes_cart"> |
| 52255 | ||
| 52256 | <feature name="slot" value="lorom" /> | |
| 47144 | 52257 | <dataarea name="rom" size="1048576"> |
| 47145 | 52258 | <rom name="phalanx - the enforce fighter a-144 (japan).sfc" size="1048576" crc="561aeb8f" sha1="ee2326ddb2ac8a87b7bfff8b4ca7582687adbee8" offset="0x000000" /> |
| 47146 | 52259 | </dataarea> |
| r21545 | r21546 | |
| 47152 | 52265 | <year>1992</year> |
| 47153 | 52266 | <publisher>Kemco</publisher> |
| 47154 | 52267 | <part name="cart" interface="snes_cart"> |
| 52268 | ||
| 52269 | <feature name="slot" value="lorom" /> | |
| 47155 | 52270 | <dataarea name="rom" size="1048576"> |
| 47156 | 52271 | <rom name="phalanx - the enforce fighter a-144 (usa) (beta).sfc" size="1048576" crc="b1a32fe2" sha1="3e4b0d0d7543f485d1b9a98d21889049c0c0e9a0" offset="0x000000" /> |
| 47157 | 52272 | </dataarea> |
| r21545 | r21546 | |
| 47166 | 52281 | <publisher>Kemco</publisher> |
| 47167 | 52282 | <info name="release" value="199210xx" /> |
| 47168 | 52283 | <part name="cart" interface="snes_cart"> |
| 52284 | ||
| 52285 | <feature name="slot" value="lorom" /> | |
| 47169 | 52286 | <dataarea name="rom" size="1048576"> |
| 47170 | 52287 | <rom name="phalanx - the enforce fighter a-144 (usa).sfc" size="1048576" crc="dc90a8ab" sha1="67cdb495f4a6b53ab79965a6af6dbbd9990d1060" offset="0x000000" /> |
| 47171 | 52288 | </dataarea> |
| r21545 | r21546 | |
| 47177 | 52294 | <year>1995</year> |
| 47178 | 52295 | <publisher>Viacom New Media</publisher> |
| 47179 | 52296 | <part name="cart" interface="snes_cart"> |
| 52297 | ||
| 52298 | <feature name="slot" value="lorom" /> | |
| 47180 | 52299 | <dataarea name="rom" size="2097152"> |
| 47181 | 52300 | <rom name="phantom 2040 (europe) (en,fr,de).sfc" size="2097152" crc="14252650" sha1="748b19c7c6577bf3a15e284d2ad602d325dba2c9" offset="0x000000" /> |
| 47182 | 52301 | </dataarea> |
| r21545 | r21546 | |
| 47188 | 52307 | <year>1995</year> |
| 47189 | 52308 | <publisher>Viacom New Media</publisher> |
| 47190 | 52309 | <part name="cart" interface="snes_cart"> |
| 52310 | ||
| 52311 | <feature name="slot" value="lorom" /> | |
| 47191 | 52312 | <dataarea name="rom" size="2097152"> |
| 47192 | 52313 | <rom name="phantom 2040 (usa) (beta).sfc" size="2097152" crc="d498f1d7" sha1="a0b647e667967586427a23fde30b2f42e8e51f6c" offset="0x000000" /> |
| 47193 | 52314 | </dataarea> |
| r21545 | r21546 | |
| 47200 | 52321 | <publisher>Viacom New Media</publisher> |
| 47201 | 52322 | <info name="release" value="199506xx" /> |
| 47202 | 52323 | <part name="cart" interface="snes_cart"> |
| 52324 | ||
| 52325 | <feature name="slot" value="lorom" /> | |
| 47203 | 52326 | <dataarea name="rom" size="2097152"> |
| 47204 | 52327 | <rom name="phantom 2040 (usa).sfc" size="2097152" crc="35e8fb28" sha1="e74258b868084fe06ac74b9d2ec07b49cbd80d11" offset="0x000000" /> |
| 47205 | 52328 | </dataarea> |
| r21545 | r21546 | |
| 47214 | 52337 | <info name="release" value="19990401" /> |
| 47215 | 52338 | <info name="alt_title" value="ピクロスNP Vol.1" /> |
| 47216 | 52339 | <part name="cart" interface="snes_cart"> |
| 52340 | ||
| 52341 | <feature name="slot" value="hirom" /> | |
| 47217 | 52342 | <dataarea name="rom" size="1048576"> |
| 47218 | 52343 | <rom name="picross np vol. 1 (japan) (np).sfc" size="1048576" crc="73f484a1" sha1="6c7234eed72e5b3d0983d46be50bf637bf84b62e" offset="0x000000" /> |
| 47219 | 52344 | </dataarea> |
| r21545 | r21546 | |
| 47230 | 52355 | <info name="release" value="19990601" /> |
| 47231 | 52356 | <info name="alt_title" value="ピクロスNP Vol.2" /> |
| 47232 | 52357 | <part name="cart" interface="snes_cart"> |
| 52358 | ||
| 52359 | <feature name="slot" value="hirom" /> | |
| 47233 | 52360 | <dataarea name="rom" size="1048576"> |
| 47234 | 52361 | <rom name="picross np vol. 2 (japan) (np).sfc" size="1048576" crc="ca8be5e9" sha1="f713b4180fafffe69821da69506d70803cb6442f" offset="0x000000" /> |
| 47235 | 52362 | </dataarea> |
| r21545 | r21546 | |
| 47246 | 52373 | <info name="release" value="19990601" /> |
| 47247 | 52374 | <info name="alt_title" value="ピクロスNP Vol.2" /> |
| 47248 | 52375 | <part name="cart" interface="snes_cart"> |
| 52376 | ||
| 52377 | <feature name="slot" value="hirom" /> | |
| 47249 | 52378 | <dataarea name="rom" size="1048576"> |
| 47250 | 52379 | <rom name="picross np vol. 2 (japan) (rev 1) (np).sfc" size="1048576" crc="1df8a75c" sha1="dbad4ed4f1c4bb54bf44223833c056179c4cc4f2" offset="0x000000" /> |
| 47251 | 52380 | </dataarea> |
| r21545 | r21546 | |
| 47262 | 52391 | <info name="release" value="19990801" /> |
| 47263 | 52392 | <info name="alt_title" value="ピクロスNP Vol.3" /> |
| 47264 | 52393 | <part name="cart" interface="snes_cart"> |
| 52394 | ||
| 52395 | <feature name="slot" value="hirom" /> | |
| 47265 | 52396 | <dataarea name="rom" size="1048576"> |
| 47266 | 52397 | <rom name="picross np vol. 3 (japan) (np).sfc" size="1048576" crc="23fc2bfc" sha1="45c5ea60180d3ae6d550c16192af15a872a57623" offset="0x000000" /> |
| 47267 | 52398 | </dataarea> |
| r21545 | r21546 | |
| 47278 | 52409 | <info name="release" value="19991001" /> |
| 47279 | 52410 | <info name="alt_title" value="ピクロスNP Vol.4" /> |
| 47280 | 52411 | <part name="cart" interface="snes_cart"> |
| 52412 | ||
| 52413 | <feature name="slot" value="hirom" /> | |
| 47281 | 52414 | <dataarea name="rom" size="1048576"> |
| 47282 | 52415 | <rom name="picross np vol. 4 (japan) (np).sfc" size="1048576" crc="d2b32081" sha1="f348d18fcebf06e2122ad31cd3efef8fae16f69e" offset="0x000000" /> |
| 47283 | 52416 | </dataarea> |
| r21545 | r21546 | |
| 47294 | 52427 | <info name="release" value="19991201" /> |
| 47295 | 52428 | <info name="alt_title" value="ピクロスNP Vol.5" /> |
| 47296 | 52429 | <part name="cart" interface="snes_cart"> |
| 52430 | ||
| 52431 | <feature name="slot" value="hirom" /> | |
| 47297 | 52432 | <dataarea name="rom" size="1048576"> |
| 47298 | 52433 | <rom name="picross np vol. 5 (japan) (np).sfc" size="1048576" crc="c0fbd6b4" sha1="fab88218b2335676eedb9dd152ee54f1a9e0cc91" offset="0x000000" /> |
| 47299 | 52434 | </dataarea> |
| r21545 | r21546 | |
| 47310 | 52445 | <info name="release" value="20000201" /> |
| 47311 | 52446 | <info name="alt_title" value="ピクロスNP Vol.6" /> |
| 47312 | 52447 | <part name="cart" interface="snes_cart"> |
| 52448 | ||
| 52449 | <feature name="slot" value="hirom" /> | |
| 47313 | 52450 | <dataarea name="rom" size="1572864"> |
| 47314 | 52451 | <rom name="picross np vol. 6 (japan) (np).sfc" size="1572864" crc="da52dbc2" sha1="6e4b5d4dfcc7c7a3e53462a3f44247f30d47a7ea" offset="0x000000" /> |
| 47315 | 52452 | </dataarea> |
| r21545 | r21546 | |
| 47326 | 52463 | <info name="release" value="20000401" /> |
| 47327 | 52464 | <info name="alt_title" value="ピクロスNP Vol.7" /> |
| 47328 | 52465 | <part name="cart" interface="snes_cart"> |
| 52466 | ||
| 52467 | <feature name="slot" value="hirom" /> | |
| 47329 | 52468 | <dataarea name="rom" size="1572864"> |
| 47330 | 52469 | <rom name="picross np vol. 7 (japan) (np).sfc" size="1572864" crc="3fab702d" sha1="3a26e735cb9ce33d8f095335274a645074767f97" offset="0x000000" /> |
| 47331 | 52470 | </dataarea> |
| r21545 | r21546 | |
| 47342 | 52481 | <info name="release" value="20000601" /> |
| 47343 | 52482 | <info name="alt_title" value="ピクロスNP Vol.8" /> |
| 47344 | 52483 | <part name="cart" interface="snes_cart"> |
| 52484 | ||
| 52485 | <feature name="slot" value="hirom" /> | |
| 47345 | 52486 | <dataarea name="rom" size="1572864"> |
| 47346 | 52487 | <rom name="picross np vol. 8 (japan) (np).sfc" size="1572864" crc="a473148c" sha1="ce59cde92d21655e2fb8eecc473318d25adc7f4b" offset="0x000000" /> |
| 47347 | 52488 | </dataarea> |
| r21545 | r21546 | |
| 47356 | 52497 | <publisher>Atlus</publisher> |
| 47357 | 52498 | <info name="release" value="199412xx" /> |
| 47358 | 52499 | <part name="cart" interface="snes_cart"> |
| 52500 | ||
| 52501 | <feature name="slot" value="hirom" /> | |
| 47359 | 52502 | <dataarea name="rom" size="1048576"> |
| 47360 | 52503 | <rom name="pieces (usa).sfc" size="1048576" crc="bb6c3c54" sha1="11141f46259fac85640ea17f1c1cc6279bf196d2" offset="0x000000" /> |
| 47361 | 52504 | </dataarea> |
| r21545 | r21546 | |
| 47370 | 52513 | <info name="release" value="19970131" /> |
| 47371 | 52514 | <info name="alt_title" value="ピキーニャ!" /> |
| 47372 | 52515 | <part name="cart" interface="snes_cart"> |
| 52516 | ||
| 52517 | <feature name="slot" value="lorom" /> | |
| 47373 | 52518 | <dataarea name="rom" size="2097152"> |
| 47374 | 52519 | <rom name="pikiinya! (japan).sfc" size="2097152" crc="9fe1b94a" sha1="bf4017c26bb4b33736d96b38d2cf334cff68928d" offset="0x000000" /> |
| 47375 | 52520 | </dataarea> |
| r21545 | r21546 | |
| 47383 | 52528 | <year>1994</year> |
| 47384 | 52529 | <publisher>GameTek</publisher> |
| 47385 | 52530 | <part name="cart" interface="snes_cart"> |
| 52531 | ||
| 52532 | <feature name="slot" value="lorom" /> | |
| 47386 | 52533 | <dataarea name="rom" size="1048576"> |
| 47387 | 52534 | <rom name="pinball dreams (europe) (beta).sfc" size="1048576" crc="c8cca577" sha1="75f42482803ca47a720f9de30956bd0e624aeb72" offset="0x000000" /> |
| 47388 | 52535 | </dataarea> |
| r21545 | r21546 | |
| 47396 | 52543 | <year>1994</year> |
| 47397 | 52544 | <publisher>GameTek</publisher> |
| 47398 | 52545 | <part name="cart" interface="snes_cart"> |
| 52546 | ||
| 52547 | <feature name="slot" value="lorom" /> | |
| 47399 | 52548 | <dataarea name="rom" size="1048576"> |
| 47400 | 52549 | <rom name="pinball dreams (europe).sfc" size="1048576" crc="4c922f36" sha1="07865dfc41f41b20d16ecdd8d08828254643a8ca" offset="0x000000" /> |
| 47401 | 52550 | </dataarea> |
| r21545 | r21546 | |
| 47408 | 52557 | <publisher>GameTek</publisher> |
| 47409 | 52558 | <info name="release" value="199404xx" /> |
| 47410 | 52559 | <part name="cart" interface="snes_cart"> |
| 52560 | ||
| 52561 | <feature name="slot" value="lorom" /> | |
| 47411 | 52562 | <dataarea name="rom" size="1048576"> |
| 47412 | 52563 | <rom name="pinball dreams (usa).sfc" size="1048576" crc="81107ce2" sha1="e82131879ea1f5a0d0f75d940626a93fb33a0583" offset="0x000000" /> |
| 47413 | 52564 | </dataarea> |
| r21545 | r21546 | |
| 47419 | 52570 | <year>1995</year> |
| 47420 | 52571 | <publisher>GameTek</publisher> |
| 47421 | 52572 | <part name="cart" interface="snes_cart"> |
| 52573 | ||
| 52574 | <feature name="slot" value="lorom" /> | |
| 47422 | 52575 | <dataarea name="rom" size="1048576"> |
| 47423 | 52576 | <rom name="pinball fantasies (europe).sfc" size="1048576" crc="2a8f0e3b" sha1="8dbeae8488b27a02a63840c9d237ccf0b78157aa" offset="0x000000" /> |
| 47424 | 52577 | </dataarea> |
| r21545 | r21546 | |
| 47431 | 52584 | <publisher>GameTek</publisher> |
| 47432 | 52585 | <info name="release" value="199502xx" /> |
| 47433 | 52586 | <part name="cart" interface="snes_cart"> |
| 52587 | ||
| 52588 | <feature name="slot" value="lorom" /> | |
| 47434 | 52589 | <dataarea name="rom" size="1048576"> |
| 47435 | 52590 | <rom name="pinball fantasies (usa).sfc" size="1048576" crc="822ad378" sha1="49030a5540e3c3c9c4900944e318a5fa40ad68cc" offset="0x000000" /> |
| 47436 | 52591 | </dataarea> |
| r21545 | r21546 | |
| 47445 | 52600 | <info name="release" value="19940805" /> |
| 47446 | 52601 | <info name="alt_title" value="ピンボールピンボール" /> |
| 47447 | 52602 | <part name="cart" interface="snes_cart"> |
| 52603 | ||
| 52604 | <feature name="slot" value="lorom" /> | |
| 47448 | 52605 | <dataarea name="rom" size="1048576"> |
| 47449 | 52606 | <rom name="pinball pinball (japan).sfc" size="1048576" crc="9bf79a7d" sha1="482208c624cb797e6c37fe5577ffd400f81bfd37" offset="0x000000" /> |
| 47450 | 52607 | </dataarea> |
| r21545 | r21546 | |
| 47457 | 52614 | <publisher>TecMagik</publisher> |
| 47458 | 52615 | <info name="release" value="199311xx" /> |
| 47459 | 52616 | <part name="cart" interface="snes_cart"> |
| 52617 | ||
| 52618 | <feature name="slot" value="lorom" /> | |
| 47460 | 52619 | <dataarea name="rom" size="1048576"> |
| 47461 | 52620 | <rom name="pink goes to hollywood (usa).sfc" size="1048576" crc="8bae9438" sha1="94466ff1143311261dc514f2e30f682b55de71c1" offset="0x000000" /> |
| 47462 | 52621 | </dataarea> |
| r21545 | r21546 | |
| 47471 | 52630 | <info name="release" value="19940415" /> |
| 47472 | 52631 | <info name="alt_title" value="ピンクパンサー" /> |
| 47473 | 52632 | <part name="cart" interface="snes_cart"> |
| 52633 | ||
| 52634 | <feature name="slot" value="lorom" /> | |
| 47474 | 52635 | <dataarea name="rom" size="1048576"> |
| 47475 | 52636 | <rom name="pink panther (japan).sfc" size="1048576" crc="0d1b3812" sha1="39436d24074f9ccc9874c25489aa93e36efc1de4" offset="0x000000" /> |
| 47476 | 52637 | </dataarea> |
| r21545 | r21546 | |
| 47486 | 52647 | <info name="alt_title" value="ピノキオ" /> |
| 47487 | 52648 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47488 | 52649 | <part name="cart" interface="snes_cart"> |
| 52650 | ||
| 52651 | <feature name="slot" value="hirom" /> | |
| 47489 | 52652 | <dataarea name="rom" size="3145728"> |
| 47490 | 52653 | <rom name="pinocchio (japan).sfc" size="3145728" crc="d9f5a47a" sha1="f643355b3e05b25d54b0e6f73d07a2d14c02831d" offset="0x000000" /> |
| 47491 | 52654 | </dataarea> |
| r21545 | r21546 | |
| 47499 | 52662 | <info name="release" value="199611xx" /> |
| 47500 | 52663 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47501 | 52664 | <part name="cart" interface="snes_cart"> |
| 52665 | ||
| 52666 | <feature name="slot" value="hirom" /> | |
| 47502 | 52667 | <dataarea name="rom" size="3145728"> |
| 47503 | 52668 | <rom name="pinocchio (usa).sfc" size="3145728" crc="00fad8fd" sha1="31382104e7f6a80ea6bab82314ba74b518ce4b3c" offset="0x000000" /> |
| 47504 | 52669 | </dataarea> |
| r21545 | r21546 | |
| 47513 | 52678 | <info name="release" value="19920807" /> |
| 47514 | 52679 | <info name="alt_title" value="パイプドリーム" /> |
| 47515 | 52680 | <part name="cart" interface="snes_cart"> |
| 52681 | ||
| 52682 | <feature name="slot" value="lorom" /> | |
| 47516 | 52683 | <dataarea name="rom" size="524288"> |
| 47517 | 52684 | <rom name="pipe dream (japan).sfc" size="524288" crc="af2a3dfe" sha1="301a80fde22914fdbf6a298f6050968af9fddf1b" offset="0x000000" /> |
| 47518 | 52685 | </dataarea> |
| r21545 | r21546 | |
| 47525 | 52692 | <publisher>Sunsoft</publisher> |
| 47526 | 52693 | <sharedfeat name="compatibility" value="PAL"/> |
| 47527 | 52694 | <part name="cart" interface="snes_cart"> |
| 52695 | ||
| 52696 | <feature name="slot" value="lorom" /> | |
| 47528 | 52697 | <dataarea name="rom" size="1048576"> |
| 47529 | 52698 | <rom name="pirates of dark water, the (europe).sfc" size="1048576" crc="4c4782b5" sha1="daed2aa89dfc2fb4de1c690c2e26acf271c0aa31" offset="0x000000" /> |
| 47530 | 52699 | </dataarea> |
| r21545 | r21546 | |
| 47536 | 52705 | <year>1992</year> |
| 47537 | 52706 | <publisher>T*HQ</publisher> |
| 47538 | 52707 | <part name="cart" interface="snes_cart"> |
| 52708 | ||
| 52709 | <feature name="slot" value="lorom" /> | |
| 47539 | 52710 | <dataarea name="rom" size="524288"> |
| 47540 | 52711 | <rom name="pit-fighter (europe).sfc" size="524288" crc="b3cd103e" sha1="b10580f2dcd0e1f97e37783c06a7cee0870ef203" offset="0x000000" /> |
| 47541 | 52712 | </dataarea> |
| r21545 | r21546 | |
| 47548 | 52719 | <publisher>T*HQ</publisher> |
| 47549 | 52720 | <info name="release" value="199203xx" /> |
| 47550 | 52721 | <part name="cart" interface="snes_cart"> |
| 52722 | ||
| 52723 | <feature name="slot" value="lorom" /> | |
| 47551 | 52724 | <dataarea name="rom" size="524288"> |
| 47552 | 52725 | <rom name="pit-fighter (usa).sfc" size="524288" crc="9fab69fc" sha1="843e760347581315e65a3777df00e31ef6cdb69d" offset="0x000000" /> |
| 47553 | 52726 | </dataarea> |
| r21545 | r21546 | |
| 47562 | 52735 | <info name="release" value="19950714" /> |
| 47563 | 52736 | <info name="alt_title" value="ピットフォールマヤの大冒険" /> |
| 47564 | 52737 | <part name="cart" interface="snes_cart"> |
| 52738 | ||
| 52739 | <feature name="slot" value="lorom" /> | |
| 47565 | 52740 | <dataarea name="rom" size="2097152"> |
| 47566 | 52741 | <rom name="pitfall - maya no daibouken (japan).sfc" size="2097152" crc="a81f9778" sha1="405ba8a69648b11a9a98829db4cbb5dccb12ea64" offset="0x000000" /> |
| 47567 | 52742 | </dataarea> |
| r21545 | r21546 | |
| 47573 | 52748 | <year>1994</year> |
| 47574 | 52749 | <publisher>Activision</publisher> |
| 47575 | 52750 | <part name="cart" interface="snes_cart"> |
| 52751 | ||
| 52752 | <feature name="slot" value="lorom" /> | |
| 47576 | 52753 | <dataarea name="rom" size="2097152"> |
| 47577 | 52754 | <rom name="pitfall - the mayan adventure (usa) (beta).sfc" size="2097152" crc="b10b8804" sha1="85b4f1c3013c34e4127ad8054b58e706e890f3f4" offset="0x000000" /> |
| 47578 | 52755 | </dataarea> |
| r21545 | r21546 | |
| 47585 | 52762 | <publisher>Activision</publisher> |
| 47586 | 52763 | <info name="release" value="199411xx" /> |
| 47587 | 52764 | <part name="cart" interface="snes_cart"> |
| 52765 | ||
| 52766 | <feature name="slot" value="lorom" /> | |
| 47588 | 52767 | <dataarea name="rom" size="2097152"> |
| 47589 | 52768 | <rom name="pitfall - the mayan adventure (usa).sfc" size="2097152" crc="03e67d38" sha1="b8e36f4afdfc0040dcde346291e1ce46d8718667" offset="0x000000" /> |
| 47590 | 52769 | </dataarea> |
| r21545 | r21546 | |
| 47600 | 52779 | <info name="alt_title" value="プラネットチャンプTG3000" /> |
| 47601 | 52780 | <part name="cart" interface="snes_cart"> |
| 47602 | 52781 | <feature name="enhancement" value="DSP4" /> |
| 52782 | ||
| 52783 | <feature name="slot" value="lorom_dsp" /> | |
| 47603 | 52784 | <dataarea name="rom" size="1048576"> |
| 47604 | 52785 | <rom name="planet's champ tg 3000, the (japan).sfc" size="1048576" crc="b9b9df06" sha1="3e7f10e13065424a28c93871b4a1e458817d754c" offset="0x000000" /> |
| 47605 | 52786 | </dataarea> |
| 52787 | <dataarea name="addon" size="10240"> | |
| 52788 | <rom name="dsp4.bin" size="10240" crc="ce0c7783" sha1="76fd25f7dc26c3b3f7868a3aa78c7684068713e5" offset="0x000000" /> | |
| 52789 | </dataarea> | |
| 47606 | 52790 | </part> |
| 47607 | 52791 | </software> |
| 47608 | 52792 | |
| r21545 | r21546 | |
| 47612 | 52796 | <publisher>Nintendo</publisher> |
| 47613 | 52797 | <sharedfeat name="compatibility" value="PAL"/> |
| 47614 | 52798 | <part name="cart" interface="snes_cart"> |
| 52799 | ||
| 52800 | <feature name="slot" value="lorom" /> | |
| 47615 | 52801 | <dataarea name="rom" size="1048576"> |
| 47616 | 52802 | <rom name="plok! (europe).sfc" size="1048576" crc="026f2c19" sha1="6defc4aa66a3d7534adb32b21b48576a45ac2c03" offset="0x000000" /> |
| 47617 | 52803 | </dataarea> |
| r21545 | r21546 | |
| 47627 | 52813 | <info name="alt_title" value="プロック" /> |
| 47628 | 52814 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47629 | 52815 | <part name="cart" interface="snes_cart"> |
| 52816 | ||
| 52817 | <feature name="slot" value="lorom" /> | |
| 47630 | 52818 | <dataarea name="rom" size="1048576"> |
| 47631 | 52819 | <rom name="plok! (japan).sfc" size="1048576" crc="57dcd2a1" sha1="7590045ac3c4fb85c56c47eed646327a718ae33b" offset="0x000000" /> |
| 47632 | 52820 | </dataarea> |
| r21545 | r21546 | |
| 47640 | 52828 | <info name="release" value="199309xx" /> |
| 47641 | 52829 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47642 | 52830 | <part name="cart" interface="snes_cart"> |
| 52831 | ||
| 52832 | <feature name="slot" value="lorom" /> | |
| 47643 | 52833 | <dataarea name="rom" size="1048576"> |
| 47644 | 52834 | <rom name="plok! (usa).sfc" size="1048576" crc="bbd678f6" sha1="e2c19e9f434f7791ff9f2e48fdad37fd11ae9933" offset="0x000000" /> |
| 47645 | 52835 | </dataarea> |
| r21545 | r21546 | |
| 47651 | 52841 | <year>1993</year> |
| 47652 | 52842 | <publisher>Natsume</publisher> |
| 47653 | 52843 | <part name="cart" interface="snes_cart"> |
| 52844 | ||
| 52845 | <feature name="slot" value="lorom" /> | |
| 47654 | 52846 | <dataarea name="rom" size="1048576"> |
| 47655 | 52847 | <rom name="pocky & rocky (europe) (sample).sfc" size="1048576" crc="99f8d70b" sha1="d1afbcd9584614186556dc9c9349c8db7b660005" offset="0x000000" /> |
| 47656 | 52848 | </dataarea> |
| r21545 | r21546 | |
| 47662 | 52854 | <year>1993</year> |
| 47663 | 52855 | <publisher>Natsume</publisher> |
| 47664 | 52856 | <part name="cart" interface="snes_cart"> |
| 52857 | ||
| 52858 | <feature name="slot" value="lorom" /> | |
| 47665 | 52859 | <dataarea name="rom" size="1048576"> |
| 47666 | 52860 | <rom name="pocky & rocky (europe).sfc" size="1048576" crc="b3f491c6" sha1="1a1a3bac44ebdab7e227c3d790d0a581611b8b13" offset="0x000000" /> |
| 47667 | 52861 | </dataarea> |
| r21545 | r21546 | |
| 47674 | 52868 | <publisher>Natsume</publisher> |
| 47675 | 52869 | <info name="release" value="199306xx" /> |
| 47676 | 52870 | <part name="cart" interface="snes_cart"> |
| 52871 | ||
| 52872 | <feature name="slot" value="lorom" /> | |
| 47677 | 52873 | <dataarea name="rom" size="1048576"> |
| 47678 | 52874 | <rom name="pocky & rocky (usa).sfc" size="1048576" crc="2b0e7ea3" sha1="db9d670b6d1915c9f2b26d369b831b1023b33270" offset="0x000000" /> |
| 47679 | 52875 | </dataarea> |
| r21545 | r21546 | |
| 47685 | 52881 | <year>1994</year> |
| 47686 | 52882 | <publisher>Natsume</publisher> |
| 47687 | 52883 | <part name="cart" interface="snes_cart"> |
| 52884 | ||
| 52885 | <feature name="slot" value="lorom" /> | |
| 47688 | 52886 | <dataarea name="rom" size="1572864"> |
| 47689 | 52887 | <rom name="pocky & rocky 2 (europe).sfc" size="1572864" crc="226929cf" sha1="a809b61ed9fda08edd14a6de6d1a8d971d28a87e" offset="0x000000" /> |
| 47690 | 52888 | </dataarea> |
| r21545 | r21546 | |
| 47696 | 52894 | <year>1994</year> |
| 47697 | 52895 | <publisher>Natsume</publisher> |
| 47698 | 52896 | <part name="cart" interface="snes_cart"> |
| 52897 | ||
| 52898 | <feature name="slot" value="lorom" /> | |
| 47699 | 52899 | <dataarea name="rom" size="1572864"> |
| 47700 | 52900 | <rom name="pocky & rocky 2 (usa) (beta).sfc" size="1572864" crc="3b94b032" sha1="7f52136cd5d28b7a90cb7a46289160dbd494494c" offset="0x000000" /> |
| 47701 | 52901 | </dataarea> |
| 47702 | 52902 | </part> |
| 47703 | 52903 | </software> |
| 47704 | 52904 | |
| 47705 | <software name="poipoi" supported="no"> | |
| 47706 | <description>Poi Poi Ninja World (Jpn)</description> | |
| 47707 | <!-- ST --> | |
| 47708 | <year>1996</year> | |
| 47709 | <publisher>Bandai</publisher> | |
| 47710 | <info name="serial" value="SFT-0103" /> | |
| 47711 | <info name="release" value="19960628" /> | |
| 47712 | <info name="alt_title" value="ぽいぽい忍者ワールト" /> | |
| 47713 | <part name="cart" interface="snes_cart"> | |
| 47714 | <dataarea name="rom" size="524288"> | |
| 47715 | <rom name="poi poi ninja world (japan).st" size="524288" crc="32b2b3dd" sha1="ae7421b87a9f4cc7c189680dfbb39453905aa5e6" offset="0x000000" /> | |
| 47716 | </dataarea> | |
| 47717 | </part> | |
| 47718 | </software> | |
| 47719 | ||
| 47720 | 52905 | <software name="pokonyan"> |
| 47721 | 52906 | <description>Poko Nyan! - Henpokorin Adventure (Jpn)</description> |
| 47722 | 52907 | <year>1994</year> |
| r21545 | r21546 | |
| 47725 | 52910 | <info name="release" value="19941222" /> |
| 47726 | 52911 | <info name="alt_title" value="ポコニャン! へんぽこりんアドヘンチャー" /> |
| 47727 | 52912 | <part name="cart" interface="snes_cart"> |
| 52913 | ||
| 52914 | <feature name="slot" value="lorom" /> | |
| 47728 | 52915 | <dataarea name="rom" size="1048576"> |
| 47729 | 52916 | <rom name="poko nyan! - henpokorin adventure (japan).sfc" size="1048576" crc="d16810cd" sha1="618413e6092b9fe935dbb2e6c42fd3ce93a65775" offset="0x000000" /> |
| 47730 | 52917 | </dataarea> |
| r21545 | r21546 | |
| 47737 | 52924 | <publisher>Palcom</publisher> |
| 47738 | 52925 | <sharedfeat name="compatibility" value="PAL"/> |
| 47739 | 52926 | <part name="cart" interface="snes_cart"> |
| 52927 | ||
| 52928 | <feature name="slot" value="lorom" /> | |
| 47740 | 52929 | <dataarea name="rom" size="1048576"> |
| 47741 | 52930 | <rom name="pop'n twinbee (europe).sfc" size="1048576" crc="588a9707" sha1="04919a4deb715c417acab5e2cc6a4a27d7eccc37" offset="0x000000" /> |
| 47742 | 52931 | </dataarea> |
| r21545 | r21546 | |
| 47749 | 52938 | <publisher>Konami</publisher> |
| 47750 | 52939 | <sharedfeat name="compatibility" value="PAL"/> |
| 47751 | 52940 | <part name="cart" interface="snes_cart"> |
| 52941 | ||
| 52942 | <feature name="slot" value="lorom" /> | |
| 47752 | 52943 | <dataarea name="rom" size="1048576"> |
| 47753 | 52944 | <rom name="pop'n twinbee - rainbow bell adventures (europe).sfc" size="1048576" crc="91a03035" sha1="dbd488549295f65c811542d6f8e4e9ec30d4ab22" offset="0x000000" /> |
| 47754 | 52945 | </dataarea> |
| r21545 | r21546 | |
| 47761 | 52952 | <publisher>Konami</publisher> |
| 47762 | 52953 | <sharedfeat name="compatibility" value="PAL"/> |
| 47763 | 52954 | <part name="cart" interface="snes_cart"> |
| 52955 | ||
| 52956 | <feature name="slot" value="lorom" /> | |
| 47764 | 52957 | <dataarea name="rom" size="1048576"> |
| 47765 | 52958 | <rom name="pop'n twinbee - rainbow bell adventures (germany).sfc" size="1048576" crc="d56d74b3" sha1="156c4c885bf99dc92625c6098669eaa1e0298c88" offset="0x000000" /> |
| 47766 | 52959 | </dataarea> |
| r21545 | r21546 | |
| 47775 | 52968 | <info name="release" value="19940812" /> |
| 47776 | 52969 | <info name="alt_title" value="ポパイいじわる魔女シーハッグ の巻" /> |
| 47777 | 52970 | <part name="cart" interface="snes_cart"> |
| 52971 | ||
| 52972 | <feature name="slot" value="lorom" /> | |
| 47778 | 52973 | <dataarea name="rom" size="1572864"> |
| 47779 | 52974 | <!-- TODO: remove this hack after upgrade --> |
| 47780 | 52975 | <!--rom name="popeye - ijiwaru majo sea hag no maki (japan).sfc" size="1572864" crc="f9171003" sha1="a6087c97493e418c4dd2c9811a9e1876abe3867e" offset="0x000000" status="baddump" /--> |
| r21545 | r21546 | |
| 47792 | 52987 | <info name="alt_title" value="ぽっぷるメイル" /> |
| 47793 | 52988 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47794 | 52989 | <part name="cart" interface="snes_cart"> |
| 52990 | ||
| 52991 | <feature name="slot" value="lorom" /> | |
| 47795 | 52992 | <dataarea name="rom" size="1048576"> |
| 47796 | 52993 | <rom name="popful mail (japan).sfc" size="1048576" crc="88e5bcdf" sha1="d3718d8cf62c74389aba5005c9f59d4e626cd0c6" offset="0x000000" /> |
| 47797 | 52994 | </dataarea> |
| r21545 | r21546 | |
| 47809 | 53006 | <info name="alt_title" value="ポポイっとへべれけ" /> |
| 47810 | 53007 | <sharedfeat name="compatibility" value="NTSC"/> |
| 47811 | 53008 | <part name="cart" interface="snes_cart"> |
| 53009 | ||
| 53010 | <feature name="slot" value="lorom" /> | |
| 47812 | 53011 | <dataarea name="rom" size="524288"> |
| 47813 | 53012 | <rom name="popoitto hebereke (japan).sfc" size="524288" crc="e333354a" sha1="f8418343b9b0397dee7d5d5b49d576c86799786b" offset="0x000000" /> |
| 47814 | 53013 | </dataarea> |
| r21545 | r21546 | |
| 47820 | 53019 | <year>1991</year> |
| 47821 | 53020 | <publisher>Imagineer</publisher> |
| 47822 | 53021 | <part name="cart" interface="snes_cart"> |
| 53022 | ||
| 53023 | <feature name="slot" value="lorom" /> | |
| 47823 | 53024 | <dataarea name="rom" size="524288"> |
| 47824 | 53025 | <rom name="populous (europe).sfc" size="524288" crc="fe88a713" sha1="58074fd378d19ef0d1956b6d7f0e07a323354aed" offset="0x000000" /> |
| 47825 | 53026 | </dataarea> |
| r21545 | r21546 | |
| 47832 | 53033 | <publisher>Acclaim Entertainment</publisher> |
| 47833 | 53034 | <info name="release" value="199109xx" /> |
| 47834 | 53035 | <part name="cart" interface="snes_cart"> |
| 53036 | ||
| 53037 | <feature name="slot" value="lorom" /> | |
| 47835 | 53038 | <dataarea name="rom" size="524288"> |
| 47836 | 53039 | <rom name="populous (usa).sfc" size="524288" crc="2df4aa0f" sha1="1805751a52a26822198b642c7e66681ffecc27dc" offset="0x000000" /> |
| 47837 | 53040 | </dataarea> |
| r21545 | r21546 | |
| 47844 | 53047 | <publisher>Imagineer</publisher> |
| 47845 | 53048 | <sharedfeat name="compatibility" value="PAL"/> |
| 47846 | 53049 | <part name="cart" interface="snes_cart"> |
| 53050 | ||
| 53051 | <feature name="slot" value="lorom" /> | |
| 47847 | 53052 | <dataarea name="rom" size="1048576"> |
| 47848 | 53053 | <rom name="populous ii - trials of the olympian gods (europe).sfc" size="1048576" crc="6c28cc39" sha1="9cd32145453bf1bcde11905e3c213a0f44c50692" offset="0x000000" /> |
| 47849 | 53054 | </dataarea> |
| r21545 | r21546 | |
| 47856 | 53061 | <publisher>Imagineer</publisher> |
| 47857 | 53062 | <sharedfeat name="compatibility" value="PAL"/> |
| 47858 | 53063 | <part name="cart" interface="snes_cart"> |
| 53064 | ||
| 53065 | <feature name="slot" value="lorom" /> | |
| 47859 | 53066 | <dataarea name="rom" size="1048576"> |
| 47860 | 53067 | <rom name="populous ii - trials of the olympian gods (germany).sfc" size="1048576" crc="c5dae9b9" sha1="38a0fd0aee434b504551d4f9d2dbefd7014c7263" offset="0x000000" /> |
| 47861 | 53068 | </dataarea> |
| r21545 | r21546 | |
| 47867 | 53074 | <year>1995</year> |
| 47868 | 53075 | <publisher>Acclaim Entertainment</publisher> |
| 47869 | 53076 | <part name="cart" interface="snes_cart"> |
| 53077 | ||
| 53078 | <feature name="slot" value="lorom" /> | |
| 47870 | 53079 | <dataarea name="rom" size="2097152"> |
| 47871 | 53080 | <rom name="porky pig's haunted holiday (europe).sfc" size="2097152" crc="7107b229" sha1="ca84248bafc2132581fe660be8108cd8f6df3773" offset="0x000000" /> |
| 47872 | 53081 | </dataarea> |
| r21545 | r21546 | |
| 47879 | 53088 | <publisher>Sunsoft?</publisher> |
| 47880 | 53089 | <info name="release" value="199510xx" /> |
| 47881 | 53090 | <part name="cart" interface="snes_cart"> |
| 53091 | ||
| 53092 | <feature name="slot" value="lorom" /> | |
| 47882 | 53093 | <dataarea name="rom" size="2097152"> |
| 47883 | 53094 | <rom name="porky pig's haunted holiday (usa) (sunsoft).sfc" size="2097152" crc="9699e23c" sha1="1ce590fa5dfaf4297a8c98798c3d42fa97da36c3" offset="0x000000" /> |
| 47884 | 53095 | </dataarea> |
| r21545 | r21546 | |
| 47893 | 53104 | <info name="release" value="19921127" /> |
| 47894 | 53105 | <info name="alt_title" value="パワーアスリート" /> |
| 47895 | 53106 | <part name="cart" interface="snes_cart"> |
| 53107 | ||
| 53108 | <feature name="slot" value="lorom" /> | |
| 47896 | 53109 | <dataarea name="rom" size="1048576"> |
| 47897 | 53110 | <rom name="power athlete (japan).sfc" size="1048576" crc="e9066acb" sha1="54ca194a27627a3b89c27d5dc160118634b17dd5" offset="0x000000" /> |
| 47898 | 53111 | </dataarea> |
| r21545 | r21546 | |
| 47904 | 53117 | <year>1994</year> |
| 47905 | 53118 | <publisher>U.S. Gold</publisher> |
| 47906 | 53119 | <part name="cart" interface="snes_cart"> |
| 53120 | ||
| 53121 | <feature name="slot" value="lorom" /> | |
| 47907 | 53122 | <dataarea name="rom" size="1048576"> |
| 47908 | 53123 | <rom name="power drive (europe) (en,fr,de,es,pt).sfc" size="1048576" crc="0bfdca70" sha1="9eb647e4cba65f9cebf1188d0c4bcfc67cc698aa" offset="0x000000" /> |
| 47909 | 53124 | </dataarea> |
| r21545 | r21546 | |
| 47915 | 53130 | <year>1994</year> |
| 47916 | 53131 | <publisher>Atlus</publisher> |
| 47917 | 53132 | <part name="cart" interface="snes_cart"> |
| 53133 | ||
| 53134 | <feature name="slot" value="hirom" /> | |
| 47918 | 53135 | <dataarea name="rom" size="2621440"> |
| 47919 | 53136 | <rom name="power instinct (usa) (beta).sfc" size="2621440" crc="5f6e06ee" sha1="ee58e4c19b8c072374d304791e65fa3d1bafcd19" offset="0x000000" /> |
| 47920 | 53137 | </dataarea> |
| r21545 | r21546 | |
| 47927 | 53144 | <publisher>Atlus</publisher> |
| 47928 | 53145 | <info name="release" value="199412xx" /> |
| 47929 | 53146 | <part name="cart" interface="snes_cart"> |
| 53147 | ||
| 53148 | <feature name="slot" value="hirom" /> | |
| 47930 | 53149 | <dataarea name="rom" size="2621440"> |
| 47931 | 53150 | <rom name="power instinct (usa).sfc" size="2621440" crc="cb8a4f8e" sha1="88a421796bbb5edc8000176d18b437899da3e65f" offset="0x000000" /> |
| 47932 | 53151 | </dataarea> |
| r21545 | r21546 | |
| 47941 | 53160 | <info name="release" value="19990101" /> |
| 47942 | 53161 | <info name="alt_title" value="パワー ロードランナー" /> |
| 47943 | 53162 | <part name="cart" interface="snes_cart"> |
| 53163 | ||
| 53164 | <feature name="slot" value="lorom" /> | |
| 47944 | 53165 | <dataarea name="rom" size="1572864"> |
| 47945 | 53166 | <rom name="power lode runner (japan) (np).sfc" size="1572864" crc="dfc1d7dc" sha1="6bbf69275a9f350e04c644df0c037e413f39a3a7" offset="0x000000" /> |
| 47946 | 53167 | </dataarea> |
| r21545 | r21546 | |
| 47955 | 53176 | <publisher>Kaneko</publisher> |
| 47956 | 53177 | <info name="release" value="199301xx" /> |
| 47957 | 53178 | <part name="cart" interface="snes_cart"> |
| 53179 | ||
| 53180 | <feature name="slot" value="lorom" /> | |
| 47958 | 53181 | <dataarea name="rom" size="1048576"> |
| 47959 | 53182 | <rom name="power moves (usa).sfc" size="1048576" crc="c2e094b5" sha1="93d8eca8612adae232931d11c718cea588ec3716" offset="0x000000" /> |
| 47960 | 53183 | </dataarea> |
| r21545 | r21546 | |
| 47966 | 53189 | <year>1996</year> |
| 47967 | 53190 | <publisher>Titus</publisher> |
| 47968 | 53191 | <part name="cart" interface="snes_cart"> |
| 53192 | ||
| 53193 | <feature name="slot" value="lorom" /> | |
| 47969 | 53194 | <dataarea name="rom" size="1048576"> |
| 47970 | 53195 | <rom name="power piggs of the dark age (europe) (beta).sfc" size="1048576" crc="81da4b6a" sha1="5e31bb863a8d043a5b457be75c6c6ec6f96e1ed3" offset="0x000000" /> |
| 47971 | 53196 | </dataarea> |
| r21545 | r21546 | |
| 47977 | 53202 | <year>1996</year> |
| 47978 | 53203 | <publisher>Titus</publisher> |
| 47979 | 53204 | <part name="cart" interface="snes_cart"> |
| 53205 | ||
| 53206 | <feature name="slot" value="lorom" /> | |
| 47980 | 53207 | <dataarea name="rom" size="1048576"> |
| 47981 | 53208 | <rom name="power piggs of the dark age (europe).sfc" size="1048576" crc="87afc187" sha1="87114bd9ddaf663e28adc6003e231624d3e190b7" offset="0x000000" /> |
| 47982 | 53209 | </dataarea> |
| r21545 | r21546 | |
| 47990 | 53217 | <info name="release" value="199609xx" /> |
| 47991 | 53218 | <part name="cart" interface="snes_cart"> |
| 47992 | 53219 | <feature name="enhancement" value="SA1" /> |
| 53220 | ||
| 53221 | <feature name="slot" value="lorom_sa1" /> | |
| 47993 | 53222 | <dataarea name="rom" size="1048576"> |
| 47994 | 53223 | <rom name="power rangers zeo - battle racers (usa).sfc" size="1048576" crc="389300cf" sha1="f83f07f2a6de60ed5e96e7f08de42ed69b9f6e62" offset="0x000000" /> |
| 47995 | 53224 | </dataarea> |
| r21545 | r21546 | |
| 47998 | 53227 | </part> |
| 47999 | 53228 | </software> |
| 48000 | 53229 | |
| 53230 | <software name="powerf94" supported="no"> | |
| 53231 | <description>Powerfest '94 (USA)</description> | |
| 53232 | <year>199?</year> | |
| 53233 | <publisher>Nintendo?</publisher> | |
| 53234 | <part name="cart" interface="snes_cart"> | |
| 53235 | ||
| 53236 | <feature name="slot" value="lorom" /> | |
| 53237 | <dataarea name="rom" size="2359296"> | |
| 53238 | <rom name="scoring.bin" size="262144" crc="143a1c2f" sha1="523ffc9f3e78f5f26fa003a906b26609dec33dd6" offset="0x000000" /> | |
| 53239 | <rom name="lost-levels.bin" size="524288" crc="38be3e18" sha1="072bb7de400b16a811b9066b5d5813600be3d9c0" offset="0x040000" /> | |
| 53240 | <rom name="mario-kart.bin" size="524288" crc="9974b593" sha1="1c53c806d0dd5bad4b8b9337c0051ddaa0d3355f" offset="0x0c0000" /> | |
| 53241 | <rom name="ken-griffey.bin" size="1048576" crc="c7b5e8c6" sha1="092a7146c8204019e1b760fd70e422d32cd11b70" offset="0x140000" /> | |
| 53242 | </dataarea> | |
| 53243 | <dataarea name="addon" size="10240"> | |
| 53244 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 53245 | </dataarea> | |
| 53246 | </part> | |
| 53247 | </software> | |
| 53248 | ||
| 48001 | 53249 | <software name="pmonger"> |
| 48002 | 53250 | <description>PowerMonger (Euro)</description> |
| 48003 | 53251 | <year>1993</year> |
| 48004 | 53252 | <publisher>Imagineer</publisher> |
| 48005 | 53253 | <part name="cart" interface="snes_cart"> |
| 53254 | ||
| 53255 | <feature name="slot" value="lorom" /> | |
| 48006 | 53256 | <dataarea name="rom" size="1048576"> |
| 48007 | 53257 | <rom name="powermonger (europe).sfc" size="1048576" crc="bc06f982" sha1="b91a582920c49ffb02e364987f76721e09a3ae68" offset="0x000000" /> |
| 48008 | 53258 | </dataarea> |
| r21545 | r21546 | |
| 48015 | 53265 | <publisher>Titus</publisher> |
| 48016 | 53266 | <sharedfeat name="compatibility" value="PAL"/> |
| 48017 | 53267 | <part name="cart" interface="snes_cart"> |
| 53268 | ||
| 53269 | <feature name="slot" value="lorom" /> | |
| 48018 | 53270 | <dataarea name="rom" size="1048576"> |
| 48019 | 53271 | <rom name="prehistorik man (europe) (en,fr,de).sfc" size="1048576" crc="b0e4e48a" sha1="77c96255ce51ad8abbef06909a6464656329c76f" offset="0x000000" /> |
| 48020 | 53272 | </dataarea> |
| r21545 | r21546 | |
| 48028 | 53280 | <info name="release" value="199605xx" /> |
| 48029 | 53281 | <sharedfeat name="compatibility" value="NTSC"/> |
| 48030 | 53282 | <part name="cart" interface="snes_cart"> |
| 53283 | ||
| 53284 | <feature name="slot" value="lorom" /> | |
| 48031 | 53285 | <dataarea name="rom" size="1048576"> |
| 48032 | 53286 | <rom name="prehistorik man (usa).sfc" size="1048576" crc="cb4f87bb" sha1="8304fc1170507fc1814b2095fb6c2e42887ce5fd" offset="0x000000" /> |
| 48033 | 53287 | </dataarea> |
| r21545 | r21546 | |
| 48039 | 53293 | <year>1995</year> |
| 48040 | 53294 | <publisher>Time Warner Interactive</publisher> |
| 48041 | 53295 | <part name="cart" interface="snes_cart"> |
| 53296 | ||
| 53297 | <feature name="slot" value="hirom" /> | |
| 48042 | 53298 | <dataarea name="rom" size="3145728"> |
| 48043 | 53299 | <rom name="primal rage (europe).sfc" size="3145728" crc="75eef329" sha1="ca1779d7c1d2b6b36662d11ea54a60afe25a27a9" offset="0x000000" /> |
| 48044 | 53300 | </dataarea> |
| r21545 | r21546 | |
| 48050 | 53306 | <year>1995</year> |
| 48051 | 53307 | <publisher>Time Warner Interactive</publisher> |
| 48052 | 53308 | <part name="cart" interface="snes_cart"> |
| 53309 | ||
| 53310 | <feature name="slot" value="hirom" /> | |
| 48053 | 53311 | <dataarea name="rom" size="3145728"> |
| 48054 | 53312 | <rom name="primal rage (usa) (beta).sfc" size="3145728" crc="227fbe4d" sha1="518bcd8e3b2e7330d90810744caf5f115ca83c55" offset="0x000000" /> |
| 48055 | 53313 | </dataarea> |
| r21545 | r21546 | |
| 48062 | 53320 | <publisher>Time Warner Interactive</publisher> |
| 48063 | 53321 | <info name="release" value="199508xx" /> |
| 48064 | 53322 | <part name="cart" interface="snes_cart"> |
| 53323 | ||
| 53324 | <feature name="slot" value="hirom" /> | |
| 48065 | 53325 | <dataarea name="rom" size="3145728"> |
| 48066 | 53326 | <rom name="primal rage (usa).sfc" size="3145728" crc="3753e4b6" sha1="f439b57c0b80a36ea1179a1ff5a997a2725b495d" offset="0x000000" /> |
| 48067 | 53327 | </dataarea> |
| r21545 | r21546 | |
| 48074 | 53334 | <publisher>Konami</publisher> |
| 48075 | 53335 | <info name="release" value="199211xx" /> |
| 48076 | 53336 | <part name="cart" interface="snes_cart"> |
| 53337 | ||
| 53338 | <feature name="slot" value="lorom" /> | |
| 48077 | 53339 | <dataarea name="rom" size="1048576"> |
| 48078 | 53340 | <rom name="prince of persia (usa).sfc" size="1048576" crc="891bb2bb" sha1="29ce1e32cf57d8284d0670949045c0d9128c3e1b" offset="0x000000" /> |
| 48079 | 53341 | </dataarea> |
| r21545 | r21546 | |
| 48086 | 53348 | <publisher>Titus</publisher> |
| 48087 | 53349 | <info name="release" value="199610xx" /> |
| 48088 | 53350 | <part name="cart" interface="snes_cart"> |
| 53351 | ||
| 53352 | <feature name="slot" value="lorom" /> | |
| 48089 | 53353 | <dataarea name="rom" size="2097152"> |
| 48090 | 53354 | <rom name="prince of persia 2 - the shadow & the flame (usa).sfc" size="2097152" crc="50581d9d" sha1="5a56447af32aaeaa919d2bd22394a515dfcfa6de" offset="0x000000" /> |
| 48091 | 53355 | </dataarea> |
| r21545 | r21546 | |
| 48100 | 53364 | <info name="release" value="19951215" /> |
| 48101 | 53365 | <info name="alt_title" value="プリンセスメーカーレジェンド・オブ・アナ ザーワールト" /> |
| 48102 | 53366 | <part name="cart" interface="snes_cart"> |
| 53367 | ||
| 53368 | <feature name="slot" value="hirom" /> | |
| 48103 | 53369 | <dataarea name="rom" size="2097152"> |
| 48104 | 53370 | <rom name="princess maker - legend of another world (japan).sfc" size="2097152" crc="67187bc9" sha1="4d300d196ac735939e297d7cd7e6813bba84a50e" offset="0x000000" /> |
| 48105 | 53371 | </dataarea> |
| r21545 | r21546 | |
| 48116 | 53382 | <info name="release" value="19950623" /> |
| 48117 | 53383 | <info name="alt_title" value="プリンセス・ミネルハ" /> |
| 48118 | 53384 | <part name="cart" interface="snes_cart"> |
| 53385 | ||
| 53386 | <feature name="slot" value="lorom" /> | |
| 48119 | 53387 | <dataarea name="rom" size="2097152"> |
| 48120 | 53388 | <rom name="princess minerva (japan).sfc" size="2097152" crc="213368d5" sha1="46012a9208f77d357d4aff7cb7ab0a9f619c5394" offset="0x000000" /> |
| 48121 | 53389 | </dataarea> |
| r21545 | r21546 | |
| 48132 | 53400 | <info name="release" value="19930212" /> |
| 48133 | 53401 | <info name="alt_title" value="プロフットボール'93" /> |
| 48134 | 53402 | <part name="cart" interface="snes_cart"> |
| 53403 | ||
| 53404 | <feature name="slot" value="lorom" /> | |
| 48135 | 53405 | <dataarea name="rom" size="1048576"> |
| 48136 | 53406 | <rom name="pro football '93 (japan).sfc" size="1048576" crc="44a0de9c" sha1="5e561a432c4429557418f76c6d87338e6cac3864" offset="0x000000" /> |
| 48137 | 53407 | </dataarea> |
| r21545 | r21546 | |
| 48146 | 53416 | <info name="release" value="19960216" /> |
| 48147 | 53417 | <info name="alt_title" value="プロ棋士人生シミュレーション 将棋の 花道" /> |
| 48148 | 53418 | <part name="cart" interface="snes_cart"> |
| 53419 | ||
| 53420 | <feature name="slot" value="lorom" /> | |
| 48149 | 53421 | <dataarea name="rom" size="1048576"> |
| 48150 | 53422 | <rom name="pro kishi jinsei simulation - shougi no hanamichi (japan).sfc" size="1048576" crc="d10439d4" sha1="21b2741f3f6967cb28ee2b8f4a02822fb48bc82f" offset="0x000000" /> |
| 48151 | 53423 | </dataarea> |
| r21545 | r21546 | |
| 48162 | 53434 | <info name="release" value="19940722" /> |
| 48163 | 53435 | <info name="alt_title" value="プロ麻雀 極II" /> |
| 48164 | 53436 | <part name="cart" interface="snes_cart"> |
| 53437 | ||
| 53438 | <feature name="slot" value="lorom" /> | |
| 48165 | 53439 | <dataarea name="rom" size="524288"> |
| 48166 | 53440 | <rom name="pro mahjong kiwame ii (japan) (rev 1).sfc" size="524288" crc="2142a484" sha1="663db2593cc4437655db3522ed2786e651a202f6" offset="0x000000" /> |
| 48167 | 53441 | </dataarea> |
| r21545 | r21546 | |
| 48178 | 53452 | <info name="release" value="19940722" /> |
| 48179 | 53453 | <info name="alt_title" value="プロ麻雀 極II" /> |
| 48180 | 53454 | <part name="cart" interface="snes_cart"> |
| 53455 | ||
| 53456 | <feature name="slot" value="lorom" /> | |
| 48181 | 53457 | <dataarea name="rom" size="524288"> |
| 48182 | 53458 | <rom name="pro mahjong kiwame ii (japan).sfc" size="524288" crc="c06dc507" sha1="92e74ffae1ac82a0bed59c2b75599d88ccd4a610" offset="0x000000" /> |
| 48183 | 53459 | </dataarea> |
| r21545 | r21546 | |
| 48194 | 53470 | <info name="release" value="19980328" /> |
| 48195 | 53471 | <info name="alt_title" value="プロ麻雀 兵 廉価版" /> |
| 48196 | 53472 | <part name="cart" interface="snes_cart"> |
| 53473 | ||
| 53474 | <feature name="slot" value="lorom" /> | |
| 48197 | 53475 | <dataarea name="rom" size="524288"> |
| 48198 | 53476 | <rom name="pro mahjong tsuwamono (japan) (renkaban).sfc" size="524288" crc="ca1b24b4" sha1="3880a6237b6d9fb34d22ed51720a518e714a1c4d" offset="0x000000" /> |
| 48199 | 53477 | </dataarea> |
| r21545 | r21546 | |
| 48208 | 53486 | <info name="release" value="19970418" /> |
| 48209 | 53487 | <info name="alt_title" value="プロ麻雀 兵" /> |
| 48210 | 53488 | <part name="cart" interface="snes_cart"> |
| 53489 | ||
| 53490 | <feature name="slot" value="lorom" /> | |
| 48211 | 53491 | <dataarea name="rom" size="524288"> |
| 48212 | 53492 | <rom name="pro mahjong tsuwamono (japan).sfc" size="524288" crc="263dae53" sha1="0ff3de288341efa7163d4f8a16f3d1c540a10e02" offset="0x000000" /> |
| 48213 | 53493 | </dataarea> |
| r21545 | r21546 | |
| 48222 | 53502 | <publisher>Tradewest</publisher> |
| 48223 | 53503 | <info name="release" value="199212xx" /> |
| 48224 | 53504 | <part name="cart" interface="snes_cart"> |
| 53505 | ||
| 53506 | <feature name="slot" value="lorom" /> | |
| 48225 | 53507 | <dataarea name="rom" size="1048576"> |
| 48226 | 53508 | <rom name="pro quarterback (usa).sfc" size="1048576" crc="6910626d" sha1="7b9e36c5391b761189ea39ea3eef24d4292b3d01" offset="0x000000" /> |
| 48227 | 53509 | </dataarea> |
| r21545 | r21546 | |
| 48235 | 53517 | <info name="release" value="199402xx" /> |
| 48236 | 53518 | <sharedfeat name="compatibility" value="NTSC"/> |
| 48237 | 53519 | <part name="cart" interface="snes_cart"> |
| 53520 | ||
| 53521 | <feature name="slot" value="lorom" /> | |
| 48238 | 53522 | <dataarea name="rom" size="1048576"> |
| 48239 | 53523 | <rom name="pro sport hockey (usa).sfc" size="1048576" crc="a9cc0a74" sha1="07e0c6afab2674d474800fd9bc0b35fecc085356" offset="0x000000" /> |
| 48240 | 53524 | </dataarea> |
| r21545 | r21546 | |
| 48248 | 53532 | <year>1997</year> |
| 48249 | 53533 | <publisher>Coconuts Japan Entertainment</publisher> |
| 48250 | 53534 | <part name="cart" interface="snes_cart"> |
| 53535 | ||
| 53536 | <feature name="slot" value="lorom" /> | |
| 48251 | 53537 | <dataarea name="rom" size="1048576"> |
| 48252 | 53538 | <rom name="pro yakyuu nettou puzzle stadium (japan) (beta).sfc" size="1048576" crc="5a4d7167" sha1="909f83a13a05fd7b9121be6a472d9b4a2bfc70c6" offset="0x000000" /> |
| 48253 | 53539 | </dataarea> |
| r21545 | r21546 | |
| 48264 | 53550 | <info name="release" value="19970425" /> |
| 48265 | 53551 | <info name="alt_title" value="プロ野球熱闘ぱずるスタジ アム" /> |
| 48266 | 53552 | <part name="cart" interface="snes_cart"> |
| 53553 | ||
| 53554 | <feature name="slot" value="lorom" /> | |
| 48267 | 53555 | <dataarea name="rom" size="524288"> |
| 48268 | 53556 | <rom name="pro yakyuu nettou puzzle stadium (japan).sfc" size="524288" crc="81c8eb4f" sha1="9227f9c6e900b5f08eb14fc20cf9bd442522e599" offset="0x000000" /> |
| 48269 | 53557 | </dataarea> |
| r21545 | r21546 | |
| 48275 | 53563 | <year>1992</year> |
| 48276 | 53564 | <publisher>Ocean</publisher> |
| 48277 | 53565 | <part name="cart" interface="snes_cart"> |
| 53566 | ||
| 53567 | <feature name="slot" value="lorom" /> | |
| 48278 | 53568 | <dataarea name="rom" size="524288"> |
| 48279 | 53569 | <rom name="push-over (europe) (en,fr,de,es).sfc" size="524288" crc="6a4347ff" sha1="cd949f174e8fdd9d6d7d20064aef2022b13d00b6" offset="0x000000" /> |
| 48280 | 53570 | </dataarea> |
| r21545 | r21546 | |
| 48286 | 53576 | <year>1992</year> |
| 48287 | 53577 | <publisher>Ocean</publisher> |
| 48288 | 53578 | <part name="cart" interface="snes_cart"> |
| 53579 | ||
| 53580 | <feature name="slot" value="lorom" /> | |
| 48289 | 53581 | <dataarea name="rom" size="1048576"> |
| 48290 | 53582 | <rom name="push-over (usa) (en,fr,de,es) (beta).sfc" size="1048576" crc="c34465a3" sha1="254435ec8d24f5de5e780857dd1be4c0f17617eb" offset="0x000000" /> |
| 48291 | 53583 | </dataarea> |
| r21545 | r21546 | |
| 48298 | 53590 | <publisher>Ocean</publisher> |
| 48299 | 53591 | <info name="release" value="199212xx" /> |
| 48300 | 53592 | <part name="cart" interface="snes_cart"> |
| 53593 | ||
| 53594 | <feature name="slot" value="lorom" /> | |
| 48301 | 53595 | <dataarea name="rom" size="524288"> |
| 48302 | 53596 | <rom name="push-over (usa).sfc" size="524288" crc="fa06d5f5" sha1="3abdcc83a074c8378cee03eabb36e5f3afd1e3af" offset="0x000000" /> |
| 48303 | 53597 | </dataarea> |
| r21545 | r21546 | |
| 48313 | 53607 | <info name="alt_title" value="パティームーン" /> |
| 48314 | 53608 | <sharedfeat name="compatibility" value="NTSC"/> |
| 48315 | 53609 | <part name="cart" interface="snes_cart"> |
| 53610 | ||
| 53611 | <feature name="slot" value="lorom" /> | |
| 48316 | 53612 | <dataarea name="rom" size="1048576"> |
| 48317 | 53613 | <rom name="putty moon (japan).sfc" size="1048576" crc="adfc4165" sha1="87ae4bd4e7c9322aeedc77e3323283d2e6ad5bc2" offset="0x000000" /> |
| 48318 | 53614 | </dataarea> |
| r21545 | r21546 | |
| 48324 | 53620 | <year>1994</year> |
| 48325 | 53621 | <publisher>Ocean</publisher> |
| 48326 | 53622 | <part name="cart" interface="snes_cart"> |
| 53623 | ||
| 53624 | <feature name="slot" value="lorom" /> | |
| 48327 | 53625 | <dataarea name="rom" size="1572864"> |
| 48328 | 53626 | <rom name="putty squad (europe).sfc" size="1572864" crc="c061f0a8" sha1="068a10899bcf3e4dd9007d6eb34bafe695b327ac" offset="0x000000" /> |
| 48329 | 53627 | </dataarea> |
| r21545 | r21546 | |
| 48335 | 53633 | <year>1995</year> |
| 48336 | 53634 | <publisher>Taito</publisher> |
| 48337 | 53635 | <part name="cart" interface="snes_cart"> |
| 53636 | ||
| 53637 | <feature name="slot" value="lorom" /> | |
| 48338 | 53638 | <dataarea name="rom" size="524288"> |
| 48339 | 53639 | <rom name="puzzle bobble - bust-a-move (europe).sfc" size="524288" crc="c5d1ddb3" sha1="79528190898a9e737e3b00838b168cc649ba6429" offset="0x000000" /> |
| 48340 | 53640 | </dataarea> |
| r21545 | r21546 | |
| 48349 | 53649 | <info name="release" value="19960628" /> |
| 48350 | 53650 | <info name="alt_title" value="パズル忍たま乱太郎 ~忍術学園パズ ル大会の段~" /> |
| 48351 | 53651 | <part name="cart" interface="snes_cart"> |
| 53652 | ||
| 53653 | <feature name="slot" value="lorom" /> | |
| 48352 | 53654 | <dataarea name="rom" size="524288"> |
| 48353 | 53655 | <rom name="puzzle nintama rantarou - ninjutsu gakuen puzzle taikai no dan (japan).sfc" size="524288" crc="23670c9e" sha1="8b8c742bb6140ea249cc28721f0d60b1ba5c4249" offset="0x000000" /> |
| 48354 | 53656 | </dataarea> |
| r21545 | r21546 | |
| 48363 | 53665 | <info name="release" value="19950414" /> |
| 48364 | 53666 | <info name="alt_title" value="ぱずるんでス!" /> |
| 48365 | 53667 | <part name="cart" interface="snes_cart"> |
| 53668 | ||
| 53669 | <feature name="slot" value="lorom" /> | |
| 48366 | 53670 | <dataarea name="rom" size="1048576"> |
| 48367 | 53671 | <rom name="puzzle'n desu! (japan).sfc" size="1048576" crc="689a7a79" sha1="9b44c78894dff33915a76c71e6a6a8ec75807924" offset="0x000000" /> |
| 48368 | 53672 | </dataarea> |
| r21545 | r21546 | |
| 48379 | 53683 | <info name="release" value="19930129" /> |
| 48380 | 53684 | <info name="alt_title" value="キュー*バート3" /> |
| 48381 | 53685 | <part name="cart" interface="snes_cart"> |
| 53686 | ||
| 53687 | <feature name="slot" value="lorom" /> | |
| 48382 | 53688 | <dataarea name="rom" size="524288"> |
| 48383 | 53689 | <rom name="q-bert 3 (japan).sfc" size="524288" crc="ea3bc44e" sha1="05856b77e44bc47680bae26c11fce92a9d915da8" offset="0x000000" /> |
| 48384 | 53690 | </dataarea> |
| r21545 | r21546 | |
| 48391 | 53697 | <publisher>NTVIC</publisher> |
| 48392 | 53698 | <info name="release" value="199210xx" /> |
| 48393 | 53699 | <part name="cart" interface="snes_cart"> |
| 53700 | ||
| 53701 | <feature name="slot" value="lorom" /> | |
| 48394 | 53702 | <dataarea name="rom" size="524288"> |
| 48395 | 53703 | <rom name="q-bert 3 (usa).sfc" size="524288" crc="694cbfe4" sha1="ac67c459cb3910909ea6649b05355d56813d051b" offset="0x000000" /> |
| 48396 | 53704 | </dataarea> |
| r21545 | r21546 | |
| 48403 | 53711 | <publisher>Jaleco</publisher> |
| 48404 | 53712 | <sharedfeat name="compatibility" value="PAL"/> |
| 48405 | 53713 | <part name="cart" interface="snes_cart"> |
| 53714 | ||
| 53715 | <feature name="slot" value="lorom" /> | |
| 48406 | 53716 | <dataarea name="rom" size="2097152"> |
| 48407 | 53717 | <rom name="r-type iii - the third lightning (europe) (beta).sfc" size="2097152" crc="2a5f8d8f" sha1="47a48729b03e2221e1fb433de0f3f835463dfd5f" offset="0x000000" /> |
| 48408 | 53718 | </dataarea> |
| r21545 | r21546 | |
| 48418 | 53728 | <info name="alt_title" value="アールタイプ3 ザ・サードライトニング" /> |
| 48419 | 53729 | <sharedfeat name="compatibility" value="NTSC"/> |
| 48420 | 53730 | <part name="cart" interface="snes_cart"> |
| 53731 | ||
| 53732 | <feature name="slot" value="lorom" /> | |
| 48421 | 53733 | <dataarea name="rom" size="2097152"> |
| 48422 | 53734 | <rom name="r-type iii - the third lightning (japan).sfc" size="2097152" crc="1e1ff9fe" sha1="945259eba6b62e4ba124452a0c393640f4b61a09" offset="0x000000" /> |
| 48423 | 53735 | </dataarea> |
| r21545 | r21546 | |
| 48429 | 53741 | <year>1992</year> |
| 48430 | 53742 | <publisher>T*HQ</publisher> |
| 48431 | 53743 | <part name="cart" interface="snes_cart"> |
| 53744 | ||
| 53745 | <feature name="slot" value="lorom" /> | |
| 48432 | 53746 | <dataarea name="rom" size="524288"> |
| 48433 | 53747 | <rom name="race drivin' (europe).sfc" size="524288" crc="12cb0a54" sha1="c39dda44055e23782fa9a5ee650d87e555deadd6" offset="0x000000" /> |
| 48434 | 53748 | </dataarea> |
| r21545 | r21546 | |
| 48441 | 53755 | <publisher>T*HQ</publisher> |
| 48442 | 53756 | <info name="release" value="199210xx" /> |
| 48443 | 53757 | <part name="cart" interface="snes_cart"> |
| 53758 | ||
| 53759 | <feature name="slot" value="lorom" /> | |
| 48444 | 53760 | <dataarea name="rom" size="524288"> |
| 48445 | 53761 | <rom name="race drivin' (usa).sfc" size="524288" crc="c5bab870" sha1="0f93605f7596f76fe774baac8e5cc748168bc549" offset="0x000000" /> |
| 48446 | 53762 | </dataarea> |
| r21545 | r21546 | |
| 48455 | 53771 | <info name="release" value="19920319" /> |
| 48456 | 53772 | <info name="alt_title" value="R.P.M.レーシング" /> |
| 48457 | 53773 | <part name="cart" interface="snes_cart"> |
| 53774 | ||
| 53775 | <feature name="slot" value="lorom" /> | |
| 48458 | 53776 | <dataarea name="rom" size="524288"> |
| 48459 | 53777 | <rom name="r.p.m. racing (japan).sfc" size="524288" crc="35fcd374" sha1="516cd02b2966b3581c3865216fb07e8b58a9b22c" offset="0x000000" /> |
| 48460 | 53778 | </dataarea> |
| r21545 | r21546 | |
| 48469 | 53787 | <publisher>Interplay</publisher> |
| 48470 | 53788 | <info name="release" value="199111xx" /> |
| 48471 | 53789 | <part name="cart" interface="snes_cart"> |
| 53790 | ||
| 53791 | <feature name="slot" value="lorom" /> | |
| 48472 | 53792 | <dataarea name="rom" size="524288"> |
| 48473 | 53793 | <rom name="r.p.m. racing (usa).sfc" size="524288" crc="f7933734" sha1="0a8e35a4ebd4308fb37850f4d0ce64b60f639cfc" offset="0x000000" /> |
| 48474 | 53794 | </dataarea> |
| r21545 | r21546 | |
| 48482 | 53802 | <year>1994</year> |
| 48483 | 53803 | <publisher>Activision</publisher> |
| 48484 | 53804 | <part name="cart" interface="snes_cart"> |
| 53805 | ||
| 53806 | <feature name="slot" value="lorom" /> | |
| 48485 | 53807 | <dataarea name="rom" size="1048576"> |
| 48486 | 53808 | <rom name="radical rex (europe).sfc" size="1048576" crc="5065b197" sha1="94303e3ba9c759545662ac1b0ee265151012dd64" offset="0x000000" /> |
| 48487 | 53809 | </dataarea> |
| r21545 | r21546 | |
| 48493 | 53815 | <year>1994</year> |
| 48494 | 53816 | <publisher>Activision</publisher> |
| 48495 | 53817 | <part name="cart" interface="snes_cart"> |
| 53818 | ||
| 53819 | <feature name="slot" value="lorom" /> | |
| 48496 | 53820 | <dataarea name="rom" size="1048576"> |
| 48497 | 53821 | <rom name="radical rex (usa) (beta).sfc" size="1048576" crc="9b5d585d" sha1="d8457ac20b7cb07cdfbf1048f2b779acfffaee0c" offset="0x000000" /> |
| 48498 | 53822 | </dataarea> |
| r21545 | r21546 | |
| 48507 | 53831 | <info name="release" value="19911129" /> |
| 48508 | 53832 | <info name="alt_title" value="雷電伝説" /> |
| 48509 | 53833 | <part name="cart" interface="snes_cart"> |
| 53834 | ||
| 53835 | <feature name="slot" value="lorom" /> | |
| 48510 | 53836 | <dataarea name="rom" size="1048576"> |
| 48511 | 53837 | <rom name="raiden densetsu (japan).sfc" size="1048576" crc="c352d27f" sha1="e9b0ca191f599bee60b6491f3d707c9c5b831d83" offset="0x000000" /> |
| 48512 | 53838 | </dataarea> |
| r21545 | r21546 | |
| 48519 | 53845 | <publisher>Electro Brain</publisher> |
| 48520 | 53846 | <info name="release" value="199204xx" /> |
| 48521 | 53847 | <part name="cart" interface="snes_cart"> |
| 53848 | ||
| 53849 | <feature name="slot" value="lorom" /> | |
| 48522 | 53850 | <dataarea name="rom" size="1048576"> |
| 48523 | 53851 | <rom name="raiden trad (usa).sfc" size="1048576" crc="02ce6c96" sha1="b80ab440635c149f86b7cb8ab39d19fce2ea934c" offset="0x000000" /> |
| 48524 | 53852 | </dataarea> |
| r21545 | r21546 | |
| 48533 | 53861 | <info name="release" value="19940225" /> |
| 48534 | 53862 | <info name="alt_title" value="ラモス瑠偉の ワールドワイドサッカー" /> |
| 48535 | 53863 | <part name="cart" interface="snes_cart"> |
| 53864 | ||
| 53865 | <feature name="slot" value="lorom" /> | |
| 48536 | 53866 | <dataarea name="rom" size="1048576"> |
| 48537 | 53867 | <rom name="ramos ruy no world wide soccer (japan).sfc" size="1048576" crc="906d505e" sha1="20ebdd1e76627b361139ae7d95ee265d238e1215" offset="0x000000" /> |
| 48538 | 53868 | </dataarea> |
| r21545 | r21546 | |
| 48545 | 53875 | <publisher>Electronic Arts</publisher> |
| 48546 | 53876 | <info name="release" value="199208xx" /> |
| 48547 | 53877 | <part name="cart" interface="snes_cart"> |
| 53878 | ||
| 53879 | <feature name="slot" value="lorom" /> | |
| 48548 | 53880 | <dataarea name="rom" size="524288"> |
| 48549 | 53881 | <rom name="rampart (usa).sfc" size="524288" crc="aed8892a" sha1="01ab7e90b6b2360670fef916772d657d237fd182" offset="0x000000" /> |
| 48550 | 53882 | </dataarea> |
| r21545 | r21546 | |
| 48556 | 53888 | <year>1993</year> |
| 48557 | 53889 | <publisher>Ocean</publisher> |
| 48558 | 53890 | <part name="cart" interface="snes_cart"> |
| 53891 | ||
| 53892 | <feature name="slot" value="hirom" /> | |
| 48559 | 53893 | <dataarea name="rom" size="1572864"> |
| 48560 | 53894 | <rom name="ranma 1-2 (europe) (beta).sfc" size="1572864" crc="9264e9a7" sha1="6dccdafb2addf9ab5bae673c81542b3da45a4bdb" offset="0x000000" /> |
| 48561 | 53895 | </dataarea> |
| r21545 | r21546 | |
| 48567 | 53901 | <year>1993</year> |
| 48568 | 53902 | <publisher>Ocean</publisher> |
| 48569 | 53903 | <part name="cart" interface="snes_cart"> |
| 53904 | ||
| 53905 | <feature name="slot" value="hirom" /> | |
| 48570 | 53906 | <dataarea name="rom" size="1572864"> |
| 48571 | 53907 | <rom name="ranma 1-2 (europe).sfc" size="1572864" crc="e6c51ff7" sha1="da01db3aaa4aaf8f62acf218be9d4becffa92e3e" offset="0x000000" /> |
| 48572 | 53908 | </dataarea> |
| r21545 | r21546 | |
| 48581 | 53917 | <info name="release" value="19931022" /> |
| 48582 | 53918 | <info name="alt_title" value="らんま1/2 朱猫団的秘宝" /> |
| 48583 | 53919 | <part name="cart" interface="snes_cart"> |
| 53920 | ||
| 53921 | <feature name="slot" value="lorom" /> | |
| 48584 | 53922 | <dataarea name="rom" size="1572864"> |
| 48585 | 53923 | <rom name="ranma 1-2 - akanekodan teki hihou (japan).sfc" size="1572864" crc="b473f453" sha1="9b5bb4b1d71e9fc566d9f8bb7d16431005d7b701" offset="0x000000" /> |
| 48586 | 53924 | </dataarea> |
| r21545 | r21546 | |
| 48597 | 53935 | <info name="release" value="19940428" /> |
| 48598 | 53936 | <info name="alt_title" value="らんま1/2 超技乱舞篇" /> |
| 48599 | 53937 | <part name="cart" interface="snes_cart"> |
| 53938 | ||
| 53939 | <feature name="slot" value="hirom" /> | |
| 48600 | 53940 | <dataarea name="rom" size="2621440"> |
| 48601 | 53941 | <rom name="ranma 1-2 - chougi ranbu hen (japan).sfc" size="2621440" crc="0c552b1f" sha1="3754284f915c5e7281e1412b932b7ba876f05348" offset="0x000000" /> |
| 48602 | 53942 | </dataarea> |
| r21545 | r21546 | |
| 48609 | 53949 | <publisher>DTMC</publisher> |
| 48610 | 53950 | <info name="release" value="199311xx" /> |
| 48611 | 53951 | <part name="cart" interface="snes_cart"> |
| 53952 | ||
| 53953 | <feature name="slot" value="hirom" /> | |
| 48612 | 53954 | <dataarea name="rom" size="1572864"> |
| 48613 | 53955 | <rom name="ranma 1-2 - hard battle (usa).sfc" size="1572864" crc="8e4dadcd" sha1="e64a9798de444c1872b4c943b564ba880ccb8464" offset="0x000000" /> |
| 48614 | 53956 | </dataarea> |
| r21545 | r21546 | |
| 48623 | 53965 | <info name="release" value="19950721" /> |
| 48624 | 53966 | <info name="alt_title" value="らんま1/2 奥義邪暗拳" /> |
| 48625 | 53967 | <part name="cart" interface="snes_cart"> |
| 53968 | ||
| 53969 | <feature name="slot" value="lorom" /> | |
| 48626 | 53970 | <dataarea name="rom" size="1048576"> |
| 48627 | 53971 | <rom name="ranma 1-2 - ougi jaanken (japan).sfc" size="1048576" crc="0a5dfa05" sha1="8e8de0c344af1e1c357ed6f8a96443a369349d49" offset="0x000000" /> |
| 48628 | 53972 | </dataarea> |
| r21545 | r21546 | |
| 48635 | 53979 | <publisher>Mandingo Entertainment</publisher> |
| 48636 | 53980 | <info name="release" value="199501xx" /> |
| 48637 | 53981 | <part name="cart" interface="snes_cart"> |
| 53982 | ||
| 53983 | <feature name="slot" value="lorom" /> | |
| 48638 | 53984 | <dataarea name="rom" size="2097152"> |
| 48639 | 53985 | <rom name="rap jam - volume one (usa) (en,fr,es).sfc" size="2097152" crc="adf4ffce" sha1="84066d13de393abb5978bfc3dbc04f85fde112e2" offset="0x000000" /> |
| 48640 | 53986 | </dataarea> |
| r21545 | r21546 | |
| 48646 | 53992 | <year>1996</year> |
| 48647 | 53993 | <publisher>Titus</publisher> |
| 48648 | 53994 | <part name="cart" interface="snes_cart"> |
| 53995 | ||
| 53996 | <feature name="slot" value="lorom" /> | |
| 48649 | 53997 | <dataarea name="rom" size="1048576"> |
| 48650 | 53998 | <rom name="realm (europe).sfc" size="1048576" crc="9be46820" sha1="63f376bd55add49e0893d01d9321207b9f68d6c8" offset="0x000000" /> |
| 48651 | 53999 | </dataarea> |
| r21545 | r21546 | |
| 48658 | 54006 | <publisher>Titus</publisher> |
| 48659 | 54007 | <info name="release" value="199612xx" /> |
| 48660 | 54008 | <part name="cart" interface="snes_cart"> |
| 54009 | ||
| 54010 | <feature name="slot" value="lorom" /> | |
| 48661 | 54011 | <dataarea name="rom" size="1048576"> |
| 48662 | 54012 | <rom name="realm (usa).sfc" size="1048576" crc="0744ba5b" sha1="7ef55367809cf62d63bbff60bb633a76992f560d" offset="0x000000" /> |
| 48663 | 54013 | </dataarea> |
| r21545 | r21546 | |
| 48670 | 54020 | <publisher>Absolute Entertainment</publisher> |
| 48671 | 54021 | <info name="release" value="199309xx" /> |
| 48672 | 54022 | <part name="cart" interface="snes_cart"> |
| 54023 | ||
| 54024 | <feature name="slot" value="lorom" /> | |
| 48673 | 54025 | <dataarea name="rom" size="1048576"> |
| 48674 | 54026 | <rom name="redline f-1 racer (usa).sfc" size="1048576" crc="e5faadd2" sha1="28753ef9f0af186de192f851edc835bdecfe4064" offset="0x000000" /> |
| 48675 | 54027 | </dataarea> |
| r21545 | r21546 | |
| 48684 | 54036 | <info name="release" value="19950421" /> |
| 48685 | 54037 | <info name="alt_title" value="アレサ外伝リジョイスアレサ王国の彼方" /> |
| 48686 | 54038 | <part name="cart" interface="snes_cart"> |
| 54039 | ||
| 54040 | <feature name="slot" value="lorom" /> | |
| 48687 | 54041 | <dataarea name="rom" size="2097152"> |
| 48688 | 54042 | <rom name="rejoice - aretha oukoku no kanata (japan).sfc" size="2097152" crc="c2413bdd" sha1="50350bef7244c9d668dc1083f0e90aff549b3200" offset="0x000000" /> |
| 48689 | 54043 | </dataarea> |
| r21545 | r21546 | |
| 48698 | 54052 | <publisher>Left Field Entertainment</publisher> |
| 48699 | 54053 | <info name="release" value="199405xx" /> |
| 48700 | 54054 | <part name="cart" interface="snes_cart"> |
| 54055 | ||
| 54056 | <feature name="slot" value="lorom" /> | |
| 48701 | 54057 | <dataarea name="rom" size="2097152"> |
| 48702 | 54058 | <rom name="relief pitcher (usa).sfc" size="2097152" crc="2f48ff14" sha1="1036b526252bc91db3f298fd68778ec635702cd0" offset="0x000000" /> |
| 48703 | 54059 | </dataarea> |
| r21545 | r21546 | |
| 48710 | 54066 | <publisher>T*HQ</publisher> |
| 48711 | 54067 | <info name="release" value="199406xx" /> |
| 48712 | 54068 | <part name="cart" interface="snes_cart"> |
| 54069 | ||
| 54070 | <feature name="slot" value="lorom" /> | |
| 48713 | 54071 | <dataarea name="rom" size="524288"> |
| 48714 | 54072 | <rom name="ren & stimpy show, the - fire dogs (usa).sfc" size="524288" crc="0b472197" sha1="233a0f4ec8865e5e7f5f9a2342e75108ab1da97c" offset="0x000000" /> |
| 48715 | 54073 | </dataarea> |
| r21545 | r21546 | |
| 48721 | 54079 | <year>1994</year> |
| 48722 | 54080 | <publisher>T*HQ</publisher> |
| 48723 | 54081 | <part name="cart" interface="snes_cart"> |
| 54082 | ||
| 54083 | <feature name="slot" value="lorom" /> | |
| 48724 | 54084 | <dataarea name="rom" size="1310720"> |
| 48725 | 54085 | <rom name="ren & stimpy show, the - time warp (europe).sfc" size="1310720" crc="5cbf87b5" sha1="63a419386297c693126bda588a79814f94584837" offset="0x000000" /> |
| 48726 | 54086 | </dataarea> |
| r21545 | r21546 | |
| 48733 | 54093 | <publisher>T*HQ</publisher> |
| 48734 | 54094 | <info name="release" value="199411xx" /> |
| 48735 | 54095 | <part name="cart" interface="snes_cart"> |
| 54096 | ||
| 54097 | <feature name="slot" value="lorom" /> | |
| 48736 | 54098 | <dataarea name="rom" size="1310720"> |
| 48737 | 54099 | <rom name="ren & stimpy show, the - time warp (usa).sfc" size="1310720" crc="de8fe3e8" sha1="61dcb4b2364dc469a425fed49700f0a1e163aa32" offset="0x000000" /> |
| 48738 | 54100 | </dataarea> |
| r21545 | r21546 | |
| 48744 | 54106 | <year>1993</year> |
| 48745 | 54107 | <publisher>T*HQ</publisher> |
| 48746 | 54108 | <part name="cart" interface="snes_cart"> |
| 54109 | ||
| 54110 | <feature name="slot" value="lorom" /> | |
| 48747 | 54111 | <dataarea name="rom" size="1048576"> |
| 48748 | 54112 | <rom name="ren & stimpy show, the - veediots! (europe).sfc" size="1048576" crc="06ddbb0d" sha1="94c4261c46a5811eb323dd6a1d5d2830d7fe502c" offset="0x000000" /> |
| 48749 | 54113 | </dataarea> |
| r21545 | r21546 | |
| 48756 | 54120 | <publisher>T*HQ</publisher> |
| 48757 | 54121 | <info name="release" value="199310xx" /> |
| 48758 | 54122 | <part name="cart" interface="snes_cart"> |
| 54123 | ||
| 54124 | <feature name="slot" value="lorom" /> | |
| 48759 | 54125 | <dataarea name="rom" size="1048576"> |
| 48760 | 54126 | <rom name="ren & stimpy show, the - veediots! (usa).sfc" size="1048576" crc="fd1c12a3" sha1="f6a33d59f2222e9661dc89c205388ffc5a622a2e" offset="0x000000" /> |
| 48761 | 54127 | </dataarea> |
| r21545 | r21546 | |
| 48770 | 54136 | <info name="release" value="19951117" /> |
| 48771 | 54137 | <info name="alt_title" value="レンダリング・レンジャー R2" /> |
| 48772 | 54138 | <part name="cart" interface="snes_cart"> |
| 54139 | ||
| 54140 | <feature name="slot" value="lorom" /> | |
| 48773 | 54141 | <dataarea name="rom" size="2097152"> |
| 48774 | 54142 | <rom name="rendering ranger r2 (japan).sfc" size="2097152" crc="8fb5ac86" sha1="f40ac25a6cdff1e8384723cad0290ba42fd50bda" offset="0x000000" /> |
| 48775 | 54143 | </dataarea> |
| r21545 | r21546 | |
| 48784 | 54152 | <info name="release" value="19921016" /> |
| 48785 | 54153 | <info name="alt_title" value="リターン・オブ・双截龍" /> |
| 48786 | 54154 | <part name="cart" interface="snes_cart"> |
| 54155 | ||
| 54156 | <feature name="slot" value="lorom" /> | |
| 48787 | 54157 | <dataarea name="rom" size="1048576"> |
| 48788 | 54158 | <rom name="return of double dragon (japan).sfc" size="1048576" crc="10470b58" sha1="5f03e04ce7bca88f8c2c11934056a3a67bfb319b" offset="0x000000" /> |
| 48789 | 54159 | </dataarea> |
| r21545 | r21546 | |
| 48795 | 54165 | <year>199?</year> |
| 48796 | 54166 | <publisher><unlicensed></publisher> |
| 48797 | 54167 | <part name="cart" interface="snes_cart"> |
| 54168 | ||
| 54169 | <feature name="slot" value="lorom" /> | |
| 48798 | 54170 | <dataarea name="rom" size="524288"> |
| 48799 | 54171 | <rom name="reverse kids (japan) (unl).sfc" size="524288" crc="3a426a4a" sha1="8b534317c0da7a8c8d2e35074feafde33548e038" offset="0x000000" /> |
| 48800 | 54172 | </dataarea> |
| r21545 | r21546 | |
| 48807 | 54179 | <publisher>Acclaim Entertainment</publisher> |
| 48808 | 54180 | <sharedfeat name="compatibility" value="PAL"/> |
| 48809 | 54181 | <part name="cart" interface="snes_cart"> |
| 54182 | ||
| 54183 | <feature name="slot" value="lorom" /> | |
| 48810 | 54184 | <dataarea name="rom" size="2097152"> |
| 48811 | 54185 | <rom name="revolution x (europe).sfc" size="2097152" crc="f6b0eaa9" sha1="bcdf3379025f2e5f031c9aefbc3e8c4de480693a" offset="0x000000" /> |
| 48812 | 54186 | </dataarea> |
| r21545 | r21546 | |
| 48819 | 54193 | <publisher>Acclaim Entertainment</publisher> |
| 48820 | 54194 | <sharedfeat name="compatibility" value="PAL"/> |
| 48821 | 54195 | <part name="cart" interface="snes_cart"> |
| 54196 | ||
| 54197 | <feature name="slot" value="lorom" /> | |
| 48822 | 54198 | <dataarea name="rom" size="2097152"> |
| 48823 | 54199 | <rom name="revolution x (germany).sfc" size="2097152" crc="59d0f587" sha1="cb1182799c76b7947f2415f1406bc13e0692cba5" offset="0x000000" /> |
| 48824 | 54200 | </dataarea> |
| r21545 | r21546 | |
| 48834 | 54210 | <info name="alt_title" value="レボリューションX" /> |
| 48835 | 54211 | <sharedfeat name="compatibility" value="NTSC"/> |
| 48836 | 54212 | <part name="cart" interface="snes_cart"> |
| 54213 | ||
| 54214 | <feature name="slot" value="lorom" /> | |
| 48837 | 54215 | <dataarea name="rom" size="2097152"> |
| 48838 | 54216 | <rom name="revolution x (japan).sfc" size="2097152" crc="b5939fdc" sha1="7310659d93d6f3e96f6465f47c72e4b11b11c13d" offset="0x000000" /> |
| 48839 | 54217 | </dataarea> |
| r21545 | r21546 | |
| 48847 | 54225 | <info name="release" value="199512xx" /> |
| 48848 | 54226 | <sharedfeat name="compatibility" value="NTSC"/> |
| 48849 | 54227 | <part name="cart" interface="snes_cart"> |
| 54228 | ||
| 54229 | <feature name="slot" value="lorom" /> | |
| 48850 | 54230 | <dataarea name="rom" size="2097152"> |
| 48851 | 54231 | <rom name="revolution x (usa).sfc" size="2097152" crc="0dc5e7ba" sha1="33d19c77a494e9b30fa2bf7b674a1925181e347b" offset="0x000000" /> |
| 48852 | 54232 | </dataarea> |
| r21545 | r21546 | |
| 48859 | 54239 | <publisher>Raya Systems</publisher> |
| 48860 | 54240 | <info name="release" value="199405xx" /> |
| 48861 | 54241 | <part name="cart" interface="snes_cart"> |
| 54242 | ||
| 54243 | <feature name="slot" value="lorom" /> | |
| 48862 | 54244 | <dataarea name="rom" size="524288"> |
| 48863 | 54245 | <rom name="rex ronan - experimental surgeon (usa) (en,es).sfc" size="524288" crc="105ac679" sha1="0cf2a7f472ca59c266babdaba2e7583685ea3d32" offset="0x000000" /> |
| 48864 | 54246 | </dataarea> |
| r21545 | r21546 | |
| 48873 | 54255 | <info name="release" value="19931123" /> |
| 48874 | 54256 | <info name="alt_title" value="リディック・ボウ ボクシング" /> |
| 48875 | 54257 | <part name="cart" interface="snes_cart"> |
| 54258 | ||
| 54259 | <feature name="slot" value="lorom" /> | |
| 48876 | 54260 | <dataarea name="rom" size="524288"> |
| 48877 | 54261 | <rom name="riddick bowe boxing (japan).sfc" size="524288" crc="a9a1836a" sha1="3a3fca771ae4567f119563be629a0b5fcb7f420a" offset="0x000000" /> |
| 48878 | 54262 | </dataarea> |
| r21545 | r21546 | |
| 48887 | 54271 | <publisher>Extreme Entertainment Group</publisher> |
| 48888 | 54272 | <info name="release" value="199401xx" /> |
| 48889 | 54273 | <part name="cart" interface="snes_cart"> |
| 54274 | ||
| 54275 | <feature name="slot" value="lorom" /> | |
| 48890 | 54276 | <dataarea name="rom" size="524288"> |
| 48891 | 54277 | <rom name="riddick bowe boxing (usa).sfc" size="524288" crc="a967a041" sha1="495fb0a8cf44eed9833ed6345e5c8b35ede01a23" offset="0x000000" /> |
| 48892 | 54278 | </dataarea> |
| r21545 | r21546 | |
| 48903 | 54289 | <info name="release" value="19960322" /> |
| 48904 | 54290 | <info name="alt_title" value="林海峯九段の囲碁大道" /> |
| 48905 | 54291 | <part name="cart" interface="snes_cart"> |
| 54292 | ||
| 54293 | <feature name="slot" value="lorom" /> | |
| 48906 | 54294 | <dataarea name="rom" size="1572864"> |
| 48907 | 54295 | <rom name="rin kaihou kudan no igo taidou (japan).sfc" size="1572864" crc="b56ec084" sha1="1dbc6af7bb19a5e704955967955409c1eb1eb1f6" offset="0x000000" /> |
| 48908 | 54296 | </dataarea> |
| r21545 | r21546 | |
| 48919 | 54307 | <info name="release" value="19980601" /> |
| 48920 | 54308 | <info name="alt_title" value="リングにかけろ" /> |
| 48921 | 54309 | <part name="cart" interface="snes_cart"> |
| 54310 | ||
| 54311 | <feature name="slot" value="lorom" /> | |
| 48922 | 54312 | <dataarea name="rom" size="2621440"> |
| 48923 | 54313 | <rom name="ring ni kakero (japan) (np).sfc" size="2621440" crc="503b5b86" sha1="39fd2e8a2d4a0666b73e03750020be5de65998a2" offset="0x000000" /> |
| 48924 | 54314 | </dataarea> |
| r21545 | r21546 | |
| 48931 | 54321 | <publisher>Koei</publisher> |
| 48932 | 54322 | <info name="release" value="199502xx" /> |
| 48933 | 54323 | <part name="cart" interface="snes_cart"> |
| 54324 | ||
| 54325 | <feature name="slot" value="hirom" /> | |
| 48934 | 54326 | <dataarea name="rom" size="1572864"> |
| 48935 | 54327 | <rom name="rise of the phoenix (usa).sfc" size="1572864" crc="908b90b1" sha1="e87fc16d74bd5a692977bdefbdc7bfd074be3291" offset="0x000000" /> |
| 48936 | 54328 | </dataarea> |
| r21545 | r21546 | |
| 48944 | 54336 | <year>1994</year> |
| 48945 | 54337 | <publisher>Acclaim Entertainment</publisher> |
| 48946 | 54338 | <part name="cart" interface="snes_cart"> |
| 54339 | ||
| 54340 | <feature name="slot" value="hirom" /> | |
| 48947 | 54341 | <dataarea name="rom" size="4194304"> |
| 48948 | 54342 | <rom name="rise of the robots (europe).sfc" size="4194304" crc="8d4e7082" sha1="e7fe22d33412efc7ca145d0a5bcfb5a7876cab45" offset="0x000000" /> |
| 48949 | 54343 | </dataarea> |
| r21545 | r21546 | |
| 48958 | 54352 | <info name="release" value="19941222" /> |
| 48959 | 54353 | <info name="alt_title" value="ライズ オブ ザ ロボッツ" /> |
| 48960 | 54354 | <part name="cart" interface="snes_cart"> |
| 54355 | ||
| 54356 | <feature name="slot" value="hirom" /> | |
| 48961 | 54357 | <dataarea name="rom" size="4194304"> |
| 48962 | 54358 | <rom name="rise of the robots (japan).sfc" size="4194304" crc="09f827a5" sha1="4859d5b6c58ac7d6ebe12a24bd0b7ed89ecf88f9" offset="0x000000" /> |
| 48963 | 54359 | </dataarea> |
| r21545 | r21546 | |
| 48969 | 54365 | <year>1994</year> |
| 48970 | 54366 | <publisher>Acclaim Entertainment</publisher> |
| 48971 | 54367 | <part name="cart" interface="snes_cart"> |
| 54368 | ||
| 54369 | <feature name="slot" value="hirom" /> | |
| 48972 | 54370 | <dataarea name="rom" size="4194304"> |
| 48973 | 54371 | <rom name="rise of the robots (usa) (beta).sfc" size="4194304" crc="0be1de31" sha1="647803547866a8ec8ea00011ca75a60e52d52cae" offset="0x000000" /> |
| 48974 | 54372 | </dataarea> |
| r21545 | r21546 | |
| 48980 | 54378 | <year>1992</year> |
| 48981 | 54379 | <publisher>Jaleco</publisher> |
| 48982 | 54380 | <part name="cart" interface="snes_cart"> |
| 54381 | ||
| 54382 | <feature name="slot" value="lorom" /> | |
| 48983 | 54383 | <dataarea name="rom" size="1048576"> |
| 48984 | 54384 | <rom name="rival turf (europe).sfc" size="1048576" crc="e8a6b3d1" sha1="d0cd30b8fae1f48827b68e66bb67c9e6a3b48979" offset="0x000000" /> |
| 48985 | 54385 | </dataarea> |
| r21545 | r21546 | |
| 48991 | 54391 | <year>1992</year> |
| 48992 | 54392 | <publisher>T*HQ</publisher> |
| 48993 | 54393 | <part name="cart" interface="snes_cart"> |
| 54394 | ||
| 54395 | <feature name="slot" value="lorom" /> | |
| 48994 | 54396 | <dataarea name="rom" size="524288"> |
| 48995 | 54397 | <rom name="road riot 4wd (europe).sfc" size="524288" crc="0ec43268" sha1="ea42d647e59fb539118ed1fc215c71042283a04f" offset="0x000000" /> |
| 48996 | 54398 | </dataarea> |
| r21545 | r21546 | |
| 49002 | 54404 | <year>1992</year> |
| 49003 | 54405 | <publisher>T*HQ</publisher> |
| 49004 | 54406 | <part name="cart" interface="snes_cart"> |
| 54407 | ||
| 54408 | <feature name="slot" value="lorom" /> | |
| 49005 | 54409 | <dataarea name="rom" size="524288"> |
| 49006 | 54410 | <rom name="road riot 4wd (usa) (beta).sfc" size="524288" crc="4ca1a3b2" sha1="889002825734711d3a9eb060a2d715773dda17e3" offset="0x000000" /> |
| 49007 | 54411 | </dataarea> |
| r21545 | r21546 | |
| 49013 | 54417 | <year>1992</year> |
| 49014 | 54418 | <publisher>Sunsoft</publisher> |
| 49015 | 54419 | <part name="cart" interface="snes_cart"> |
| 54420 | ||
| 54421 | <feature name="slot" value="lorom" /> | |
| 49016 | 54422 | <dataarea name="rom" size="1048576"> |
| 49017 | 54423 | <rom name="road runner (europe) (beta).sfc" size="1048576" crc="83ba85a5" sha1="9c8bf060d020af55c81859899d7bc9a907842b0d" offset="0x000000" /> |
| 49018 | 54424 | </dataarea> |
| r21545 | r21546 | |
| 49024 | 54430 | <year>1992</year> |
| 49025 | 54431 | <publisher>Sunsoft</publisher> |
| 49026 | 54432 | <part name="cart" interface="snes_cart"> |
| 54433 | ||
| 54434 | <feature name="slot" value="lorom" /> | |
| 49027 | 54435 | <dataarea name="rom" size="1048576"> |
| 49028 | 54436 | <rom name="road runner (europe).sfc" size="1048576" crc="bb2b8e2e" sha1="70aa994c8ecb3a8c585a92d3b484b647e83d9651" offset="0x000000" /> |
| 49029 | 54437 | </dataarea> |
| r21545 | r21546 | |
| 49035 | 54443 | <year>1992</year> |
| 49036 | 54444 | <publisher>Ocean</publisher> |
| 49037 | 54445 | <part name="cart" interface="snes_cart"> |
| 54446 | ||
| 54447 | <feature name="slot" value="lorom" /> | |
| 49038 | 54448 | <dataarea name="rom" size="1048576"> |
| 49039 | 54449 | <rom name="robocop 3 (europe).sfc" size="1048576" crc="5f2c7031" sha1="51885454d9ce28ea715c4f446f26bc289163b149" offset="0x000000" /> |
| 49040 | 54450 | </dataarea> |
| r21545 | r21546 | |
| 49047 | 54457 | <publisher>Ocean</publisher> |
| 49048 | 54458 | <info name="release" value="199209xx" /> |
| 49049 | 54459 | <part name="cart" interface="snes_cart"> |
| 54460 | ||
| 54461 | <feature name="slot" value="lorom" /> | |
| 49050 | 54462 | <dataarea name="rom" size="1048576"> |
| 49051 | 54463 | <rom name="robocop 3 (usa).sfc" size="1048576" crc="3502f9b3" sha1="3a6c174a37c4a505464d3df05f45c9b1fcf75843" offset="0x000000" /> |
| 49052 | 54464 | </dataarea> |
| r21545 | r21546 | |
| 49058 | 54470 | <year>1993</year> |
| 49059 | 54471 | <publisher>Interplay</publisher> |
| 49060 | 54472 | <part name="cart" interface="snes_cart"> |
| 54473 | ||
| 54474 | <feature name="slot" value="lorom" /> | |
| 49061 | 54475 | <dataarea name="rom" size="1048576"> |
| 49062 | 54476 | <rom name="rock n' roll racing (usa) (beta).sfc" size="1048576" crc="d9fafb8a" sha1="1839e07a21eeca554c0a852ff6ba5dbc49dc887c" offset="0x000000" /> |
| 49063 | 54477 | </dataarea> |
| r21545 | r21546 | |
| 49071 | 54485 | <info name="release" value="199309xx" /> |
| 49072 | 54486 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49073 | 54487 | <part name="cart" interface="snes_cart"> |
| 54488 | ||
| 54489 | <feature name="slot" value="lorom" /> | |
| 49074 | 54490 | <dataarea name="rom" size="1048576"> |
| 49075 | 54491 | <rom name="rock n' roll racing (usa).sfc" size="1048576" crc="7d06f473" sha1="66d864dd07f8eae86cf4e1f60f176b405a2ddbe9" offset="0x000000" /> |
| 49076 | 54492 | </dataarea> |
| r21545 | r21546 | |
| 49086 | 54502 | <info name="release" value="19931217" /> |
| 49087 | 54503 | <info name="alt_title" value="ロックマンエックス" /> |
| 49088 | 54504 | <part name="cart" interface="snes_cart"> |
| 54505 | ||
| 54506 | <feature name="slot" value="lorom" /> | |
| 49089 | 54507 | <dataarea name="rom" size="1572864"> |
| 49090 | 54508 | <rom name="rockman x (japan) (rev 1).sfc" size="1572864" crc="5584641e" sha1="03f8f99d27874465f8d3e5ec9628927ac5be6fae" offset="0x000000" /> |
| 49091 | 54509 | </dataarea> |
| r21545 | r21546 | |
| 49097 | 54515 | <year>1993</year> |
| 49098 | 54516 | <publisher>Irem</publisher> |
| 49099 | 54517 | <part name="cart" interface="snes_cart"> |
| 54518 | ||
| 54519 | <feature name="slot" value="lorom" /> | |
| 49100 | 54520 | <dataarea name="rom" size="1048576"> |
| 49101 | 54521 | <rom name="rocky rodent (europe) (proto).sfc" size="1048576" crc="c7a0f949" sha1="a021a30fee0d2e750b5ef4ff3a304c20bb70583d" offset="0x000000" /> |
| 49102 | 54522 | </dataarea> |
| r21545 | r21546 | |
| 49109 | 54529 | <publisher>Irem</publisher> |
| 49110 | 54530 | <info name="release" value="199309xx" /> |
| 49111 | 54531 | <part name="cart" interface="snes_cart"> |
| 54532 | ||
| 54533 | <feature name="slot" value="lorom" /> | |
| 49112 | 54534 | <dataarea name="rom" size="1048576"> |
| 49113 | 54535 | <rom name="rocky rodent (usa).sfc" size="1048576" crc="c81a7b07" sha1="07baf0370f1d5b2457e6afff2c256eadc142ab96" offset="0x000000" /> |
| 49114 | 54536 | </dataarea> |
| r21545 | r21546 | |
| 49120 | 54542 | <year>1992</year> |
| 49121 | 54543 | <publisher>LJN</publisher> |
| 49122 | 54544 | <part name="cart" interface="snes_cart"> |
| 54545 | ||
| 54546 | <feature name="slot" value="lorom" /> | |
| 49123 | 54547 | <dataarea name="rom" size="1048576"> |
| 49124 | 54548 | <rom name="roger clemens' mvp baseball (usa) (beta).sfc" size="1048576" crc="f0ecdd92" sha1="107fe0342945c21c83ee8643e5b2b112370ac713" offset="0x000000" /> |
| 49125 | 54549 | </dataarea> |
| r21545 | r21546 | |
| 49132 | 54556 | <publisher>LJN</publisher> |
| 49133 | 54557 | <info name="release" value="199209xx" /> |
| 49134 | 54558 | <part name="cart" interface="snes_cart"> |
| 54559 | ||
| 54560 | <feature name="slot" value="lorom" /> | |
| 49135 | 54561 | <dataarea name="rom" size="1048576"> |
| 49136 | 54562 | <rom name="roger clemens' mvp baseball (usa).sfc" size="1048576" crc="865dc1cc" sha1="4216fb9a0a2697a22a30380faa409a95c6eb4a0e" offset="0x000000" /> |
| 49137 | 54563 | </dataarea> |
| r21545 | r21546 | |
| 49144 | 54570 | <publisher>Koei</publisher> |
| 49145 | 54571 | <info name="release" value="199205xx" /> |
| 49146 | 54572 | <part name="cart" interface="snes_cart"> |
| 54573 | ||
| 54574 | <feature name="slot" value="lorom" /> | |
| 49147 | 54575 | <dataarea name="rom" size="1048576"> |
| 49148 | 54576 | <rom name="romance of the three kingdoms ii (usa).sfc" size="1048576" crc="8033574a" sha1="2ded7b6ea4d10200106e514decc10bd3c9f86e2f" offset="0x000000" /> |
| 49149 | 54577 | </dataarea> |
| r21545 | r21546 | |
| 49158 | 54586 | <publisher>Koei</publisher> |
| 49159 | 54587 | <info name="release" value="199507xx" /> |
| 49160 | 54588 | <part name="cart" interface="snes_cart"> |
| 54589 | ||
| 54590 | <feature name="slot" value="hirom" /> | |
| 49161 | 54591 | <dataarea name="rom" size="3145728"> |
| 49162 | 54592 | <rom name="romance of the three kingdoms iv - wall of fire (usa).sfc" size="3145728" crc="82af5b69" sha1="9a42db6cde28a35419f0e2464090d6e96a47054a" offset="0x000000" /> |
| 49163 | 54593 | </dataarea> |
| r21545 | r21546 | |
| 49174 | 54604 | <info name="alt_title" value="ロマンシング サ・ガ3 体験版サンプルROM" /> |
| 49175 | 54605 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49176 | 54606 | <part name="cart" interface="snes_cart"> |
| 54607 | ||
| 54608 | <feature name="slot" value="hirom" /> | |
| 49177 | 54609 | <dataarea name="rom" size="4194304"> |
| 49178 | 54610 | <rom name="romancing saga 3 (japan) (sample).sfc" size="4194304" crc="bbbe3253" sha1="dff363586f1e79ef336d54f9069cb59afb6c20cd" offset="0x000000" /> |
| 49179 | 54611 | </dataarea> |
| r21545 | r21546 | |
| 49188 | 54620 | <info name="release" value="19921127" /> |
| 49189 | 54621 | <info name="alt_title" value="ロイヤルコンクエスト" /> |
| 49190 | 54622 | <part name="cart" interface="snes_cart"> |
| 54623 | ||
| 54624 | <feature name="slot" value="lorom" /> | |
| 49191 | 54625 | <dataarea name="rom" size="524288"> |
| 49192 | 54626 | <rom name="royal conquest (japan).sfc" size="524288" crc="f60e933e" sha1="eadc7a5e84d57b3092814e339801bc086a63a976" offset="0x000000" /> |
| 49193 | 54627 | </dataarea> |
| r21545 | r21546 | |
| 49202 | 54636 | <info name="release" value="19950623" /> |
| 49203 | 54637 | <info name="alt_title" value="ルインアーム" /> |
| 49204 | 54638 | <part name="cart" interface="snes_cart"> |
| 54639 | ||
| 54640 | <feature name="slot" value="lorom" /> | |
| 49205 | 54641 | <dataarea name="rom" size="2621440"> |
| 49206 | 54642 | <rom name="ruin arm (japan).sfc" size="2621440" crc="c2acd40d" sha1="31f6eac203c7e35fb973729c6b596d937f022829" offset="0x000000" /> |
| 49207 | 54643 | </dataarea> |
| r21545 | r21546 | |
| 49215 | 54651 | <year>1993</year> |
| 49216 | 54652 | <publisher>Atlus</publisher> |
| 49217 | 54653 | <part name="cart" interface="snes_cart"> |
| 54654 | ||
| 54655 | <feature name="slot" value="lorom" /> | |
| 49218 | 54656 | <dataarea name="rom" size="1048576"> |
| 49219 | 54657 | <rom name="run saber (europe).sfc" size="1048576" crc="2820f702" sha1="904f5dcf5aedad12d77f335690bfd740bc28801a" offset="0x000000" /> |
| 49220 | 54658 | </dataarea> |
| r21545 | r21546 | |
| 49229 | 54667 | <info name="release" value="19921222" /> |
| 49230 | 54668 | <info name="alt_title" value="ラッシング・ビート乱 複製都市" /> |
| 49231 | 54669 | <part name="cart" interface="snes_cart"> |
| 54670 | ||
| 54671 | <feature name="slot" value="lorom" /> | |
| 49232 | 54672 | <dataarea name="rom" size="1572864"> |
| 49233 | 54673 | <rom name="rushing beat ran - fukusei toshi (japan).sfc" size="1572864" crc="8f35ebe0" sha1="2b382b1d0dfbbdc810d28a8f6e0821b8e3734c48" offset="0x000000" /> |
| 49234 | 54674 | </dataarea> |
| r21545 | r21546 | |
| 49244 | 54684 | <info name="alt_title" value="ラッシング・ビート 修羅" /> |
| 49245 | 54685 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49246 | 54686 | <part name="cart" interface="snes_cart"> |
| 54687 | ||
| 54688 | <feature name="slot" value="hirom" /> | |
| 49247 | 54689 | <dataarea name="rom" size="2097152"> |
| 49248 | 54690 | <rom name="rushing beat shura (japan).sfc" size="2097152" crc="0a2e4c2f" sha1="0381086ad61745fb7aaa0b3950434eef586d3989" offset="0x000000" /> |
| 49249 | 54691 | </dataarea> |
| r21545 | r21546 | |
| 49258 | 54700 | <info name="release" value="19930423" /> |
| 49259 | 54701 | <info name="alt_title" value="龍騎兵団ダンザルブ" /> |
| 49260 | 54702 | <part name="cart" interface="snes_cart"> |
| 54703 | ||
| 54704 | <feature name="slot" value="hirom" /> | |
| 49261 | 54705 | <dataarea name="rom" size="1048576"> |
| 49262 | 54706 | <rom name="ryuuki heidan danzarb (japan).sfc" size="1048576" crc="454d7dcd" sha1="298207ae2c8ce26281da1cc0daa90eb9c2542e85" offset="0x000000" /> |
| 49263 | 54707 | </dataarea> |
| r21545 | r21546 | |
| 49275 | 54719 | <info name="alt_title" value="龍虎の拳2" /> |
| 49276 | 54720 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49277 | 54721 | <part name="cart" interface="snes_cart"> |
| 54722 | ||
| 54723 | <feature name="slot" value="hirom" /> | |
| 49278 | 54724 | <dataarea name="rom" size="4194304"> |
| 49279 | 54725 | <rom name="ryuuko no ken 2 (japan).sfc" size="4194304" crc="40019293" sha1="d8b4d02cda95858a7e7a47e626c960f4df6d1480" offset="0x000000" /> |
| 49280 | 54726 | </dataarea> |
| r21545 | r21546 | |
| 49289 | 54735 | <info name="release" value="19950210" /> |
| 49290 | 54736 | <info name="alt_title" value="さいばらりえこの まあじゃんほう ろうき" /> |
| 49291 | 54737 | <part name="cart" interface="snes_cart"> |
| 54738 | ||
| 54739 | <feature name="slot" value="hirom" /> | |
| 49292 | 54740 | <dataarea name="rom" size="524288"> |
| 49293 | 54741 | <rom name="saibara rieko no mahjong hourouki (japan).sfc" size="524288" crc="42198d27" sha1="d661fccb6caba79ce180d69e620778dfa2a80603" offset="0x000000" /> |
| 49294 | 54742 | </dataarea> |
| r21545 | r21546 | |
| 49305 | 54753 | <info name="release" value="19950331" /> |
| 49306 | 54754 | <info name="alt_title" value="最高速思考 将棋麻雀" /> |
| 49307 | 54755 | <part name="cart" interface="snes_cart"> |
| 54756 | ||
| 54757 | <feature name="slot" value="lorom" /> | |
| 49308 | 54758 | <dataarea name="rom" size="524288"> |
| 49309 | 54759 | <rom name="saikousoku shikou shougi mahjong (japan).sfc" size="524288" crc="a16cc0a7" sha1="d6d22bfdbb821b18bb0859e545355d0919424496" offset="0x000000" /> |
| 49310 | 54760 | </dataarea> |
| r21545 | r21546 | |
| 49321 | 54771 | <info name="release" value="19951227" /> |
| 49322 | 54772 | <info name="alt_title" value="ザ・プロレスリング 最強 高田延彦" /> |
| 49323 | 54773 | <part name="cart" interface="snes_cart"> |
| 54774 | ||
| 54775 | <feature name="slot" value="hirom" /> | |
| 49324 | 54776 | <dataarea name="rom" size="3145728"> |
| 49325 | 54777 | <rom name="saikyou - takada nobuhiko (japan).sfc" size="3145728" crc="f9cf0c56" sha1="88691406e53298ba6421bbc2708bbd0ac2043c55" offset="0x000000" /> |
| 49326 | 54778 | </dataarea> |
| r21545 | r21546 | |
| 49332 | 54784 | <year>1993</year> |
| 49333 | 54785 | <publisher>Angel</publisher> |
| 49334 | 54786 | <part name="cart" interface="snes_cart"> |
| 54787 | ||
| 54788 | <feature name="slot" value="hirom" /> | |
| 49335 | 54789 | <dataarea name="rom" size="1572864"> |
| 49336 | 54790 | <rom name="sailormoon (france).sfc" size="1572864" crc="cd89020d" sha1="e3e4886f2e69e15e878eb70ef97e31c84f9f81de" offset="0x000000" /> |
| 49337 | 54791 | </dataarea> |
| 49338 | 54792 | </part> |
| 49339 | 54793 | </software> |
| 49340 | 54794 | |
| 49341 | <software name="samegmcd" supported="no"> | |
| 49342 | <description>Same Game - Chara Data Shuu (Jpn, BSROM, Not for sale)</description> | |
| 49343 | <year>1996</year> | |
| 49344 | <publisher>Hudson</publisher> | |
| 49345 | <part name="cart" interface="snes_cart"> | |
| 49346 | <dataarea name="rom" size="524288"> | |
| 49347 | <rom name="same game - chara data shuu (japan) (bsrom).bs" size="524288" crc="12a80829" sha1="ff3e6b558aaa9c36a35460ba61821e09aef50a9e" offset="0x000000" /> | |
| 49348 | </dataarea> | |
| 49349 | </part> | |
| 49350 | </software> | |
| 49351 | ||
| 49352 | 54795 | <software name="samsarn2"> |
| 49353 | 54796 | <description>Samsara Naga 2 (Jpn)</description> |
| 49354 | 54797 | <year>1994</year> |
| r21545 | r21546 | |
| 49358 | 54801 | <info name="alt_title" value="サンサーラ・ナーガ2" /> |
| 49359 | 54802 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49360 | 54803 | <part name="cart" interface="snes_cart"> |
| 54804 | ||
| 54805 | <feature name="slot" value="lorom" /> | |
| 49361 | 54806 | <dataarea name="rom" size="1572864"> |
| 49362 | 54807 | <rom name="samsara naga 2 (japan).sfc" size="1572864" crc="c1ffef17" sha1="7d9658572b762aa325a4e66222c762d77b00ef69" offset="0x000000" /> |
| 49363 | 54808 | </dataarea> |
| r21545 | r21546 | |
| 49372 | 54817 | <publisher>Takara</publisher> |
| 49373 | 54818 | <sharedfeat name="compatibility" value="PAL"/> |
| 49374 | 54819 | <part name="cart" interface="snes_cart"> |
| 54820 | ||
| 54821 | <feature name="slot" value="hirom" /> | |
| 49375 | 54822 | <dataarea name="rom" size="4194304"> |
| 49376 | 54823 | <rom name="samurai shodown (europe).sfc" size="4194304" crc="e0adf929" sha1="c54f3d2bdb3667061bcbdac155b7aff89bfe1ded" offset="0x000000" /> |
| 49377 | 54824 | </dataarea> |
| r21545 | r21546 | |
| 49384 | 54831 | <publisher>Takara</publisher> |
| 49385 | 54832 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49386 | 54833 | <part name="cart" interface="snes_cart"> |
| 54834 | ||
| 54835 | <feature name="slot" value="hirom" /> | |
| 49387 | 54836 | <dataarea name="rom" size="4194304"> |
| 49388 | 54837 | <rom name="samurai spirits (japan) (beta).sfc" size="4194304" crc="51bfa576" sha1="07e73b706259d59b2218d9c801aeadacdb160a2d" offset="0x000000" /> |
| 49389 | 54838 | </dataarea> |
| r21545 | r21546 | |
| 49398 | 54847 | <info name="release" value="19951228" /> |
| 49399 | 54848 | <info name="alt_title" value="三國志 英傑伝" /> |
| 49400 | 54849 | <part name="cart" interface="snes_cart"> |
| 54850 | ||
| 54851 | <feature name="slot" value="hirom" /> | |
| 49401 | 54852 | <dataarea name="rom" size="3145728"> |
| 49402 | 54853 | <rom name="sangokushi eiketsuden (japan).sfc" size="3145728" crc="4c78d5ee" sha1="1d8e0694a9d68255335ac7335f97fbff52dd68f8" offset="0x000000" /> |
| 49403 | 54854 | </dataarea> |
| r21545 | r21546 | |
| 49411 | 54862 | <year>1993?</year> |
| 49412 | 54863 | <publisher>Koei?</publisher> |
| 49413 | 54864 | <part name="cart" interface="snes_cart"> |
| 54865 | ||
| 54866 | <feature name="slot" value="hirom" /> | |
| 49414 | 54867 | <dataarea name="rom" size="1572864"> |
| 49415 | 54868 | <rom name="sangokushi iii (hong kong).sfc" size="1572864" crc="30d3a7f4" sha1="3c3f8d41dc2ed6be9f9f2308d0b8b7cfc9961dea" offset="0x000000" /> |
| 49416 | 54869 | </dataarea> |
| r21545 | r21546 | |
| 49427 | 54880 | <info name="release" value="19921108" /> |
| 49428 | 54881 | <info name="alt_title" value="三国志III" /> |
| 49429 | 54882 | <part name="cart" interface="snes_cart"> |
| 54883 | ||
| 54884 | <feature name="slot" value="hirom" /> | |
| 49430 | 54885 | <dataarea name="rom" size="1572864"> |
| 49431 | 54886 | <rom name="sangokushi iii (japan) (rev 1).sfc" size="1572864" crc="b4c69eda" sha1="a3566918596df2a9414413b849208a1b39c33974" offset="0x000000" /> |
| 49432 | 54887 | </dataarea> |
| r21545 | r21546 | |
| 49443 | 54898 | <info name="release" value="19941209" /> |
| 49444 | 54899 | <info name="alt_title" value="三国志IV" /> |
| 49445 | 54900 | <part name="cart" interface="snes_cart"> |
| 54901 | ||
| 54902 | <feature name="slot" value="hirom" /> | |
| 49446 | 54903 | <dataarea name="rom" size="3145728"> |
| 49447 | 54904 | <rom name="sangokushi iv (japan) (rev 1).sfc" size="3145728" crc="57674647" sha1="f1fdd94d71fbacc794a8a7ad82c217926fc94c6f" offset="0x000000" /> |
| 49448 | 54905 | </dataarea> |
| r21545 | r21546 | |
| 49459 | 54916 | <info name="release" value="19930625" /> |
| 49460 | 54917 | <info name="alt_title" value="三国志正史 天舞スピリッツ" /> |
| 49461 | 54918 | <part name="cart" interface="snes_cart"> |
| 54919 | ||
| 54920 | <feature name="slot" value="lorom" /> | |
| 49462 | 54921 | <dataarea name="rom" size="1572864"> |
| 49463 | 54922 | <rom name="sangokushi seishi - tenbu spirits (japan).sfc" size="1572864" crc="d09762fb" sha1="bcb8d5dc750f28a677cf55c727c9e98f95571be3" offset="0x000000" /> |
| 49464 | 54923 | </dataarea> |
| r21545 | r21546 | |
| 49475 | 54934 | <info name="release" value="19940831" /> |
| 49476 | 54935 | <info name="alt_title" value="サンリオ上海" /> |
| 49477 | 54936 | <part name="cart" interface="snes_cart"> |
| 54937 | ||
| 54938 | <feature name="slot" value="hirom" /> | |
| 49478 | 54939 | <dataarea name="rom" size="524288"> |
| 49479 | 54940 | <rom name="sanrio shanghai (japan).sfc" size="524288" crc="4cbb22df" sha1="b064a132b0e37d8b3fa0991e03cb1b006d73c01e" offset="0x000000" /> |
| 49480 | 54941 | </dataarea> |
| r21545 | r21546 | |
| 49489 | 54950 | <info name="release" value="19930716" /> |
| 49490 | 54951 | <info name="alt_title" value="サンリオワールド スマッシュボール" /> |
| 49491 | 54952 | <part name="cart" interface="snes_cart"> |
| 54953 | ||
| 54954 | <feature name="slot" value="lorom" /> | |
| 49492 | 54955 | <dataarea name="rom" size="262144"> |
| 49493 | 54956 | <rom name="sanrio world smash ball! (japan).sfc" size="262144" crc="0e318416" sha1="f182eb75f21e46e516cbb6e6bef0324724bc0f04" offset="0x000000" /> |
| 49494 | 54957 | </dataarea> |
| r21545 | r21546 | |
| 49504 | 54967 | <info name="alt_title" value="SD F-1 グランプリ" /> |
| 49505 | 54968 | <part name="cart" interface="snes_cart"> |
| 49506 | 54969 | <feature name="enhancement" value="SA1" /> |
| 54970 | ||
| 54971 | <feature name="slot" value="lorom_sa1" /> | |
| 49507 | 54972 | <dataarea name="rom" size="2097152"> |
| 49508 | 54973 | <rom name="sd f-1 grand prix (japan).sfc" size="2097152" crc="2fee01ad" sha1="d3ef6b754ae4f8bbbe915a8b82824c6b62da58c7" offset="0x000000" /> |
| 49509 | 54974 | </dataarea> |
| r21545 | r21546 | |
| 49520 | 54985 | <info name="release" value="19960126" /> |
| 49521 | 54986 | <info name="alt_title" value="SDガンダム パワー フォーメーション パズル" /> |
| 49522 | 54987 | <part name="cart" interface="snes_cart"> |
| 54988 | ||
| 54989 | <feature name="slot" value="lorom" /> | |
| 49523 | 54990 | <dataarea name="rom" size="1048576"> |
| 49524 | 54991 | <rom name="sd gundam - power formation puzzle (japan).sfc" size="1048576" crc="87e4476d" sha1="43be07a1eda1563e99343bb6b349e251b576b69d" offset="0x000000" /> |
| 49525 | 54992 | </dataarea> |
| 49526 | 54993 | </part> |
| 49527 | 54994 | </software> |
| 49528 | 54995 | |
| 49529 | <software name="sdgunmap" supported="no"> | |
| 49530 | <description>SD Gundam G Next - Unit & Map Collection (Jpn, BSROM)</description> | |
| 49531 | <year>1996</year> | |
| 49532 | <publisher>Bandai</publisher> | |
| 49533 | <info name="serial" value="SHVC-039 ?" /> | |
| 49534 | <info name="release" value="19960329" /> | |
| 49535 | <info name="alt_title" value="SDガンダム ジーネクスト ユニット& マップコレクション" /> | |
| 49536 | <part name="cart" interface="snes_cart"> | |
| 49537 | <dataarea name="rom" size="524288"> | |
| 49538 | <rom name="sd gundam g next - unit & map collection (japan) (bsrom).bs" size="524288" crc="60b1b7e0" sha1="81a75b1a19907e831b3b80d2067108a61c4bae40" offset="0x000000" /> | |
| 49539 | </dataarea> | |
| 49540 | </part> | |
| 49541 | </software> | |
| 49542 | ||
| 49543 | 54996 | <software name="kgundam"> |
| 49544 | 54997 | <description>SD Gundam Gaiden - Knight Gundam Monogatari - Ooinaru Isan (Jpn, Rev. A)</description> |
| 49545 | 54998 | <year>1991</year> |
| r21545 | r21546 | |
| 49548 | 55001 | <info name="release" value="19911221" /> |
| 49549 | 55002 | <info name="alt_title" value="SDガンダム外伝 ナイトガンダム物語 大いなる遺産" /> |
| 49550 | 55003 | <part name="cart" interface="snes_cart"> |
| 55004 | ||
| 55005 | <feature name="slot" value="lorom" /> | |
| 49551 | 55006 | <dataarea name="rom" size="1048576"> |
| 49552 | 55007 | <rom name="sd gundam gaiden - knight gundam monogatari - ooinaru isan (japan) (rev 1).sfc" size="1048576" crc="eee5fc3e" sha1="0fe75f22d976e02270257b2a608b26197ddb1bfe" offset="0x000000" /> |
| 49553 | 55008 | </dataarea> |
| r21545 | r21546 | |
| 49564 | 55019 | <info name="release" value="19921218" /> |
| 49565 | 55020 | <info name="alt_title" value="SDガンダム外伝2 円卓の騎士" /> |
| 49566 | 55021 | <part name="cart" interface="snes_cart"> |
| 55022 | ||
| 55023 | <feature name="slot" value="lorom" /> | |
| 49567 | 55024 | <dataarea name="rom" size="1048576"> |
| 49568 | 55025 | <rom name="sd gundam gaiden 2 - entaku no kishi (japan).sfc" size="1048576" crc="007fd50c" sha1="e9d5a724faa40933c3c8217711b04dc34529bc96" offset="0x000000" /> |
| 49569 | 55026 | </dataarea> |
| r21545 | r21546 | |
| 49572 | 55029 | </part> |
| 49573 | 55030 | </software> |
| 49574 | 55031 | |
| 49575 | <software name="stsdguna" supported="no"> | |
| 49576 | <description>SD Gundam Generation - Axis Senki (Jpn)</description> | |
| 49577 | <!-- ST --> | |
| 49578 | <year>1996</year> | |
| 49579 | <publisher>Bandai</publisher> | |
| 49580 | <info name="serial" value="SFT-0107" /> | |
| 49581 | <info name="release" value="19960823" /> | |
| 49582 | <info name="alt_title" value="SDガンダムジェネレーション アクシズ戦記" /> | |
| 49583 | <part name="cart" interface="snes_cart"> | |
| 49584 | <dataarea name="rom" size="524288"> | |
| 49585 | <rom name="sd gundam generation - axis senki (japan).st" size="524288" crc="72b4235f" sha1="6f5be110a606f34bb797a30c1f07b84b2ff38425" offset="0x000000" /> | |
| 49586 | </dataarea> | |
| 49587 | </part> | |
| 49588 | </software> | |
| 49589 | ||
| 49590 | <software name="stsdgunb" supported="no"> | |
| 49591 | <description>SD Gundam Generation - Babylonia Kenkoku Senki (Jpn)</description> | |
| 49592 | <!-- ST --> | |
| 49593 | <year>1996</year> | |
| 49594 | <publisher>Bandai</publisher> | |
| 49595 | <info name="serial" value="SFT-0108" /> | |
| 49596 | <info name="release" value="19960823" /> | |
| 49597 | <info name="alt_title" value="SDガンダムジェネレーション バヒロニア建国戦記" /> | |
| 49598 | <part name="cart" interface="snes_cart"> | |
| 49599 | <dataarea name="rom" size="524288"> | |
| 49600 | <rom name="sd gundam generation - babylonia kenkoku senki (japan).st" size="524288" crc="792d884c" sha1="f18f680b981077cfa025161cfe6c9594b6d18078" offset="0x000000" /> | |
| 49601 | </dataarea> | |
| 49602 | </part> | |
| 49603 | </software> | |
| 49604 | ||
| 49605 | <software name="stsdgunc" supported="no"> | |
| 49606 | <description>SD Gundam Generation - Colony Kakutouki (Jpn)</description> | |
| 49607 | <!-- ST --> | |
| 49608 | <year>1996</year> | |
| 49609 | <publisher>Bandai</publisher> | |
| 49610 | <info name="serial" value="SFT-0111" /> | |
| 49611 | <info name="release" value="19960927" /> | |
| 49612 | <info name="alt_title" value="SDガンダムジェネレーション コロ ニー格闘記" /> | |
| 49613 | <part name="cart" interface="snes_cart"> | |
| 49614 | <dataarea name="rom" size="524288"> | |
| 49615 | <rom name="sd gundam generation - colony kakutouki (japan).st" size="524288" crc="c5dfa8fd" sha1="0a335ef645d058c2da5389ad622c62d0bffce944" offset="0x000000" /> | |
| 49616 | </dataarea> | |
| 49617 | </part> | |
| 49618 | </software> | |
| 49619 | ||
| 49620 | <software name="stsdgung" supported="no"> | |
| 49621 | <description>SD Gundam Generation - Gryps Senki (Jpn)</description> | |
| 49622 | <!-- ST --> | |
| 49623 | <year>1996</year> | |
| 49624 | <publisher>Bandai</publisher> | |
| 49625 | <info name="serial" value="SFT-0105" /> | |
| 49626 | <info name="release" value="19960726" /> | |
| 49627 | <info name="alt_title" value="SDガンダムジェネレーション グリプス戦記" /> | |
| 49628 | <part name="cart" interface="snes_cart"> | |
| 49629 | <dataarea name="rom" size="524288"> | |
| 49630 | <rom name="sd gundam generation - gryps senki (japan).st" size="524288" crc="48ecae44" sha1="f280004dd92b70b1bf4518e054b4181a9bbba245" offset="0x000000" /> | |
| 49631 | </dataarea> | |
| 49632 | </part> | |
| 49633 | </software> | |
| 49634 | ||
| 49635 | <software name="stsdguni" supported="no"> | |
| 49636 | <description>SD Gundam Generation - Ichinen Sensouki (Jpn)</description> | |
| 49637 | <!-- ST --> | |
| 49638 | <year>1996</year> | |
| 49639 | <publisher>Bandai</publisher> | |
| 49640 | <info name="serial" value="SFT-0104" /> | |
| 49641 | <info name="release" value="19960726" /> | |
| 49642 | <info name="alt_title" value="SDガンダムジェネレーション一年戦争記" /> | |
| 49643 | <part name="cart" interface="snes_cart"> | |
| 49644 | <dataarea name="rom" size="524288"> | |
| 49645 | <rom name="sd gundam generation - ichinen sensouki (japan).st" size="524288" crc="afd74dcb" sha1="adc7716a4b081aba5cde3525881c51ee6d600396" offset="0x000000" /> | |
| 49646 | </dataarea> | |
| 49647 | </part> | |
| 49648 | </software> | |
| 49649 | ||
| 49650 | <software name="stsdgunz" supported="no"> | |
| 49651 | <description>SD Gundam Generation - Zanscare Senki (Jpn)</description> | |
| 49652 | <!-- ST --> | |
| 49653 | <year>1996</year> | |
| 49654 | <publisher>Bandai</publisher> | |
| 49655 | <info name="serial" value="SFT-0110" /> | |
| 49656 | <info name="release" value="19960927" /> | |
| 49657 | <info name="alt_title" value="SDガンダムジェネレーション ザン スカール戦記" /> | |
| 49658 | <part name="cart" interface="snes_cart"> | |
| 49659 | <dataarea name="rom" size="524288"> | |
| 49660 | <rom name="sd gundam generation - zanscare senki (japan).st" size="524288" crc="efd3a865" sha1="d0ebe3cfcc76ec275151c3b9392fc2ff5d3b50da" offset="0x000000" /> | |
| 49661 | </dataarea> | |
| 49662 | </part> | |
| 49663 | </software> | |
| 49664 | ||
| 49665 | 55032 | <software name="sdgund2"> |
| 49666 | 55033 | <description>SD Kidou Senshi Gundam 2 (Jpn)</description> |
| 49667 | 55034 | <year>1993</year> |
| r21545 | r21546 | |
| 49670 | 55037 | <info name="release" value="19930923" /> |
| 49671 | 55038 | <info name="alt_title" value="SD機動戦士ガンダム2" /> |
| 49672 | 55039 | <part name="cart" interface="snes_cart"> |
| 55040 | ||
| 55041 | <feature name="slot" value="lorom" /> | |
| 49673 | 55042 | <dataarea name="rom" size="1048576"> |
| 49674 | 55043 | <rom name="sd kidou senshi gundam 2 (japan).sfc" size="1048576" crc="3ddc7489" sha1="d6261d31a96bb1dd7469aeccf586edee37b6bbe8" offset="0x000000" /> |
| 49675 | 55044 | </dataarea> |
| 49676 | 55045 | </part> |
| 49677 | 55046 | </software> |
| 49678 | 55047 | |
| 49679 | <software name="stbattl7" supported="no"> | |
| 49680 | <description>SD Ultra Battle - Seven Densetsu (Jpn)</description> | |
| 49681 | <!-- ST --> | |
| 49682 | <year>1996</year> | |
| 49683 | <publisher>Bandai</publisher> | |
| 49684 | <info name="serial" value="SFT-0102" /> | |
| 49685 | <info name="release" value="19960628" /> | |
| 49686 | <info name="alt_title" value="SDウルトラバトル セブン伝説" /> | |
| 49687 | <part name="cart" interface="snes_cart"> | |
| 49688 | <dataarea name="rom" size="524288"> | |
| 49689 | <rom name="sd ultra battle - seven densetsu (japan).st" size="524288" crc="43ad5a45" sha1="bfe85a6e6e8c24584ed5983dbf56048c4c8f2287" offset="0x000000" /> | |
| 49690 | </dataarea> | |
| 49691 | </part> | |
| 49692 | </software> | |
| 49693 | ||
| 49694 | <software name="stbattlu" supported="no"> | |
| 49695 | <description>SD Ultra Battle - Ultraman Densetsu (Jpn)</description> | |
| 49696 | <!-- ST --> | |
| 49697 | <year>1996</year> | |
| 49698 | <publisher>Bandai</publisher> | |
| 49699 | <info name="serial" value="SFT-0101" /> | |
| 49700 | <info name="release" value="19960628" /> | |
| 49701 | <info name="alt_title" value="SDウルトラバトル ウルトラマン伝 説" /> | |
| 49702 | <part name="cart" interface="snes_cart"> | |
| 49703 | <dataarea name="rom" size="524288"> | |
| 49704 | <rom name="sd ultra battle - ultraman densetsu (japan).st" size="524288" crc="04939d14" sha1="5527fcc136ff0c0ef53a1c9c2756d4a27afa1526" offset="0x000000" /> | |
| 49705 | </dataarea> | |
| 49706 | </part> | |
| 49707 | </software> | |
| 49708 | ||
| 49709 | 55048 | <software name="seaquest"> |
| 49710 | 55049 | <description>SeaQuest DSV (Euro)</description> |
| 49711 | 55050 | <year>1995</year> |
| 49712 | 55051 | <publisher>Malibu Interactive</publisher> |
| 49713 | 55052 | <part name="cart" interface="snes_cart"> |
| 55053 | ||
| 55054 | <feature name="slot" value="lorom" /> | |
| 49714 | 55055 | <dataarea name="rom" size="2097152"> |
| 49715 | 55056 | <rom name="seaquest dsv (europe).sfc" size="2097152" crc="dca75893" sha1="fb704167cb269e00c4108cf1eabed8b5df2d547d" offset="0x000000" /> |
| 49716 | 55057 | </dataarea> |
| r21545 | r21546 | |
| 49722 | 55063 | <year>1995</year> |
| 49723 | 55064 | <publisher>Nintendo</publisher> |
| 49724 | 55065 | <part name="cart" interface="snes_cart"> |
| 55066 | ||
| 55067 | <feature name="slot" value="hirom" /> | |
| 49725 | 55068 | <dataarea name="rom" size="3145728"> |
| 49726 | 55069 | <rom name="secret of evermore (europe).sfc" size="3145728" crc="e168d085" sha1="ae17166919fdfdf26cc5771f83cfd19eaf71806c" offset="0x000000" /> |
| 49727 | 55070 | </dataarea> |
| r21545 | r21546 | |
| 49735 | 55078 | <year>1995</year> |
| 49736 | 55079 | <publisher>Nintendo</publisher> |
| 49737 | 55080 | <part name="cart" interface="snes_cart"> |
| 55081 | ||
| 55082 | <feature name="slot" value="hirom" /> | |
| 49738 | 55083 | <dataarea name="rom" size="3145728"> |
| 49739 | 55084 | <rom name="secret of evermore (spain).sfc" size="3145728" crc="7bfe934f" sha1="4363ce4b19e76261f9325ac9a0cce27d97490df2" offset="0x000000" /> |
| 49740 | 55085 | </dataarea> |
| r21545 | r21546 | |
| 49749 | 55094 | <publisher>Nintendo</publisher> |
| 49750 | 55095 | <sharedfeat name="compatibility" value="PAL"/> |
| 49751 | 55096 | <part name="cart" interface="snes_cart"> |
| 55097 | ||
| 55098 | <feature name="slot" value="hirom" /> | |
| 49752 | 55099 | <dataarea name="rom" size="2097152"> |
| 49753 | 55100 | <rom name="secret of mana (europe) (rev 1).sfc" size="2097152" crc="de112322" sha1="cf57dc4183c6e5aadba25019d82e61c44c0de113" offset="0x000000" /> |
| 49754 | 55101 | </dataarea> |
| r21545 | r21546 | |
| 49763 | 55110 | <publisher>Nintendo</publisher> |
| 49764 | 55111 | <sharedfeat name="compatibility" value="PAL"/> |
| 49765 | 55112 | <part name="cart" interface="snes_cart"> |
| 55113 | ||
| 55114 | <feature name="slot" value="hirom" /> | |
| 49766 | 55115 | <dataarea name="rom" size="2097152"> |
| 49767 | 55116 | <rom name="secret of mana (europe).sfc" size="2097152" crc="c5cb2f26" sha1="d9aaf3119784887475da9548000738e1da84bee6" offset="0x000000" /> |
| 49768 | 55117 | </dataarea> |
| r21545 | r21546 | |
| 49777 | 55126 | <publisher>Nintendo</publisher> |
| 49778 | 55127 | <sharedfeat name="compatibility" value="PAL"/> |
| 49779 | 55128 | <part name="cart" interface="snes_cart"> |
| 55129 | ||
| 55130 | <feature name="slot" value="hirom" /> | |
| 49780 | 55131 | <dataarea name="rom" size="2097152"> |
| 49781 | 55132 | <rom name="secret of mana (france).sfc" size="2097152" crc="6be4ca95" sha1="d5601be19de691e58edd55194e10496c77e464e5" offset="0x000000" /> |
| 49782 | 55133 | </dataarea> |
| r21545 | r21546 | |
| 49793 | 55144 | <info name="release" value="19941202" /> |
| 49794 | 55145 | <info name="alt_title" value="制服伝説 プリティ・ファイ ター" /> |
| 49795 | 55146 | <part name="cart" interface="snes_cart"> |
| 55147 | ||
| 55148 | <feature name="slot" value="hirom" /> | |
| 49796 | 55149 | <dataarea name="rom" size="2097152"> |
| 49797 | 55150 | <rom name="seifuku densetsu pretty fighter (japan).sfc" size="2097152" crc="a638bef1" sha1="dbf74b042a7baecca73ff9956625dffc818b9be9" offset="0x000000" /> |
| 49798 | 55151 | </dataarea> |
| r21545 | r21546 | |
| 49808 | 55161 | <info name="alt_title" value="聖獣魔伝 ビースト&ブレイト" /> |
| 49809 | 55162 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49810 | 55163 | <part name="cart" interface="snes_cart"> |
| 55164 | ||
| 55165 | <feature name="slot" value="hirom" /> | |
| 49811 | 55166 | <dataarea name="rom" size="2621440"> |
| 49812 | 55167 | <rom name="seijuu maden beasts & blades (japan).sfc" size="2621440" crc="d0aea27c" sha1="e0067694f59e5190bcf02c92ddf016ec3c55fb7a" offset="0x000000" /> |
| 49813 | 55168 | </dataarea> |
| r21545 | r21546 | |
| 49823 | 55178 | <info name="serial" value="SHVC-A3EJ-JPN" /> |
| 49824 | 55179 | <info name="alt_title" value="聖剣伝説3 体験版サンプルROM" /> |
| 49825 | 55180 | <part name="cart" interface="snes_cart"> |
| 55181 | ||
| 55182 | <feature name="slot" value="hirom" /> | |
| 49826 | 55183 | <dataarea name="rom" size="4194304"> |
| 49827 | 55184 | <rom name="seiken densetsu 3 (japan) (sample).sfc" size="4194304" crc="4801e76a" sha1="7078dbcf0b2941af59c8187eeb3b8dd392407b46" offset="0x000000" /> |
| 49828 | 55185 | </dataarea> |
| r21545 | r21546 | |
| 49840 | 55197 | <info name="alt_title" value="戦国伝承" /> |
| 49841 | 55198 | <sharedfeat name="compatibility" value="NTSC"/> |
| 49842 | 55199 | <part name="cart" interface="snes_cart"> |
| 55200 | ||
| 55201 | <feature name="slot" value="lorom" /> | |
| 49843 | 55202 | <dataarea name="rom" size="1048576"> |
| 49844 | 55203 | <rom name="sengoku denshou (japan).sfc" size="1048576" crc="c9d97b3e" sha1="42ccc3f8de882b238d6b3646fa3feb200f2e45c2" offset="0x000000" /> |
| 49845 | 55204 | </dataarea> |
| r21545 | r21546 | |
| 49854 | 55213 | <info name="release" value="19951222" /> |
| 49855 | 55214 | <info name="alt_title" value="戦国の覇者 天下布武への道" /> |
| 49856 | 55215 | <part name="cart" interface="snes_cart"> |
| 55216 | ||
| 55217 | <feature name="slot" value="hirom" /> | |
| 49857 | 55218 | <dataarea name="rom" size="2097152"> |
| 49858 | 55219 | <rom name="sengoku no hasha - tenkafubu e no michi (japan).sfc" size="2097152" crc="4b955941" sha1="bfe75624cc4c04be2f73a5485c311c6d1d1f5aba" offset="0x000000" /> |
| 49859 | 55220 | </dataarea> |
| r21545 | r21546 | |
| 49867 | 55228 | <year>1992</year> |
| 49868 | 55229 | <publisher>Renegade Software</publisher> |
| 49869 | 55230 | <part name="cart" interface="snes_cart"> |
| 55231 | ||
| 55232 | <feature name="slot" value="lorom" /> | |
| 49870 | 55233 | <dataarea name="rom" size="524288"> |
| 49871 | 55234 | <rom name="sensible soccer - european champions (europe) (en,fr,de,it) (beta).sfc" size="524288" crc="4655c894" sha1="be56cbbe11bdcfb22dad0b1ba05f949560ddc860" offset="0x000000" /> |
| 49872 | 55235 | </dataarea> |
| r21545 | r21546 | |
| 49883 | 55246 | <info name="release" value="19930528" /> |
| 49884 | 55247 | <info name="alt_title" value="セプテントリオン" /> |
| 49885 | 55248 | <part name="cart" interface="snes_cart"> |
| 55249 | ||
| 55250 | <feature name="slot" value="lorom" /> | |
| 49886 | 55251 | <dataarea name="rom" size="1048576"> |
| 49887 | 55252 | <rom name="septentrion (japan).sfc" size="1048576" crc="6d8d580d" sha1="c44da4f2051a08e735f2265d495afe90e8859348" offset="0x000000" /> |
| 49888 | 55253 | </dataarea> |
| r21545 | r21546 | |
| 49897 | 55262 | <info name="release" value="19921204" /> |
| 49898 | 55263 | <info name="alt_title" value="芹沢信雄のバーディトライ" /> |
| 49899 | 55264 | <part name="cart" interface="snes_cart"> |
| 55265 | ||
| 55266 | <feature name="slot" value="lorom" /> | |
| 49900 | 55267 | <dataarea name="rom" size="1048576"> |
| 49901 | 55268 | <rom name="serizawa nobuo no birdie try (japan).sfc" size="1048576" crc="987a96d0" sha1="08340e93001760ef1668e12a3c8dcbf3cb22a8d2" offset="0x000000" /> |
| 49902 | 55269 | </dataarea> |
| r21545 | r21546 | |
| 49913 | 55280 | <info name="release" value="19950929" /> |
| 49914 | 55281 | <info name="alt_title" value="サージェント・サンダース・コンバット!" /> |
| 49915 | 55282 | <part name="cart" interface="snes_cart"> |
| 55283 | ||
| 55284 | <feature name="slot" value="hirom" /> | |
| 49916 | 55285 | <dataarea name="rom" size="1572864"> |
| 49917 | 55286 | <rom name="sgt. saunders' combat! (japan).sfc" size="1572864" crc="da5888c7" sha1="27342ab63d1681272ea90a7e081e3ec654502b8a" offset="0x000000" /> |
| 49918 | 55287 | </dataarea> |
| r21545 | r21546 | |
| 49926 | 55295 | <year>1993</year> |
| 49927 | 55296 | <publisher>Data East</publisher> |
| 49928 | 55297 | <part name="cart" interface="snes_cart"> |
| 55298 | ||
| 55299 | <feature name="slot" value="lorom" /> | |
| 49929 | 55300 | <dataarea name="rom" size="1048576"> |
| 49930 | 55301 | <rom name="shadowrun (europe).sfc" size="1048576" crc="2af15f10" sha1="154557c548ed0d1f5abf271470193a1f9d8f9ce3" offset="0x000000" /> |
| 49931 | 55302 | </dataarea> |
| r21545 | r21546 | |
| 49939 | 55310 | <year>1993</year> |
| 49940 | 55311 | <publisher>Data East</publisher> |
| 49941 | 55312 | <part name="cart" interface="snes_cart"> |
| 55313 | ||
| 55314 | <feature name="slot" value="lorom" /> | |
| 49942 | 55315 | <dataarea name="rom" size="1048576"> |
| 49943 | 55316 | <rom name="shadowrun (germany).sfc" size="1048576" crc="e420e96f" sha1="3118192dd257c0666067bfb6797769f26bdf4489" offset="0x000000" /> |
| 49944 | 55317 | </dataarea> |
| r21545 | r21546 | |
| 49955 | 55328 | <info name="release" value="19940325" /> |
| 49956 | 55329 | <info name="alt_title" value="シャドウラン" /> |
| 49957 | 55330 | <part name="cart" interface="snes_cart"> |
| 55331 | ||
| 55332 | <feature name="slot" value="lorom" /> | |
| 49958 | 55333 | <dataarea name="rom" size="1310720"> |
| 49959 | 55334 | <rom name="shadowrun (japan).sfc" size="1310720" crc="efd4d741" sha1="498c94da28d4a6e9023a40f81e9ced0b525e5862" offset="0x000000" /> |
| 49960 | 55335 | </dataarea> |
| r21545 | r21546 | |
| 49968 | 55343 | <year>1993</year> |
| 49969 | 55344 | <publisher>Data East</publisher> |
| 49970 | 55345 | <part name="cart" interface="snes_cart"> |
| 55346 | ||
| 55347 | <feature name="slot" value="lorom" /> | |
| 49971 | 55348 | <dataarea name="rom" size="1048576"> |
| 49972 | 55349 | <rom name="shadowrun (sweden).sfc" size="1048576" crc="30829d8e" sha1="830464152553faada700bb93d4bb6b8975f79e0a" offset="0x000000" /> |
| 49973 | 55350 | </dataarea> |
| r21545 | r21546 | |
| 49981 | 55358 | <year>1993</year> |
| 49982 | 55359 | <publisher>Data East</publisher> |
| 49983 | 55360 | <part name="cart" interface="snes_cart"> |
| 55361 | ||
| 55362 | <feature name="slot" value="lorom" /> | |
| 49984 | 55363 | <dataarea name="rom" size="1048576"> |
| 49985 | 55364 | <rom name="shadowrun (usa) (beta).sfc" size="1048576" crc="85d4cda1" sha1="8ade311171b94f745a3007a85277f91b7a687765" offset="0x000000" /> |
| 49986 | 55365 | </dataarea> |
| r21545 | r21546 | |
| 49995 | 55374 | <publisher>Data East</publisher> |
| 49996 | 55375 | <info name="release" value="199305xx" /> |
| 49997 | 55376 | <part name="cart" interface="snes_cart"> |
| 55377 | ||
| 55378 | <feature name="slot" value="lorom" /> | |
| 49998 | 55379 | <dataarea name="rom" size="1048576"> |
| 49999 | 55380 | <rom name="shadowrun (usa).sfc" size="1048576" crc="3f34dff0" sha1="b04afb21c94dab5c8b982d0c133898dd5ec1d104" offset="0x000000" /> |
| 50000 | 55381 | </dataarea> |
| r21545 | r21546 | |
| 50008 | 55389 | <year>1993</year> |
| 50009 | 55390 | <publisher>Data East</publisher> |
| 50010 | 55391 | <part name="cart" interface="snes_cart"> |
| 55392 | ||
| 55393 | <feature name="slot" value="lorom" /> | |
| 50011 | 55394 | <dataarea name="rom" size="1048576"> |
| 50012 | 55395 | <rom name="shadowrun (europe) (sample).sfc" size="1048576" crc="d2ed4220" sha1="1f7a3d0a00772f84c6a6516e6f71cb0796012241" offset="0x000000" /> |
| 50013 | 55396 | </dataarea> |
| r21545 | r21546 | |
| 50024 | 55407 | <info name="release" value="19951117" /> |
| 50025 | 55408 | <info name="alt_title" value="上海 万里の長城" /> |
| 50026 | 55409 | <part name="cart" interface="snes_cart"> |
| 55410 | ||
| 55411 | <feature name="slot" value="lorom" /> | |
| 50027 | 55412 | <dataarea name="rom" size="1048576"> |
| 50028 | 55413 | <rom name="shanghai - banri no choujou (japan).sfc" size="1048576" crc="5e21f557" sha1="e5eb55b49d0697c5e7d0dc84d451c9bfa6ff9950" offset="0x000000" /> |
| 50029 | 55414 | </dataarea> |
| r21545 | r21546 | |
| 50035 | 55420 | <year>1993</year> |
| 50036 | 55421 | <publisher>Activision</publisher> |
| 50037 | 55422 | <part name="cart" interface="snes_cart"> |
| 55423 | ||
| 55424 | <feature name="slot" value="lorom" /> | |
| 50038 | 55425 | <dataarea name="rom" size="1048576"> |
| 50039 | 55426 | <rom name="shanghai ii - dragon's eye (europe).sfc" size="1048576" crc="45c2f934" sha1="a02811e013ca864562e1b1142ddc96fda04f4359" offset="0x000000" /> |
| 50040 | 55427 | </dataarea> |
| r21545 | r21546 | |
| 50047 | 55434 | <publisher>Activision</publisher> |
| 50048 | 55435 | <info name="release" value="199305xx" /> |
| 50049 | 55436 | <part name="cart" interface="snes_cart"> |
| 55437 | ||
| 55438 | <feature name="slot" value="lorom" /> | |
| 50050 | 55439 | <dataarea name="rom" size="1048576"> |
| 50051 | 55440 | <rom name="shanghai ii - dragon's eye (usa).sfc" size="1048576" crc="2fec70b6" sha1="ff06edbe0ccfe27f2f9cd0eac4011c9b79b5207f" offset="0x000000" /> |
| 50052 | 55441 | </dataarea> |
| r21545 | r21546 | |
| 50058 | 55447 | <year>1994</year> |
| 50059 | 55448 | <publisher>Electronic Arts</publisher> |
| 50060 | 55449 | <part name="cart" interface="snes_cart"> |
| 55450 | ||
| 55451 | <feature name="slot" value="hirom" /> | |
| 50061 | 55452 | <dataarea name="rom" size="2097152"> |
| 50062 | 55453 | <rom name="shaq fu (usa) (beta).sfc" size="2097152" crc="e14b00ef" sha1="5727214955566c22dc945823a04dc674ab69218d" offset="0x000000" /> |
| 50063 | 55454 | </dataarea> |
| r21545 | r21546 | |
| 50072 | 55463 | <info name="release" value="19950922" /> |
| 50073 | 55464 | <info name="alt_title" value="四柱推命学入門 真桃源郷" /> |
| 50074 | 55465 | <part name="cart" interface="snes_cart"> |
| 55466 | ||
| 55467 | <feature name="slot" value="lorom" /> | |
| 50075 | 55468 | <dataarea name="rom" size="1572864"> |
| 50076 | 55469 | <rom name="shichuusuimeigaku nyuumon - shin tougenkyou (japan).sfc" size="1572864" crc="52df0e2f" sha1="5de6332a919c0704cbb20e8297b770eb8517c32b" offset="0x000000" /> |
| 50077 | 55470 | </dataarea> |
| r21545 | r21546 | |
| 50086 | 55479 | <info name="release" value="19940408" /> |
| 50087 | 55480 | <info name="alt_title" value="紫炎 ザ・ブレイドチェイサー" /> |
| 50088 | 55481 | <part name="cart" interface="snes_cart"> |
| 55482 | ||
| 55483 | <feature name="slot" value="lorom" /> | |
| 50089 | 55484 | <dataarea name="rom" size="2097152"> |
| 50090 | 55485 | <rom name="shien - the blade chaser (japan).sfc" size="2097152" crc="17db8d06" sha1="6bb3f570443d04257e3eb276e84cf8ab60e81d48" offset="0x000000" /> |
| 50091 | 55486 | </dataarea> |
| r21545 | r21546 | |
| 50097 | 55492 | <year>1994</year> |
| 50098 | 55493 | <publisher>Vic Tokai</publisher> |
| 50099 | 55494 | <part name="cart" interface="snes_cart"> |
| 55495 | ||
| 55496 | <feature name="slot" value="lorom" /> | |
| 50100 | 55497 | <dataarea name="rom" size="2097152"> |
| 50101 | 55498 | <rom name="shien's revenge (usa) (beta).sfc" size="2097152" crc="c56d245f" sha1="03ab36ecbaf50f4c4d2ab040790aa0be9d1774e7" offset="0x000000" /> |
| 50102 | 55499 | </dataarea> |
| r21545 | r21546 | |
| 50110 | 55507 | <info name="release" value="199410xx" /> |
| 50111 | 55508 | <sharedfeat name="compatibility" value="NTSC"/> |
| 50112 | 55509 | <part name="cart" interface="snes_cart"> |
| 55510 | ||
| 55511 | <feature name="slot" value="lorom" /> | |
| 50113 | 55512 | <dataarea name="rom" size="2097152"> |
| 50114 | 55513 | <rom name="shien's revenge (usa).sfc" size="2097152" crc="5bb2e6c3" sha1="a2d864ae07a5f94678437f0ffce7badd39abada2" offset="0x000000" /> |
| 50115 | 55514 | </dataarea> |
| r21545 | r21546 | |
| 50124 | 55523 | <info name="release" value="19950331" /> |
| 50125 | 55524 | <info name="alt_title" value="史上最強リークセリエA エースストライカー" /> |
| 50126 | 55525 | <part name="cart" interface="snes_cart"> |
| 55526 | ||
| 55527 | <feature name="slot" value="lorom" /> | |
| 50127 | 55528 | <dataarea name="rom" size="1572864"> |
| 50128 | 55529 | <rom name="shijou saikyou league serie a - ace striker (japan).sfc" size="1572864" crc="1c73b9d1" sha1="78e426df4f9f74351f6aadc46b6c13c259a5fd3a" offset="0x000000" /> |
| 50129 | 55530 | </dataarea> |
| r21545 | r21546 | |
| 50140 | 55541 | <info name="release" value="19921228" /> |
| 50141 | 55542 | <info name="alt_title" value="史上最強のクイズ王決定戦スーパー" /> |
| 50142 | 55543 | <part name="cart" interface="snes_cart"> |
| 55544 | ||
| 55545 | <feature name="slot" value="lorom" /> | |
| 50143 | 55546 | <dataarea name="rom" size="1048576"> |
| 50144 | 55547 | <rom name="shijou saikyou no quiz ou ketteisen super (japan).sfc" size="1048576" crc="e6b9a402" sha1="aba01f3879be407a84c8eb9088061525e9c79d01" offset="0x000000" /> |
| 50145 | 55548 | </dataarea> |
| r21545 | r21546 | |
| 50156 | 55559 | <info name="release" value="19950707" /> |
| 50157 | 55560 | <info name="alt_title" value="史記英雄伝 ~人竜伝説~" /> |
| 50158 | 55561 | <part name="cart" interface="snes_cart"> |
| 55562 | ||
| 55563 | <feature name="slot" value="lorom" /> | |
| 50159 | 55564 | <dataarea name="rom" size="1572864"> |
| 50160 | 55565 | <rom name="shiki eiyuuden - jinryuu densetsu (japan).sfc" size="1572864" crc="4c2bea69" sha1="ebcb587dfe8ba85a98f8109f1c957f6f666f6dc4" offset="0x000000" /> |
| 50161 | 55566 | </dataarea> |
| r21545 | r21546 | |
| 50172 | 55577 | <info name="release" value="19941016" /> |
| 50173 | 55578 | <info name="alt_title" value="下野正希のフィッシング To バッシンク" /> |
| 50174 | 55579 | <part name="cart" interface="snes_cart"> |
| 55580 | ||
| 55581 | <feature name="slot" value="hirom" /> | |
| 50175 | 55582 | <dataarea name="rom" size="1048576"> |
| 50176 | 55583 | <rom name="shimono masaki no fishing to bassing (japan).sfc" size="1048576" crc="42ffd2d5" sha1="4ae6374caddb2563ec5b94bba0b4eeef924b2a9f" offset="0x000000" /> |
| 50177 | 55584 | </dataarea> |
| r21545 | r21546 | |
| 50188 | 55595 | <info name="release" value="19950707" /> |
| 50189 | 55596 | <info name="alt_title" value="真 一攫千金" /> |
| 50190 | 55597 | <part name="cart" interface="snes_cart"> |
| 55598 | ||
| 55599 | <feature name="slot" value="lorom" /> | |
| 50191 | 55600 | <dataarea name="rom" size="1048576"> |
| 50192 | 55601 | <rom name="shin ikkakusenkin (japan).sfc" size="1048576" crc="70e5a2ca" sha1="9475cade6cb5b71e7a7167bd354fe79ef3445ad8" offset="0x000000" /> |
| 50193 | 55602 | </dataarea> |
| r21545 | r21546 | |
| 50202 | 55611 | <info name="release" value="19960329" /> |
| 50203 | 55612 | <info name="alt_title" value="新機動戦記ガンダムW エンドレスデュエル" /> |
| 50204 | 55613 | <part name="cart" interface="snes_cart"> |
| 55614 | ||
| 55615 | <feature name="slot" value="lorom" /> | |
| 50205 | 55616 | <dataarea name="rom" size="2097152"> |
| 50206 | 55617 | <rom name="shin kidou senki gundam w - endless duel (japan).sfc" size="2097152" crc="c0aecdca" sha1="6710686b5a3d6620df9fd6a5820e1717afff2d95" offset="0x000000" /> |
| 50207 | 55618 | </dataarea> |
| r21545 | r21546 | |
| 50217 | 55628 | <info name="release" value="19921030" /> |
| 50218 | 55629 | <info name="alt_title" value="真・女神転生" /> |
| 50219 | 55630 | <part name="cart" interface="snes_cart"> |
| 55631 | ||
| 55632 | <feature name="slot" value="lorom" /> | |
| 50220 | 55633 | <dataarea name="rom" size="1572864"> |
| 50221 | 55634 | <rom name="shin megami tensei (japan) (rev 1).sfc" size="1572864" crc="a3d40a74" sha1="8166e1a1ff7812eea85b3225c1c866c151f516f7" offset="0x000000" /> |
| 50222 | 55635 | </dataarea> |
| r21545 | r21546 | |
| 50233 | 55646 | <info name="release" value="19940429" /> |
| 50234 | 55647 | <info name="alt_title" value="新・熱血硬派 くにおたち の挽歌" /> |
| 50235 | 55648 | <part name="cart" interface="snes_cart"> |
| 55649 | ||
| 55650 | <feature name="slot" value="lorom" /> | |
| 50236 | 55651 | <dataarea name="rom" size="2097152"> |
| 50237 | 55652 | <rom name="shin nekketsu kouha - kunio-tachi no banka (japan).sfc" size="2097152" crc="31be696c" sha1="5522830fec471f2e7b6456da426f198f8282af64" offset="0x000000" /> |
| 50238 | 55653 | </dataarea> |
| r21545 | r21546 | |
| 50247 | 55662 | <info name="release" value="19930914" /> |
| 50248 | 55663 | <info name="alt_title" value="新日本プロレスリング 超戦士 IN 闘強導夢FANTASTIC STORY" /> |
| 50249 | 55664 | <part name="cart" interface="snes_cart"> |
| 55665 | ||
| 55666 | <feature name="slot" value="lorom" /> | |
| 50250 | 55667 | <dataarea name="rom" size="2097152"> |
| 50251 | 55668 | <rom name="shin nihon pro wrestling - chou senshi in tokyo dome - fantastic story (japan).sfc" size="2097152" crc="58da330c" sha1="f1d2f781b4682a7e322ef6c249eeddaed7df5d3c" offset="0x000000" /> |
| 50252 | 55669 | </dataarea> |
| r21545 | r21546 | |
| 50260 | 55677 | <info name="release" value="19940812" /> |
| 50261 | 55678 | <info name="alt_title" value="新日本プロレスリング '94 バトル フィールト 闘強導夢" /> |
| 50262 | 55679 | <part name="cart" interface="snes_cart"> |
| 55680 | ||
| 55681 | <feature name="slot" value="lorom" /> | |
| 50263 | 55682 | <dataarea name="rom" size="2621440"> |
| 50264 | 55683 | <rom name="shin nihon pro wrestling kounin - '94 battlefield in tokyo dome (japan).sfc" size="2621440" crc="6cbbd019" sha1="844aa24c53c23a4a1cac94697a33be06fef210d4" offset="0x000000" /> |
| 50265 | 55684 | </dataarea> |
| r21545 | r21546 | |
| 50274 | 55693 | <info name="release" value="19950630" /> |
| 50275 | 55694 | <info name="alt_title" value="新日本プロレスリング'95 闘強導夢BATTLE7" /> |
| 50276 | 55695 | <part name="cart" interface="snes_cart"> |
| 55696 | ||
| 55697 | <feature name="slot" value="lorom" /> | |
| 50277 | 55698 | <dataarea name="rom" size="3145728"> |
| 50278 | 55699 | <rom name="shin nihon pro wrestling kounin - '95 tokyo dome battle 7 (japan).sfc" size="3145728" crc="a467c220" sha1="9783e11ff83e4f929367212f7c994beea9cc11f6" offset="0x000000" /> |
| 50279 | 55700 | </dataarea> |
| r21545 | r21546 | |
| 50288 | 55709 | <info name="release" value="19950421" /> |
| 50289 | 55710 | <info name="alt_title" value="新SD戦国伝 大将軍列伝" /> |
| 50290 | 55711 | <part name="cart" interface="snes_cart"> |
| 55712 | ||
| 55713 | <feature name="slot" value="lorom" /> | |
| 50291 | 55714 | <dataarea name="rom" size="1572864"> |
| 50292 | 55715 | <rom name="shin sd sengokuden - daishougun retsuden (japan).sfc" size="1572864" crc="ec2ccaf6" sha1="e60c44e908f6f0955dd8777d50ae8ddd7698fae9" offset="0x000000" /> |
| 50293 | 55716 | </dataarea> |
| r21545 | r21546 | |
| 50305 | 55728 | <info name="alt_title" value="新・将棋倶楽部" /> |
| 50306 | 55729 | <part name="cart" interface="snes_cart"> |
| 50307 | 55730 | <feature name="enhancement" value="SA1" /> |
| 55731 | ||
| 55732 | <feature name="slot" value="lorom_sa1" /> | |
| 50308 | 55733 | <dataarea name="rom" size="524288"> |
| 50309 | 55734 | <rom name="shin shougi club (japan).sfc" size="524288" crc="e0273e0e" sha1="44c13e3147a107a8b3248f3a389144b29638b91a" offset="0x000000" /> |
| 50310 | 55735 | </dataarea> |
| r21545 | r21546 | |
| 50322 | 55747 | <info name="alt_title" value="新スタートレック~大いなる遺産IFDの謎を追え~" /> |
| 50323 | 55748 | <sharedfeat name="compatibility" value="NTSC"/> |
| 50324 | 55749 | <part name="cart" interface="snes_cart"> |
| 55750 | ||
| 55751 | <feature name="slot" value="lorom" /> | |
| 50325 | 55752 | <dataarea name="rom" size="2621440"> |
| 50326 | 55753 | <rom name="shin star trek - ooinaru isan ifd no nazo o oe (japan).sfc" size="2621440" crc="34f09544" sha1="203d6085fe0d7510eab5fb8205cbe3e559d77491" offset="0x000000" /> |
| 50327 | 55754 | </dataarea> |
| r21545 | r21546 | |
| 50336 | 55763 | <info name="release" value="19930129" /> |
| 50337 | 55764 | <info name="alt_title" value="信長公記" /> |
| 50338 | 55765 | <part name="cart" interface="snes_cart"> |
| 55766 | ||
| 55767 | <feature name="slot" value="lorom" /> | |
| 50339 | 55768 | <dataarea name="rom" size="1048576"> |
| 50340 | 55769 | <rom name="shinchou kouki (japan).sfc" size="1048576" crc="5e1b435a" sha1="e6a8da842c850084bf328353ea2c8d8d001ae2de" offset="0x000000" /> |
| 50341 | 55770 | </dataarea> |
| r21545 | r21546 | |
| 50352 | 55781 | <info name="release" value="19950210" /> |
| 50353 | 55782 | <info name="alt_title" value="ザ・心理ゲーム2 ~マジカルトリップ~" /> |
| 50354 | 55783 | <part name="cart" interface="snes_cart"> |
| 55784 | ||
| 55785 | <feature name="slot" value="lorom" /> | |
| 50355 | 55786 | <dataarea name="rom" size="1048576"> |
| 50356 | 55787 | <rom name="shinri game 2, the - magical trip (japan).sfc" size="1048576" crc="426fc1a3" sha1="a89333e237c7cb5721fd5e125b299cffa1b0d1fe" offset="0x000000" /> |
| 50357 | 55788 | </dataarea> |
| r21545 | r21546 | |
| 50366 | 55797 | <info name="release" value="19950825" /> |
| 50367 | 55798 | <info name="alt_title" value="ザ・心理ゲーム3" /> |
| 50368 | 55799 | <part name="cart" interface="snes_cart"> |
| 55800 | ||
| 55801 | <feature name="slot" value="hirom" /> | |
| 50369 | 55802 | <dataarea name="rom" size="1048576"> |
| 50370 | 55803 | <rom name="shinri game 3, the (japan).sfc" size="1048576" crc="b51d79b4" sha1="0f685c234c6d1dc41bbd637e8f716da6fc795411" offset="0x000000" /> |
| 50371 | 55804 | </dataarea> |
| r21545 | r21546 | |
| 50380 | 55813 | <info name="release" value="19930326" /> |
| 50381 | 55814 | <info name="alt_title" value="The 心理ゲーム 悪魔のココロジー" /> |
| 50382 | 55815 | <part name="cart" interface="snes_cart"> |
| 55816 | ||
| 55817 | <feature name="slot" value="lorom" /> | |
| 50383 | 55818 | <dataarea name="rom" size="1048576"> |
| 50384 | 55819 | <rom name="shinri game, the - akuma no kokoroji (japan).sfc" size="1048576" crc="4ed29f52" sha1="c452005ad97a81426dc03a22cb0654dd65fffcc4" offset="0x000000" /> |
| 50385 | 55820 | </dataarea> |
| r21545 | r21546 | |
| 50396 | 55831 | <info name="release" value="19920319" /> |
| 50397 | 55832 | <info name="alt_title" value="新世紀GPXサイバーフォーミュラ" /> |
| 50398 | 55833 | <part name="cart" interface="snes_cart"> |
| 55834 | ||
| 55835 | <feature name="slot" value="lorom" /> | |
| 50399 | 55836 | <dataarea name="rom" size="1048576"> |
| 50400 | 55837 | <rom name="shinseiki gpx cyber formula (japan).sfc" size="1048576" crc="403ac1c6" sha1="52229d4ce3b028198a94f9f37ff78896449da659" offset="0x000000" /> |
| 50401 | 55838 | </dataarea> |
| r21545 | r21546 | |
| 50410 | 55847 | <info name="release" value="19930618" /> |
| 50411 | 55848 | <info name="alt_title" value="神聖紀オデッセリア" /> |
| 50412 | 55849 | <part name="cart" interface="snes_cart"> |
| 55850 | ||
| 55851 | <feature name="slot" value="lorom" /> | |
| 50413 | 55852 | <dataarea name="rom" size="1572864"> |
| 50414 | 55853 | <rom name="shinseiki odysselya (japan).sfc" size="1572864" crc="b01ee410" sha1="581de180568d85e4fd6f06c800caeff0e74d43fe" offset="0x000000" /> |
| 50415 | 55854 | </dataarea> |
| r21545 | r21546 | |
| 50426 | 55865 | <info name="release" value="19951006" /> |
| 50427 | 55866 | <info name="alt_title" value="神聖紀オデッセリアII" /> |
| 50428 | 55867 | <part name="cart" interface="snes_cart"> |
| 55868 | ||
| 55869 | <feature name="slot" value="lorom" /> | |
| 50429 | 55870 | <dataarea name="rom" size="3145728"> |
| 50430 | 55871 | <rom name="shinseiki odysselya ii (japan).sfc" size="3145728" crc="f253ec83" sha1="dcbc42a7385d25a1b35791d2a1088a8d46f873bb" offset="0x000000" /> |
| 50431 | 55872 | </dataarea> |
| r21545 | r21546 | |
| 50442 | 55883 | <info name="release" value="19950602" /> |
| 50443 | 55884 | <info name="alt_title" value="真髄対局囲碁 碁仙人" /> |
| 50444 | 55885 | <part name="cart" interface="snes_cart"> |
| 55886 | ||
| 55887 | <feature name="slot" value="lorom" /> | |
| 50445 | 55888 | <dataarea name="rom" size="1048576"> |
| 50446 | 55889 | <rom name="shinzui taikyoku igo - go sennin (japan).sfc" size="1048576" crc="13fcc999" sha1="ed61e7df9675dbe93c77540c97ce51b5c3f60998" offset="0x000000" /> |
| 50447 | 55890 | </dataarea> |
| r21545 | r21546 | |
| 50458 | 55901 | <info name="release" value="19951027" /> |
| 50459 | 55902 | <info name="alt_title" value="白いリングへ トゥインクル・リトル・スター" /> |
| 50460 | 55903 | <part name="cart" interface="snes_cart"> |
| 55904 | ||
| 55905 | <feature name="slot" value="lorom" /> | |
| 50461 | 55906 | <dataarea name="rom" size="1572864"> |
| 50462 | 55907 | <rom name="shiroi ring e - twinkle little star (japan).sfc" size="1572864" crc="534824f0" sha1="efb2756402dda3a0e5e5285f6f16dd6e0b773d9a" offset="0x000000" /> |
| 50463 | 55908 | </dataarea> |
| r21545 | r21546 | |
| 50474 | 55919 | <info name="release" value="19920807" /> |
| 50475 | 55920 | <info name="alt_title" value="初代 熱血硬派くにおくん" /> |
| 50476 | 55921 | <part name="cart" interface="snes_cart"> |
| 55922 | ||
| 55923 | <feature name="slot" value="lorom" /> | |
| 50477 | 55924 | <dataarea name="rom" size="1048576"> |
| 50478 | 55925 | <rom name="shodai nekketsu kouha kunio-kun (japan).sfc" size="1048576" crc="56c05339" sha1="a77a297fc858cd78b7219dbf83a9934fe3eccc7f" offset="0x000000" /> |
| 50479 | 55926 | </dataarea> |
| r21545 | r21546 | |
| 50490 | 55937 | <info name="release" value="19950428" /> |
| 50491 | 55938 | <info name="alt_title" value="初段位認定 初段プロ麻雀" /> |
| 50492 | 55939 | <part name="cart" interface="snes_cart"> |
| 55940 | ||
| 55941 | <feature name="slot" value="lorom" /> | |
| 50493 | 55942 | <dataarea name="rom" size="524288"> |
| 50494 | 55943 | <rom name="shodani nintei - shodan pro mahjong (japan).sfc" size="524288" crc="7557c1b6" sha1="4a66bdfa9c98105e25b18104210e4624c31a448d" offset="0x000000" /> |
| 50495 | 55944 | </dataarea> |
| r21545 | r21546 | |
| 50506 | 55955 | <info name="release" value="19950224" /> |
| 50507 | 55956 | <info name="alt_title" value="本格派対局将棋 将棋倶楽部" /> |
| 50508 | 55957 | <part name="cart" interface="snes_cart"> |
| 55958 | ||
| 55959 | <feature name="slot" value="hirom" /> | |
| 50509 | 55960 | <dataarea name="rom" size="262144"> |
| 50510 | 55961 | <rom name="shougi club (japan).sfc" size="262144" crc="f9c79b45" sha1="ea2f12ed23273e5ca2b2e2305e0cb9b80791132f" offset="0x000000" /> |
| 50511 | 55962 | </dataarea> |
| r21545 | r21546 | |
| 50520 | 55971 | <info name="release" value="19931029" /> |
| 50521 | 55972 | <info name="alt_title" value="将棋 風林火山" /> |
| 50522 | 55973 | <part name="cart" interface="snes_cart"> |
| 55974 | ||
| 55975 | <feature name="slot" value="lorom" /> | |
| 50523 | 55976 | <dataarea name="rom" size="1048576"> |
| 50524 | 55977 | <rom name="shougi fuurinkazan (japan).sfc" size="1048576" crc="3d456eed" sha1="bf3cbc5e9b9de31e262ec7a3b889344ec0e329a8" offset="0x000000" /> |
| 50525 | 55978 | </dataarea> |
| r21545 | r21546 | |
| 50537 | 55990 | <info name="alt_title" value="将棋最強" /> |
| 50538 | 55991 | <part name="cart" interface="snes_cart"> |
| 50539 | 55992 | <feature name="enhancement" value="SA1" /> |
| 55993 | ||
| 55994 | <feature name="slot" value="lorom_sa1" /> | |
| 50540 | 55995 | <dataarea name="rom" size="1048576"> |
| 50541 | 55996 | <rom name="shougi saikyou (japan).sfc" size="1048576" crc="12c42bc0" sha1="8a4e90551877f43011e2773be8e04acb5696e718" offset="0x000000" /> |
| 50542 | 55997 | </dataarea> |
| r21545 | r21546 | |
| 50554 | 56009 | <info name="alt_title" value="将棋最強II 実戦対局編" /> |
| 50555 | 56010 | <part name="cart" interface="snes_cart"> |
| 50556 | 56011 | <feature name="enhancement" value="SA1" /> |
| 56012 | ||
| 56013 | <feature name="slot" value="lorom_sa1" /> | |
| 50557 | 56014 | <dataarea name="rom" size="524288"> |
| 50558 | 56015 | <rom name="shougi saikyou ii - jissen taikyoku hen (japan).sfc" size="524288" crc="e57505d8" sha1="09ac9e227911c381562a3498114cac850a421c19" offset="0x000000" /> |
| 50559 | 56016 | </dataarea> |
| r21545 | r21546 | |
| 50570 | 56027 | <info name="release" value="19951222" /> |
| 50571 | 56028 | <info name="alt_title" value="将棋三昧" /> |
| 50572 | 56029 | <part name="cart" interface="snes_cart"> |
| 56030 | ||
| 56031 | <feature name="slot" value="lorom" /> | |
| 50573 | 56032 | <dataarea name="rom" size="1048576"> |
| 50574 | 56033 | <rom name="shougi zanmai (japan).sfc" size="1048576" crc="3ba30cc5" sha1="cc8173746380b8bda938bc1ed979804061a6740f" offset="0x000000" /> |
| 50575 | 56034 | </dataarea> |
| r21545 | r21546 | |
| 50586 | 56045 | <info name="release" value="19941028" /> |
| 50587 | 56046 | <info name="alt_title" value="少年忍者サスケ" /> |
| 50588 | 56047 | <part name="cart" interface="snes_cart"> |
| 56048 | ||
| 56049 | <feature name="slot" value="lorom" /> | |
| 50589 | 56050 | <dataarea name="rom" size="1572864"> |
| 50590 | 56051 | <rom name="shounen ninja sasuke (japan).sfc" size="1572864" crc="c2d10e95" sha1="7c20c21da24876efefd4ba915929c265ebaa6ca5" offset="0x000000" /> |
| 50591 | 56052 | </dataarea> |
| r21545 | r21546 | |
| 50599 | 56060 | <year>1993</year> |
| 50600 | 56061 | <publisher>Data East</publisher> |
| 50601 | 56062 | <part name="cart" interface="snes_cart"> |
| 56063 | ||
| 56064 | <feature name="slot" value="lorom" /> | |
| 50602 | 56065 | <dataarea name="rom" size="1048576"> |
| 50603 | 56066 | <rom name="side pocket (europe).sfc" size="1048576" crc="3352a27c" sha1="7d7b3061e1eb8a5ab683f0d550e624914404ca33" offset="0x000000" /> |
| 50604 | 56067 | </dataarea> |
| r21545 | r21546 | |
| 50613 | 56076 | <info name="release" value="19940318" /> |
| 50614 | 56077 | <info name="alt_title" value="サイドポケット" /> |
| 50615 | 56078 | <part name="cart" interface="snes_cart"> |
| 56079 | ||
| 56080 | <feature name="slot" value="lorom" /> | |
| 50616 | 56081 | <dataarea name="rom" size="1048576"> |
| 50617 | 56082 | <rom name="side pocket (japan).sfc" size="1048576" crc="0e074268" sha1="87644e8bf4444719c00c67fc4fe6e9d08aee1297" offset="0x000000" /> |
| 50618 | 56083 | </dataarea> |
| r21545 | r21546 | |
| 50627 | 56092 | <info name="release" value="19930226" /> |
| 50628 | 56093 | <info name="alt_title" value="シムアント" /> |
| 50629 | 56094 | <part name="cart" interface="snes_cart"> |
| 56095 | ||
| 56096 | <feature name="slot" value="lorom" /> | |
| 50630 | 56097 | <dataarea name="rom" size="1048576"> |
| 50631 | 56098 | <rom name="simant (japan).sfc" size="1048576" crc="34b99a85" sha1="1fbbc2749d3c3f74a1f163a28dff0177e6a32344" offset="0x000000" /> |
| 50632 | 56099 | </dataarea> |
| r21545 | r21546 | |
| 50640 | 56107 | <year>1993</year> |
| 50641 | 56108 | <publisher>Maxis</publisher> |
| 50642 | 56109 | <part name="cart" interface="snes_cart"> |
| 56110 | ||
| 56111 | <feature name="slot" value="lorom" /> | |
| 50643 | 56112 | <dataarea name="rom" size="1048576"> |
| 50644 | 56113 | <rom name="simant (usa) (beta).sfc" size="1048576" crc="9d5feb20" sha1="27672b67ee5f3beb52ae236de7d39be2509d9996" offset="0x000000" /> |
| 50645 | 56114 | </dataarea> |
| r21545 | r21546 | |
| 50653 | 56122 | <year>1991</year> |
| 50654 | 56123 | <publisher>Nintendo</publisher> |
| 50655 | 56124 | <part name="cart" interface="snes_cart"> |
| 56125 | ||
| 56126 | <feature name="slot" value="lorom" /> | |
| 50656 | 56127 | <dataarea name="rom" size="524288"> |
| 50657 | 56128 | <rom name="simcity (europe).sfc" size="524288" crc="81d85180" sha1="2a3c347a779a8e438736a214a169a49faa44e7a5" offset="0x000000" /> |
| 50658 | 56129 | </dataarea> |
| r21545 | r21546 | |
| 50667 | 56138 | <publisher>Nintendo</publisher> |
| 50668 | 56139 | <info name="release" value="199108xx" /> |
| 50669 | 56140 | <part name="cart" interface="snes_cart"> |
| 56141 | ||
| 56142 | <feature name="slot" value="lorom" /> | |
| 50670 | 56143 | <dataarea name="rom" size="524288"> |
| 50671 | 56144 | <rom name="simcity (usa).sfc" size="524288" crc="8aedd3a1" sha1="9140ae08d62a562ccb98576ba89f381f9f4f1439" offset="0x000000" /> |
| 50672 | 56145 | </dataarea> |
| r21545 | r21546 | |
| 50681 | 56154 | <publisher>Black Pearl</publisher> |
| 50682 | 56155 | <info name="release" value="199611xx" /> |
| 50683 | 56156 | <part name="cart" interface="snes_cart"> |
| 56157 | ||
| 56158 | <feature name="slot" value="hirom" /> | |
| 50684 | 56159 | <dataarea name="rom" size="2097152"> |
| 50685 | 56160 | <rom name="simcity 2000 (usa).sfc" size="2097152" crc="2d5dc011" sha1="3947efbfbdc64788b23528624370c9e33abf7712" offset="0x000000" /> |
| 50686 | 56161 | </dataarea> |
| r21545 | r21546 | |
| 50695 | 56170 | <publisher>FCI</publisher> |
| 50696 | 56171 | <info name="release" value="199302xx" /> |
| 50697 | 56172 | <part name="cart" interface="snes_cart"> |
| 56173 | ||
| 56174 | <feature name="slot" value="lorom" /> | |
| 50698 | 56175 | <dataarea name="rom" size="1048576"> |
| 50699 | 56176 | <rom name="simearth - the living planet (usa).sfc" size="1048576" crc="7fa5b218" sha1="115e3b9c5cd3030754c71c568a0e24f6e46454cf" offset="0x000000" /> |
| 50700 | 56177 | </dataarea> |
| r21545 | r21546 | |
| 50711 | 56188 | <info name="release" value="199209xx" /> |
| 50712 | 56189 | <info name="alt_title" value="バートの不思議な夢の大冒険" /> |
| 50713 | 56190 | <part name="cart" interface="snes_cart"> |
| 56191 | ||
| 56192 | <feature name="slot" value="lorom" /> | |
| 50714 | 56193 | <dataarea name="rom" size="1048576"> |
| 50715 | 56194 | <rom name="simpsons, the - bart no fushigi na yume no daibouken (japan).sfc" size="1048576" crc="6598790a" sha1="9098e80122eae6503a5c15169a48993302242eb6" offset="0x000000" /> |
| 50716 | 56195 | </dataarea> |
| r21545 | r21546 | |
| 50722 | 56201 | <year>1992</year> |
| 50723 | 56202 | <publisher>Acclaim Entertainment</publisher> |
| 50724 | 56203 | <part name="cart" interface="snes_cart"> |
| 56204 | ||
| 56205 | <feature name="slot" value="lorom" /> | |
| 50725 | 56206 | <dataarea name="rom" size="1048576"> |
| 50726 | 56207 | <rom name="simpsons, the - bart's nightmare (europe).sfc" size="1048576" crc="87328a40" sha1="9f2fa618bb1630267995658b7a3835c39dc0b3bb" offset="0x000000" /> |
| 50727 | 56208 | </dataarea> |
| r21545 | r21546 | |
| 50736 | 56217 | <info name="release" value="19950428" /> |
| 50737 | 56218 | <info name="alt_title" value="シミュレーションプロ野球" /> |
| 50738 | 56219 | <part name="cart" interface="snes_cart"> |
| 56220 | ||
| 56221 | <feature name="slot" value="lorom" /> | |
| 50739 | 56222 | <dataarea name="rom" size="2097152"> |
| 50740 | 56223 | <rom name="simulation pro yakyuu (japan).sfc" size="2097152" crc="24c9b924" sha1="2640161c1c78e4b6c5c6f2e26ac831e789bced62" offset="0x000000" /> |
| 50741 | 56224 | </dataarea> |
| r21545 | r21546 | |
| 50749 | 56232 | <year>1996</year> |
| 50750 | 56233 | <publisher>Titus</publisher> |
| 50751 | 56234 | <part name="cart" interface="snes_cart"> |
| 56235 | ||
| 56236 | <feature name="slot" value="lorom" /> | |
| 50752 | 56237 | <dataarea name="rom" size="524288"> |
| 50753 | 56238 | <rom name="sink or swim (europe).sfc" size="524288" crc="cf824401" sha1="9211f8c140b257b352f707ed0c839041f4c98194" offset="0x000000" /> |
| 50754 | 56239 | </dataarea> |
| r21545 | r21546 | |
| 50761 | 56246 | <publisher>Titus</publisher> |
| 50762 | 56247 | <info name="release" value="199601xx" /> |
| 50763 | 56248 | <part name="cart" interface="snes_cart"> |
| 56249 | ||
| 56250 | <feature name="slot" value="lorom" /> | |
| 50764 | 56251 | <dataarea name="rom" size="524288"> |
| 50765 | 56252 | <rom name="sink or swim (usa).sfc" size="524288" crc="dd329f85" sha1="1f55e0541297d9b95035614728fae08b3fc80614" offset="0x000000" /> |
| 50766 | 56253 | </dataarea> |
| r21545 | r21546 | |
| 50776 | 56263 | <info name="alt_title" value="スキーパラダイス WITH スノーボート" /> |
| 50777 | 56264 | <sharedfeat name="compatibility" value="NTSC"/> |
| 50778 | 56265 | <part name="cart" interface="snes_cart"> |
| 56266 | ||
| 56267 | <feature name="slot" value="lorom" /> | |
| 50779 | 56268 | <dataarea name="rom" size="1048576"> |
| 50780 | 56269 | <rom name="ski paradise with snowboard (japan).sfc" size="1048576" crc="dbb603d4" sha1="bd26e09cfd2efa05d7a2b99b376815d011f48930" offset="0x000000" /> |
| 50781 | 56270 | </dataarea> |
| r21545 | r21546 | |
| 50787 | 56276 | <year>1992</year> |
| 50788 | 56277 | <publisher>ASC Games</publisher> |
| 50789 | 56278 | <part name="cart" interface="snes_cart"> |
| 56279 | ||
| 56280 | <feature name="slot" value="lorom" /> | |
| 50790 | 56281 | <dataarea name="rom" size="524288"> |
| 50791 | 56282 | <rom name="skuljagger - revolt of the westicans (usa) (beta).sfc" size="524288" crc="f320424a" sha1="208f2befd90661102d128614057427602d45b205" offset="0x000000" /> |
| 50792 | 56283 | </dataarea> |
| r21545 | r21546 | |
| 50801 | 56292 | <publisher>ASC Games</publisher> |
| 50802 | 56293 | <info name="release" value="199210xx" /> |
| 50803 | 56294 | <part name="cart" interface="snes_cart"> |
| 56295 | ||
| 56296 | <feature name="slot" value="lorom" /> | |
| 50804 | 56297 | <dataarea name="rom" size="524288"> |
| 50805 | 56298 | <rom name="skuljagger - revolt of the westicans (usa).sfc" size="524288" crc="e58a6d01" sha1="605e4dbaeda59437f2330d50e3ff58c7fd9550ea" offset="0x000000" /> |
| 50806 | 56299 | </dataarea> |
| r21545 | r21546 | |
| 50812 | 56305 | <year>1994</year> |
| 50813 | 56306 | <publisher>Sony Imagesoft</publisher> |
| 50814 | 56307 | <part name="cart" interface="snes_cart"> |
| 56308 | ||
| 56309 | <feature name="slot" value="lorom" /> | |
| 50815 | 56310 | <dataarea name="rom" size="1048576"> |
| 50816 | 56311 | <rom name="skyblazer (usa) (beta) (alt 1).sfc" size="1048576" crc="1594a363" sha1="7aae012dec1a31a9230859eb0e949216410cf302" offset="0x000000" /> |
| 50817 | 56312 | </dataarea> |
| r21545 | r21546 | |
| 50823 | 56318 | <year>1994</year> |
| 50824 | 56319 | <publisher>Sony Imagesoft</publisher> |
| 50825 | 56320 | <part name="cart" interface="snes_cart"> |
| 56321 | ||
| 56322 | <feature name="slot" value="lorom" /> | |
| 50826 | 56323 | <dataarea name="rom" size="1048576"> |
| 50827 | 56324 | <rom name="skyblazer (usa) (beta).sfc" size="1048576" crc="cef3e26c" sha1="526ee59e45c796c4f251067c718c6d73ebcff934" offset="0x000000" /> |
| 50828 | 56325 | </dataarea> |
| r21545 | r21546 | |
| 50837 | 56334 | <info name="release" value="19940708" /> |
| 50838 | 56335 | <info name="alt_title" value="スラップスティック" /> |
| 50839 | 56336 | <part name="cart" interface="snes_cart"> |
| 56337 | ||
| 56338 | <feature name="slot" value="hirom" /> | |
| 50840 | 56339 | <dataarea name="rom" size="1572864"> |
| 50841 | 56340 | <rom name="slap stick (japan).sfc" size="1572864" crc="53fb163b" sha1="af9bcfaa13d2cdbed7d946fcb68e7028210a2489" offset="0x000000" /> |
| 50842 | 56341 | </dataarea> |
| r21545 | r21546 | |
| 50850 | 56349 | <year>1993</year> |
| 50851 | 56350 | <publisher>Virgin Interactive</publisher> |
| 50852 | 56351 | <part name="cart" interface="snes_cart"> |
| 56352 | ||
| 56353 | <feature name="slot" value="lorom" /> | |
| 50853 | 56354 | <dataarea name="rom" size="1048576"> |
| 50854 | 56355 | <rom name="smash tennis (europe) (beta).sfc" size="1048576" crc="3ccba79c" sha1="20f4677fff716e977a6d93815f3fbefed1b26306" offset="0x000000" /> |
| 50855 | 56356 | </dataarea> |
| r21545 | r21546 | |
| 50862 | 56363 | <publisher>Virgin Interactive</publisher> |
| 50863 | 56364 | <sharedfeat name="compatibility" value="PAL"/> |
| 50864 | 56365 | <part name="cart" interface="snes_cart"> |
| 56366 | ||
| 56367 | <feature name="slot" value="lorom" /> | |
| 50865 | 56368 | <dataarea name="rom" size="1048576"> |
| 50866 | 56369 | <rom name="smash tennis (europe).sfc" size="1048576" crc="6f7d1745" sha1="c1a782a4012e15c33b04d61c92144eab3db1fdee" offset="0x000000" /> |
| 50867 | 56370 | </dataarea> |
| r21545 | r21546 | |
| 50873 | 56376 | <year>1994</year> |
| 50874 | 56377 | <publisher>Infogrames</publisher> |
| 50875 | 56378 | <part name="cart" interface="snes_cart"> |
| 56379 | ||
| 56380 | <feature name="slot" value="lorom" /> | |
| 50876 | 56381 | <dataarea name="rom" size="1048576"> |
| 50877 | 56382 | <rom name="smurfs, the (europe) (en,fr,de,es,it).sfc" size="1048576" crc="2ae148d6" sha1="371b0e8329eb48eba1caeb8b8a051fea240282bd" offset="0x000000" /> |
| 50878 | 56383 | </dataarea> |
| r21545 | r21546 | |
| 50887 | 56392 | <info name="release" value="19950519" /> |
| 50888 | 56393 | <info name="alt_title" value="スヌーピーコンサート" /> |
| 50889 | 56394 | <part name="cart" interface="snes_cart"> |
| 56395 | ||
| 56396 | <feature name="slot" value="hirom" /> | |
| 50890 | 56397 | <dataarea name="rom" size="2097152"> |
| 50891 | 56398 | <rom name="snoopy concert (japan).sfc" size="2097152" crc="3836a202" sha1="30b36036a2aeb59f9d477a2f630800352929b194" offset="0x000000" /> |
| 50892 | 56399 | </dataarea> |
| r21545 | r21546 | |
| 50899 | 56406 | <publisher>American Softworks</publisher> |
| 50900 | 56407 | <info name="release" value="199410xx" /> |
| 50901 | 56408 | <part name="cart" interface="snes_cart"> |
| 56409 | ||
| 56410 | <feature name="slot" value="lorom" /> | |
| 50902 | 56411 | <dataarea name="rom" size="1048576"> |
| 50903 | 56412 | <rom name="snow white in happily ever after (usa).sfc" size="1048576" crc="d68d1ab3" sha1="ffb0baaec4318287359307932683721bb18fa568" offset="0x000000" /> |
| 50904 | 56413 | </dataarea> |
| r21545 | r21546 | |
| 50911 | 56420 | <publisher>Ocean</publisher> |
| 50912 | 56421 | <sharedfeat name="compatibility" value="PAL"/> |
| 50913 | 56422 | <part name="cart" interface="snes_cart"> |
| 56423 | ||
| 56424 | <feature name="slot" value="lorom" /> | |
| 50914 | 56425 | <dataarea name="rom" size="1310720"> |
| 50915 | 56426 | <rom name="soccer kid (europe) (en,fr,de,es,it).sfc" size="1310720" crc="2a9966c0" sha1="1560651300a09b2724365b0b558d13ba320099f9" offset="0x000000" /> |
| 50916 | 56427 | </dataarea> |
| r21545 | r21546 | |
| 50922 | 56433 | <year>1993</year> |
| 50923 | 56434 | <publisher>Yanoman Games</publisher> |
| 50924 | 56435 | <part name="cart" interface="snes_cart"> |
| 56436 | ||
| 56437 | <feature name="slot" value="lorom" /> | |
| 50925 | 56438 | <dataarea name="rom" size="1572864"> |
| 50926 | 56439 | <rom name="soccer kid (japan) (beta).sfc" size="1572864" crc="d2938bdf" sha1="0febe3fadf3c6bee5408c56140fb4a87949701b8" offset="0x000000" /> |
| 50927 | 56440 | </dataarea> |
| r21545 | r21546 | |
| 50936 | 56449 | <info name="release" value="19931229" /> |
| 50937 | 56450 | <info name="alt_title" value="サッカーキッド" /> |
| 50938 | 56451 | <part name="cart" interface="snes_cart"> |
| 56452 | ||
| 56453 | <feature name="slot" value="lorom" /> | |
| 50939 | 56454 | <dataarea name="rom" size="1310720"> |
| 50940 | 56455 | <rom name="soccer kid (japan).sfc" size="1310720" crc="a39c674e" sha1="44481022ecc20d521a0d4b1ebe80a6f915b6ef58" offset="0x000000" /> |
| 50941 | 56456 | </dataarea> |
| r21545 | r21546 | |
| 50948 | 56463 | <publisher>Capcom</publisher> |
| 50949 | 56464 | <sharedfeat name="compatibility" value="PAL"/> |
| 50950 | 56465 | <part name="cart" interface="snes_cart"> |
| 56466 | ||
| 56467 | <feature name="slot" value="lorom" /> | |
| 50951 | 56468 | <dataarea name="rom" size="1572864"> |
| 50952 | 56469 | <rom name="soccer shootout (europe).sfc" size="1572864" crc="bbcd16f4" sha1="4ad0793c4b1c598ad5611670a9eaf5bf8e7eb148" offset="0x000000" /> |
| 50953 | 56470 | </dataarea> |
| r21545 | r21546 | |
| 50960 | 56477 | <publisher>Spectrum Holobyte</publisher> |
| 50961 | 56478 | <info name="release" value="199312xx" /> |
| 50962 | 56479 | <part name="cart" interface="snes_cart"> |
| 56480 | ||
| 56481 | <feature name="slot" value="hirom" /> | |
| 50963 | 56482 | <dataarea name="rom" size="1572864"> |
| 50964 | 56483 | <rom name="soldiers of fortune (usa).sfc" size="1572864" crc="cf719a93" sha1="90440d74aa01c4ae8a86c56d092263f6c9fa0d42" offset="0x000000" /> |
| 50965 | 56484 | </dataarea> |
| r21545 | r21546 | |
| 50974 | 56493 | <info name="release" value="19970328" /> |
| 50975 | 56494 | <info name="alt_title" value="ソリッドランナー" /> |
| 50976 | 56495 | <part name="cart" interface="snes_cart"> |
| 56496 | ||
| 56497 | <feature name="slot" value="lorom" /> | |
| 50977 | 56498 | <dataarea name="rom" size="3145728"> |
| 50978 | 56499 | <rom name="solid runner (japan).sfc" size="3145728" crc="b907bb27" sha1="e46a3bc826f0a5cbc2300913b7f9cc1d5ebe537b" offset="0x000000" /> |
| 50979 | 56500 | </dataarea> |
| r21545 | r21546 | |
| 50990 | 56511 | <info name="release" value="19931112" /> |
| 50991 | 56512 | <info name="alt_title" value="ソルスティスII" /> |
| 50992 | 56513 | <part name="cart" interface="snes_cart"> |
| 56514 | ||
| 56515 | <feature name="slot" value="lorom" /> | |
| 50993 | 56516 | <dataarea name="rom" size="1048576"> |
| 50994 | 56517 | <rom name="solstice ii (japan).sfc" size="1048576" crc="21d280f8" sha1="1003e952d151bda8d69714df51e2595eab96f9dd" offset="0x000000" /> |
| 50995 | 56518 | </dataarea> |
| r21545 | r21546 | |
| 51006 | 56529 | <info name="release" value="19921127" /> |
| 51007 | 56530 | <info name="alt_title" value="ソングマスター" /> |
| 51008 | 56531 | <part name="cart" interface="snes_cart"> |
| 56532 | ||
| 56533 | <feature name="slot" value="lorom" /> | |
| 51009 | 56534 | <dataarea name="rom" size="1048576"> |
| 51010 | 56535 | <rom name="song master (japan).sfc" size="1048576" crc="4fa5fc25" sha1="656fdeea71f823ba62ba604b412e86a18c55a838" offset="0x000000" /> |
| 51011 | 56536 | </dataarea> |
| r21545 | r21546 | |
| 51019 | 56544 | <year>1993</year> |
| 51020 | 56545 | <publisher>Taito</publisher> |
| 51021 | 56546 | <part name="cart" interface="snes_cart"> |
| 56547 | ||
| 56548 | <feature name="slot" value="lorom" /> | |
| 51022 | 56549 | <dataarea name="rom" size="1048576"> |
| 51023 | 56550 | <rom name="sonic blast man (europe).sfc" size="1048576" crc="5441f25b" sha1="d72fff74e8c779746b2ff37a1ec343ea19026b37" offset="0x000000" /> |
| 51024 | 56551 | </dataarea> |
| r21545 | r21546 | |
| 51033 | 56560 | <info name="release" value="19920925" /> |
| 51034 | 56561 | <info name="alt_title" value="ソニックブラストマン" /> |
| 51035 | 56562 | <part name="cart" interface="snes_cart"> |
| 56563 | ||
| 56564 | <feature name="slot" value="lorom" /> | |
| 51036 | 56565 | <dataarea name="rom" size="1048576"> |
| 51037 | 56566 | <rom name="sonic blast man (japan).sfc" size="1048576" crc="be523800" sha1="ced0eecf48675d3db8fc1e5a7c3d4107f52cb0f9" offset="0x000000" /> |
| 51038 | 56567 | </dataarea> |
| r21545 | r21546 | |
| 51045 | 56574 | <publisher>Taito</publisher> |
| 51046 | 56575 | <info name="release" value="199302xx" /> |
| 51047 | 56576 | <part name="cart" interface="snes_cart"> |
| 56577 | ||
| 56578 | <feature name="slot" value="lorom" /> | |
| 51048 | 56579 | <dataarea name="rom" size="1048576"> |
| 51049 | 56580 | <rom name="sonic blast man (usa).sfc" size="1048576" crc="8886396e" sha1="9e153eda423295806b3b7384d0a73e2630d1c314" offset="0x000000" /> |
| 51050 | 56581 | </dataarea> |
| r21545 | r21546 | |
| 51059 | 56590 | <info name="release" value="19940318" /> |
| 51060 | 56591 | <info name="alt_title" value="ソニックブラストマンII" /> |
| 51061 | 56592 | <part name="cart" interface="snes_cart"> |
| 56593 | ||
| 56594 | <feature name="slot" value="hirom" /> | |
| 51062 | 56595 | <dataarea name="rom" size="1572864"> |
| 51063 | 56596 | <rom name="sonic blast man ii (japan).sfc" size="1572864" crc="e7df3216" sha1="f38bc8e8dc0a5620a41bb0dd591624a8475df264" offset="0x000000" /> |
| 51064 | 56597 | </dataarea> |
| r21545 | r21546 | |
| 51073 | 56606 | <info name="release" value="19930730" /> |
| 51074 | 56607 | <info name="alt_title" value="ソニックウイングス" /> |
| 51075 | 56608 | <part name="cart" interface="snes_cart"> |
| 56609 | ||
| 56610 | <feature name="slot" value="lorom" /> | |
| 51076 | 56611 | <dataarea name="rom" size="1310720"> |
| 51077 | 56612 | <rom name="sonic wings (japan).sfc" size="1310720" crc="cfe75bcb" sha1="9c5ad2e322a4adeb2a5545c13f96ae59f7f53519" offset="0x000000" /> |
| 51078 | 56613 | </dataarea> |
| r21545 | r21546 | |
| 51088 | 56623 | <info name="alt_title" value="それ行け エビス丸からくり迷路 消 えたゴエモンの謎!!" /> |
| 51089 | 56624 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51090 | 56625 | <part name="cart" interface="snes_cart"> |
| 56626 | ||
| 56627 | <feature name="slot" value="lorom" /> | |
| 51091 | 56628 | <dataarea name="rom" size="1048576"> |
| 51092 | 56629 | <rom name="soreyuke ebisumaru karakuri meiro - kieta goemon no nazo!! (japan).sfc" size="1048576" crc="885fb1b9" sha1="51e1b12190103c102c39762abac71803311d7bef" offset="0x000000" /> |
| 51093 | 56630 | </dataarea> |
| r21545 | r21546 | |
| 51100 | 56637 | <publisher>Vic Tokai</publisher> |
| 51101 | 56638 | <info name="release" value="199404xx" /> |
| 51102 | 56639 | <part name="cart" interface="snes_cart"> |
| 56640 | ||
| 56641 | <feature name="slot" value="lorom" /> | |
| 51103 | 56642 | <dataarea name="rom" size="1048576"> |
| 51104 | 56643 | <rom name="sos (usa).sfc" size="1048576" crc="09ae53f5" sha1="0b793c19ee452b12d3f4ecb12c1c24f889b68671" offset="0x000000" /> |
| 51105 | 56644 | </dataarea> |
| r21545 | r21546 | |
| 51114 | 56653 | <info name="release" value="19941028" /> |
| 51115 | 56654 | <info name="alt_title" value="卒業番外篇 ねぇ麻雀しよ!" /> |
| 51116 | 56655 | <part name="cart" interface="snes_cart"> |
| 56656 | ||
| 56657 | <feature name="slot" value="lorom" /> | |
| 51117 | 56658 | <dataarea name="rom" size="1048576"> |
| 51118 | 56659 | <rom name="sotsugyou bangai hen - nee mahjong shiyo! (japan).sfc" size="1048576" crc="d44ceb2f" sha1="3e39a072878737f0d285d426f500a0d3169a5e36" offset="0x000000" /> |
| 51119 | 56660 | </dataarea> |
| r21545 | r21546 | |
| 51130 | 56671 | <info name="release" value="19920626" /> |
| 51131 | 56672 | <info name="alt_title" value="総合格闘技アストラル バウト" /> |
| 51132 | 56673 | <part name="cart" interface="snes_cart"> |
| 56674 | ||
| 56675 | <feature name="slot" value="lorom" /> | |
| 51133 | 56676 | <dataarea name="rom" size="1048576"> |
| 51134 | 56677 | <rom name="sougou kakutougi - astral bout (japan).sfc" size="1048576" crc="e87bd7ec" sha1="ee4b75388f75cf663df96c0f4391b028a7ad631d" offset="0x000000" /> |
| 51135 | 56678 | </dataarea> |
| r21545 | r21546 | |
| 51145 | 56688 | <info name="alt_title" value="総合格闘技 アストラルバウト2 THE TOTAL FIGHTERS" /> |
| 51146 | 56689 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51147 | 56690 | <part name="cart" interface="snes_cart"> |
| 56691 | ||
| 56692 | <feature name="slot" value="lorom" /> | |
| 51148 | 56693 | <dataarea name="rom" size="1572864"> |
| 51149 | 56694 | <rom name="sougou kakutougi - astral bout 2 - the total fighters (japan).sfc" size="1572864" crc="ac212c51" sha1="fa8159946410ac0890e0d99f35fbaea78bda4cbf" offset="0x000000" /> |
| 51150 | 56695 | </dataarea> |
| r21545 | r21546 | |
| 51160 | 56705 | <info name="alt_title" value="総合格闘技リングスアストラルバウト3" /> |
| 51161 | 56706 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51162 | 56707 | <part name="cart" interface="snes_cart"> |
| 56708 | ||
| 56709 | <feature name="slot" value="lorom" /> | |
| 51163 | 56710 | <dataarea name="rom" size="2097152"> |
| 51164 | 56711 | <rom name="sougou kakutougi rings - astral bout 3 (japan).sfc" size="2097152" crc="3f09a8d9" sha1="456bab151b879cbd3cb490b586d91a60ea81272a" offset="0x000000" /> |
| 51165 | 56712 | </dataarea> |
| r21545 | r21546 | |
| 51176 | 56723 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51177 | 56724 | <part name="cart" interface="snes_cart"> |
| 51178 | 56725 | <feature name="enhancement" value="DSP1" /> |
| 56726 | ||
| 56727 | <feature name="slot" value="hirom_dsp" /> | |
| 51179 | 56728 | <dataarea name="rom" size="1048576"> |
| 51180 | 56729 | <rom name="soukou kihei votoms - the battling road (japan).sfc" size="1048576" crc="c00f0bc9" sha1="bf1f8c6abb074dc70b36cb2504a232e2e045bf34" offset="0x000000" /> |
| 51181 | 56730 | </dataarea> |
| 56731 | <dataarea name="addon" size="10240"> | |
| 56732 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 56733 | </dataarea> | |
| 51182 | 56734 | </part> |
| 51183 | 56735 | </software> |
| 51184 | 56736 | |
| r21545 | r21546 | |
| 51190 | 56742 | <info name="release" value="19931130" /> |
| 51191 | 56743 | <info name="alt_title" value="ソウル アンド ソード" /> |
| 51192 | 56744 | <part name="cart" interface="snes_cart"> |
| 56745 | ||
| 56746 | <feature name="slot" value="hirom" /> | |
| 51193 | 56747 | <dataarea name="rom" size="1572864"> |
| 51194 | 56748 | <rom name="soul & sword (japan).sfc" size="1572864" crc="f9792194" sha1="52902bc4ab3f3f1fe3aa123b79dab624a46e8dd2" offset="0x000000" /> |
| 51195 | 56749 | </dataarea> |
| r21545 | r21546 | |
| 51204 | 56758 | <publisher>Enix</publisher> |
| 51205 | 56759 | <info name="release" value="19940127" /> |
| 51206 | 56760 | <part name="cart" interface="snes_cart"> |
| 56761 | ||
| 56762 | <feature name="slot" value="lorom" /> | |
| 51207 | 56763 | <dataarea name="rom" size="1048576"> |
| 51208 | 56764 | <rom name="soul blazer (europe).sfc" size="1048576" crc="54370191" sha1="862b017e9ee68e5f19e464f7666adaba4e1b9f99" offset="0x000000" /> |
| 51209 | 56765 | </dataarea> |
| r21545 | r21546 | |
| 51219 | 56775 | <info name="release" value="19940127" /> |
| 51220 | 56776 | <sharedfeat name="compatibility" value="PAL"/> |
| 51221 | 56777 | <part name="cart" interface="snes_cart"> |
| 56778 | ||
| 56779 | <feature name="slot" value="hirom" /> | |
| 51222 | 56780 | <dataarea name="rom" size="1048576"> |
| 51223 | 56781 | <rom name="soul blazer (france).sfc" size="1048576" crc="20157693" sha1="7498fb48bc977a85a73610c3185af3e5998c09b5" offset="0x000000" /> |
| 51224 | 56782 | </dataarea> |
| r21545 | r21546 | |
| 51232 | 56790 | <year>1994</year> |
| 51233 | 56791 | <publisher>Empire Interactive</publisher> |
| 51234 | 56792 | <part name="cart" interface="snes_cart"> |
| 56793 | ||
| 56794 | <feature name="slot" value="lorom" /> | |
| 51235 | 56795 | <dataarea name="rom" size="1048576"> |
| 51236 | 56796 | <rom name="space ace (europe).sfc" size="1048576" crc="ce74ec97" sha1="ebb1f74b3eb3c4ee2cbf773513f42aa779198802" offset="0x000000" /> |
| 51237 | 56797 | </dataarea> |
| r21545 | r21546 | |
| 51246 | 56806 | <info name="release" value="19940325" /> |
| 51247 | 56807 | <info name="alt_title" value="スペースエース" /> |
| 51248 | 56808 | <part name="cart" interface="snes_cart"> |
| 56809 | ||
| 56810 | <feature name="slot" value="lorom" /> | |
| 51249 | 56811 | <dataarea name="rom" size="1048576"> |
| 51250 | 56812 | <rom name="space ace (japan).sfc" size="1048576" crc="62904e35" sha1="2e864a78354e67f432303764ef7cb643c626535d" offset="0x000000" /> |
| 51251 | 56813 | </dataarea> |
| r21545 | r21546 | |
| 51258 | 56820 | <publisher>Absolute Entertainment</publisher> |
| 51259 | 56821 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51260 | 56822 | <part name="cart" interface="snes_cart"> |
| 56823 | ||
| 56824 | <feature name="slot" value="lorom" /> | |
| 51261 | 56825 | <dataarea name="rom" size="1048576"> |
| 51262 | 56826 | <rom name="space ace (usa) (beta).sfc" size="1048576" crc="b5a55546" sha1="0271542912d7818312c66ced7791f03891e5527c" offset="0x000000" /> |
| 51263 | 56827 | </dataarea> |
| r21545 | r21546 | |
| 51270 | 56834 | <publisher>Triffix</publisher> |
| 51271 | 56835 | <info name="release" value="199206xx" /> |
| 51272 | 56836 | <part name="cart" interface="snes_cart"> |
| 56837 | ||
| 56838 | <feature name="slot" value="lorom" /> | |
| 51273 | 56839 | <dataarea name="rom" size="524288"> |
| 51274 | 56840 | <rom name="space football - one on one (usa).sfc" size="524288" crc="55dcf09e" sha1="d4f6b530bf6e94a71565dc74e4dca23c64b92fd0" offset="0x000000" /> |
| 51275 | 56841 | </dataarea> |
| r21545 | r21546 | |
| 51284 | 56850 | <info name="release" value="19931222" /> |
| 51285 | 56851 | <info name="alt_title" value="スペースファンキーB.O.B." /> |
| 51286 | 56852 | <part name="cart" interface="snes_cart"> |
| 56853 | ||
| 56854 | <feature name="slot" value="lorom" /> | |
| 51287 | 56855 | <dataarea name="rom" size="1048576"> |
| 51288 | 56856 | <rom name="space funky b.o.b. (japan).sfc" size="1048576" crc="5abfbe21" sha1="5c884a7054b8fc538866ed8ae5964ff407ddb2ac" offset="0x000000" /> |
| 51289 | 56857 | </dataarea> |
| r21545 | r21546 | |
| 51296 | 56864 | <publisher>Nintendo</publisher> |
| 51297 | 56865 | <sharedfeat name="compatibility" value="PAL"/> |
| 51298 | 56866 | <part name="cart" interface="snes_cart"> |
| 56867 | ||
| 56868 | <feature name="slot" value="lorom" /> | |
| 51299 | 56869 | <dataarea name="rom" size="262144"> |
| 51300 | 56870 | <rom name="space invaders - the original game (europe).sfc" size="262144" crc="6b62625a" sha1="1edc9088dc695c31a396b914c1c921c77a740068" offset="0x000000" /> |
| 51301 | 56871 | </dataarea> |
| r21545 | r21546 | |
| 51309 | 56879 | <info name="release" value="199711xx" /> |
| 51310 | 56880 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51311 | 56881 | <part name="cart" interface="snes_cart"> |
| 56882 | ||
| 56883 | <feature name="slot" value="lorom" /> | |
| 51312 | 56884 | <dataarea name="rom" size="262144"> |
| 51313 | 56885 | <rom name="space invaders - the original game (usa).sfc" size="262144" crc="caf035f5" sha1="125a5a045ab6cb60728c8aded449c7b6a8144035" offset="0x000000" /> |
| 51314 | 56886 | </dataarea> |
| r21545 | r21546 | |
| 51320 | 56892 | <year>1992</year> |
| 51321 | 56893 | <publisher>Natsume</publisher> |
| 51322 | 56894 | <part name="cart" interface="snes_cart"> |
| 56895 | ||
| 56896 | <feature name="slot" value="lorom" /> | |
| 51323 | 56897 | <dataarea name="rom" size="524288"> |
| 51324 | 56898 | <rom name="spanky's quest (europe).sfc" size="524288" crc="7317705e" sha1="ede9b5319ea479f46a8f05387ac3b4fb1f98563b" offset="0x000000" /> |
| 51325 | 56899 | </dataarea> |
| r21545 | r21546 | |
| 51332 | 56906 | <publisher>Natsume</publisher> |
| 51333 | 56907 | <info name="release" value="199207xx" /> |
| 51334 | 56908 | <part name="cart" interface="snes_cart"> |
| 56909 | ||
| 56910 | <feature name="slot" value="lorom" /> | |
| 51335 | 56911 | <dataarea name="rom" size="524288"> |
| 51336 | 56912 | <rom name="spanky's quest (usa).sfc" size="524288" crc="ca68c5c3" sha1="2f9f643087a5856fb5c7df374750015adb8072a1" offset="0x000000" /> |
| 51337 | 56913 | </dataarea> |
| r21545 | r21546 | |
| 51346 | 56922 | <info name="release" value="19950526" /> |
| 51347 | 56923 | <info name="alt_title" value="スパーク・ワールト" /> |
| 51348 | 56924 | <part name="cart" interface="snes_cart"> |
| 56925 | ||
| 56926 | <feature name="slot" value="lorom" /> | |
| 51349 | 56927 | <dataarea name="rom" size="524288"> |
| 51350 | 56928 | <rom name="spark world (japan).sfc" size="524288" crc="4cc4f40c" sha1="1075a36b885ed205eaa88f4104ad0d0ea162c37b" offset="0x000000" /> |
| 51351 | 56929 | </dataarea> |
| r21545 | r21546 | |
| 51358 | 56936 | <publisher>Konami</publisher> |
| 51359 | 56937 | <sharedfeat name="compatibility" value="PAL"/> |
| 51360 | 56938 | <part name="cart" interface="snes_cart"> |
| 56939 | ||
| 56940 | <feature name="slot" value="lorom" /> | |
| 51361 | 56941 | <dataarea name="rom" size="1048576"> |
| 51362 | 56942 | <rom name="sparkster (europe).sfc" size="1048576" crc="f43c155c" sha1="c498e8304034121e1266c777900757a37bd5ccfa" offset="0x000000" /> |
| 51363 | 56943 | </dataarea> |
| r21545 | r21546 | |
| 51373 | 56953 | <info name="alt_title" value="スパークスター" /> |
| 51374 | 56954 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51375 | 56955 | <part name="cart" interface="snes_cart"> |
| 56956 | ||
| 56957 | <feature name="slot" value="lorom" /> | |
| 51376 | 56958 | <dataarea name="rom" size="1048576"> |
| 51377 | 56959 | <rom name="sparkster (japan).sfc" size="1048576" crc="f5a2a976" sha1="2981b8686b3d2819f8757cd465f60e300a69f759" offset="0x000000" /> |
| 51378 | 56960 | </dataarea> |
| r21545 | r21546 | |
| 51386 | 56968 | <info name="release" value="199410xx" /> |
| 51387 | 56969 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51388 | 56970 | <part name="cart" interface="snes_cart"> |
| 56971 | ||
| 56972 | <feature name="slot" value="lorom" /> | |
| 51389 | 56973 | <dataarea name="rom" size="1048576"> |
| 51390 | 56974 | <rom name="sparkster (usa).sfc" size="1048576" crc="40d11c94" sha1="0ac5326401903212c6565a7a982f60a56017c1ef" offset="0x000000" /> |
| 51391 | 56975 | </dataarea> |
| r21545 | r21546 | |
| 51397 | 56981 | <year>1995</year> |
| 51398 | 56982 | <publisher>Acclaim Entertainment</publisher> |
| 51399 | 56983 | <part name="cart" interface="snes_cart"> |
| 56984 | ||
| 56985 | <feature name="slot" value="hirom" /> | |
| 51400 | 56986 | <dataarea name="rom" size="3145728"> |
| 51401 | 56987 | <rom name="spawn (europe).sfc" size="3145728" crc="0ca0b84f" sha1="8c90c410c93fef6ecfc85da3d2b85fb61a099c27" offset="0x000000" /> |
| 51402 | 56988 | </dataarea> |
| r21545 | r21546 | |
| 51409 | 56995 | <publisher>Acclaim Entertainment</publisher> |
| 51410 | 56996 | <info name="release" value="199510xx" /> |
| 51411 | 56997 | <part name="cart" interface="snes_cart"> |
| 56998 | ||
| 56999 | <feature name="slot" value="hirom" /> | |
| 51412 | 57000 | <dataarea name="rom" size="3145728"> |
| 51413 | 57001 | <rom name="spawn (usa).sfc" size="3145728" crc="4e1dafd0" sha1="f3d8b7ff4127899131fc9253be8b30f7a8bab717" offset="0x000000" /> |
| 51414 | 57002 | </dataarea> |
| r21545 | r21546 | |
| 51420 | 57008 | <year>1994</year> |
| 51421 | 57009 | <publisher>CyberSoft</publisher> |
| 51422 | 57010 | <part name="cart" interface="snes_cart"> |
| 57011 | ||
| 57012 | <feature name="slot" value="lorom" /> | |
| 51423 | 57013 | <dataarea name="rom" size="1048576"> |
| 51424 | 57014 | <rom name="spectre (europe).sfc" size="1048576" crc="00c029c0" sha1="6f365405361072bcf5dc1dcad02dca96a25023a8" offset="0x000000" /> |
| 51425 | 57015 | </dataarea> |
| r21545 | r21546 | |
| 51432 | 57022 | <publisher>CyberSoft</publisher> |
| 51433 | 57023 | <info name="release" value="199405xx" /> |
| 51434 | 57024 | <part name="cart" interface="snes_cart"> |
| 57025 | ||
| 57026 | <feature name="slot" value="lorom" /> | |
| 51435 | 57027 | <dataarea name="rom" size="1048576"> |
| 51436 | 57028 | <rom name="spectre (usa).sfc" size="1048576" crc="ade6e0d8" sha1="b74350eaec9452241dd93aaa0aa2b5cfaa3afbfd" offset="0x000000" /> |
| 51437 | 57029 | </dataarea> |
| r21545 | r21546 | |
| 51444 | 57036 | <publisher>Accolade</publisher> |
| 51445 | 57037 | <info name="release" value="199411xx" /> |
| 51446 | 57038 | <part name="cart" interface="snes_cart"> |
| 57039 | ||
| 57040 | <feature name="slot" value="lorom" /> | |
| 51447 | 57041 | <dataarea name="rom" size="2097152"> |
| 51448 | 57042 | <rom name="speed racer in my most dangerous adventures (usa).sfc" size="2097152" crc="aa44287c" sha1="ad190de2e27e6b678201ed272591386e2945a648" offset="0x000000" /> |
| 51449 | 57043 | </dataarea> |
| r21545 | r21546 | |
| 51455 | 57049 | <year>1995</year> |
| 51456 | 57050 | <publisher>Acclaim Entertainment</publisher> |
| 51457 | 57051 | <part name="cart" interface="snes_cart"> |
| 57052 | ||
| 57053 | <feature name="slot" value="lorom" /> | |
| 51458 | 57054 | <dataarea name="rom" size="1048576"> |
| 51459 | 57055 | <rom name="speedy gonzales in los gatos bandidos (europe) (proto).sfc" size="1048576" crc="efe9e087" sha1="2b8ad57dde13d58b5cecec1f0309a4bb83908b5e" offset="0x000000" /> |
| 51460 | 57056 | </dataarea> |
| r21545 | r21546 | |
| 51468 | 57064 | <publisher>Acclaim Entertainment</publisher> |
| 51469 | 57065 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51470 | 57066 | <part name="cart" interface="snes_cart"> |
| 57067 | ||
| 57068 | <feature name="slot" value="lorom" /> | |
| 51471 | 57069 | <dataarea name="rom" size="1048576"> |
| 51472 | 57070 | <rom name="speedy gonzales in los gatos bandidos (usa) (beta).sfc" size="1048576" crc="e44f42ba" sha1="f9351f0609f2f0afa3f888db7619e44694f3a281" offset="0x000000" /> |
| 51473 | 57071 | </dataarea> |
| r21545 | r21546 | |
| 51481 | 57079 | <info name="release" value="199508xx" /> |
| 51482 | 57080 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51483 | 57081 | <part name="cart" interface="snes_cart"> |
| 57082 | ||
| 57083 | <feature name="slot" value="lorom" /> | |
| 51484 | 57084 | <dataarea name="rom" size="1048576"> |
| 51485 | 57085 | <rom name="speedy gonzales in los gatos bandidos (usa) (rev 1).sfc" size="1048576" crc="cb0653d0" sha1="5ca97bc5e260e04ed7f5ff228c358f5d591ceec7" offset="0x000000" /> |
| 51486 | 57086 | </dataarea> |
| r21545 | r21546 | |
| 51494 | 57094 | <info name="release" value="199508xx" /> |
| 51495 | 57095 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51496 | 57096 | <part name="cart" interface="snes_cart"> |
| 57097 | ||
| 57098 | <feature name="slot" value="lorom" /> | |
| 51497 | 57099 | <dataarea name="rom" size="1048576"> |
| 51498 | 57100 | <rom name="speedy gonzales in los gatos bandidos (usa).sfc" size="1048576" crc="e2dbad76" sha1="34546a2bd7e761988f24aac253416bb2e47293e0" offset="0x000000" /> |
| 51499 | 57101 | </dataarea> |
| r21545 | r21546 | |
| 51506 | 57108 | <publisher>LJN</publisher> |
| 51507 | 57109 | <info name="release" value="199409xx" /> |
| 51508 | 57110 | <part name="cart" interface="snes_cart"> |
| 57111 | ||
| 57112 | <feature name="slot" value="lorom" /> | |
| 51509 | 57113 | <dataarea name="rom" size="2097152"> |
| 51510 | 57114 | <rom name="spider-man & venom - maximum carnage (usa).sfc" size="2097152" crc="7ef2bb0c" sha1="e85f33c59903826f76df1f43d60bacf5c024d673" offset="0x000000" /> |
| 51511 | 57115 | </dataarea> |
| r21545 | r21546 | |
| 51517 | 57121 | <year>1995</year> |
| 51518 | 57122 | <publisher>Acclaim Entertainment</publisher> |
| 51519 | 57123 | <part name="cart" interface="snes_cart"> |
| 57124 | ||
| 57125 | <feature name="slot" value="lorom" /> | |
| 51520 | 57126 | <dataarea name="rom" size="2097152"> |
| 51521 | 57127 | <rom name="spider-man (europe).sfc" size="2097152" crc="02c52d37" sha1="560a2e7a288462e38aac59488fb8cbb88e3c46aa" offset="0x000000" /> |
| 51522 | 57128 | </dataarea> |
| r21545 | r21546 | |
| 51528 | 57134 | <year>1995</year> |
| 51529 | 57135 | <publisher>Acclaim Entertainment</publisher> |
| 51530 | 57136 | <part name="cart" interface="snes_cart"> |
| 57137 | ||
| 57138 | <feature name="slot" value="lorom" /> | |
| 51531 | 57139 | <dataarea name="rom" size="1572864"> |
| 51532 | 57140 | <rom name="spider-man (usa) (beta).sfc" size="1572864" crc="dc57fc0b" sha1="9c20d719d79d9556aa3cb67b2040cf0505d8bf8d" offset="0x000000" /> |
| 51533 | 57141 | </dataarea> |
| r21545 | r21546 | |
| 51539 | 57147 | <year>1992</year> |
| 51540 | 57148 | <publisher>LJN</publisher> |
| 51541 | 57149 | <part name="cart" interface="snes_cart"> |
| 57150 | ||
| 57151 | <feature name="slot" value="lorom" /> | |
| 51542 | 57152 | <dataarea name="rom" size="1048576"> |
| 51543 | 57153 | <rom name="spider-man and the x-men in arcade's revenge (europe).sfc" size="1048576" crc="d679058d" sha1="6431b655516c1bfa3ae167a4bddb4c635eefeec4" offset="0x000000" /> |
| 51544 | 57154 | </dataarea> |
| r21545 | r21546 | |
| 51550 | 57160 | <year>1993</year> |
| 51551 | 57161 | <publisher>Activision</publisher> |
| 51552 | 57162 | <part name="cart" interface="snes_cart"> |
| 57163 | ||
| 57164 | <feature name="slot" value="lorom" /> | |
| 51553 | 57165 | <dataarea name="rom" size="1048576"> |
| 51554 | 57166 | <rom name="spindizzy worlds (europe).sfc" size="1048576" crc="4ffdc221" sha1="38379958ea42e37d2859f006a50e90ce3cc190d4" offset="0x000000" /> |
| 51555 | 57167 | </dataarea> |
| r21545 | r21546 | |
| 51564 | 57176 | <info name="release" value="19920807" /> |
| 51565 | 57177 | <info name="alt_title" value="スピンディジーワールド" /> |
| 51566 | 57178 | <part name="cart" interface="snes_cart"> |
| 57179 | ||
| 57180 | <feature name="slot" value="lorom" /> | |
| 51567 | 57181 | <dataarea name="rom" size="1048576"> |
| 51568 | 57182 | <rom name="spindizzy worlds (japan).sfc" size="1048576" crc="8f5b2404" sha1="0f638cb98399a456c826a66e59e9c3286aebb644" offset="0x000000" /> |
| 51569 | 57183 | </dataarea> |
| r21545 | r21546 | |
| 51576 | 57190 | <publisher>ASCII Entertainment</publisher> |
| 51577 | 57191 | <info name="release" value="199303xx" /> |
| 51578 | 57192 | <part name="cart" interface="snes_cart"> |
| 57193 | ||
| 57194 | <feature name="slot" value="lorom" /> | |
| 51579 | 57195 | <dataarea name="rom" size="1048576"> |
| 51580 | 57196 | <rom name="spindizzy worlds (usa).sfc" size="1048576" crc="52b68163" sha1="58b4de4903156b24abb253b166082dd0d7212e22" offset="0x000000" /> |
| 51581 | 57197 | </dataarea> |
| r21545 | r21546 | |
| 51588 | 57204 | <publisher>Infogrames</publisher> |
| 51589 | 57205 | <sharedfeat name="compatibility" value="PAL"/> |
| 51590 | 57206 | <part name="cart" interface="snes_cart"> |
| 57207 | ||
| 57208 | <feature name="slot" value="lorom" /> | |
| 51591 | 57209 | <dataarea name="rom" size="1310720"> |
| 51592 | 57210 | <rom name="spirou (europe) (en,fr,de,es).sfc" size="1310720" crc="797e2e82" sha1="2fc0170173455250cb421dcd380cb933091b9591" offset="0x000000" /> |
| 51593 | 57211 | </dataarea> |
| r21545 | r21546 | |
| 51600 | 57218 | <publisher>Hudson</publisher> |
| 51601 | 57219 | <info name="release" value="199506xx" /> |
| 51602 | 57220 | <part name="cart" interface="snes_cart"> |
| 57221 | ||
| 57222 | <feature name="slot" value="hirom" /> | |
| 51603 | 57223 | <dataarea name="rom" size="1048576"> |
| 51604 | 57224 | <rom name="sporting news power baseball, the (usa).sfc" size="1048576" crc="315af696" sha1="13dfb9435f4d6227f1d484c6e76d1172aec91f6a" offset="0x000000" /> |
| 51605 | 57225 | </dataarea> |
| r21545 | r21546 | |
| 51613 | 57233 | <year>1994</year> |
| 51614 | 57234 | <publisher>Malibu Interactive</publisher> |
| 51615 | 57235 | <part name="cart" interface="snes_cart"> |
| 57236 | ||
| 57237 | <feature name="slot" value="lorom" /> | |
| 51616 | 57238 | <dataarea name="rom" size="2097152"> |
| 51617 | 57239 | <rom name="sports illustrated championship football & baseball (usa) (beta).sfc" size="2097152" crc="ed9aa0e1" sha1="0871060a91f939010283ec230750f378d1e7d8ad" offset="0x000000" /> |
| 51618 | 57240 | </dataarea> |
| r21545 | r21546 | |
| 51627 | 57249 | <info name="release" value="19960726" /> |
| 51628 | 57250 | <info name="alt_title" value="スプリガン・パワート" /> |
| 51629 | 57251 | <part name="cart" interface="snes_cart"> |
| 57252 | ||
| 57253 | <feature name="slot" value="lorom" /> | |
| 51630 | 57254 | <dataarea name="rom" size="1048576"> |
| 51631 | 57255 | <rom name="spriggan powered (japan).sfc" size="1048576" crc="3f83f67c" sha1="6a6d0f4dbb65d16d3d68c7f28e4d31df75c24889" offset="0x000000" /> |
| 51632 | 57256 | </dataarea> |
| r21545 | r21546 | |
| 51641 | 57265 | <info name="release" value="19950317" /> |
| 51642 | 57266 | <info name="alt_title" value="スプリンター物語 ~めざせ!一攫 千金~" /> |
| 51643 | 57267 | <part name="cart" interface="snes_cart"> |
| 57268 | ||
| 57269 | <feature name="slot" value="lorom" /> | |
| 51644 | 57270 | <dataarea name="rom" size="1572864"> |
| 51645 | 57271 | <rom name="sprinter monogatari - mezase!! ikkakusenkin (japan).sfc" size="1572864" crc="411f4d0a" sha1="84d3155fe541939e99b5052b684379c2a17ffdaa" offset="0x000000" /> |
| 51646 | 57272 | </dataarea> |
| r21545 | r21546 | |
| 51651 | 57277 | |
| 51652 | 57278 | <!-- removed for now since however interesting it may be, it is still homebrew material, |
| 51653 | 57279 | keeping it here quoted in case we'd want to reintegrate it for some reason |
| 51654 | <software name="starfox2a" cloneof="starfox2"> | |
| 51655 | <description>Star Fox 2 (Jpn, Hack)</description> | |
| 51656 | <year>1995</year> | |
| 51657 | <publisher><homebrew></publisher> | |
| 51658 | <part name="cart" interface="snes_cart"> | |
| 51659 | <feature name="enhancement" value="GSU-2" /> | |
| 51660 | <dataarea name="rom" size="1048576"> | |
| 51661 | <rom name="star fox 2 (japan) (proto) (alt 1).sfc" size="1048576" crc="79f3433d" sha1="aea7a00c52c0f4e102b98cd5fa6710e6282e0dee" offset="0x000000" /> | |
| 51662 | </dataarea> | |
| 51663 | <dataarea name="nvram" size="65536"> | |
| 51664 | </dataarea> | |
| 51665 | </part> | |
| 51666 | </software> | |
| 57280 | <software name="starfox2a" cloneof="starfox2"> | |
| 57281 | <description>Star Fox 2 (Jpn, Hack)</description> | |
| 57282 | <year>1995</year> | |
| 57283 | <publisher><homebrew></publisher> | |
| 57284 | <part name="cart" interface="snes_cart"> | |
| 57285 | <feature name="enhancement" value="GSU-2" /> | |
| 57286 | ||
| 57287 | <feature name="slot" value="lorom_sfx" /> | |
| 57288 | <dataarea name="rom" size="1048576"> | |
| 57289 | <rom name="star fox 2 (japan) (proto) (alt 1).sfc" size="1048576" crc="79f3433d" sha1="aea7a00c52c0f4e102b98cd5fa6710e6282e0dee" offset="0x000000" /> | |
| 57290 | </dataarea> | |
| 57291 | <dataarea name="nvram" size="65536"> | |
| 57292 | </dataarea> | |
| 57293 | </part> | |
| 57294 | </software> | |
| 51667 | 57295 | --> |
| 51668 | 57296 | |
| 51669 | 57297 | <software name="starfox2"> |
| r21545 | r21546 | |
| 51673 | 57301 | <publisher>Argonaut</publisher> <!-- cancelled --> |
| 51674 | 57302 | <part name="cart" interface="snes_cart"> |
| 51675 | 57303 | <feature name="enhancement" value="GSU-2" /> |
| 57304 | ||
| 57305 | <feature name="slot" value="lorom_sfx" /> | |
| 51676 | 57306 | <dataarea name="rom" size="1048576"> |
| 51677 | 57307 | <rom name="binary" size="1048576" crc="1fb1cf76" sha1="60f45d5ca95247294120080359639eb3a7e505c3" offset="0x000000" /> |
| 51678 | 57308 | </dataarea> |
| r21545 | r21546 | |
| 51688 | 57318 | <publisher>Argonaut</publisher> <!-- cancelled --> |
| 51689 | 57319 | <part name="cart" interface="snes_cart"> |
| 51690 | 57320 | <feature name="enhancement" value="GSU-2" /> |
| 57321 | ||
| 57322 | <feature name="slot" value="lorom_sfx" /> | |
| 51691 | 57323 | <dataarea name="rom" size="1046983"> |
| 51692 | 57324 | <rom name="binary-a" size="1046983" crc="1b3bc708" sha1="6669899a6c9c3bb71c41d90c36932ddfc1f4f208" offset="0x000000" /> |
| 51693 | 57325 | </dataarea> |
| r21545 | r21546 | |
| 51701 | 57333 | <year>1995</year> |
| 51702 | 57334 | <publisher>Playmates Interactive</publisher> |
| 51703 | 57335 | <part name="cart" interface="snes_cart"> |
| 57336 | ||
| 57337 | <feature name="slot" value="lorom" /> | |
| 51704 | 57338 | <dataarea name="rom" size="1048576"> |
| 51705 | 57339 | <rom name="star trek - deep space nine - crossroads of time (europe).sfc" size="1048576" crc="75bff780" sha1="63d8044ba0eabcec8f8fb49add9dd4dcca083e04" offset="0x000000" /> |
| 51706 | 57340 | </dataarea> |
| r21545 | r21546 | |
| 51712 | 57346 | <year>1995</year> |
| 51713 | 57347 | <publisher>Playmates Interactive</publisher> |
| 51714 | 57348 | <part name="cart" interface="snes_cart"> |
| 57349 | ||
| 57350 | <feature name="slot" value="lorom" /> | |
| 51715 | 57351 | <dataarea name="rom" size="1572864"> |
| 51716 | 57352 | <rom name="star trek - deep space nine - crossroads of time (usa) (beta).sfc" size="1572864" crc="7c149cff" sha1="7dfcca30d34b817021b51e026b7ccc5d36490154" offset="0x000000" /> |
| 51717 | 57353 | </dataarea> |
| r21545 | r21546 | |
| 51724 | 57360 | <publisher>Playmates Interactive</publisher> |
| 51725 | 57361 | <info name="release" value="199509xx" /> |
| 51726 | 57362 | <part name="cart" interface="snes_cart"> |
| 57363 | ||
| 57364 | <feature name="slot" value="lorom" /> | |
| 51727 | 57365 | <dataarea name="rom" size="1048576"> |
| 51728 | 57366 | <rom name="star trek - deep space nine - crossroads of time (usa).sfc" size="1048576" crc="9a245fa3" sha1="57c07b55aade9400b6d9ea23072f613e9d9735ef" offset="0x000000" /> |
| 51729 | 57367 | </dataarea> |
| r21545 | r21546 | |
| 51735 | 57373 | <year>1994</year> |
| 51736 | 57374 | <publisher>Interplay</publisher> |
| 51737 | 57375 | <part name="cart" interface="snes_cart"> |
| 57376 | ||
| 57377 | <feature name="slot" value="lorom" /> | |
| 51738 | 57378 | <dataarea name="rom" size="1048576"> |
| 51739 | 57379 | <rom name="star trek - starfleet academy - starship bridge simulator (europe).sfc" size="1048576" crc="7c07e4a0" sha1="4712886f61dd9cedd4bdd69aa858858d216a7b21" offset="0x000000" /> |
| 51740 | 57380 | </dataarea> |
| r21545 | r21546 | |
| 51746 | 57386 | <year>1994</year> |
| 51747 | 57387 | <publisher>Interplay</publisher> |
| 51748 | 57388 | <part name="cart" interface="snes_cart"> |
| 57389 | ||
| 57390 | <feature name="slot" value="lorom" /> | |
| 51749 | 57391 | <dataarea name="rom" size="1048576"> |
| 51750 | 57392 | <rom name="star trek - starfleet academy - starship bridge simulator (germany).sfc" size="1048576" crc="cb2738bd" sha1="1f32fed7052b7ec4f86aef7747fab096bfef4f9d" offset="0x000000" /> |
| 51751 | 57393 | </dataarea> |
| r21545 | r21546 | |
| 51758 | 57400 | <publisher>Interplay</publisher> |
| 51759 | 57401 | <info name="release" value="199412xx" /> |
| 51760 | 57402 | <part name="cart" interface="snes_cart"> |
| 57403 | ||
| 57404 | <feature name="slot" value="lorom" /> | |
| 51761 | 57405 | <dataarea name="rom" size="1048576"> |
| 51762 | 57406 | <rom name="star trek - starfleet academy - starship bridge simulator (usa).sfc" size="1048576" crc="2db38d24" sha1="a0147fe58b4a5b0b7d6a395be37170429c89d102" offset="0x000000" /> |
| 51763 | 57407 | </dataarea> |
| r21545 | r21546 | |
| 51770 | 57414 | <publisher>Spectrum Holobyte</publisher> |
| 51771 | 57415 | <sharedfeat name="compatibility" value="PAL"/> |
| 51772 | 57416 | <part name="cart" interface="snes_cart"> |
| 57417 | ||
| 57418 | <feature name="slot" value="lorom" /> | |
| 51773 | 57419 | <dataarea name="rom" size="2097152"> |
| 51774 | 57420 | <rom name="star trek - the next generation - future's past (europe).sfc" size="2097152" crc="d1a1f7e5" sha1="4a08586b5f2899bbaec2812df4302347bfba5202" offset="0x000000" /> |
| 51775 | 57421 | </dataarea> |
| r21545 | r21546 | |
| 51783 | 57429 | <info name="release" value="199403xx" /> |
| 51784 | 57430 | <sharedfeat name="compatibility" value="NTSC"/> |
| 51785 | 57431 | <part name="cart" interface="snes_cart"> |
| 57432 | ||
| 57433 | <feature name="slot" value="lorom" /> | |
| 51786 | 57434 | <dataarea name="rom" size="2097152"> |
| 51787 | 57435 | <rom name="star trek - the next generation - future's past (usa).sfc" size="2097152" crc="8de80428" sha1="40c4357ccb9e32d99d74f405d81f6965a45cb381" offset="0x000000" /> |
| 51788 | 57436 | </dataarea> |
| r21545 | r21546 | |
| 51797 | 57445 | <info name="release" value="19950120" /> |
| 51798 | 57446 | <info name="alt_title" value="スターダストスープレックス" /> |
| 51799 | 57447 | <part name="cart" interface="snes_cart"> |
| 57448 | ||
| 57449 | <feature name="slot" value="lorom" /> | |
| 51800 | 57450 | <dataarea name="rom" size="2621440"> |
| 51801 | 57451 | <rom name="stardust suplex (japan).sfc" size="2621440" crc="ada27d91" sha1="c87e703ba15cb3a2f6dfa20e4178955486f59d86" offset="0x000000" /> |
| 51802 | 57452 | </dataarea> |
| r21545 | r21546 | |
| 51811 | 57461 | <info name="release" value="19950526" /> |
| 51812 | 57462 | <info name="alt_title" value="スターゲイト" /> |
| 51813 | 57463 | <part name="cart" interface="snes_cart"> |
| 57464 | ||
| 57465 | <feature name="slot" value="lorom" /> | |
| 51814 | 57466 | <dataarea name="rom" size="2097152"> |
| 51815 | 57467 | <rom name="stargate (japan).sfc" size="2097152" crc="24bbddf8" sha1="03e638d236bf4c212c29c057187d24c5d8f801d2" offset="0x000000" /> |
| 51816 | 57468 | </dataarea> |
| r21545 | r21546 | |
| 51822 | 57474 | <year>1995</year> |
| 51823 | 57475 | <publisher>Acclaim Entertainment</publisher> |
| 51824 | 57476 | <part name="cart" interface="snes_cart"> |
| 57477 | ||
| 57478 | <feature name="slot" value="lorom" /> | |
| 51825 | 57479 | <dataarea name="rom" size="2097152"> |
| 51826 | 57480 | <rom name="stargate (usa) (beta).sfc" size="2097152" crc="2bb45263" sha1="2def61d773afbb711b9a2b8bd5fa8719c80042e5" offset="0x000000" /> |
| 51827 | 57481 | </dataarea> |
| r21545 | r21546 | |
| 51834 | 57488 | <publisher>Acclaim Entertainment</publisher> |
| 51835 | 57489 | <info name="release" value="199504xx" /> |
| 51836 | 57490 | <part name="cart" interface="snes_cart"> |
| 57491 | ||
| 57492 | <feature name="slot" value="lorom" /> | |
| 51837 | 57493 | <dataarea name="rom" size="2097152"> |
| 51838 | 57494 | <rom name="stargate (usa).sfc" size="2097152" crc="526ce576" sha1="79fe2f6ee71fffe8f9d91a9680ecefe8f1568488" offset="0x000000" /> |
| 51839 | 57495 | </dataarea> |
| r21545 | r21546 | |
| 51846 | 57502 | <publisher>Nintendo</publisher> |
| 51847 | 57503 | <part name="cart" interface="snes_cart"> |
| 51848 | 57504 | <feature name="enhancement" value="GSU-1" /> |
| 57505 | ||
| 57506 | <feature name="slot" value="lorom_sfx" /> | |
| 51849 | 57507 | <dataarea name="rom" size="1048576"> |
| 51850 | 57508 | <rom name="starwing (europe) (super weekend competition).sfc" size="1048576" crc="17c8fe56" sha1="c7d4f1a7a5261fc3b95280f302056226fd8aa68a" offset="0x000000" /> |
| 51851 | 57509 | </dataarea> |
| r21545 | r21546 | |
| 51861 | 57519 | <info name="serial" value="SNSP-FU-EEC" /> |
| 51862 | 57520 | <part name="cart" interface="snes_cart"> |
| 51863 | 57521 | <feature name="enhancement" value="GSU-1" /> |
| 57522 | ||
| 57523 | <feature name="slot" value="lorom_sfx" /> | |
| 51864 | 57524 | <dataarea name="rom" size="1048576"> |
| 51865 | 57525 | <rom name="starwing (germany) (competition edition).sfc" size="1048576" crc="b25f606a" sha1="daf6c7bdbf8c9733705b1c586c85be9edd864a23" offset="0x000000" /> |
| 51866 | 57526 | </dataarea> |
| r21545 | r21546 | |
| 51877 | 57537 | <info name="release" value="19921218" /> |
| 51878 | 57538 | <info name="alt_title" value="ステルス" /> |
| 51879 | 57539 | <part name="cart" interface="snes_cart"> |
| 57540 | ||
| 57541 | <feature name="slot" value="lorom" /> | |
| 51880 | 57542 | <dataarea name="rom" size="1048576"> |
| 51881 | 57543 | <rom name="stealth (japan).sfc" size="1048576" crc="e0b197ef" sha1="1df3f18630fd810119f6b4e6fdf4a24af3b75c98" offset="0x000000" /> |
| 51882 | 57544 | </dataarea> |
| r21545 | r21546 | |
| 51893 | 57555 | <info name="release" value="19950428" /> |
| 51894 | 57556 | <info name="alt_title" value="ストーンプロテクタース" /> |
| 51895 | 57557 | <part name="cart" interface="snes_cart"> |
| 57558 | ||
| 57559 | <feature name="slot" value="lorom" /> | |
| 51896 | 57560 | <dataarea name="rom" size="2097152"> |
| 51897 | 57561 | <rom name="stone protectors (japan).sfc" size="2097152" crc="ff47c49e" sha1="f408b6132e88bb9cdcb6fbb7dcb41723f88fe76d" offset="0x000000" /> |
| 51898 | 57562 | </dataarea> |
| r21545 | r21546 | |
| 51905 | 57569 | <publisher>Kecmo</publisher> |
| 51906 | 57570 | <info name="release" value="199411xx" /> |
| 51907 | 57571 | <part name="cart" interface="snes_cart"> |
| 57572 | ||
| 57573 | <feature name="slot" value="lorom" /> | |
| 51908 | 57574 | <dataarea name="rom" size="2097152"> |
| 51909 | 57575 | <rom name="stone protectors (usa).sfc" size="2097152" crc="a7e58592" sha1="28aec5c8b6b53916bd33721e2b89e9fc054a47ed" offset="0x000000" /> |
| 51910 | 57576 | </dataarea> |
| r21545 | r21546 | |
| 51916 | 57582 | <year>1993</year> |
| 51917 | 57583 | <publisher>Irem</publisher> |
| 51918 | 57584 | <part name="cart" interface="snes_cart"> |
| 57585 | ||
| 57586 | <feature name="slot" value="lorom" /> | |
| 51919 | 57587 | <dataarea name="rom" size="1048576"> |
| 51920 | 57588 | <rom name="street combat (europe).sfc" size="1048576" crc="4a4c657e" sha1="39ea9970af8e1d088f4971e711726ad2a85ec3c9" offset="0x000000" /> |
| 51921 | 57589 | </dataarea> |
| r21545 | r21546 | |
| 51928 | 57596 | <publisher>Irem</publisher> |
| 51929 | 57597 | <info name="release" value="199304xx" /> |
| 51930 | 57598 | <part name="cart" interface="snes_cart"> |
| 57599 | ||
| 57600 | <feature name="slot" value="lorom" /> | |
| 51931 | 57601 | <dataarea name="rom" size="1048576"> |
| 51932 | 57602 | <rom name="street combat (usa).sfc" size="1048576" crc="1969bbd9" sha1="bdb67f6fbf3cff1bc8e118ead0f3f5894db9edf6" offset="0x000000" /> |
| 51933 | 57603 | </dataarea> |
| r21545 | r21546 | |
| 51939 | 57609 | <year>1993</year> |
| 51940 | 57610 | <publisher>Capcom</publisher> |
| 51941 | 57611 | <part name="cart" interface="snes_cart"> |
| 57612 | ||
| 57613 | <feature name="slot" value="hirom" /> | |
| 51942 | 57614 | <dataarea name="rom" size="2621440"> |
| 51943 | 57615 | <rom name="street fighter ii turbo (europe).sfc" size="2621440" crc="a3ee22e5" sha1="a05554ed1c93911c47312107d95a7fdddc123ff3" offset="0x000000" /> |
| 51944 | 57616 | </dataarea> |
| r21545 | r21546 | |
| 51950 | 57622 | <year>1994</year> |
| 51951 | 57623 | <publisher>GTE Entertainment</publisher> |
| 51952 | 57624 | <part name="cart" interface="snes_cart"> |
| 57625 | ||
| 57626 | <feature name="slot" value="hirom" /> | |
| 51953 | 57627 | <dataarea name="rom" size="3145728"> |
| 51954 | 57628 | <rom name="street hockey '95 (usa) (beta).sfc" size="3145728" crc="29296976" sha1="f6a0a06682b28806fea90478d768ea0a8605c31a" offset="0x000000" /> |
| 51955 | 57629 | </dataarea> |
| r21545 | r21546 | |
| 51961 | 57635 | <year>1994</year> |
| 51962 | 57636 | <publisher>Ubi Soft</publisher> |
| 51963 | 57637 | <part name="cart" interface="snes_cart"> |
| 57638 | ||
| 57639 | <feature name="slot" value="lorom" /> | |
| 51964 | 57640 | <dataarea name="rom" size="1048576"> |
| 51965 | 57641 | <rom name="street racer (europe).sfc" size="1048576" crc="e013d5b0" sha1="fb1f4e7bd3baf72b47f747623a2ad87b06322ee5" offset="0x000000" /> |
| 51966 | 57642 | </dataarea> |
| r21545 | r21546 | |
| 51975 | 57651 | <info name="release" value="19941202" /> |
| 51976 | 57652 | <info name="alt_title" value="ストリートレーサー" /> |
| 51977 | 57653 | <part name="cart" interface="snes_cart"> |
| 57654 | ||
| 57655 | <feature name="slot" value="lorom" /> | |
| 51978 | 57656 | <dataarea name="rom" size="1048576"> |
| 51979 | 57657 | <rom name="street racer (japan).sfc" size="1048576" crc="d1c1f675" sha1="16aa23994f3a2cadb8354a2db40cafe3dd9a69a2" offset="0x000000" /> |
| 51980 | 57658 | </dataarea> |
| r21545 | r21546 | |
| 51986 | 57664 | <year>1994</year> |
| 51987 | 57665 | <publisher>Ubi Soft</publisher> |
| 51988 | 57666 | <part name="cart" interface="snes_cart"> |
| 57667 | ||
| 57668 | <feature name="slot" value="lorom" /> | |
| 51989 | 57669 | <dataarea name="rom" size="1048576"> |
| 51990 | 57670 | <rom name="street racer (usa) (beta).sfc" size="1048576" crc="1934f184" sha1="7cfc9262740bfaec99c22141f01ff2fa67f24206" offset="0x000000" /> |
| 51991 | 57671 | </dataarea> |
| r21545 | r21546 | |
| 52000 | 57680 | <info name="release" value="19920327" /> |
| 52001 | 57681 | <info name="alt_title" value="STRIKE GUNNER エス・ティー・ジー" /> |
| 52002 | 57682 | <part name="cart" interface="snes_cart"> |
| 57683 | ||
| 57684 | <feature name="slot" value="lorom" /> | |
| 52003 | 57685 | <dataarea name="rom" size="1048576"> |
| 52004 | 57686 | <rom name="strike gunner s.t.g (japan).sfc" size="1048576" crc="ae2b4567" sha1="b5112c6a237621a726091e130fb783a2ba0e8dca" offset="0x000000" /> |
| 52005 | 57687 | </dataarea> |
| r21545 | r21546 | |
| 52012 | 57694 | <publisher>Elite</publisher> |
| 52013 | 57695 | <sharedfeat name="compatibility" value="PAL"/> |
| 52014 | 57696 | <part name="cart" interface="snes_cart"> |
| 57697 | ||
| 57698 | <feature name="slot" value="lorom" /> | |
| 52015 | 57699 | <dataarea name="rom" size="524288"> |
| 52016 | 57700 | <rom name="striker (europe) (en,fr,de,es,it,nl,sv) (beta).sfc" size="524288" crc="89ac1eaa" sha1="cc8e8d77a03aaf266863ac16af55601e4b274629" offset="0x000000" /> |
| 52017 | 57701 | </dataarea> |
| r21545 | r21546 | |
| 52024 | 57708 | <publisher>Elite</publisher> |
| 52025 | 57709 | <sharedfeat name="compatibility" value="PAL"/> |
| 52026 | 57710 | <part name="cart" interface="snes_cart"> |
| 57711 | ||
| 57712 | <feature name="slot" value="lorom" /> | |
| 52027 | 57713 | <dataarea name="rom" size="524288"> |
| 52028 | 57714 | <rom name="striker (europe) (en,fr,de,es,it,nl,sv).sfc" size="524288" crc="60b2d4a8" sha1="580746916e3963c9867c8b9b2fa951279ba9d573" offset="0x000000" /> |
| 52029 | 57715 | </dataarea> |
| r21545 | r21546 | |
| 52038 | 57724 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52039 | 57725 | <part name="cart" interface="snes_cart"> |
| 52040 | 57726 | <feature name="enhancement" value="GSU-1" /> |
| 57727 | ||
| 57728 | <feature name="slot" value="lorom_sfx" /> | |
| 52041 | 57729 | <dataarea name="rom" size="1048576"> |
| 52042 | 57730 | <rom name="stunt race fx (usa) (rev 1).sfc" size="1048576" crc="380c2635" sha1="781e376ff453a83c7bcf72339abe6b842efd9c86" offset="0x000000" /> |
| 52043 | 57731 | </dataarea> |
| r21545 | r21546 | |
| 52055 | 57743 | <info name="alt_title" value="すごいへべれけ" /> |
| 52056 | 57744 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52057 | 57745 | <part name="cart" interface="snes_cart"> |
| 57746 | ||
| 57747 | <feature name="slot" value="lorom" /> | |
| 52058 | 57748 | <dataarea name="rom" size="1310720"> |
| 52059 | 57749 | <rom name="sugoi hebereke (japan).sfc" size="1310720" crc="72123ef0" sha1="ceac79295365426286a37bccc70b26420b8231a7" offset="0x000000" /> |
| 52060 | 57750 | </dataarea> |
| r21545 | r21546 | |
| 52069 | 57759 | <info name="release" value="19941209" /> |
| 52070 | 57760 | <info name="alt_title" value="すごろクエスト++ -ダイスニクス-" /> |
| 52071 | 57761 | <part name="cart" interface="snes_cart"> |
| 57762 | ||
| 57763 | <feature name="slot" value="lorom" /> | |
| 52072 | 57764 | <dataarea name="rom" size="2097152"> |
| 52073 | 57765 | <rom name="sugoro quest++ - dicenics (japan).sfc" size="2097152" crc="366c84f3" sha1="c60efaaf506f8de27dce7af312a022ad5db19271" offset="0x000000" /> |
| 52074 | 57766 | </dataarea> |
| r21545 | r21546 | |
| 52085 | 57777 | <info name="release" value="19961219" /> |
| 52086 | 57778 | <info name="alt_title" value="すごろく銀河戦記" /> |
| 52087 | 57779 | <part name="cart" interface="snes_cart"> |
| 57780 | ||
| 57781 | <feature name="slot" value="lorom" /> | |
| 52088 | 57782 | <dataarea name="rom" size="1048576"> |
| 52089 | 57783 | <rom name="sugoroku ginga senki (japan).sfc" size="1048576" crc="ea0c55bc" sha1="5b6d7d0847c93fd9a2fee9759516c69269124319" offset="0x000000" /> |
| 52090 | 57784 | </dataarea> |
| r21545 | r21546 | |
| 52097 | 57791 | <publisher>Konami</publisher> |
| 52098 | 57792 | <sharedfeat name="compatibility" value="PAL"/> |
| 52099 | 57793 | <part name="cart" interface="snes_cart"> |
| 57794 | ||
| 57795 | <feature name="slot" value="lorom" /> | |
| 52100 | 57796 | <dataarea name="rom" size="1048576"> |
| 52101 | 57797 | <rom name="sunset riders (europe).sfc" size="1048576" crc="64edfc5d" sha1="2ae53e498ff0b66c49cfedebdbbcd679e804058c" offset="0x000000" /> |
| 52102 | 57798 | </dataarea> |
| r21545 | r21546 | |
| 52110 | 57806 | <info name="release" value="199310xx" /> |
| 52111 | 57807 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52112 | 57808 | <part name="cart" interface="snes_cart"> |
| 57809 | ||
| 57810 | <feature name="slot" value="lorom" /> | |
| 52113 | 57811 | <dataarea name="rom" size="1048576"> |
| 52114 | 57812 | <rom name="sunset riders (usa).sfc" size="1048576" crc="52ada404" sha1="50f0d77323a5967aa329c72e7a2d926ed158f667" offset="0x000000" /> |
| 52115 | 57813 | </dataarea> |
| r21545 | r21546 | |
| 52124 | 57822 | <info name="release" value="19951006" /> |
| 52125 | 57823 | <info name="alt_title" value="すぱぽーん" /> |
| 52126 | 57824 | <part name="cart" interface="snes_cart"> |
| 57825 | ||
| 57826 | <feature name="slot" value="hirom" /> | |
| 52127 | 57827 | <dataarea name="rom" size="524288"> |
| 52128 | 57828 | <rom name="supapoon (japan).sfc" size="524288" crc="6d971e71" sha1="473fd8168166e3f73accc6f2d2a71f14ce223ab8" offset="0x000000" /> |
| 52129 | 57829 | </dataarea> |
| r21545 | r21546 | |
| 52138 | 57838 | <info name="release" value="19960531" /> |
| 52139 | 57839 | <info name="alt_title" value="すぱぽーんDX" /> |
| 52140 | 57840 | <part name="cart" interface="snes_cart"> |
| 57841 | ||
| 57842 | <feature name="slot" value="hirom" /> | |
| 52141 | 57843 | <dataarea name="rom" size="1048576"> |
| 52142 | 57844 | <rom name="supapoon dx (japan).sfc" size="1048576" crc="be52c486" sha1="c7a03fd692c144e781dc5a179e448b2e7b07df3c" offset="0x000000" /> |
| 52143 | 57845 | </dataarea> |
| r21545 | r21546 | |
| 52152 | 57854 | <info name="release" value="19940617" /> |
| 52153 | 57855 | <info name="alt_title" value="スーパー4WD ザ・バハ" /> |
| 52154 | 57856 | <part name="cart" interface="snes_cart"> |
| 57857 | ||
| 57858 | <feature name="slot" value="lorom" /> | |
| 52155 | 57859 | <dataarea name="rom" size="1048576"> |
| 52156 | 57860 | <rom name="super 4wd - the baja (japan).sfc" size="1048576" crc="c6b67138" sha1="86605910b74e6f8cc7ef824795cf2657903568a9" offset="0x000000" /> |
| 52157 | 57861 | </dataarea> |
| r21545 | r21546 | |
| 52163 | 57867 | <year>199?</year> |
| 52164 | 57868 | <publisher><unlicensed></publisher> |
| 52165 | 57869 | <part name="cart" interface="snes_cart"> |
| 57870 | ||
| 57871 | <feature name="slot" value="lorom" /> | |
| 52166 | 57872 | <dataarea name="rom" size="8192"> |
| 52167 | 57873 | <rom name="super 8 (usa) (unl).sfc" size="8192" crc="dfbac4f2" sha1="284d81eeec5687fe066c704939d3980325bc28f1" offset="0x000000" /> |
| 52168 | 57874 | </dataarea> |
| r21545 | r21546 | |
| 52174 | 57880 | <year>1992</year> |
| 52175 | 57881 | <publisher>Hudson</publisher> |
| 52176 | 57882 | <part name="cart" interface="snes_cart"> |
| 57883 | ||
| 57884 | <feature name="slot" value="lorom" /> | |
| 52177 | 57885 | <dataarea name="rom" size="1048576"> |
| 52178 | 57886 | <rom name="super adventure island (europe).sfc" size="1048576" crc="9a8618d6" sha1="5b7485df4eb9e9198e972fd2377fc7bde826381c" offset="0x000000" /> |
| 52179 | 57887 | </dataarea> |
| r21545 | r21546 | |
| 52186 | 57894 | <publisher>Hudson</publisher> |
| 52187 | 57895 | <info name="release" value="199204xx" /> |
| 52188 | 57896 | <part name="cart" interface="snes_cart"> |
| 57897 | ||
| 57898 | <feature name="slot" value="lorom" /> | |
| 52189 | 57899 | <dataarea name="rom" size="1048576"> |
| 52190 | 57900 | <rom name="super adventure island (usa).sfc" size="1048576" crc="dcd46848" sha1="74a3671878b1d7c8b3fd5a14677c16b2d5566af0" offset="0x000000" /> |
| 52191 | 57901 | </dataarea> |
| r21545 | r21546 | |
| 52197 | 57907 | <year>1994</year> |
| 52198 | 57908 | <publisher>Hudson</publisher> |
| 52199 | 57909 | <part name="cart" interface="snes_cart"> |
| 57910 | ||
| 57911 | <feature name="slot" value="hirom" /> | |
| 52200 | 57912 | <dataarea name="rom" size="1572864"> |
| 52201 | 57913 | <rom name="super adventure island ii (europe).sfc" size="1572864" crc="64c6297b" sha1="2e92d9f37a90bd2287fc41cf6b1f9f7c2e7ed4b4" offset="0x000000" /> |
| 52202 | 57914 | </dataarea> |
| r21545 | r21546 | |
| 52211 | 57923 | <publisher>Hudson</publisher> |
| 52212 | 57924 | <info name="release" value="199410xx" /> |
| 52213 | 57925 | <part name="cart" interface="snes_cart"> |
| 57926 | ||
| 57927 | <feature name="slot" value="hirom" /> | |
| 52214 | 57928 | <dataarea name="rom" size="1572864"> |
| 52215 | 57929 | <rom name="super adventure island ii (usa).sfc" size="1572864" crc="52fe16fd" sha1="06776efd3cc3997513f90fbe2507939a1c61bb87" offset="0x000000" /> |
| 52216 | 57930 | </dataarea> |
| r21545 | r21546 | |
| 52224 | 57938 | <year>1992</year> |
| 52225 | 57939 | <publisher>Toho</publisher> |
| 52226 | 57940 | <part name="cart" interface="snes_cart"> |
| 57941 | ||
| 57942 | <feature name="slot" value="lorom" /> | |
| 52227 | 57943 | <dataarea name="rom" size="1048576"> |
| 52228 | 57944 | <rom name="super aleste (europe).sfc" size="1048576" crc="e02f9206" sha1="5332dd6fed76e129a3eceec13f44493a3d13998a" offset="0x000000" /> |
| 52229 | 57945 | </dataarea> |
| r21545 | r21546 | |
| 52238 | 57954 | <info name="release" value="19920428" /> |
| 52239 | 57955 | <info name="alt_title" value="スーパーアレスタ" /> |
| 52240 | 57956 | <part name="cart" interface="snes_cart"> |
| 57957 | ||
| 57958 | <feature name="slot" value="lorom" /> | |
| 52241 | 57959 | <dataarea name="rom" size="1048576"> |
| 52242 | 57960 | <rom name="super aleste (japan).sfc" size="1048576" crc="94d28ff9" sha1="da4f108d894dabe16aba9c25f04443df3ed4945a" offset="0x000000" /> |
| 52243 | 57961 | </dataarea> |
| r21545 | r21546 | |
| 52250 | 57968 | <publisher>Mindscape</publisher> |
| 52251 | 57969 | <info name="release" value="199402xx" /> |
| 52252 | 57970 | <part name="cart" interface="snes_cart"> |
| 57971 | ||
| 57972 | <feature name="slot" value="lorom" /> | |
| 52253 | 57973 | <dataarea name="rom" size="1048576"> |
| 52254 | 57974 | <rom name="super alfred chicken (usa).sfc" size="1048576" crc="f21c5a9d" sha1="8ee35aabd7b15c2dbeb2ff401874fc792f9aa49c" offset="0x000000" /> |
| 52255 | 57975 | </dataarea> |
| r21545 | r21546 | |
| 52261 | 57981 | <year>1993</year> |
| 52262 | 57982 | <publisher>Seika</publisher> |
| 52263 | 57983 | <part name="cart" interface="snes_cart"> |
| 57984 | ||
| 57985 | <feature name="slot" value="lorom" /> | |
| 52264 | 57986 | <dataarea name="rom" size="524288"> |
| 52265 | 57987 | <rom name="super aquatic games starring the aquabats, the (usa) (beta).sfc" size="524288" crc="249dffd6" sha1="8b8da62f5d2df47d1dc830e5ef7b572796082558" offset="0x000000" /> |
| 52266 | 57988 | </dataarea> |
| r21545 | r21546 | |
| 52273 | 57995 | <publisher>Seika</publisher> |
| 52274 | 57996 | <info name="release" value="199310xx" /> |
| 52275 | 57997 | <part name="cart" interface="snes_cart"> |
| 57998 | ||
| 57999 | <feature name="slot" value="lorom" /> | |
| 52276 | 58000 | <dataarea name="rom" size="524288"> |
| 52277 | 58001 | <rom name="super aquatic games starring the aquabats, the (usa).sfc" size="524288" crc="2a5ddac0" sha1="4defd682dc0a8e02cbe014a3a42cbe14dedcd438" offset="0x000000" /> |
| 52278 | 58002 | </dataarea> |
| r21545 | r21546 | |
| 52284 | 58008 | <year>1994</year> |
| 52285 | 58009 | <publisher>Hudson</publisher> |
| 52286 | 58010 | <part name="cart" interface="snes_cart"> |
| 58011 | ||
| 58012 | <feature name="slot" value="hirom" /> | |
| 52287 | 58013 | <dataarea name="rom" size="1572864"> |
| 52288 | 58014 | <rom name="super b.c. kid (europe).sfc" size="1572864" crc="5615d5ed" sha1="773d1d4c1d4f974e0af25c754280f376ea00f510" offset="0x000000" /> |
| 52289 | 58015 | </dataarea> |
| r21545 | r21546 | |
| 52298 | 58024 | <info name="release" value="19930723" /> |
| 52299 | 58025 | <info name="alt_title" value="スーパー・バック・トゥ・ザ・フューチャーII" /> |
| 52300 | 58026 | <part name="cart" interface="snes_cart"> |
| 58027 | ||
| 58028 | <feature name="slot" value="lorom" /> | |
| 52301 | 58029 | <dataarea name="rom" size="1048576"> |
| 52302 | 58030 | <rom name="super back to the future part ii (japan).sfc" size="1048576" crc="b367d0b9" sha1="dd95d3f729e9373322904f92b9816ae02b4c45f6" offset="0x000000" /> |
| 52303 | 58031 | </dataarea> |
| r21545 | r21546 | |
| 52312 | 58040 | <info name="release" value="19950324" /> |
| 52313 | 58041 | <info name="alt_title" value="スーパー馬券王'95" /> |
| 52314 | 58042 | <part name="cart" interface="snes_cart"> |
| 58043 | ||
| 58044 | <feature name="slot" value="lorom" /> | |
| 52315 | 58045 | <dataarea name="rom" size="1048576"> |
| 52316 | 58046 | <rom name="super baken ou '95 (japan).sfc" size="1048576" crc="e611a4dc" sha1="a42c98b9a94538102c507c1188234b48dd79bebd" offset="0x000000" /> |
| 52317 | 58047 | </dataarea> |
| r21545 | r21546 | |
| 52326 | 58056 | <publisher>Jaleco</publisher> |
| 52327 | 58057 | <info name="release" value="199109xx" /> |
| 52328 | 58058 | <part name="cart" interface="snes_cart"> |
| 58059 | ||
| 58060 | <feature name="slot" value="lorom" /> | |
| 52329 | 58061 | <dataarea name="rom" size="1048576"> |
| 52330 | 58062 | <rom name="super bases loaded (usa).sfc" size="1048576" crc="6b971f1e" sha1="2b2523ad38d3597902d4600a7a7752319faee8a9" offset="0x000000" /> |
| 52331 | 58063 | </dataarea> |
| r21545 | r21546 | |
| 52339 | 58071 | <info name="release" value="199502xx" /> |
| 52340 | 58072 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52341 | 58073 | <part name="cart" interface="snes_cart"> |
| 58074 | ||
| 58075 | <feature name="slot" value="lorom" /> | |
| 52342 | 58076 | <dataarea name="rom" size="2097152"> |
| 52343 | 58077 | <rom name="super bases loaded 3 - license to steal (usa).sfc" size="2097152" crc="f0540d1b" sha1="88c063421a2c97af4f8b744981704053e075efc7" offset="0x000000" /> |
| 52344 | 58078 | </dataarea> |
| r21545 | r21546 | |
| 52355 | 58089 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52356 | 58090 | <part name="cart" interface="snes_cart"> |
| 52357 | 58091 | <feature name="enhancement" value="DSP1" /> |
| 58092 | ||
| 58093 | <feature name="slot" value="lorom_dsp" /> | |
| 52358 | 58094 | <dataarea name="rom" size="1572864"> |
| 52359 | 58095 | <rom name="super bases loaded ii (usa).sfc" size="1572864" crc="e14128ca" sha1="d7d29e9a6a4820f2df03eeb80fdbc2b7df37f481" offset="0x000000" /> |
| 52360 | 58096 | </dataarea> |
| 58097 | <dataarea name="addon" size="10240"> | |
| 58098 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 58099 | </dataarea> | |
| 52361 | 58100 | <dataarea name="nvram" size="8192"> |
| 52362 | 58101 | </dataarea> |
| 52363 | 58102 | </part> |
| r21545 | r21546 | |
| 52369 | 58108 | <publisher>Namco</publisher> |
| 52370 | 58109 | <info name="release" value="199210xx" /> |
| 52371 | 58110 | <part name="cart" interface="snes_cart"> |
| 58111 | ||
| 58112 | <feature name="slot" value="lorom" /> | |
| 52372 | 58113 | <dataarea name="rom" size="1048576"> |
| 52373 | 58114 | <rom name="super batter up (usa).sfc" size="1048576" crc="5896c854" sha1="4b7cd1b4612c533a30c4eedaf5f33103cadf56c2" offset="0x000000" /> |
| 52374 | 58115 | </dataarea> |
| r21545 | r21546 | |
| 52380 | 58121 | <year>1993</year> |
| 52381 | 58122 | <publisher>Mindscape</publisher> |
| 52382 | 58123 | <part name="cart" interface="snes_cart"> |
| 58124 | ||
| 58125 | <feature name="slot" value="lorom" /> | |
| 52383 | 58126 | <dataarea name="rom" size="524288"> |
| 52384 | 58127 | <rom name="super battleship (europe).sfc" size="524288" crc="9c365cae" sha1="c9280f66aced5b0b8879d2636bc050a59763b7e5" offset="0x000000" /> |
| 52385 | 58128 | </dataarea> |
| r21545 | r21546 | |
| 52391 | 58134 | <year>1992</year> |
| 52392 | 58135 | <publisher>Absolute Entertainment</publisher> |
| 52393 | 58136 | <part name="cart" interface="snes_cart"> |
| 58137 | ||
| 58138 | <feature name="slot" value="lorom" /> | |
| 52394 | 58139 | <dataarea name="rom" size="524288"> |
| 52395 | 58140 | <rom name="super battletank (europe).sfc" size="524288" crc="fe7de9ce" sha1="93a86dd8d83c1edf7f0d028820b90355c2d4627e" offset="0x000000" /> |
| 52396 | 58141 | </dataarea> |
| r21545 | r21546 | |
| 52405 | 58150 | <info name="release" value="19930423" /> |
| 52406 | 58151 | <info name="alt_title" value="スーパーバトルタンク" /> |
| 52407 | 58152 | <part name="cart" interface="snes_cart"> |
| 58153 | ||
| 58154 | <feature name="slot" value="lorom" /> | |
| 52408 | 58155 | <dataarea name="rom" size="524288"> |
| 52409 | 58156 | <rom name="super battletank (japan).sfc" size="524288" crc="c53b82cd" sha1="ef5fb01cb8c18a94475e98691959d0695ae26e94" offset="0x000000" /> |
| 52410 | 58157 | </dataarea> |
| r21545 | r21546 | |
| 52417 | 58164 | <publisher>Absolute Entertainment</publisher> |
| 52418 | 58165 | <info name="release" value="199206xx" /> |
| 52419 | 58166 | <part name="cart" interface="snes_cart"> |
| 58167 | ||
| 58168 | <feature name="slot" value="lorom" /> | |
| 52420 | 58169 | <dataarea name="rom" size="524288"> |
| 52421 | 58170 | <rom name="super battletank - war in the gulf (usa) (rev 1).sfc" size="524288" crc="77811b34" sha1="85f6f3e84f5ee57e09424dbd9f89cf069bbc41ea" offset="0x000000" /> |
| 52422 | 58171 | </dataarea> |
| r21545 | r21546 | |
| 52429 | 58178 | <publisher>Absolute Entertainment</publisher> |
| 52430 | 58179 | <info name="release" value="199206xx" /> |
| 52431 | 58180 | <part name="cart" interface="snes_cart"> |
| 58181 | ||
| 58182 | <feature name="slot" value="lorom" /> | |
| 52432 | 58183 | <dataarea name="rom" size="524288"> |
| 52433 | 58184 | <rom name="super battletank - war in the gulf (usa).sfc" size="524288" crc="2ce0c852" sha1="ceb2babcdbdcb55903bdfbf9a70edf103c162bf3" offset="0x000000" /> |
| 52434 | 58185 | </dataarea> |
| r21545 | r21546 | |
| 52440 | 58191 | <year>1994</year> |
| 52441 | 58192 | <publisher>Sony Imagesoft</publisher> |
| 52442 | 58193 | <part name="cart" interface="snes_cart"> |
| 58194 | ||
| 58195 | <feature name="slot" value="lorom" /> | |
| 52443 | 58196 | <dataarea name="rom" size="2097152"> |
| 52444 | 58197 | <rom name="super battletank 2 (europe).sfc" size="2097152" crc="198ffcdb" sha1="f781b953b34d1a10c5138487e0dada885a099076" offset="0x000000" /> |
| 52445 | 58198 | </dataarea> |
| r21545 | r21546 | |
| 52454 | 58207 | <info name="release" value="19940527" /> |
| 52455 | 58208 | <info name="alt_title" value="スーパーバトルタンク2" /> |
| 52456 | 58209 | <part name="cart" interface="snes_cart"> |
| 58210 | ||
| 58211 | <feature name="slot" value="lorom" /> | |
| 52457 | 58212 | <dataarea name="rom" size="2097152"> |
| 52458 | 58213 | <rom name="super battletank 2 (japan).sfc" size="2097152" crc="8321c8cd" sha1="5c272e894adf831e220821307c80f0dcda37e775" offset="0x000000" /> |
| 52459 | 58214 | </dataarea> |
| r21545 | r21546 | |
| 52465 | 58220 | <year>1994</year> |
| 52466 | 58221 | <publisher>Sony Imagesoft</publisher> |
| 52467 | 58222 | <part name="cart" interface="snes_cart"> |
| 58223 | ||
| 58224 | <feature name="slot" value="lorom" /> | |
| 52468 | 58225 | <dataarea name="rom" size="2097152"> |
| 52469 | 58226 | <rom name="super battletank 2 (spain).sfc" size="2097152" crc="d3802a47" sha1="04faa0072a039d5d1698da013b1db0d22c2f5604" offset="0x000000" /> |
| 52470 | 58227 | </dataarea> |
| r21545 | r21546 | |
| 52477 | 58234 | <publisher>Absolute Entertainment</publisher> |
| 52478 | 58235 | <info name="release" value="199401xx" /> |
| 52479 | 58236 | <part name="cart" interface="snes_cart"> |
| 58237 | ||
| 58238 | <feature name="slot" value="lorom" /> | |
| 52480 | 58239 | <dataarea name="rom" size="2097152"> |
| 52481 | 58240 | <rom name="super battletank 2 (usa).sfc" size="2097152" crc="70a292d6" sha1="41c7441f3b66b6b62e36b2d4e95f4e66a0634ba3" offset="0x000000" /> |
| 52482 | 58241 | </dataarea> |
| r21545 | r21546 | |
| 52491 | 58250 | <info name="release" value="19930129" /> |
| 52492 | 58251 | <info name="alt_title" value="スーパービックリマン" /> |
| 52493 | 58252 | <part name="cart" interface="snes_cart"> |
| 58253 | ||
| 58254 | <feature name="slot" value="lorom" /> | |
| 52494 | 58255 | <dataarea name="rom" size="1048576"> |
| 52495 | 58256 | <rom name="super bikkuriman (japan).sfc" size="1048576" crc="b367b8b6" sha1="4c3742a3fa0d1501a16e7c17e35820f8790bc622" offset="0x000000" /> |
| 52496 | 58257 | </dataarea> |
| r21545 | r21546 | |
| 52505 | 58266 | <info name="release" value="19940624" /> |
| 52506 | 58267 | <info name="alt_title" value="スーパービリヤード チャンピオン シッププール" /> |
| 52507 | 58268 | <part name="cart" interface="snes_cart"> |
| 58269 | ||
| 58270 | <feature name="slot" value="lorom" /> | |
| 52508 | 58271 | <dataarea name="rom" size="1048576"> |
| 52509 | 58272 | <rom name="super billiard - championship pool (japan).sfc" size="1048576" crc="f7031d41" sha1="f72a47c7191834be6df18c8df702c6a76c6c48db" offset="0x000000" /> |
| 52510 | 58273 | </dataarea> |
| r21545 | r21546 | |
| 52519 | 58282 | <info name="release" value="19920306" /> |
| 52520 | 58283 | <info name="alt_title" value="スーパーバーディラッシュ" /> |
| 52521 | 58284 | <part name="cart" interface="snes_cart"> |
| 58285 | ||
| 58286 | <feature name="slot" value="lorom" /> | |
| 52522 | 58287 | <dataarea name="rom" size="1048576"> |
| 52523 | 58288 | <rom name="super birdie rush (japan).sfc" size="1048576" crc="b854df10" sha1="ee62ac3684b0d68af3472d5b2788af742a253cea" offset="0x000000" /> |
| 52524 | 58289 | </dataarea> |
| r21545 | r21546 | |
| 52535 | 58300 | <info name="release" value="19921204" /> |
| 52536 | 58301 | <info name="alt_title" value="スーパーブラックバス" /> |
| 52537 | 58302 | <part name="cart" interface="snes_cart"> |
| 58303 | ||
| 58304 | <feature name="slot" value="lorom" /> | |
| 52538 | 58305 | <dataarea name="rom" size="1048576"> |
| 52539 | 58306 | <rom name="super black bass (japan).sfc" size="1048576" crc="89f2712c" sha1="a84808faa0d8b89195eb4e90ed7346cabf142374" offset="0x000000" /> |
| 52540 | 58307 | </dataarea> |
| r21545 | r21546 | |
| 52550 | 58317 | <info name="alt_title" value="スーパーブラックバス2" /> |
| 52551 | 58318 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52552 | 58319 | <part name="cart" interface="snes_cart"> |
| 58320 | ||
| 58321 | <feature name="slot" value="lorom" /> | |
| 52553 | 58322 | <dataarea name="rom" size="2097152"> |
| 52554 | 58323 | <rom name="super black bass 2 (japan).sfc" size="2097152" crc="9572e3ad" sha1="55c11e35b73993558429193cc40a1837d0dddbe0" offset="0x000000" /> |
| 52555 | 58324 | </dataarea> |
| r21545 | r21546 | |
| 52567 | 58336 | <info name="alt_title" value="スーパーブラックバス3" /> |
| 52568 | 58337 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52569 | 58338 | <part name="cart" interface="snes_cart"> |
| 58339 | ||
| 58340 | <feature name="slot" value="lorom" /> | |
| 52570 | 58341 | <dataarea name="rom" size="4194304"> |
| 52571 | 58342 | <rom name="super black bass 3 (japan) (rev 1).sfc" size="4194304" crc="97ae0df4" sha1="cc43952f2cfc9a5b99325301b58178f7713ac942" offset="0x000000" /> |
| 52572 | 58343 | </dataarea> |
| r21545 | r21546 | |
| 52584 | 58355 | <info name="alt_title" value="スーパーブラックバス3" /> |
| 52585 | 58356 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52586 | 58357 | <part name="cart" interface="snes_cart"> |
| 58358 | ||
| 58359 | <feature name="slot" value="lorom" /> | |
| 52587 | 58360 | <dataarea name="rom" size="4194304"> |
| 52588 | 58361 | <rom name="super black bass 3 (japan).sfc" size="4194304" crc="ec9104db" sha1="1d3d5862622c097743ff159f47f49f5f7bb47ba9" offset="0x000000" /> |
| 52589 | 58362 | </dataarea> |
| r21545 | r21546 | |
| 52597 | 58370 | <year>1993</year> |
| 52598 | 58371 | <publisher>Hudson</publisher> |
| 52599 | 58372 | <part name="cart" interface="snes_cart"> |
| 58373 | ||
| 58374 | <feature name="slot" value="hirom" /> | |
| 52600 | 58375 | <dataarea name="rom" size="524288"> |
| 52601 | 58376 | <rom name="super bomberman (europe).sfc" size="524288" crc="678501f2" sha1="82ea3a8a5a049e5b3813b884f2e8b8dbb585f065" offset="0x000000" /> |
| 52602 | 58377 | </dataarea> |
| r21545 | r21546 | |
| 52608 | 58383 | <year>1994</year> |
| 52609 | 58384 | <publisher>Hudson</publisher> |
| 52610 | 58385 | <part name="cart" interface="snes_cart"> |
| 58386 | ||
| 58387 | <feature name="slot" value="hirom" /> | |
| 52611 | 58388 | <dataarea name="rom" size="1048576"> |
| 52612 | 58389 | <rom name="super bomberman 2 (japan) (caravan you taikenban).sfc" size="1048576" crc="2aa1ddf8" sha1="0573fe3e65a8ff7877970f30d2511c57e0af2757" offset="0x000000" /> |
| 52613 | 58390 | </dataarea> |
| r21545 | r21546 | |
| 52619 | 58396 | <year>1995</year> |
| 52620 | 58397 | <publisher>Hudson</publisher> |
| 52621 | 58398 | <part name="cart" interface="snes_cart"> |
| 58399 | ||
| 58400 | <feature name="slot" value="hirom" /> | |
| 52622 | 58401 | <dataarea name="rom" size="1572864"> |
| 52623 | 58402 | <rom name="super bomberman 3 (europe).sfc" size="1572864" crc="a096a6e5" sha1="14886d0fa66af3bd919c354b2ad6fbb8892ad0ae" offset="0x000000" /> |
| 52624 | 58403 | </dataarea> |
| r21545 | r21546 | |
| 52630 | 58409 | <year>1995</year> |
| 52631 | 58410 | <publisher>Hudson</publisher> |
| 52632 | 58411 | <part name="cart" interface="snes_cart"> |
| 58412 | ||
| 58413 | <feature name="slot" value="hirom" /> | |
| 52633 | 58414 | <dataarea name="rom" size="1572864"> |
| 52634 | 58415 | <rom name="super bomberman 3 (japan) (beta).sfc" size="1572864" crc="002fa245" sha1="4c5049f84e8c20925b521b93972789fdbf01d22d" offset="0x000000" /> |
| 52635 | 58416 | </dataarea> |
| r21545 | r21546 | |
| 52644 | 58425 | <info name="release" value="19960426" /> |
| 52645 | 58426 | <info name="alt_title" value="スーパーボンバーマン4" /> |
| 52646 | 58427 | <part name="cart" interface="snes_cart"> |
| 58428 | ||
| 58429 | <feature name="slot" value="hirom" /> | |
| 52647 | 58430 | <dataarea name="rom" size="2097152"> |
| 52648 | 58431 | <rom name="super bomberman 4 (japan).sfc" size="2097152" crc="3bbaeb19" sha1="ff580e5a990b1eb4026fdc3669ec6f4a750b6309" offset="0x000000" /> |
| 52649 | 58432 | </dataarea> |
| r21545 | r21546 | |
| 52655 | 58438 | <year>1997</year> |
| 52656 | 58439 | <publisher>Hudson</publisher> |
| 52657 | 58440 | <part name="cart" interface="snes_cart"> |
| 58441 | ||
| 58442 | <feature name="slot" value="hirom" /> | |
| 52658 | 58443 | <dataarea name="rom" size="2097152"> |
| 52659 | 58444 | <rom name="super bomberman 5 (japan) (caravan event ban).sfc" size="2097152" crc="4590ae9d" sha1="b10b1c1c6c5a5a6512fec91032a17498149ce40a" offset="0x000000" /> |
| 52660 | 58445 | </dataarea> |
| r21545 | r21546 | |
| 52671 | 58456 | <info name="release" value="19970228" /> |
| 52672 | 58457 | <info name="alt_title" value="スーパーボンバーマン5" /> |
| 52673 | 58458 | <part name="cart" interface="snes_cart"> |
| 58459 | ||
| 58460 | <feature name="slot" value="hirom" /> | |
| 52674 | 58461 | <dataarea name="rom" size="2097152"> |
| 52675 | 58462 | <rom name="super bomberman 5 (japan).sfc" size="2097152" crc="06b1f0f5" sha1="e2dd2f062d3b41f7550fdbc5f7e2b7d0c8ac684c" offset="0x000000" /> |
| 52676 | 58463 | </dataarea> |
| r21545 | r21546 | |
| 52686 | 58473 | <info name="release" value="199411xx" /> |
| 52687 | 58474 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52688 | 58475 | <part name="cart" interface="snes_cart"> |
| 58476 | ||
| 58477 | <feature name="slot" value="hirom" /> | |
| 52689 | 58478 | <dataarea name="rom" size="1572864"> |
| 52690 | 58479 | <rom name="super bonk (usa).sfc" size="1572864" crc="5688b581" sha1="9231c961fff66854761816ea71d75b6e38f42d8f" offset="0x000000" /> |
| 52691 | 58480 | </dataarea> |
| r21545 | r21546 | |
| 52698 | 58487 | <publisher>American Technos</publisher> |
| 52699 | 58488 | <info name="release" value="199209xx" /> |
| 52700 | 58489 | <part name="cart" interface="snes_cart"> |
| 58490 | ||
| 58491 | <feature name="slot" value="lorom" /> | |
| 52701 | 58492 | <dataarea name="rom" size="524288"> |
| 52702 | 58493 | <rom name="super bowling (usa).sfc" size="524288" crc="94945b50" sha1="b17492bb3d7ebe9fdcf465c1eeb78944b0484cda" offset="0x000000" /> |
| 52703 | 58494 | </dataarea> |
| r21545 | r21546 | |
| 52710 | 58501 | <publisher>Capcom</publisher> |
| 52711 | 58502 | <info name="release" value="199210xx" /> |
| 52712 | 58503 | <part name="cart" interface="snes_cart"> |
| 58504 | ||
| 58505 | <feature name="slot" value="lorom" /> | |
| 52713 | 58506 | <dataarea name="rom" size="524288"> |
| 52714 | 58507 | <rom name="super buster bros. (usa) (rev 1).sfc" size="524288" crc="9526d1aa" sha1="ea228ed04f101dfaf5d865d2aeb839bd509bd3ca" offset="0x000000" /> |
| 52715 | 58508 | </dataarea> |
| r21545 | r21546 | |
| 52722 | 58515 | <publisher>Capcom</publisher> |
| 52723 | 58516 | <info name="release" value="199210xx" /> |
| 52724 | 58517 | <part name="cart" interface="snes_cart"> |
| 58518 | ||
| 58519 | <feature name="slot" value="lorom" /> | |
| 52725 | 58520 | <dataarea name="rom" size="524288"> |
| 52726 | 58521 | <rom name="super buster bros. (usa).sfc" size="524288" crc="c86872d3" sha1="48b0c96010bbecbdeaedb37475b5114276f1cb5a" offset="0x000000" /> |
| 52727 | 58522 | </dataarea> |
| r21545 | r21546 | |
| 52733 | 58528 | <year>1993</year> |
| 52734 | 58529 | <publisher>Virgin Interactive</publisher> |
| 52735 | 58530 | <part name="cart" interface="snes_cart"> |
| 58531 | ||
| 58532 | <feature name="slot" value="lorom" /> | |
| 52736 | 58533 | <dataarea name="rom" size="524288"> |
| 52737 | 58534 | <rom name="super caesars palace (usa) (beta).sfc" size="524288" crc="88eb3131" sha1="59fd2f572bffc890813cb554f04d7c3d4f68f811" offset="0x000000" /> |
| 52738 | 58535 | </dataarea> |
| r21545 | r21546 | |
| 52747 | 58544 | <info name="release" value="19931021" /> |
| 52748 | 58545 | <info name="alt_title" value="スーパーカジノシーザースパレス" /> |
| 52749 | 58546 | <part name="cart" interface="snes_cart"> |
| 58547 | ||
| 58548 | <feature name="slot" value="lorom" /> | |
| 52750 | 58549 | <dataarea name="rom" size="524288"> |
| 52751 | 58550 | <rom name="super casino - caesars palace (japan) (rev 1).sfc" size="524288" crc="53193b87" sha1="7a51cf4dda4cabb1fef9825afacad80c117e9c3e" offset="0x000000" /> |
| 52752 | 58551 | </dataarea> |
| r21545 | r21546 | |
| 52761 | 58560 | <info name="release" value="19931021" /> |
| 52762 | 58561 | <info name="alt_title" value="スーパーカジノシーザースパレス" /> |
| 52763 | 58562 | <part name="cart" interface="snes_cart"> |
| 58563 | ||
| 58564 | <feature name="slot" value="lorom" /> | |
| 52764 | 58565 | <dataarea name="rom" size="524288"> |
| 52765 | 58566 | <rom name="super casino - caesars palace (japan).sfc" size="524288" crc="6f9632d7" sha1="22650e997555d3cf40eb82ffbc743d31ccb219dd" offset="0x000000" /> |
| 52766 | 58567 | </dataarea> |
| r21545 | r21546 | |
| 52775 | 58576 | <info name="release" value="19941028" /> |
| 52776 | 58577 | <info name="alt_title" value="スーパー カジノ2" /> |
| 52777 | 58578 | <part name="cart" interface="snes_cart"> |
| 58579 | ||
| 58580 | <feature name="slot" value="lorom" /> | |
| 52778 | 58581 | <dataarea name="rom" size="524288"> |
| 52779 | 58582 | <rom name="super casino 2 (japan).sfc" size="524288" crc="cc306f93" sha1="7a5148cc2029ce786d9d4ae62be3a1f2784e6a46" offset="0x000000" /> |
| 52780 | 58583 | </dataarea> |
| r21545 | r21546 | |
| 52789 | 58592 | <info name="release" value="19941222" /> |
| 52790 | 58593 | <info name="alt_title" value="スーパーキャッスルス" /> |
| 52791 | 58594 | <part name="cart" interface="snes_cart"> |
| 58595 | ||
| 58596 | <feature name="slot" value="hirom" /> | |
| 52792 | 58597 | <dataarea name="rom" size="1048576"> |
| 52793 | 58598 | <rom name="super castles (japan).sfc" size="1048576" crc="ff1c41c1" sha1="d85641645089e17ea4bb141ba02d52fa058971ce" offset="0x000000" /> |
| 52794 | 58599 | </dataarea> |
| r21545 | r21546 | |
| 52802 | 58607 | <year>1993</year> |
| 52803 | 58608 | <publisher>Taito</publisher> |
| 52804 | 58609 | <part name="cart" interface="snes_cart"> |
| 58610 | ||
| 58611 | <feature name="slot" value="lorom" /> | |
| 52805 | 58612 | <dataarea name="rom" size="1048576"> |
| 52806 | 58613 | <rom name="super chase h.q. (europe).sfc" size="1048576" crc="01211c80" sha1="138320659a5168f59ff3f8e8bebd98a0592a271e" offset="0x000000" /> |
| 52807 | 58614 | </dataarea> |
| r21545 | r21546 | |
| 52814 | 58621 | <publisher>Taito</publisher> |
| 52815 | 58622 | <info name="release" value="199312xx" /> |
| 52816 | 58623 | <part name="cart" interface="snes_cart"> |
| 58624 | ||
| 58625 | <feature name="slot" value="lorom" /> | |
| 52817 | 58626 | <dataarea name="rom" size="1048576"> |
| 52818 | 58627 | <rom name="super chase h.q. (usa).sfc" size="1048576" crc="6ef3b9c7" sha1="d962fe88bd6d1bba78386c4f42ec4fd183d8da9b" offset="0x000000" /> |
| 52819 | 58628 | </dataarea> |
| r21545 | r21546 | |
| 52828 | 58637 | <info name="release" value="19950103" /> |
| 52829 | 58638 | <info name="alt_title" value="スーパーチャイニースフ ァイター" /> |
| 52830 | 58639 | <part name="cart" interface="snes_cart"> |
| 58640 | ||
| 58641 | <feature name="slot" value="lorom" /> | |
| 52831 | 58642 | <dataarea name="rom" size="2097152"> |
| 52832 | 58643 | <rom name="super chinese fighter (japan).sfc" size="2097152" crc="84767959" sha1="8f526ab6bd508df51f08fed13034923e017566c8" offset="0x000000" /> |
| 52833 | 58644 | </dataarea> |
| r21545 | r21546 | |
| 52839 | 58650 | <year>1993</year> |
| 52840 | 58651 | <publisher>Culture Brain</publisher> |
| 52841 | 58652 | <part name="cart" interface="snes_cart"> |
| 58653 | ||
| 58654 | <feature name="slot" value="lorom" /> | |
| 52842 | 58655 | <dataarea name="rom" size="2097152"> |
| 52843 | 58656 | <rom name="super chinese world 2 - uchuu ichibutou taikai (japan) (sample).sfc" size="2097152" crc="28bd0dbf" sha1="e595ff72c8bde192d1b72477eff3d1f906b07c12" offset="0x000000" /> |
| 52844 | 58657 | </dataarea> |
| r21545 | r21546 | |
| 52853 | 58666 | <info name="release" value="19951222" /> |
| 52854 | 58667 | <info name="alt_title" value="スーパーチャイニーズワールド3 ~超次元大作戦~" /> |
| 52855 | 58668 | <part name="cart" interface="snes_cart"> |
| 58669 | ||
| 58670 | <feature name="slot" value="lorom" /> | |
| 52856 | 58671 | <dataarea name="rom" size="1572864"> |
| 52857 | 58672 | <rom name="super chinese world 3 - chou jigen daisakusen (japan).sfc" size="1572864" crc="758a0322" sha1="9ecc8d4805e3cb7df1848eedcf32ec641008a655" offset="0x000000" /> |
| 52858 | 58673 | </dataarea> |
| r21545 | r21546 | |
| 52866 | 58681 | <publisher>Vic Tokai</publisher> |
| 52867 | 58682 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52868 | 58683 | <part name="cart" interface="snes_cart"> |
| 58684 | ||
| 58685 | <feature name="slot" value="lorom" /> | |
| 52869 | 58686 | <dataarea name="rom" size="1048576"> |
| 52870 | 58687 | <rom name="super conflict - the mideast (europe).sfc" size="1048576" crc="0a699604" sha1="e3de5475971f635df1014c38342dff6a3642db0c" offset="0x000000" /> |
| 52871 | 58688 | </dataarea> |
| r21545 | r21546 | |
| 52881 | 58698 | <info name="release" value="199303xx" /> |
| 52882 | 58699 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52883 | 58700 | <part name="cart" interface="snes_cart"> |
| 58701 | ||
| 58702 | <feature name="slot" value="lorom" /> | |
| 52884 | 58703 | <dataarea name="rom" size="1048576"> |
| 52885 | 58704 | <rom name="super conflict - the mideast (usa).sfc" size="1048576" crc="f254d5cf" sha1="6ad80097738a6c8e3611dbbd959828e89624a930" offset="0x000000" /> |
| 52886 | 58705 | </dataarea> |
| r21545 | r21546 | |
| 52894 | 58713 | <year>1994</year> |
| 52895 | 58714 | <publisher>American Softworks Company</publisher> |
| 52896 | 58715 | <part name="cart" interface="snes_cart"> |
| 58716 | ||
| 58717 | <feature name="slot" value="lorom" /> | |
| 52897 | 58718 | <dataarea name="rom" size="1048576"> |
| 52898 | 58719 | <rom name="super copa (brazil) (es,pt).sfc" size="1048576" crc="49e53877" sha1="92a3ce60b79d4409ae51048cf3ce0e84828e178d" offset="0x000000" /> |
| 52899 | 58720 | </dataarea> |
| r21545 | r21546 | |
| 52905 | 58726 | <year>1998</year> |
| 52906 | 58727 | <publisher>Virgin Interactive</publisher> |
| 52907 | 58728 | <part name="cart" interface="snes_cart"> |
| 58729 | ||
| 58730 | <feature name="slot" value="lorom" /> | |
| 52908 | 58731 | <dataarea name="rom" size="1048576"> |
| 52909 | 58732 | <rom name="super dany (france) (beta).sfc" size="1048576" crc="3d1b4c77" sha1="3d75bf2de45027cbcf51a8589e466c27a217042c" offset="0x000000" /> |
| 52910 | 58733 | </dataarea> |
| r21545 | r21546 | |
| 52916 | 58739 | <year>1998</year> |
| 52917 | 58740 | <publisher>Virgin Interactive</publisher> |
| 52918 | 58741 | <part name="cart" interface="snes_cart"> |
| 58742 | ||
| 58743 | <feature name="slot" value="lorom" /> | |
| 52919 | 58744 | <dataarea name="rom" size="1048576"> |
| 52920 | 58745 | <rom name="super dany (france).sfc" size="1048576" crc="0f578f67" sha1="9677299fae28a2bd03e3a653238aab4da19aba00" offset="0x000000" /> |
| 52921 | 58746 | </dataarea> |
| r21545 | r21546 | |
| 52930 | 58755 | <info name="release" value="19940624" /> |
| 52931 | 58756 | <info name="alt_title" value="スーパードッグファイト" /> |
| 52932 | 58757 | <part name="cart" interface="snes_cart"> |
| 58758 | ||
| 58759 | <feature name="slot" value="lorom" /> | |
| 52933 | 58760 | <dataarea name="rom" size="2097152"> |
| 52934 | 58761 | <rom name="super dogfight (japan).sfc" size="2097152" crc="2f5d822d" sha1="c32aac8e6d9639c28b28bd8850d7119c9c03e8b8" offset="0x000000" /> |
| 52935 | 58762 | </dataarea> |
| r21545 | r21546 | |
| 52945 | 58772 | <info name="alt_title" value="スーパー ダブル役満" /> |
| 52946 | 58773 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52947 | 58774 | <part name="cart" interface="snes_cart"> |
| 58775 | ||
| 58776 | <feature name="slot" value="lorom" /> | |
| 52948 | 58777 | <dataarea name="rom" size="524288"> |
| 52949 | 58778 | <rom name="super double yakuman (japan).sfc" size="524288" crc="16cca911" sha1="dd75911eb79158462d42f56de9f3e1e8d3451d46" offset="0x000000" /> |
| 52950 | 58779 | </dataarea> |
| r21545 | r21546 | |
| 52960 | 58789 | <info name="alt_title" value="スーパーダブル役満II" /> |
| 52961 | 58790 | <sharedfeat name="compatibility" value="NTSC"/> |
| 52962 | 58791 | <part name="cart" interface="snes_cart"> |
| 58792 | ||
| 58793 | <feature name="slot" value="lorom" /> | |
| 52963 | 58794 | <dataarea name="rom" size="524288"> |
| 52964 | 58795 | <rom name="super double yakuman ii (japan).sfc" size="524288" crc="e70aa119" sha1="c9da62b92951f93ab923d3255e87dcf00826bde3" offset="0x000000" /> |
| 52965 | 58796 | </dataarea> |
| r21545 | r21546 | |
| 52974 | 58805 | <info name="release" value="19940826" /> |
| 52975 | 58806 | <info name="alt_title" value="スーパードラッケン" /> |
| 52976 | 58807 | <part name="cart" interface="snes_cart"> |
| 58808 | ||
| 58809 | <feature name="slot" value="lorom" /> | |
| 52977 | 58810 | <dataarea name="rom" size="2097152"> |
| 52978 | 58811 | <rom name="super drakkhen (japan).sfc" size="2097152" crc="2c4e6b8f" sha1="e9857fa4bba7989584846949e5853b0afe9d9f21" offset="0x000000" /> |
| 52979 | 58812 | </dataarea> |
| r21545 | r21546 | |
| 52990 | 58823 | <info name="release" value="19950224" /> |
| 52991 | 58824 | <info name="alt_title" value="スーパードリフトアウト" /> |
| 52992 | 58825 | <part name="cart" interface="snes_cart"> |
| 58826 | ||
| 58827 | <feature name="slot" value="lorom" /> | |
| 52993 | 58828 | <dataarea name="rom" size="2097152"> |
| 52994 | 58829 | <rom name="super drift out - world rally championships (japan).sfc" size="2097152" crc="ec8c1cca" sha1="0e97fe3fdeff2cd2d806713282726c147e7f3312" offset="0x000000" /> |
| 52995 | 58830 | </dataarea> |
| r21545 | r21546 | |
| 53004 | 58839 | <publisher>Psygnosis</publisher> |
| 53005 | 58840 | <info name="alt_title" value="Archer Maclean's Super Dropzone (Box)" /> |
| 53006 | 58841 | <part name="cart" interface="snes_cart"> |
| 58842 | ||
| 58843 | <feature name="slot" value="lorom" /> | |
| 53007 | 58844 | <dataarea name="rom" size="1048576"> |
| 53008 | 58845 | <rom name="super dropzone (europe).sfc" size="1048576" crc="e1ccce49" sha1="827232b0665fdb2a6c56e42164e2c334b3ceb9de" offset="0x000000" /> |
| 53009 | 58846 | </dataarea> |
| r21545 | r21546 | |
| 53018 | 58855 | <info name="release" value="19920619" /> |
| 53019 | 58856 | <info name="alt_title" value="スーパーダンクショット" /> |
| 53020 | 58857 | <part name="cart" interface="snes_cart"> |
| 58858 | ||
| 58859 | <feature name="slot" value="lorom" /> | |
| 53021 | 58860 | <dataarea name="rom" size="1048576"> |
| 53022 | 58861 | <rom name="super dunk shot (japan).sfc" size="1048576" crc="4674e469" sha1="12e31dcc65676c784bda58a684d40d9203232f15" offset="0x000000" /> |
| 53023 | 58862 | </dataarea> |
| r21545 | r21546 | |
| 53032 | 58871 | <info name="release" value="19930428" /> |
| 53033 | 58872 | <info name="alt_title" value="スーパー ダンクスター" /> |
| 53034 | 58873 | <part name="cart" interface="snes_cart"> |
| 58874 | ||
| 58875 | <feature name="slot" value="lorom" /> | |
| 53035 | 58876 | <dataarea name="rom" size="1048576"> |
| 53036 | 58877 | <rom name="super dunk star (japan).sfc" size="1048576" crc="2d391540" sha1="2ed755825b9d40ebe74b43166e67f259ded7637b" offset="0x000000" /> |
| 53037 | 58878 | </dataarea> |
| r21545 | r21546 | |
| 53046 | 58887 | <info name="release" value="19911025" /> |
| 53047 | 58888 | <info name="alt_title" value="スーパーエフワンサーカス外伝" /> |
| 53048 | 58889 | <part name="cart" interface="snes_cart"> |
| 58890 | ||
| 58891 | <feature name="slot" value="lorom" /> | |
| 53049 | 58892 | <dataarea name="rom" size="1048576"> |
| 53050 | 58893 | <rom name="super e.d.f. (japan).sfc" size="1048576" crc="3e631524" sha1="10b81318c3e30d1a3e33189befda975c61b47573" offset="0x000000" /> |
| 53051 | 58894 | </dataarea> |
| r21545 | r21546 | |
| 53062 | 58905 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53063 | 58906 | <part name="cart" interface="snes_cart"> |
| 53064 | 58907 | <feature name="enhancement" value="DSP1" /> |
| 58908 | ||
| 58909 | <feature name="slot" value="hirom_dsp" /> | |
| 53065 | 58910 | <dataarea name="rom" size="1310720"> |
| 53066 | 58911 | <rom name="super f1 circus gaiden (japan).sfc" size="1310720" crc="6b8ac3b3" sha1="a4179b57cec282cee174432dac651b1df9b6eacc" offset="0x000000" /> |
| 53067 | 58912 | </dataarea> |
| 58913 | <dataarea name="addon" size="10240"> | |
| 58914 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 58915 | </dataarea> | |
| 53068 | 58916 | <dataarea name="nvram" size="8192"> |
| 53069 | 58917 | </dataarea> |
| 53070 | 58918 | </part> |
| r21545 | r21546 | |
| 53078 | 58926 | <info name="release" value="19921023" /> |
| 53079 | 58927 | <info name="alt_title" value="スーパー エフワン サーカス リミテッド" /> |
| 53080 | 58928 | <part name="cart" interface="snes_cart"> |
| 58929 | ||
| 58930 | <feature name="slot" value="lorom" /> | |
| 53081 | 58931 | <dataarea name="rom" size="1048576"> |
| 53082 | 58932 | <rom name="super f1 circus limited (japan).sfc" size="1048576" crc="047270f1" sha1="8381c72c778b9a47dc2dfba647ed8f58ba65381f" offset="0x000000" /> |
| 53083 | 58933 | </dataarea> |
| r21545 | r21546 | |
| 53094 | 58944 | <info name="release" value="19980501" /> |
| 53095 | 58945 | <info name="alt_title" value="スーパーファミコンウォース" /> |
| 53096 | 58946 | <part name="cart" interface="snes_cart"> |
| 58947 | ||
| 58948 | <feature name="slot" value="lorom" /> | |
| 53097 | 58949 | <dataarea name="rom" size="2097152"> |
| 53098 | 58950 | <rom name="super famicom wars (japan) (np).sfc" size="2097152" crc="d6eacbea" sha1="24279ca4b598f4caa0cf4d7fa0a423f9e51bb6f7" offset="0x000000" /> |
| 53099 | 58951 | </dataarea> |
| r21545 | r21546 | |
| 53111 | 58963 | <info name="alt_title" value="スーパーファミリーゲレンテ" /> |
| 53112 | 58964 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53113 | 58965 | <part name="cart" interface="snes_cart"> |
| 58966 | ||
| 58967 | <feature name="slot" value="lorom" /> | |
| 53114 | 58968 | <dataarea name="rom" size="2097152"> |
| 53115 | 58969 | <rom name="super family gelaende (japan) (np).sfc" size="2097152" crc="ca99dfcf" sha1="5b4b730288db1be39e2d164cc5865daa56ef83ba" offset="0x000000" /> |
| 53116 | 58970 | </dataarea> |
| r21545 | r21546 | |
| 53128 | 58982 | <info name="release" value="19930625" /> |
| 53129 | 58983 | <info name="alt_title" value="スーパーファミリーテニス" /> |
| 53130 | 58984 | <part name="cart" interface="snes_cart"> |
| 58985 | ||
| 58986 | <feature name="slot" value="lorom" /> | |
| 53131 | 58987 | <dataarea name="rom" size="1048576"> |
| 53132 | 58988 | <rom name="super family tennis (japan).sfc" size="1048576" crc="2bcbff26" sha1="ad0e94a522cc653ec4e166e40463e793787c61ca" offset="0x000000" /> |
| 53133 | 58989 | </dataarea> |
| r21545 | r21546 | |
| 53143 | 58999 | <info name="alt_title" value="スーパーファイナルマッチテニス" /> |
| 53144 | 59000 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53145 | 59001 | <part name="cart" interface="snes_cart"> |
| 59002 | ||
| 59003 | <feature name="slot" value="lorom" /> | |
| 53146 | 59004 | <dataarea name="rom" size="1048576"> |
| 53147 | 59005 | <rom name="super final match tennis (japan).sfc" size="1048576" crc="4f0b96fa" sha1="22ef2738ac873b5ded88b90d1c03b5e51814365b" offset="0x000000" /> |
| 53148 | 59006 | </dataarea> |
| r21545 | r21546 | |
| 53158 | 59016 | <info name="alt_title" value="スーパーファイヤープロレスリン グ3 イージータイフ" /> |
| 53159 | 59017 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53160 | 59018 | <part name="cart" interface="snes_cart"> |
| 59019 | ||
| 59020 | <feature name="slot" value="hirom" /> | |
| 53161 | 59021 | <dataarea name="rom" size="1572864"> |
| 53162 | 59022 | <rom name="super fire pro wrestling iii - easy type (japan).sfc" size="1572864" crc="93f778af" sha1="01d9a5b180b8145672ff0eff88520f1a2ef363cd" offset="0x000000" /> |
| 53163 | 59023 | </dataarea> |
| r21545 | r21546 | |
| 53173 | 59033 | <info name="alt_title" value="スーパーファイヤープロレスリング3 ファイナルバウト" /> |
| 53174 | 59034 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53175 | 59035 | <part name="cart" interface="snes_cart"> |
| 59036 | ||
| 59037 | <feature name="slot" value="hirom" /> | |
| 53176 | 59038 | <dataarea name="rom" size="1572864"> |
| 53177 | 59039 | <rom name="super fire pro wrestling iii - final bout (japan) (rev 1).sfc" size="1572864" crc="978dc1ca" sha1="f107598ea3b2a9ca840aab965fe3d9bf9aa657f5" offset="0x000000" /> |
| 53178 | 59040 | </dataarea> |
| r21545 | r21546 | |
| 53203 | 59065 | <feature name="u7" value="U7 MM1134BF" /> |
| 53204 | 59066 | <feature name="battery" value="BAT1" /> |
| 53205 | 59067 | <feature name="cart_model" value="SHVC-041" /> |
| 59068 | ||
| 59069 | <feature name="slot" value="hirom" /> | |
| 53206 | 59070 | <dataarea name="rom" size="4194304"> |
| 53207 | 59071 | <rom name="super fire pro wrestling x premium (japan).sfc" size="4194304" crc="82de1380" sha1="1d3b397ce08f88b6787df63d1914bdaeb2c3999c" offset="0x000000" /> |
| 53208 | 59072 | <!--rom name="u3" size="2097152" crc="" sha1="" offset="0x000000" /--> |
| r21545 | r21546 | |
| 53222 | 59086 | <info name="release" value="19941216" /> |
| 53223 | 59087 | <info name="alt_title" value="スーパーフィッシング ビッグファイト" /> |
| 53224 | 59088 | <part name="cart" interface="snes_cart"> |
| 59089 | ||
| 59090 | <feature name="slot" value="lorom" /> | |
| 53225 | 59091 | <dataarea name="rom" size="1572864"> |
| 53226 | 59092 | <rom name="super fishing big fight (japan).sfc" size="1572864" crc="1ac48969" sha1="5a0a981e04ea5eb5f053129a368d1216ff4c90dd" offset="0x000000" /> |
| 53227 | 59093 | </dataarea> |
| r21545 | r21546 | |
| 53239 | 59105 | <info name="alt_title" value="スーパーフォーメーションサッカー'95 デッラセリエA" /> |
| 53240 | 59106 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53241 | 59107 | <part name="cart" interface="snes_cart"> |
| 59108 | ||
| 59109 | <feature name="slot" value="hirom" /> | |
| 53242 | 59110 | <dataarea name="rom" size="1572864"> |
| 53243 | 59111 | <rom name="super formation soccer 95 della serie a (japan) (ucc xaqua version).sfc" size="1572864" crc="1cf83bc2" sha1="bdf693fa565249ddd14ada74434a462431bafeae" offset="0x000000" /> |
| 53244 | 59112 | </dataarea> |
| r21545 | r21546 | |
| 53256 | 59124 | <info name="alt_title" value="スーパーフォーメーションサッカー96 ワール ドクラブエディション" /> |
| 53257 | 59125 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53258 | 59126 | <part name="cart" interface="snes_cart"> |
| 59127 | ||
| 59128 | <feature name="slot" value="hirom" /> | |
| 53259 | 59129 | <dataarea name="rom" size="1572864"> |
| 53260 | 59130 | <rom name="super formation soccer 96 - world club edition (japan).sfc" size="1572864" crc="f42272cb" sha1="b99319c282b1674b818e1274723f474459470b84" offset="0x000000" /> |
| 53261 | 59131 | </dataarea> |
| r21545 | r21546 | |
| 53270 | 59140 | <info name="release" value="19920918" /> |
| 53271 | 59141 | <info name="alt_title" value="スーパーガチャポンワールドSDガンダムX" /> |
| 53272 | 59142 | <part name="cart" interface="snes_cart"> |
| 59143 | ||
| 59144 | <feature name="slot" value="lorom" /> | |
| 53273 | 59145 | <dataarea name="rom" size="1048576"> |
| 53274 | 59146 | <rom name="super gachapon world - sd gundam x (japan).sfc" size="1048576" crc="8bfcb5a3" sha1="f39b7ca7b0c5615a60160f49977ef8499b20a7b0" offset="0x000000" /> |
| 53275 | 59147 | </dataarea> |
| r21545 | r21546 | |
| 53287 | 59159 | <info name="alt_title" value="超原人2" /> |
| 53288 | 59160 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53289 | 59161 | <part name="cart" interface="snes_cart"> |
| 59162 | ||
| 59163 | <feature name="slot" value="hirom" /> | |
| 53290 | 59164 | <dataarea name="rom" size="1572864"> |
| 53291 | 59165 | <rom name="super genjin 2 (japan).sfc" size="1572864" crc="c5d12427" sha1="08069abebd2b46838565a1b4a5b4e66089222861" offset="0x000000" /> |
| 53292 | 59166 | </dataarea> |
| r21545 | r21546 | |
| 53299 | 59173 | <publisher>Capcom</publisher> |
| 53300 | 59174 | <info name="release" value="199111xx" /> |
| 53301 | 59175 | <part name="cart" interface="snes_cart"> |
| 59176 | ||
| 59177 | <feature name="slot" value="lorom" /> | |
| 53302 | 59178 | <dataarea name="rom" size="1048576"> |
| 53303 | 59179 | <rom name="super ghouls'n ghosts (usa).sfc" size="1048576" crc="6aaba901" sha1="f12280b13eea88ca03d700b75cf3c13a0e13f3bc" offset="0x000000" /> |
| 53304 | 59180 | </dataarea> |
| r21545 | r21546 | |
| 53310 | 59186 | <year>1991</year> |
| 53311 | 59187 | <publisher>Jaleco</publisher> |
| 53312 | 59188 | <part name="cart" interface="snes_cart"> |
| 59189 | ||
| 59190 | <feature name="slot" value="lorom" /> | |
| 53313 | 59191 | <dataarea name="rom" size="1048576"> |
| 53314 | 59192 | <rom name="super goal! (europe).sfc" size="1048576" crc="bb624450" sha1="d5d677eb2a2804d7b88e29351cf99b6e669b71a1" offset="0x000000" /> |
| 53315 | 59193 | </dataarea> |
| r21545 | r21546 | |
| 53326 | 59204 | <info name="release" value="19931222" /> |
| 53327 | 59205 | <info name="alt_title" value="超ゴジラ" /> |
| 53328 | 59206 | <part name="cart" interface="snes_cart"> |
| 59207 | ||
| 59208 | <feature name="slot" value="lorom" /> | |
| 53329 | 59209 | <dataarea name="rom" size="1572864"> |
| 53330 | 59210 | <rom name="super godzilla (japan) (rev 1).sfc" size="1572864" crc="47ec317e" sha1="e900a05d0608302ccd7fc87b126698a3d7b58c69" offset="0x000000" /> |
| 53331 | 59211 | </dataarea> |
| r21545 | r21546 | |
| 53340 | 59220 | <info name="release" value="19931222" /> |
| 53341 | 59221 | <info name="alt_title" value="超ゴジラ" /> |
| 53342 | 59222 | <part name="cart" interface="snes_cart"> |
| 59223 | ||
| 59224 | <feature name="slot" value="lorom" /> | |
| 53343 | 59225 | <dataarea name="rom" size="1572864"> |
| 53344 | 59226 | <rom name="super godzilla (japan).sfc" size="1572864" crc="56d63328" sha1="3f21fcc774ed6470a9a27f7a91703df143197cef" offset="0x000000" /> |
| 53345 | 59227 | </dataarea> |
| r21545 | r21546 | |
| 53352 | 59234 | <publisher>Super Godzilla</publisher> |
| 53353 | 59235 | <info name="release" value="199407xx" /> |
| 53354 | 59236 | <part name="cart" interface="snes_cart"> |
| 59237 | ||
| 59238 | <feature name="slot" value="lorom" /> | |
| 53355 | 59239 | <dataarea name="rom" size="1572864"> |
| 53356 | 59240 | <rom name="super godzilla (usa).sfc" size="1572864" crc="6a187c70" sha1="75d3402642b9c54d002a3b476fc95b5eb17e766d" offset="0x000000" /> |
| 53357 | 59241 | </dataarea> |
| r21545 | r21546 | |
| 53367 | 59251 | <info name="alt_title" value="スーパー五目ならべ 連珠" /> |
| 53368 | 59252 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53369 | 59253 | <part name="cart" interface="snes_cart"> |
| 59254 | ||
| 59255 | <feature name="slot" value="lorom" /> | |
| 53370 | 59256 | <dataarea name="rom" size="524288"> |
| 53371 | 59257 | <rom name="super gomoku narabe - renju (japan).sfc" size="524288" crc="5621000d" sha1="8d8387305b6d65d4e1fab77bcd197dd05891e664" offset="0x000000" /> |
| 53372 | 59258 | </dataarea> |
| r21545 | r21546 | |
| 53382 | 59268 | <info name="alt_title" value="スーパー 五目・将棋 ― 定跡研究 篇―" /> |
| 53383 | 59269 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53384 | 59270 | <part name="cart" interface="snes_cart"> |
| 59271 | ||
| 59272 | <feature name="slot" value="lorom" /> | |
| 53385 | 59273 | <dataarea name="rom" size="1048576"> |
| 53386 | 59274 | <rom name="super gomoku shougi - jouseki kenkyuu hen (japan).sfc" size="1048576" crc="54833287" sha1="351f293d1c58eb85534ab05896245475ff009cef" offset="0x000000" /> |
| 53387 | 59275 | </dataarea> |
| r21545 | r21546 | |
| 53395 | 59283 | <year>1995</year> |
| 53396 | 59284 | <publisher>Banpresto</publisher> |
| 53397 | 59285 | <part name="cart" interface="snes_cart"> |
| 59286 | ||
| 59287 | <feature name="slot" value="lorom" /> | |
| 53398 | 59288 | <dataarea name="rom" size="1572864"> |
| 53399 | 59289 | <rom name="super gussun oyoyo (japan) (sample).sfc" size="1572864" crc="8477c613" sha1="96728a8427edaa5700e5e79093fc2a5d00382610" offset="0x000000" /> |
| 53400 | 59290 | </dataarea> |
| r21545 | r21546 | |
| 53411 | 59301 | <info name="release" value="19950811" /> |
| 53412 | 59302 | <info name="alt_title" value="すーぱーぐっすんおよよ" /> |
| 53413 | 59303 | <part name="cart" interface="snes_cart"> |
| 59304 | ||
| 59305 | <feature name="slot" value="lorom" /> | |
| 53414 | 59306 | <dataarea name="rom" size="1572864"> |
| 53415 | 59307 | <rom name="super gussun oyoyo (japan).sfc" size="1572864" crc="bc405def" sha1="c17de01a6edb3a2f52f335164ef04447107e795f" offset="0x000000" /> |
| 53416 | 59308 | </dataarea> |
| r21545 | r21546 | |
| 53427 | 59319 | <info name="release" value="19960524" /> |
| 53428 | 59320 | <info name="alt_title" value="すーぱーぐっすんおよよ2" /> |
| 53429 | 59321 | <part name="cart" interface="snes_cart"> |
| 59322 | ||
| 59323 | <feature name="slot" value="lorom" /> | |
| 53430 | 59324 | <dataarea name="rom" size="1310720"> |
| 53431 | 59325 | <rom name="super gussun oyoyo 2 (japan).sfc" size="1310720" crc="244cf4df" sha1="e8510ca50d8e9aebca8843c6c4fb3b37d2c10227" offset="0x000000" /> |
| 53432 | 59326 | </dataarea> |
| r21545 | r21546 | |
| 53443 | 59337 | <info name="release" value="19931126" /> |
| 53444 | 59338 | <info name="alt_title" value="スーパーH.Q. クリミナルチェイサー" /> |
| 53445 | 59339 | <part name="cart" interface="snes_cart"> |
| 59340 | ||
| 59341 | <feature name="slot" value="lorom" /> | |
| 53446 | 59342 | <dataarea name="rom" size="1048576"> |
| 53447 | 59343 | <rom name="super h.q. - criminal chaser (japan).sfc" size="1048576" crc="bf252997" sha1="5f7d31a93c7244c01733098ee1f05655e7f0a8c1" offset="0x000000" /> |
| 53448 | 59344 | </dataarea> |
| r21545 | r21546 | |
| 53457 | 59353 | <info name="release" value="19940805" /> |
| 53458 | 59354 | <info name="alt_title" value="スーパー花札" /> |
| 53459 | 59355 | <part name="cart" interface="snes_cart"> |
| 59356 | ||
| 59357 | <feature name="slot" value="lorom" /> | |
| 53460 | 59358 | <dataarea name="rom" size="524288"> |
| 53461 | 59359 | <rom name="super hanafuda (japan).sfc" size="524288" crc="f2dd4ebf" sha1="45c66c21ef10daee7ce7e0781f4d4fa9150d31a6" offset="0x000000" /> |
| 53462 | 59360 | </dataarea> |
| r21545 | r21546 | |
| 53473 | 59371 | <info name="release" value="19951020" /> |
| 53474 | 59372 | <info name="alt_title" value="スーパー花札 弐" /> |
| 53475 | 59373 | <part name="cart" interface="snes_cart"> |
| 59374 | ||
| 59375 | <feature name="slot" value="lorom" /> | |
| 53476 | 59376 | <dataarea name="rom" size="1048576"> |
| 53477 | 59377 | <rom name="super hanafuda 2 (japan).sfc" size="1048576" crc="6f12c3d5" sha1="9fdab1e90b37165791567996aee5b4b404500039" offset="0x000000" /> |
| 53478 | 59378 | </dataarea> |
| r21545 | r21546 | |
| 53484 | 59384 | <year>1993</year> |
| 53485 | 59385 | <publisher>Acclaim Entertainment</publisher> |
| 53486 | 59386 | <part name="cart" interface="snes_cart"> |
| 59387 | ||
| 59388 | <feature name="slot" value="lorom" /> | |
| 53487 | 59389 | <dataarea name="rom" size="1048576"> |
| 53488 | 59390 | <rom name="super high impact (usa) (beta).sfc" size="1048576" crc="6c771cbd" sha1="a4b749231991eb44b5ee8d9e979a33d3b84ec97c" offset="0x000000" /> |
| 53489 | 59391 | </dataarea> |
| r21545 | r21546 | |
| 53496 | 59398 | <publisher>Acclaim Entertainment</publisher> |
| 53497 | 59399 | <info name="release" value="199306xx" /> |
| 53498 | 59400 | <part name="cart" interface="snes_cart"> |
| 59401 | ||
| 59402 | <feature name="slot" value="lorom" /> | |
| 53499 | 59403 | <dataarea name="rom" size="1048576"> |
| 53500 | 59404 | <rom name="super high impact (usa).sfc" size="1048576" crc="2eed70fb" sha1="abb0bb1c0aff18d50c0b782980c7f4c2c5a7d91c" offset="0x000000" /> |
| 53501 | 59405 | </dataarea> |
| r21545 | r21546 | |
| 53510 | 59414 | <info name="release" value="19940325" /> |
| 53511 | 59415 | <info name="alt_title" value="スーパーホッケー'94" /> |
| 53512 | 59416 | <part name="cart" interface="snes_cart"> |
| 59417 | ||
| 59418 | <feature name="slot" value="hirom" /> | |
| 53513 | 59419 | <dataarea name="rom" size="1048576"> |
| 53514 | 59420 | <rom name="super hockey '94 (japan).sfc" size="1048576" crc="a3890d4f" sha1="fba007ac62f1a307d17a0bfeed78da07cbf65a33" offset="0x000000" /> |
| 53515 | 59421 | </dataarea> |
| r21545 | r21546 | |
| 53521 | 59427 | <year>1993</year> |
| 53522 | 59428 | <publisher>Nintendo</publisher> |
| 53523 | 59429 | <part name="cart" interface="snes_cart"> |
| 59430 | ||
| 59431 | <feature name="slot" value="lorom" /> | |
| 53524 | 59432 | <dataarea name="rom" size="1048576"> |
| 53525 | 59433 | <rom name="super hockey (europe).sfc" size="1048576" crc="781514e4" sha1="00f91e952aec27cf799d50c6aaaca7454e32640b" offset="0x000000" /> |
| 53526 | 59434 | </dataarea> |
| r21545 | r21546 | |
| 53535 | 59443 | <year>1993</year> |
| 53536 | 59444 | <publisher>Nintendo</publisher> |
| 53537 | 59445 | <part name="cart" interface="snes_cart"> |
| 59446 | ||
| 59447 | <feature name="slot" value="lorom" /> | |
| 53538 | 59448 | <dataarea name="rom" size="1048576"> |
| 53539 | 59449 | <rom name="super hockey (france) (en,fr).sfc" size="1048576" crc="c9cf2601" sha1="b6a8a554e405a7dcdd5aa7dca467ca5b8db58434" offset="0x000000" /> |
| 53540 | 59450 | </dataarea> |
| r21545 | r21546 | |
| 53548 | 59458 | <year>1994</year> |
| 53549 | 59459 | <publisher>Sunsoft</publisher> |
| 53550 | 59460 | <part name="cart" interface="snes_cart"> |
| 59461 | ||
| 59462 | <feature name="slot" value="hirom" /> | |
| 53551 | 59463 | <dataarea name="rom" size="1048576"> |
| 53552 | 59464 | <rom name="super ice hockey (europe).sfc" size="1048576" crc="fb1d16c4" sha1="ee9653d8ad1ba0814c21433f489144bbf2a7264a" offset="0x000000" /> |
| 53553 | 59465 | </dataarea> |
| r21545 | r21546 | |
| 53562 | 59474 | <info name="release" value="19940401" /> |
| 53563 | 59475 | <info name="alt_title" value="スーパーインディチャンフ" /> |
| 53564 | 59476 | <part name="cart" interface="snes_cart"> |
| 59477 | ||
| 59478 | <feature name="slot" value="lorom" /> | |
| 53565 | 59479 | <dataarea name="rom" size="1048576"> |
| 53566 | 59480 | <rom name="super indy champ (japan).sfc" size="1048576" crc="6b321db6" sha1="adcb5c8a9bbb42338641170e5fe086e990ed732e" offset="0x000000" /> |
| 53567 | 59481 | </dataarea> |
| r21545 | r21546 | |
| 53576 | 59490 | <publisher>Nintendo</publisher> |
| 53577 | 59491 | <sharedfeat name="compatibility" value="PAL"/> |
| 53578 | 59492 | <part name="cart" interface="snes_cart"> |
| 59493 | ||
| 59494 | <feature name="slot" value="lorom" /> | |
| 53579 | 59495 | <dataarea name="rom" size="1048576"> |
| 53580 | 59496 | <rom name="super international cricket (europe) (beta).sfc" size="1048576" crc="2e9985bc" sha1="e685cc9743dd72f6752de7cbcbe9d57c07b44047" offset="0x000000" /> |
| 53581 | 59497 | </dataarea> |
| r21545 | r21546 | |
| 53587 | 59503 | <year>1993</year> |
| 53588 | 59504 | <publisher>ASC Games</publisher> |
| 53589 | 59505 | <part name="cart" interface="snes_cart"> |
| 59506 | ||
| 59507 | <feature name="slot" value="lorom" /> | |
| 53590 | 59508 | <dataarea name="rom" size="524288"> |
| 53591 | 59509 | <rom name="super james pond (usa) (beta).sfc" size="524288" crc="ed91c23f" sha1="869c0c0a0936a7100a22f11d9216750cc2db6345" offset="0x000000" /> |
| 53592 | 59510 | </dataarea> |
| r21545 | r21546 | |
| 53599 | 59517 | <publisher>ASC Games</publisher> |
| 53600 | 59518 | <info name="release" value="199307xx" /> |
| 53601 | 59519 | <part name="cart" interface="snes_cart"> |
| 59520 | ||
| 59521 | <feature name="slot" value="lorom" /> | |
| 53602 | 59522 | <dataarea name="rom" size="524288"> |
| 53603 | 59523 | <rom name="super james pond (usa).sfc" size="524288" crc="d7c34122" sha1="b8cbc41a93787a41f1ee253041fa8dda14c51475" offset="0x000000" /> |
| 53604 | 59524 | </dataarea> |
| r21545 | r21546 | |
| 53613 | 59533 | <info name="release" value="19930723" /> |
| 53614 | 59534 | <info name="alt_title" value="スーパー・ジェームス ポンドII" /> |
| 53615 | 59535 | <part name="cart" interface="snes_cart"> |
| 59536 | ||
| 59537 | <feature name="slot" value="lorom" /> | |
| 53616 | 59538 | <dataarea name="rom" size="1048576"> |
| 53617 | 59539 | <rom name="super james pond ii (japan).sfc" size="1048576" crc="1b2c3a47" sha1="1e475cdeed596b8da42476b5b55dd4cf5d9df2f3" offset="0x000000" /> |
| 53618 | 59540 | </dataarea> |
| r21545 | r21546 | |
| 53627 | 59549 | <info name="release" value="19950317" /> |
| 53628 | 59550 | <info name="alt_title" value="スーパー雀豪" /> |
| 53629 | 59551 | <part name="cart" interface="snes_cart"> |
| 59552 | ||
| 59553 | <feature name="slot" value="lorom" /> | |
| 53630 | 59554 | <dataarea name="rom" size="1048576"> |
| 53631 | 59555 | <rom name="super jangou (japan).sfc" size="1048576" crc="ff6c80c6" sha1="3819f341932a3e0a989e26e0199d65856fd1ca6e" offset="0x000000" /> |
| 53632 | 59556 | </dataarea> |
| r21545 | r21546 | |
| 53644 | 59568 | <info name="alt_title" value="スーパー競輪" /> |
| 53645 | 59569 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53646 | 59570 | <part name="cart" interface="snes_cart"> |
| 59571 | ||
| 59572 | <feature name="slot" value="lorom" /> | |
| 53647 | 59573 | <dataarea name="rom" size="1572864"> |
| 53648 | 59574 | <rom name="super keirin (japan).sfc" size="1572864" crc="6e20b5f3" sha1="86577dc65ea795b42b2a69c517785680311ebd13" offset="0x000000" /> |
| 53649 | 59575 | </dataarea> |
| r21545 | r21546 | |
| 53660 | 59586 | <info name="release" value="19930312" /> |
| 53661 | 59587 | <info name="alt_title" value="スーパーキックボクシング" /> |
| 53662 | 59588 | <part name="cart" interface="snes_cart"> |
| 59589 | ||
| 59590 | <feature name="slot" value="lorom" /> | |
| 53663 | 59591 | <dataarea name="rom" size="1048576"> |
| 53664 | 59592 | <rom name="super kick boxing - best of the best (japan).sfc" size="1048576" crc="4ee4de37" sha1="4063b90dccb28e304c5db5a92a84213347c5969b" offset="0x000000" /> |
| 53665 | 59593 | </dataarea> |
| r21545 | r21546 | |
| 53674 | 59602 | <info name="release" value="19921225" /> |
| 53675 | 59603 | <info name="alt_title" value="スーパーキックオフ" /> |
| 53676 | 59604 | <part name="cart" interface="snes_cart"> |
| 59605 | ||
| 59606 | <feature name="slot" value="lorom" /> | |
| 53677 | 59607 | <dataarea name="rom" size="524288"> |
| 53678 | 59608 | <rom name="super kick off (japan).sfc" size="524288" crc="70afd634" sha1="14922b49db01d1dee24fb0194ac8cea0d9efe16b" offset="0x000000" /> |
| 53679 | 59609 | </dataarea> |
| r21545 | r21546 | |
| 53690 | 59620 | <info name="release" value="19940805" /> |
| 53691 | 59621 | <info name="alt_title" value="スーパー高校野球 一球入魂" /> |
| 53692 | 59622 | <part name="cart" interface="snes_cart"> |
| 59623 | ||
| 59624 | <feature name="slot" value="lorom" /> | |
| 53693 | 59625 | <dataarea name="rom" size="1048576"> |
| 53694 | 59626 | <rom name="super koukou yakyuu - ikkyuu nyuukon (japan).sfc" size="1048576" crc="c38bb5bf" sha1="0a186bbef47b48ef11aa045ae274b81b263a1f8b" offset="0x000000" /> |
| 53695 | 59627 | </dataarea> |
| r21545 | r21546 | |
| 53707 | 59639 | <info name="alt_title" value="スーパー競走馬 風のシルフィード" /> |
| 53708 | 59640 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53709 | 59641 | <part name="cart" interface="snes_cart"> |
| 59642 | ||
| 59643 | <feature name="slot" value="lorom" /> | |
| 53710 | 59644 | <dataarea name="rom" size="1048576"> |
| 53711 | 59645 | <rom name="super kyousouba - kaze no sylphid (japan).sfc" size="1048576" crc="60305047" sha1="64ce8441690a2e4de6805c055d3b0dd980b29022" offset="0x000000" /> |
| 53712 | 59646 | </dataarea> |
| r21545 | r21546 | |
| 53723 | 59657 | <info name="release" value="19950630" /> |
| 53724 | 59658 | <info name="alt_title" value="スーパー競艇" /> |
| 53725 | 59659 | <part name="cart" interface="snes_cart"> |
| 59660 | ||
| 59661 | <feature name="slot" value="lorom" /> | |
| 53726 | 59662 | <dataarea name="rom" size="1310720"> |
| 53727 | 59663 | <rom name="super kyoutei (japan).sfc" size="1310720" crc="c6fe7f3a" sha1="fb31014e12f106daf1bad8653fe69906a5abe54d" offset="0x000000" /> |
| 53728 | 59664 | </dataarea> |
| r21545 | r21546 | |
| 53739 | 59675 | <info name="release" value="19921106" /> |
| 53740 | 59676 | <info name="alt_title" value="スーパーリニアボール" /> |
| 53741 | 59677 | <part name="cart" interface="snes_cart"> |
| 59678 | ||
| 59679 | <feature name="slot" value="lorom" /> | |
| 53742 | 59680 | <dataarea name="rom" size="524288"> |
| 53743 | 59681 | <rom name="super linearball (japan).sfc" size="524288" crc="689ac35c" sha1="73cd9170c5935e3367da84956ca59aa4f851c671" offset="0x000000" /> |
| 53744 | 59682 | </dataarea> |
| r21545 | r21546 | |
| 53753 | 59691 | <info name="release" value="19950304" /> |
| 53754 | 59692 | <info name="alt_title" value="スーパーマッドチャンフ" /> |
| 53755 | 59693 | <part name="cart" interface="snes_cart"> |
| 59694 | ||
| 59695 | <feature name="slot" value="lorom" /> | |
| 53756 | 59696 | <dataarea name="rom" size="1572864"> |
| 53757 | 59697 | <rom name="super mad champ (japan).sfc" size="1572864" crc="b65b532f" sha1="19acc71d0d0a48e43511c61e80e898335dd36e61" offset="0x000000" /> |
| 53758 | 59698 | </dataarea> |
| r21545 | r21546 | |
| 53768 | 59708 | <info name="alt_title" value="スーパー麻雀3 辛口" /> |
| 53769 | 59709 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53770 | 59710 | <part name="cart" interface="snes_cart"> |
| 59711 | ||
| 59712 | <feature name="slot" value="hirom" /> | |
| 53771 | 59713 | <dataarea name="rom" size="1048576"> |
| 53772 | 59714 | <rom name="super mahjong 3 - karakuchi (japan).sfc" size="1048576" crc="fe691648" sha1="5856632b6141bc0c4a929462b38803b9d52bf006" offset="0x000000" /> |
| 53773 | 59715 | </dataarea> |
| r21545 | r21546 | |
| 53784 | 59726 | <info name="release" value="19920912" /> |
| 53785 | 59727 | <info name="alt_title" value="スーパー麻雀大会" /> |
| 53786 | 59728 | <part name="cart" interface="snes_cart"> |
| 59729 | ||
| 59730 | <feature name="slot" value="lorom" /> | |
| 53787 | 59731 | <dataarea name="rom" size="524288"> |
| 53788 | 59732 | <rom name="super mahjong taikai (japan) (rev 3).sfc" size="524288" crc="91a6d452" sha1="09f93386c093ed5800042a12db929c1b9eb848a8" offset="0x000000" /> |
| 53789 | 59733 | </dataarea> |
| r21545 | r21546 | |
| 53802 | 59746 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53803 | 59747 | <part name="cart" interface="snes_cart"> |
| 53804 | 59748 | <feature name="enhancement" value="GSU-2" /> |
| 59749 | ||
| 59750 | <feature name="slot" value="lorom_sfx" /> | |
| 53805 | 59751 | <dataarea name="rom" size="2097152"> |
| 53806 | 59752 | <rom name="super mario - yossy island (japan) (rev 1).sfc" size="2097152" crc="0f66698b" sha1="e1279e5701e4880b666982c9c056419500835952" offset="0x000000" /> |
| 53807 | 59753 | </dataarea> |
| r21545 | r21546 | |
| 53820 | 59766 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53821 | 59767 | <part name="cart" interface="snes_cart"> |
| 53822 | 59768 | <feature name="enhancement" value="GSU-2" /> |
| 59769 | ||
| 59770 | <feature name="slot" value="lorom_sfx" /> | |
| 53823 | 59771 | <dataarea name="rom" size="2097152"> |
| 53824 | 59772 | <rom name="super mario - yossy island (japan) (rev 2).sfc" size="2097152" crc="f1063fad" sha1="53188bc4623f5b8c9df5c1c54bd187347a2ad969" offset="0x000000" /> |
| 53825 | 59773 | </dataarea> |
| r21545 | r21546 | |
| 53834 | 59782 | <publisher>Nintendo</publisher> |
| 53835 | 59783 | <info name="release" value="199412xx" /> |
| 53836 | 59784 | <part name="cart" interface="snes_cart"> |
| 59785 | ||
| 59786 | <feature name="slot" value="lorom" /> | |
| 53837 | 59787 | <dataarea name="rom" size="2621440"> |
| 53838 | 59788 | <rom name="super mario all-stars + super mario world (usa).sfc" size="2621440" crc="f84305b1" sha1="d245e41a2b590f7d63666b0772cbddfb26f254a2" offset="0x000000" /> |
| 53839 | 59789 | </dataarea> |
| r21545 | r21546 | |
| 53852 | 59802 | <info name="alt_title" value="スーパーマリオコレクション" /> |
| 53853 | 59803 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53854 | 59804 | <part name="cart" interface="snes_cart"> |
| 59805 | ||
| 59806 | <feature name="slot" value="lorom" /> | |
| 53855 | 59807 | <dataarea name="rom" size="2097152"> |
| 53856 | 59808 | <rom name="super mario collection (japan) (rev 1).sfc" size="2097152" crc="91b28d56" sha1="b83dd73d3d6049450bb8092d73c3af879804f58c" offset="0x000000" /> |
| 53857 | 59809 | </dataarea> |
| r21545 | r21546 | |
| 53867 | 59819 | <sharedfeat name="compatibility" value="PAL"/> |
| 53868 | 59820 | <part name="cart" interface="snes_cart"> |
| 53869 | 59821 | <feature name="enhancement" value="GSU-2" /> |
| 59822 | ||
| 59823 | <feature name="slot" value="lorom_sfx" /> | |
| 53870 | 59824 | <dataarea name="rom" size="2097152"> |
| 53871 | 59825 | <rom name="super mario world 2 - yoshi's island (europe) (en,fr,de) (rev 1).sfc" size="2097152" crc="07e01ef9" sha1="1e1dc02c684652f9e927f3873af65ea4b374bb80" offset="0x000000" /> |
| 53872 | 59826 | </dataarea> |
| r21545 | r21546 | |
| 53883 | 59837 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53884 | 59838 | <part name="cart" interface="snes_cart"> |
| 53885 | 59839 | <feature name="enhancement" value="GSU-2" /> |
| 59840 | ||
| 59841 | <feature name="slot" value="lorom_sfx" /> | |
| 53886 | 59842 | <dataarea name="rom" size="2097152"> |
| 53887 | 59843 | <rom name="super mario world 2 - yoshi's island (usa).sfc" size="2097152" crc="d138f224" sha1="c807f2856f44fb84326fac5b462340dcdd0471f8" offset="0x000000" /> |
| 53888 | 59844 | </dataarea> |
| r21545 | r21546 | |
| 53900 | 59856 | <info name="alt_title" value="スーパー 燃えろ!!プロ野球" /> |
| 53901 | 59857 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53902 | 59858 | <part name="cart" interface="snes_cart"> |
| 59859 | ||
| 59860 | <feature name="slot" value="lorom" /> | |
| 53903 | 59861 | <dataarea name="rom" size="1572864"> |
| 53904 | 59862 | <rom name="super moero!! pro yakyuu (japan).sfc" size="1572864" crc="da5ad200" sha1="66161ba909b204225f2000829079fd7c231de80f" offset="0x000000" /> |
| 53905 | 59863 | </dataarea> |
| r21545 | r21546 | |
| 53913 | 59871 | <year>1995?</year> |
| 53914 | 59872 | <publisher>Hudson</publisher> |
| 53915 | 59873 | <part name="cart" interface="snes_cart"> |
| 59874 | ||
| 59875 | <feature name="slot" value="hirom" /> | |
| 53916 | 59876 | <dataarea name="rom" size="2097152"> |
| 53917 | 59877 | <rom name="super momotarou dentetsu dx (japan) (jr nishi-nihon presents).sfc" size="2097152" crc="46239d31" sha1="c19938ba94526c03794b8833954a1cd407220285" offset="0x000000" /> |
| 53918 | 59878 | </dataarea> |
| r21545 | r21546 | |
| 53926 | 59886 | <year>1993</year> |
| 53927 | 59887 | <publisher>Sony Imagesoft</publisher> |
| 53928 | 59888 | <part name="cart" interface="snes_cart"> |
| 59889 | ||
| 59890 | <feature name="slot" value="lorom" /> | |
| 53929 | 59891 | <dataarea name="rom" size="1048576"> |
| 53930 | 59892 | <rom name="super morph (europe).sfc" size="1048576" crc="388f6daa" sha1="322adec252911bf7c7a38da7c23ecedb26fd92b3" offset="0x000000" /> |
| 53931 | 59893 | </dataarea> |
| r21545 | r21546 | |
| 53940 | 59902 | <info name="release" value="19960628" /> |
| 53941 | 59903 | <info name="alt_title" value="す~ぱ~なぞぷよ通 ルルーの鉄腕繁 盛記" /> |
| 53942 | 59904 | <part name="cart" interface="snes_cart"> |
| 59905 | ||
| 59906 | <feature name="slot" value="lorom" /> | |
| 53943 | 59907 | <dataarea name="rom" size="1572864"> |
| 53944 | 59908 | <rom name="super nazo puyo tsuu - rulue no tetsuwan hanjouki (japan).sfc" size="1572864" crc="d8c0e0be" sha1="dc3bdace7f7587788cb72b9c3475b7c6335a5450" offset="0x000000" /> |
| 53945 | 59909 | </dataarea> |
| r21545 | r21546 | |
| 53956 | 59920 | <info name="release" value="19940729" /> |
| 53957 | 59921 | <info name="alt_title" value="スーパーニチブツマージャン3 吉本劇場篇" /> |
| 53958 | 59922 | <part name="cart" interface="snes_cart"> |
| 59923 | ||
| 59924 | <feature name="slot" value="lorom" /> | |
| 53959 | 59925 | <dataarea name="rom" size="2097152"> |
| 53960 | 59926 | <rom name="super nichibutsu mahjong 3 - yoshimoto gekijou hen (japan).sfc" size="2097152" crc="0c8779b3" sha1="b3cfee0771061ca5dd1124f66cfec9a196cd0be9" offset="0x000000" /> |
| 53961 | 59927 | </dataarea> |
| r21545 | r21546 | |
| 53970 | 59936 | <info name="release" value="19960927" /> |
| 53971 | 59937 | <info name="alt_title" value="スーパーニチブツマージャン4 基礎 研究篇" /> |
| 53972 | 59938 | <part name="cart" interface="snes_cart"> |
| 59939 | ||
| 59940 | <feature name="slot" value="lorom" /> | |
| 53973 | 59941 | <dataarea name="rom" size="1048576"> |
| 53974 | 59942 | <rom name="super nichibutsu mahjong 4 - kisokenkyuu hen (japan).sfc" size="1048576" crc="385e4860" sha1="a12ee74c2fea2de553fa9f1af65ced2f9e233961" offset="0x000000" /> |
| 53975 | 59943 | </dataarea> |
| r21545 | r21546 | |
| 53982 | 59950 | <publisher>Culture Brain</publisher> |
| 53983 | 59951 | <info name="release" value="199304xx" /> |
| 53984 | 59952 | <part name="cart" interface="snes_cart"> |
| 59953 | ||
| 59954 | <feature name="slot" value="lorom" /> | |
| 53985 | 59955 | <dataarea name="rom" size="1048576"> |
| 53986 | 59956 | <rom name="super ninja boy (usa).sfc" size="1048576" crc="6bcbba10" sha1="4a89c391b8eedf50ba3a03500044ab46f0fd7f8f" offset="0x000000" /> |
| 53987 | 59957 | </dataarea> |
| r21545 | r21546 | |
| 53997 | 59967 | <info name="alt_title" value="す~ぱ~忍者くん" /> |
| 53998 | 59968 | <sharedfeat name="compatibility" value="NTSC"/> |
| 53999 | 59969 | <part name="cart" interface="snes_cart"> |
| 59970 | ||
| 59971 | <feature name="slot" value="lorom" /> | |
| 54000 | 59972 | <dataarea name="rom" size="1048576"> |
| 54001 | 59973 | <rom name="super ninja-kun (japan).sfc" size="1048576" crc="0a94fcca" sha1="0684b0010f738ef2615c8e088cb7752f6902cc55" offset="0x000000" /> |
| 54002 | 59974 | </dataarea> |
| r21545 | r21546 | |
| 54008 | 59980 | <year>1994</year> |
| 54009 | 59981 | <publisher>Wisdom Tree</publisher> |
| 54010 | 59982 | <part name="cart" interface="snes_cart"> |
| 59983 | ||
| 59984 | <feature name="slot" value="hirom" /> | |
| 54011 | 59985 | <dataarea name="rom" size="1048576"> |
| 54012 | 59986 | <rom name="super noah's ark 3d (usa) (unl).sfc" size="1048576" crc="a2315a14" sha1="78d50ce39528cf4232f2eeb34b475fe830ed3e72" offset="0x000000" /> |
| 54013 | 59987 | </dataarea> |
| r21545 | r21546 | |
| 54020 | 59994 | <publisher>Taito</publisher> |
| 54021 | 59995 | <info name="release" value="199312xx" /> |
| 54022 | 59996 | <part name="cart" interface="snes_cart"> |
| 59997 | ||
| 59998 | <feature name="slot" value="hirom" /> | |
| 54023 | 59999 | <dataarea name="rom" size="1048576"> |
| 54024 | 60000 | <rom name="super nova (usa).sfc" size="1048576" crc="460def25" sha1="465bd5a08bdbcfb8154522e7f516d3a74e608caf" offset="0x000000" /> |
| 54025 | 60001 | </dataarea> |
| r21545 | r21546 | |
| 54031 | 60007 | <year>1991</year> |
| 54032 | 60008 | <publisher>Tradewest</publisher> |
| 54033 | 60009 | <part name="cart" interface="snes_cart"> |
| 60010 | ||
| 60011 | <feature name="slot" value="lorom" /> | |
| 54034 | 60012 | <dataarea name="rom" size="524288"> |
| 54035 | 60013 | <rom name="super off road (europe).sfc" size="524288" crc="c6373743" sha1="51066be2f620798efdc96f937aa3407c51118904" offset="0x000000" /> |
| 54036 | 60014 | </dataarea> |
| r21545 | r21546 | |
| 54045 | 60023 | <info name="release" value="19920703" /> |
| 54046 | 60024 | <info name="alt_title" value="スーパーオフロード" /> |
| 54047 | 60025 | <part name="cart" interface="snes_cart"> |
| 60026 | ||
| 60027 | <feature name="slot" value="lorom" /> | |
| 54048 | 60028 | <dataarea name="rom" size="524288"> |
| 54049 | 60029 | <rom name="super off road (japan).sfc" size="524288" crc="3104478a" sha1="ce9c7bbba7a7259c063ce921ee5f149d507f510b" offset="0x000000" /> |
| 54050 | 60030 | </dataarea> |
| r21545 | r21546 | |
| 54056 | 60036 | <year>1993</year> |
| 54057 | 60037 | <publisher>Tradewest</publisher> |
| 54058 | 60038 | <part name="cart" interface="snes_cart"> |
| 60039 | ||
| 60040 | <feature name="slot" value="lorom" /> | |
| 54059 | 60041 | <dataarea name="rom" size="1048576"> |
| 54060 | 60042 | <rom name="super off road - the baja (usa) (beta).sfc" size="1048576" crc="55558173" sha1="b6b1d4270a07315cf98b724016019f9402890974" offset="0x000000" /> |
| 54061 | 60043 | </dataarea> |
| r21545 | r21546 | |
| 54068 | 60050 | <publisher>Tradewest</publisher> |
| 54069 | 60051 | <info name="release" value="199309xx" /> |
| 54070 | 60052 | <part name="cart" interface="snes_cart"> |
| 60053 | ||
| 60054 | <feature name="slot" value="lorom" /> | |
| 54071 | 60055 | <dataarea name="rom" size="1048576"> |
| 54072 | 60056 | <rom name="super off road - the baja (usa).sfc" size="1048576" crc="cb483ead" sha1="4928df356ebba1529066e021505d29f5e9beb168" offset="0x000000" /> |
| 54073 | 60057 | </dataarea> |
| r21545 | r21546 | |
| 54079 | 60063 | <year>1992</year> |
| 54080 | 60064 | <publisher>Capcom</publisher> |
| 54081 | 60065 | <part name="cart" interface="snes_cart"> |
| 60066 | ||
| 60067 | <feature name="slot" value="lorom" /> | |
| 54082 | 60068 | <dataarea name="rom" size="524288"> |
| 54083 | 60069 | <rom name="super pang (europe).sfc" size="524288" crc="3644cacc" sha1="a37d345c89bc368f9e439c65a6b4b5302e51e47d" offset="0x000000" /> |
| 54084 | 60070 | </dataarea> |
| r21545 | r21546 | |
| 54093 | 60079 | <info name="release" value="19920807" /> |
| 54094 | 60080 | <info name="alt_title" value="スーパーパン" /> |
| 54095 | 60081 | <part name="cart" interface="snes_cart"> |
| 60082 | ||
| 60083 | <feature name="slot" value="lorom" /> | |
| 54096 | 60084 | <dataarea name="rom" size="524288"> |
| 54097 | 60085 | <rom name="super pang (japan).sfc" size="524288" crc="ca54f001" sha1="120064e018fc9ee47586cea093e97f0adf3c6025" offset="0x000000" /> |
| 54098 | 60086 | </dataarea> |
| r21545 | r21546 | |
| 54105 | 60093 | <publisher>Nintendo</publisher> |
| 54106 | 60094 | <sharedfeat name="compatibility" value="PAL"/> |
| 54107 | 60095 | <part name="cart" interface="snes_cart"> |
| 60096 | ||
| 60097 | <feature name="slot" value="lorom" /> | |
| 54108 | 60098 | <dataarea name="rom" size="1048576"> |
| 54109 | 60099 | <rom name="super pinball - behind the mask (europe).sfc" size="1048576" crc="3bcb5d70" sha1="702c325e231240e1edc72251777c64d96e28b185" offset="0x000000" /> |
| 54110 | 60100 | </dataarea> |
| r21545 | r21546 | |
| 54116 | 60106 | <year>1994</year> |
| 54117 | 60107 | <publisher>Nintendo</publisher> |
| 54118 | 60108 | <part name="cart" interface="snes_cart"> |
| 60109 | ||
| 60110 | <feature name="slot" value="lorom" /> | |
| 54119 | 60111 | <dataarea name="rom" size="1048576"> |
| 54120 | 60112 | <rom name="super pinball - behind the mask (japan) (beta).sfc" size="1048576" crc="352eeb38" sha1="27ef418f842b086e57466d90d0a15381bb97dce6" offset="0x000000" /> |
| 54121 | 60113 | </dataarea> |
| r21545 | r21546 | |
| 54128 | 60120 | <publisher>Nintendo</publisher> |
| 54129 | 60121 | <info name="release" value="199411xx" /> |
| 54130 | 60122 | <part name="cart" interface="snes_cart"> |
| 60123 | ||
| 60124 | <feature name="slot" value="lorom" /> | |
| 54131 | 60125 | <dataarea name="rom" size="1048576"> |
| 54132 | 60126 | <rom name="super pinball - behind the mask (usa).sfc" size="1048576" crc="a183192e" sha1="c40f6d44a897683b238f58c42759b822cb2dfe10" offset="0x000000" /> |
| 54133 | 60127 | </dataarea> |
| r21545 | r21546 | |
| 54143 | 60137 | <info name="alt_title" value="スーパーピンボール2 ザ・アメイジン グ・オデッセイ" /> |
| 54144 | 60138 | <sharedfeat name="compatibility" value="NTSC"/> |
| 54145 | 60139 | <part name="cart" interface="snes_cart"> |
| 60140 | ||
| 60141 | <feature name="slot" value="lorom" /> | |
| 54146 | 60142 | <dataarea name="rom" size="1572864"> |
| 54147 | 60143 | <rom name="super pinball ii - the amazing odyssey (japan).sfc" size="1572864" crc="b5117ecf" sha1="20bc32b7bd9e4c985d4cf62fa36d83f0074ddeb7" offset="0x000000" /> |
| 54148 | 60144 | </dataarea> |
| r21545 | r21546 | |
| 54155 | 60151 | <publisher>Nintendo</publisher> |
| 54156 | 60152 | <info name="release" value="199208xx" /> |
| 54157 | 60153 | <part name="cart" interface="snes_cart"> |
| 60154 | ||
| 60155 | <feature name="slot" value="lorom" /> | |
| 54158 | 60156 | <dataarea name="rom" size="1048576"> |
| 54159 | 60157 | <rom name="super play action football (usa).sfc" size="1048576" crc="0f359a60" sha1="d9a74ebb1807abdbd3fd3662b5bf60e40253cb71" offset="0x000000" /> |
| 54160 | 60158 | </dataarea> |
| r21545 | r21546 | |
| 54171 | 60169 | <info name="release" value="19940803" /> |
| 54172 | 60170 | <info name="alt_title" value="スーパーパワーリーグ2" /> |
| 54173 | 60171 | <part name="cart" interface="snes_cart"> |
| 60172 | ||
| 60173 | <feature name="slot" value="hirom" /> | |
| 54174 | 60174 | <dataarea name="rom" size="2097152"> |
| 54175 | 60175 | <rom name="super power league 2 (japan) (rev 1).sfc" size="2097152" crc="9e6a60e9" sha1="57f594c3745c6de11ac6cdfe45317249fb4aad12" offset="0x000000" /> |
| 54176 | 60176 | </dataarea> |
| r21545 | r21546 | |
| 54187 | 60187 | <info name="release" value="19920807" /> |
| 54188 | 60188 | <info name="alt_title" value="スーパープロフェッショナルベースボールII" /> |
| 54189 | 60189 | <part name="cart" interface="snes_cart"> |
| 60190 | ||
| 60191 | <feature name="slot" value="lorom" /> | |
| 54190 | 60192 | <dataarea name="rom" size="1048576"> |
| 54191 | 60193 | <rom name="super professional baseball ii (japan).sfc" size="1048576" crc="29b6a6f0" sha1="0842c859f635e7e30e0515efcbe624e71cadcfd3" offset="0x000000" /> |
| 54192 | 60194 | </dataarea> |
| r21545 | r21546 | |
| 54203 | 60205 | <info name="release" value="19980301" /> |
| 54204 | 60206 | <info name="alt_title" value="スーパーパンチアウト!!" /> |
| 54205 | 60207 | <part name="cart" interface="snes_cart"> |
| 60208 | ||
| 60209 | <feature name="slot" value="lorom" /> | |
| 54206 | 60210 | <dataarea name="rom" size="2097152"> |
| 54207 | 60211 | <rom name="super punch-out!! (japan) (np).sfc" size="2097152" crc="b5d92af4" sha1="0f42b17e721671931e1eb3d9701d464db163cfd3" offset="0x000000" /> |
| 54208 | 60212 | </dataarea> |
| r21545 | r21546 | |
| 54217 | 60221 | <publisher>Nintendo</publisher> |
| 54218 | 60222 | <info name="release" value="199410xx" /> |
| 54219 | 60223 | <part name="cart" interface="snes_cart"> |
| 60224 | ||
| 60225 | <feature name="slot" value="lorom" /> | |
| 54220 | 60226 | <dataarea name="rom" size="2097152"> |
| 54221 | 60227 | <rom name="super punch-out!! (usa).sfc" size="2097152" crc="e2f92f84" sha1="3604c855790f37db567e9b425252625045f86697" offset="0x000000" /> |
| 54222 | 60228 | </dataarea> |
| r21545 | r21546 | |
| 54231 | 60237 | <publisher>U.S. Gold</publisher> |
| 54232 | 60238 | <sharedfeat name="compatibility" value="PAL"/> |
| 54233 | 60239 | <part name="cart" interface="snes_cart"> |
| 60240 | ||
| 60241 | <feature name="slot" value="lorom" /> | |
| 54234 | 60242 | <dataarea name="rom" size="1048576"> |
| 54235 | 60243 | <rom name="super putty (europe).sfc" size="1048576" crc="94fd16a5" sha1="f49e2443fcb47ea945f9df37acd8d24fd58811ef" offset="0x000000" /> |
| 54236 | 60244 | </dataarea> |
| r21545 | r21546 | |
| 54244 | 60252 | <info name="release" value="199311xx" /> |
| 54245 | 60253 | <sharedfeat name="compatibility" value="NTSC"/> |
| 54246 | 60254 | <part name="cart" interface="snes_cart"> |
| 60255 | ||
| 60256 | <feature name="slot" value="lorom" /> | |
| 54247 | 60257 | <dataarea name="rom" size="1048576"> |
| 54248 | 60258 | <rom name="super putty (usa).sfc" size="1048576" crc="746087c1" sha1="72c8a2b975ee571455410d87e2281ed63bf612fe" offset="0x000000" /> |
| 54249 | 60259 | </dataarea> |
| r21545 | r21546 | |
| 54258 | 60268 | <info name="release" value="19951208" /> |
| 54259 | 60269 | <info name="alt_title" value="す~ぱ~ぷよぷよ通" /> |
| 54260 | 60270 | <part name="cart" interface="snes_cart"> |
| 60271 | ||
| 60272 | <feature name="slot" value="lorom" /> | |
| 54261 | 60273 | <dataarea name="rom" size="2097152"> |
| 54262 | 60274 | <rom name="super puyo puyo tsuu (japan).sfc" size="2097152" crc="271e1f3f" sha1="b4004cffcc2f7d36cefbf0db89c64572a5b3ce8e" offset="0x000000" /> |
| 54263 | 60275 | </dataarea> |
| r21545 | r21546 | |
| 54272 | 60284 | <info name="release" value="19960308" /> |
| 54273 | 60285 | <info name="alt_title" value="す~ぱ~ぷよぷよ通リミックス" /> |
| 54274 | 60286 | <part name="cart" interface="snes_cart"> |
| 60287 | ||
| 60288 | <feature name="slot" value="lorom" /> | |
| 54275 | 60289 | <dataarea name="rom" size="2097152"> |
| 54276 | 60290 | <rom name="super puyo puyo tsuu remix (japan).sfc" size="2097152" crc="61f903f8" sha1="009e6ee7228015ae21482b13bd9a40cbb78251f8" offset="0x000000" /> |
| 54277 | 60291 | </dataarea> |
| r21545 | r21546 | |
| 54286 | 60300 | <info name="release" value="19910713" /> |
| 54287 | 60301 | <info name="alt_title" value="スーパー・アールタイプ" /> |
| 54288 | 60302 | <part name="cart" interface="snes_cart"> |
| 60303 | ||
| 60304 | <feature name="slot" value="lorom" /> | |
| 54289 | 60305 | <dataarea name="rom" size="1048576"> |
| 54290 | 60306 | <rom name="super r-type (japan).sfc" size="1048576" crc="4e872c8b" sha1="2991d74a36fb815cf98469cd2539881dc6021566" offset="0x000000" /> |
| 54291 | 60307 | </dataarea> |
| r21545 | r21546 | |
| 54298 | 60314 | <publisher>Time Warner Interactive</publisher> |
| 54299 | 60315 | <info name="release" value="199506xx" /> |
| 54300 | 60316 | <part name="cart" interface="snes_cart"> |
| 60317 | ||
| 60318 | <feature name="slot" value="lorom" /> | |
| 54301 | 60319 | <dataarea name="rom" size="1048576"> |
| 54302 | 60320 | <rom name="super r.b.i. baseball (usa).sfc" size="1048576" crc="31db6cfe" sha1="041b0cef424dd51a7062f2cf69074dfda4773c2f" offset="0x000000" /> |
| 54303 | 60321 | </dataarea> |
| r21545 | r21546 | |
| 54313 | 60331 | <info name="alt_title" value="スーパーリアル麻雀PV パラダイ ス オールスター4人打ち" /> |
| 54314 | 60332 | <sharedfeat name="compatibility" value="NTSC"/> |
| 54315 | 60333 | <part name="cart" interface="snes_cart"> |
| 60334 | ||
| 60335 | <feature name="slot" value="lorom" /> | |
| 54316 | 60336 | <dataarea name="rom" size="1572864"> |
| 54317 | 60337 | <rom name="super real mahjong pv paradise (japan).sfc" size="1572864" crc="f9df0081" sha1="343a6e422b8c84b5b6266364804c951168da6bcb" offset="0x000000" /> |
| 54318 | 60338 | </dataarea> |
| r21545 | r21546 | |
| 54328 | 60348 | <info name="alt_title" value="スーパーロボット大戦外伝 魔装機神 THE LORD OF ELEMENTAL" /> |
| 54329 | 60349 | <part name="cart" interface="snes_cart"> |
| 54330 | 60350 | <feature name="enhancement" value="SA1" /> |
| 60351 | ||
| 60352 | <feature name="slot" value="lorom_sa1" /> | |
| 54331 | 60353 | <dataarea name="rom" size="3145728"> |
| 54332 | 60354 | <rom name="super robot taisen gaiden - masou kishin - the lord of elemental (japan).sfc" size="3145728" crc="ebadc924" sha1="3fa8b1edeb9a42916a1b59634d7eeac0a5b26966" offset="0x000000" /> |
| 54333 | 60355 | </dataarea> |
| r21545 | r21546 | |
| 54344 | 60366 | <info name="release" value="19921022" /> |
| 54345 | 60367 | <info name="alt_title" value="スーパーロイヤルブラッド" /> |
| 54346 | 60368 | <part name="cart" interface="snes_cart"> |
| 60369 | ||
| 60370 | <feature name="slot" value="lorom" /> | |
| 54347 | 60371 | <dataarea name="rom" size="1048576"> |
| 54348 | 60372 | <rom name="super royal blood (japan).sfc" size="1048576" crc="12340705" sha1="5e9fca2225d8c827fbede9afba51e56832f472c2" offset="0x000000" /> |
| 54349 | 60373 | </dataarea> |
| r21545 | r21546 | |
| 54358 | 60382 | <publisher>Nintendo</publisher> |
| 54359 | 60383 | <info name="release" value="199202xx" /> |
| 54360 | 60384 | <part name="cart" interface="snes_cart"> |
| 60385 | ||
| 60386 | <feature name="slot" value="lorom" /> | |
| 54361 | 60387 | <dataarea name="rom" size="1048576"> |
| 54362 | 60388 | <rom name="super scope 6 (usa).sfc" size="1048576" crc="b141ea99" sha1="11ba3ba6f7cbcff6d22d74e4ffa3a0f447bb2e6b" offset="0x000000" /> |
| 54363 | 60389 | </dataarea> |
| r21545 | r21546 | |
| 54372 | 60398 | <info name="release" value="19920428" /> |
| 54373 | 60399 | <info name="alt_title" value="スーパー上海ドラゴンズアイ" /> |
| 54374 | 60400 | <part name="cart" interface="snes_cart"> |
| 60401 | ||
| 60402 | <feature name="slot" value="lorom" /> | |
| 54375 | 60403 | <dataarea name="rom" size="1048576"> |
| 54376 | 60404 | <rom name="super shanghai - dragon's eye (japan).sfc" size="1048576" crc="6f95d27e" sha1="bfecf6c263466409b83095244b658f3ad39343ac" offset="0x000000" /> |
| 54377 | 60405 | </dataarea> |
| r21545 | r21546 | |
| 54386 | 60414 | <info name="release" value="19920619" /> |
| 54387 | 60415 | <info name="alt_title" value="スーパー将棋" /> |
| 54388 | 60416 | <part name="cart" interface="snes_cart"> |
| 60417 | ||
| 60418 | <feature name="slot" value="lorom" /> | |
| 54389 | 60419 | <dataarea name="rom" size="1048576"> |
| 54390 | 60420 | <rom name="super shougi (japan).sfc" size="1048576" crc="3769daa8" sha1="8a100bd97a70063e1064083be49d71a8a671a946" offset="0x000000" /> |
| 54391 | 60421 | </dataarea> |
| r21545 | r21546 | |
| 54402 | 60432 | <info name="release" value="19951229" /> |
| 54403 | 60433 | <info name="alt_title" value="スーパー 将棋3 棋太平" /> |
| 54404 | 60434 | <part name="cart" interface="snes_cart"> |
| 60435 | ||
| 60436 | <feature name="slot" value="lorom" /> | |
| 54405 | 60437 | <dataarea name="rom" size="1572864"> |
| 54406 | 60438 | <rom name="super shougi 3 - kitaihei (japan).sfc" size="1572864" crc="323c6265" sha1="43745f23d0e8a42c68f36c318894cab143bc3aae" offset="0x000000" /> |
| 54407 | 60439 | </dataarea> |
| r21545 | r21546 | |
| 54418 | 60450 | <info name="release" value="19930820" /> |
| 54419 | 60451 | <info name="alt_title" value="スーパースラップショット" /> |
| 54420 | 60452 | <part name="cart" interface="snes_cart"> |
| 60453 | ||
| 60454 | <feature name="slot" value="lorom" /> | |
| 54421 | 60455 | <dataarea name="rom" size="524288"> |
| 54422 | 60456 | <rom name="super slap shot (japan).sfc" size="524288" crc="403c692d" sha1="a10d51c5e86ca9f00ec822de74228a4108d1d435" offset="0x000000" /> |
| 54423 | 60457 | </dataarea> |
| r21545 | r21546 | |
| 54429 | 60463 | <year>1992</year> |
| 54430 | 60464 | <publisher>Nintendo</publisher> |
| 54431 | 60465 | <part name="cart" interface="snes_cart"> |
| 60466 | ||
| 60467 | <feature name="slot" value="lorom" /> | |
| 54432 | 60468 | <dataarea name="rom" size="524288"> |
| 54433 | 60469 | <rom name="super smash t.v. (europe).sfc" size="524288" crc="9a502573" sha1="c96589e1246fd7ef4ad80c202ba9ae680012075d" offset="0x000000" /> |
| 54434 | 60470 | </dataarea> |
| r21545 | r21546 | |
| 54441 | 60477 | <publisher>Acclaim Entertainment</publisher> |
| 54442 | 60478 | <info name="release" value="199202xx" /> |
| 54443 | 60479 | <part name="cart" interface="snes_cart"> |
| 60480 | ||
| 60481 | <feature name="slot" value="lorom" /> | |
| 54444 | 60482 | <dataarea name="rom" size="524288"> |
| 54445 | 60483 | <rom name="super smash t.v. (usa).sfc" size="524288" crc="2d0b20d0" sha1="eafef16aa34e12e99d1a8bbe138b0a0e39dbbef1" offset="0x000000" /> |
| 54446 | 60484 | </dataarea> |
| r21545 | r21546 | |
| 54455 | 60493 | <info name="release" value="19941216" /> |
| 54456 | 60494 | <info name="alt_title" value="スーパー スネーキー" /> |
| 54457 | 60495 | <part name="cart" interface="snes_cart"> |
| 60496 | ||
| 60497 | <feature name="slot" value="lorom" /> | |
| 54458 | 60498 | <dataarea name="rom" size="524288"> |
| 54459 | 60499 | <rom name="super snakey (japan).sfc" size="524288" crc="5ec69fad" sha1="9c35ea0f3bd22b3018a1bc6447f0630c8026aa1a" offset="0x000000" /> |
| 54460 | 60500 | </dataarea> |
| r21545 | r21546 | |
| 54467 | 60507 | <publisher>Nintendo</publisher> |
| 54468 | 60508 | <info name="release" value="199205xx" /> |
| 54469 | 60509 | <part name="cart" interface="snes_cart"> |
| 60510 | ||
| 60511 | <feature name="slot" value="lorom" /> | |
| 54470 | 60512 | <dataarea name="rom" size="524288"> |
| 54471 | 60513 | <rom name="super soccer (usa).sfc" size="524288" crc="4fd164d8" sha1="47f401cf0b5845e129b636d381233c23ba74cef6" offset="0x000000" /> |
| 54472 | 60514 | </dataarea> |
| r21545 | r21546 | |
| 54479 | 60521 | <publisher>Taito</publisher> |
| 54480 | 60522 | <info name="release" value="199206xx" /> |
| 54481 | 60523 | <part name="cart" interface="snes_cart"> |
| 60524 | ||
| 60525 | <feature name="slot" value="lorom" /> | |
| 54482 | 60526 | <dataarea name="rom" size="524288"> |
| 54483 | 60527 | <rom name="super soccer champ (usa).sfc" size="524288" crc="b31d35a5" sha1="ac7a314dc6c18177e9b38b061693faef67a9e079" offset="0x000000" /> |
| 54484 | 60528 | </dataarea> |
| r21545 | r21546 | |
| 54490 | 60534 | <year>1994</year> |
| 54491 | 60535 | <publisher>Extreme Entertainment Group</publisher> |
| 54492 | 60536 | <part name="cart" interface="snes_cart"> |
| 60537 | ||
| 60538 | <feature name="slot" value="lorom" /> | |
| 54493 | 60539 | <dataarea name="rom" size="524288"> |
| 54494 | 60540 | <rom name="super solitaire (europe) (en,fr,de,es,it) (proto).sfc" size="524288" crc="933228f3" sha1="d653fa6ddc880cce73fdee588214bfbedc32d83e" offset="0x000000" /> |
| 54495 | 60541 | </dataarea> |
| r21545 | r21546 | |
| 54502 | 60548 | <publisher>Extreme Entertainment Group</publisher> |
| 54503 | 60549 | <info name="release" value="199401xx" /> |
| 54504 | 60550 | <part name="cart" interface="snes_cart"> |
| 60551 | ||
| 60552 | <feature name="slot" value="lorom" /> | |
| 54505 | 60553 | <dataarea name="rom" size="524288"> |
| 54506 | 60554 | <rom name="super solitaire (usa) (en,fr,de,es,it).sfc" size="524288" crc="c8e80d55" sha1="0e59eca683a35e61c6182936c45701573f88f355" offset="0x000000" /> |
| 54507 | 60555 | </dataarea> |
| r21545 | r21546 | |
| 54516 | 60564 | <info name="release" value="19930129" /> |
| 54517 | 60565 | <info name="alt_title" value="スーパー倉庫番" /> |
| 54518 | 60566 | <part name="cart" interface="snes_cart"> |
| 60567 | ||
| 60568 | <feature name="slot" value="lorom" /> | |
| 54519 | 60569 | <dataarea name="rom" size="524288"> |
| 54520 | 60570 | <rom name="super soukoban (japan).sfc" size="524288" crc="a9f78e92" sha1="4ac5ae614a32829cf323f02b3b43f837a982a1de" offset="0x000000" /> |
| 54521 | 60571 | </dataarea> |
| r21545 | r21546 | |
| 54530 | 60580 | <info name="release" value="19921218" /> |
| 54531 | 60581 | <info name="alt_title" value="スーパー・スター・ウォーズ" /> |
| 54532 | 60582 | <part name="cart" interface="snes_cart"> |
| 60583 | ||
| 60584 | <feature name="slot" value="lorom" /> | |
| 54533 | 60585 | <dataarea name="rom" size="1048576"> |
| 54534 | 60586 | <rom name="super star wars (japan).sfc" size="1048576" crc="99cb2058" sha1="c3e7244ce77025f3026fad340f822045e8b2e006" offset="0x000000" /> |
| 54535 | 60587 | </dataarea> |
| r21545 | r21546 | |
| 54541 | 60593 | <year>1992</year> |
| 54542 | 60594 | <publisher>JVC</publisher> |
| 54543 | 60595 | <part name="cart" interface="snes_cart"> |
| 60596 | ||
| 60597 | <feature name="slot" value="lorom" /> | |
| 54544 | 60598 | <dataarea name="rom" size="1048576"> |
| 54545 | 60599 | <rom name="super star wars (usa) (beta).sfc" size="1048576" crc="23665f74" sha1="e247c11d763c3595b205ac3e9e997f81e0b264a1" offset="0x000000" /> |
| 54546 | 60600 | </dataarea> |
| r21545 | r21546 | |
| 54555 | 60609 | <info name="release" value="19950623" /> |
| 54556 | 60610 | <info name="alt_title" value="スーパースターウォース ジェダイの 復讐" /> |
| 54557 | 60611 | <part name="cart" interface="snes_cart"> |
| 60612 | ||
| 60613 | <feature name="slot" value="lorom" /> | |
| 54558 | 60614 | <dataarea name="rom" size="2097152"> |
| 54559 | 60615 | <rom name="super star wars - jedi no fukushuu (japan).sfc" size="2097152" crc="d21c6e7e" sha1="e631b99a87a88478b6bbeae7394f7a358ef7cf08" offset="0x000000" /> |
| 54560 | 60616 | </dataarea> |
| r21545 | r21546 | |
| 54566 | 60622 | <year>1994</year> |
| 54567 | 60623 | <publisher>JVC</publisher> |
| 54568 | 60624 | <part name="cart" interface="snes_cart"> |
| 60625 | ||
| 60626 | <feature name="slot" value="lorom" /> | |
| 54569 | 60627 | <dataarea name="rom" size="2097152"> |
| 54570 | 60628 | <rom name="super star wars - return of the jedi (europe) (rev 1).sfc" size="2097152" crc="a79c7e7f" sha1="9802f8603d2b86282758cbd3c2da101dfaf0bab8" offset="0x000000" /> |
| 54571 | 60629 | </dataarea> |
| r21545 | r21546 | |
| 54577 | 60635 | <year>1994</year> |
| 54578 | 60636 | <publisher>JVC</publisher> |
| 54579 | 60637 | <part name="cart" interface="snes_cart"> |
| 60638 | ||
| 60639 | <feature name="slot" value="lorom" /> | |
| 54580 | 60640 | <dataarea name="rom" size="2097152"> |
| 54581 | 60641 | <rom name="super star wars - return of the jedi (europe).sfc" size="2097152" crc="020ca165" sha1="8da7cfffbf60ecc58b758cefe6ee0869512b66c3" offset="0x000000" /> |
| 54582 | 60642 | </dataarea> |
| r21545 | r21546 | |
| 54591 | 60651 | <info name="release" value="19931217" /> |
| 54592 | 60652 | <info name="alt_title" value="スーパー・スター・ウォーズ 帝国の逆襲" /> |
| 54593 | 60653 | <part name="cart" interface="snes_cart"> |
| 60654 | ||
| 60655 | <feature name="slot" value="lorom" /> | |
| 54594 | 60656 | <dataarea name="rom" size="1572864"> |
| 54595 | 60657 | <rom name="super star wars - teikoku no gyakushuu (japan).sfc" size="1572864" crc="05da6b44" sha1="ed78faee693c305c45d3c83519ed98a15027a3b5" offset="0x000000" /> |
| 54596 | 60658 | </dataarea> |
| r21545 | r21546 | |
| 54602 | 60664 | <year>1993</year> |
| 54603 | 60665 | <publisher>JVC</publisher> |
| 54604 | 60666 | <part name="cart" interface="snes_cart"> |
| 60667 | ||
| 60668 | <feature name="slot" value="lorom" /> | |
| 54605 | 60669 | <dataarea name="rom" size="1572864"> |
| 54606 | 60670 | <rom name="super star wars - the empire strikes back (europe) (beta).sfc" size="1572864" crc="101d2dfa" sha1="e634f992bc7b41ca00eef0e91f218289ac7110c9" offset="0x000000" /> |
| 54607 | 60671 | </dataarea> |
| r21545 | r21546 | |
| 54613 | 60677 | <year>1993</year> |
| 54614 | 60678 | <publisher>JVC</publisher> |
| 54615 | 60679 | <part name="cart" interface="snes_cart"> |
| 60680 | ||
| 60681 | <feature name="slot" value="lorom" /> | |
| 54616 | 60682 | <dataarea name="rom" size="1572864"> |
| 54617 | 60683 | <rom name="super star wars - the empire strikes back (europe).sfc" size="1572864" crc="5bfdcd6c" sha1="c5457b4fbf3f950a504050603f57573dabc6ad41" offset="0x000000" /> |
| 54618 | 60684 | </dataarea> |
| r21545 | r21546 | |
| 54625 | 60691 | <publisher>JVC</publisher> |
| 54626 | 60692 | <info name="release" value="199310xx" /> |
| 54627 | 60693 | <part name="cart" interface="snes_cart"> |
| 60694 | ||
| 60695 | <feature name="slot" value="lorom" /> | |
| 54628 | 60696 | <dataarea name="rom" size="1572864"> |
| 54629 | 60697 | <rom name="super star wars - the empire strikes back (usa) (rev 1).sfc" size="1572864" crc="1e7ea62c" sha1="82bf21e0ba427bcc9c6390bf028dfd76de3c94d3" offset="0x000000" /> |
| 54630 | 60698 | </dataarea> |
| r21545 | r21546 | |
| 54636 | 60704 | <year>1993</year> |
| 54637 | 60705 | <publisher>Microprose</publisher> |
| 54638 | 60706 | <part name="cart" interface="snes_cart"> |
| 60707 | ||
| 60708 | <feature name="slot" value="lorom" /> | |
| 54639 | 60709 | <dataarea name="rom" size="1048576"> |
| 54640 | 60710 | <rom name="super strike eagle (europe) (en,fr,de,es,it).sfc" size="1048576" crc="3abab85b" sha1="c9eb8f4627b3b2a090ffb7dafaf255536b52c6d1" offset="0x000000" /> |
| 54641 | 60711 | </dataarea> |
| r21545 | r21546 | |
| 54647 | 60717 | <year>1992</year> |
| 54648 | 60718 | <publisher>NTVIC</publisher> |
| 54649 | 60719 | <part name="cart" interface="snes_cart"> |
| 60720 | ||
| 60721 | <feature name="slot" value="lorom" /> | |
| 54650 | 60722 | <dataarea name="rom" size="1048576"> |
| 54651 | 60723 | <rom name="super strike gunner (europe).sfc" size="1048576" crc="f74acb48" sha1="fb29e8e06baeb4a79dd332fb4584e533276169b7" offset="0x000000" /> |
| 54652 | 60724 | </dataarea> |
| r21545 | r21546 | |
| 54658 | 60730 | <year>1992</year> |
| 54659 | 60731 | <publisher>Sunsoft</publisher> |
| 54660 | 60732 | <part name="cart" interface="snes_cart"> |
| 60733 | ||
| 60734 | <feature name="slot" value="lorom" /> | |
| 54661 | 60735 | <dataarea name="rom" size="1048576"> |
| 54662 | 60736 | <rom name="super swiv (europe).sfc" size="1048576" crc="b6d94361" sha1="797a9082f78c8e38d4d5f79e69373139f2552054" offset="0x000000" /> |
| 54663 | 60737 | </dataarea> |
| r21545 | r21546 | |
| 54672 | 60746 | <info name="release" value="19921113" /> |
| 54673 | 60747 | <info name="alt_title" value="スーパーSWIV" /> |
| 54674 | 60748 | <part name="cart" interface="snes_cart"> |
| 60749 | ||
| 60750 | <feature name="slot" value="lorom" /> | |
| 54675 | 60751 | <dataarea name="rom" size="1048576"> |
| 54676 | 60752 | <rom name="super swiv (japan).sfc" size="1048576" crc="70f28a6d" sha1="40cfde9cfd4c3b175957ffc49163bad8238e64cd" offset="0x000000" /> |
| 54677 | 60753 | </dataarea> |
| r21545 | r21546 | |
| 54686 | 60762 | <info name="release" value="19950915" /> |
| 54687 | 60763 | <info name="alt_title" value="スーパー鉄球ファイト!" /> |
| 54688 | 60764 | <part name="cart" interface="snes_cart"> |
| 60765 | ||
| 60766 | <feature name="slot" value="lorom" /> | |
| 54689 | 60767 | <dataarea name="rom" size="1310720"> |
| 54690 | 60768 | <rom name="super tekkyuu fight! (japan).sfc" size="1310720" crc="5be4a7e3" sha1="12910b4ef21a8ff5171f84d70defe5637c9d2d37" offset="0x000000" /> |
| 54691 | 60769 | </dataarea> |
| r21545 | r21546 | |
| 54697 | 60775 | <year>1991</year> |
| 54698 | 60776 | <publisher>Nintendo</publisher> |
| 54699 | 60777 | <part name="cart" interface="snes_cart"> |
| 60778 | ||
| 60779 | <feature name="slot" value="lorom" /> | |
| 54700 | 60780 | <dataarea name="rom" size="524288"> |
| 54701 | 60781 | <rom name="super tennis (europe).sfc" size="524288" crc="0e31fdef" sha1="2c2b30c060b022a3fc9b0a7972b0fc7f18ec6007" offset="0x000000" /> |
| 54702 | 60782 | </dataarea> |
| r21545 | r21546 | |
| 54708 | 60788 | <year>1994</year> |
| 54709 | 60789 | <publisher>ASC Games</publisher> |
| 54710 | 60790 | <part name="cart" interface="snes_cart"> |
| 60791 | ||
| 60792 | <feature name="slot" value="lorom" /> | |
| 54711 | 60793 | <dataarea name="rom" size="524288"> |
| 54712 | 60794 | <rom name="super troll islands (usa) (beta).sfc" size="524288" crc="c61a7b88" sha1="a932f9875f8c64541cb184e615ceb08564e7220c" offset="0x000000" /> |
| 54713 | 60795 | </dataarea> |
| r21545 | r21546 | |
| 54720 | 60802 | <publisher>ASC Games</publisher> |
| 54721 | 60803 | <info name="release" value="199402xx" /> |
| 54722 | 60804 | <part name="cart" interface="snes_cart"> |
| 60805 | ||
| 60806 | <feature name="slot" value="lorom" /> | |
| 54723 | 60807 | <dataarea name="rom" size="524288"> |
| 54724 | 60808 | <rom name="super troll islands (usa).sfc" size="524288" crc="f9690be9" sha1="64c1d24cd88d11772d033a15d6505909d8aa6aa7" offset="0x000000" /> |
| 54725 | 60809 | </dataarea> |
| r21545 | r21546 | |
| 54734 | 60818 | <info name="release" value="19940325" /> |
| 54735 | 60819 | <info name="alt_title" value="スーパートロールアイラン ド 幸せをあげる" /> |
| 54736 | 60820 | <part name="cart" interface="snes_cart"> |
| 60821 | ||
| 60822 | <feature name="slot" value="lorom" /> | |
| 54737 | 60823 | <dataarea name="rom" size="524288"> |
| 54738 | 60824 | <rom name="super troll islands - shiawase o ageru (japan).sfc" size="524288" crc="e556565a" sha1="fe8d91b9a2a4c746f27482bf5c6ef77494b1d104" offset="0x000000" /> |
| 54739 | 60825 | </dataarea> |
| r21545 | r21546 | |
| 54748 | 60834 | <info name="release" value="19950421" /> |
| 54749 | 60835 | <info name="alt_title" value="スーパートランプコレクション" /> |
| 54750 | 60836 | <part name="cart" interface="snes_cart"> |
| 60837 | ||
| 60838 | <feature name="slot" value="lorom" /> | |
| 54751 | 60839 | <dataarea name="rom" size="524288"> |
| 54752 | 60840 | <rom name="super trump collection (japan).sfc" size="524288" crc="bb9f8083" sha1="7d4d15759b615f1308ba284eb04dea029090957a" offset="0x000000" /> |
| 54753 | 60841 | </dataarea> |
| r21545 | r21546 | |
| 54762 | 60850 | <info name="release" value="19960719" /> |
| 54763 | 60851 | <info name="alt_title" value="スーパートランプコレクション2" /> |
| 54764 | 60852 | <part name="cart" interface="snes_cart"> |
| 60853 | ||
| 60854 | <feature name="slot" value="lorom" /> | |
| 54765 | 60855 | <dataarea name="rom" size="524288"> |
| 54766 | 60856 | <rom name="super trump collection 2 (japan).sfc" size="524288" crc="22711fc8" sha1="716c0f4be7d9e11ed76551bd0336688381ceb2b5" offset="0x000000" /> |
| 54767 | 60857 | </dataarea> |
| r21545 | r21546 | |
| 54776 | 60866 | <info name="release" value="19941216" /> |
| 54777 | 60867 | <info name="alt_title" value="スーパー詰将棋1000" /> |
| 54778 | 60868 | <part name="cart" interface="snes_cart"> |
| 60869 | ||
| 60870 | <feature name="slot" value="lorom" /> | |
| 54779 | 60871 | <dataarea name="rom" size="524288"> |
| 54780 | 60872 | <rom name="super tsumeshougi 1000 (japan).sfc" size="524288" crc="f9ae2b76" sha1="f76c98924ddae1a4eed4a1da47a09cb01dee177c" offset="0x000000" /> |
| 54781 | 60873 | </dataarea> |
| r21545 | r21546 | |
| 54790 | 60882 | <info name="release" value="19930903" /> |
| 54791 | 60883 | <info name="alt_title" value="スーパータリカン" /> |
| 54792 | 60884 | <part name="cart" interface="snes_cart"> |
| 60885 | ||
| 60886 | <feature name="slot" value="lorom" /> | |
| 54793 | 60887 | <dataarea name="rom" size="524288"> |
| 54794 | 60888 | <rom name="super turrican (japan).sfc" size="524288" crc="7ec892f0" sha1="1c712f78560c53e050e6fa445a1b1d4e37a9f39b" offset="0x000000" /> |
| 54795 | 60889 | </dataarea> |
| r21545 | r21546 | |
| 54802 | 60896 | <publisher>Seika</publisher> |
| 54803 | 60897 | <info name="release" value="199305xx" /> |
| 54804 | 60898 | <part name="cart" interface="snes_cart"> |
| 60899 | ||
| 60900 | <feature name="slot" value="lorom" /> | |
| 54805 | 60901 | <dataarea name="rom" size="524288"> |
| 54806 | 60902 | <rom name="super turrican (usa).sfc" size="524288" crc="3a7e8215" sha1="9b06e78849f68b78e1e9581e04a6be2892543c0b" offset="0x000000" /> |
| 54807 | 60903 | </dataarea> |
| r21545 | r21546 | |
| 54813 | 60909 | <year>1995</year> |
| 54814 | 60910 | <publisher>Ocean</publisher> |
| 54815 | 60911 | <part name="cart" interface="snes_cart"> |
| 60912 | ||
| 60913 | <feature name="slot" value="lorom" /> | |
| 54816 | 60914 | <dataarea name="rom" size="2097152"> |
| 54817 | 60915 | <rom name="super turrican 2 (europe).sfc" size="2097152" crc="af821fd0" sha1="50afeedfc7129a72e63b77c5e1742440959129a5" offset="0x000000" /> |
| 54818 | 60916 | </dataarea> |
| r21545 | r21546 | |
| 54824 | 60922 | <year>1995</year> |
| 54825 | 60923 | <publisher>Ocean</publisher> |
| 54826 | 60924 | <part name="cart" interface="snes_cart"> |
| 60925 | ||
| 60926 | <feature name="slot" value="lorom" /> | |
| 54827 | 60927 | <dataarea name="rom" size="2097152"> |
| 54828 | 60928 | <rom name="super turrican 2 (usa) (beta) (alt 1).sfc" size="2097152" crc="5e550e27" sha1="c8bdc5cee51ef93b43468f268c4be25c66a858cd" offset="0x000000" /> |
| 54829 | 60929 | </dataarea> |
| r21545 | r21546 | |
| 54835 | 60935 | <year>1995</year> |
| 54836 | 60936 | <publisher>Ocean</publisher> |
| 54837 | 60937 | <part name="cart" interface="snes_cart"> |
| 60938 | ||
| 60939 | <feature name="slot" value="lorom" /> | |
| 54838 | 60940 | <dataarea name="rom" size="1048576"> |
| 54839 | 60941 | <rom name="super turrican 2 (usa) (beta).sfc" size="1048576" crc="691314bb" sha1="8f3e589fc7d8a24088a32cbe1b56847d5fd7a962" offset="0x000000" /> |
| 54840 | 60942 | </dataarea> |
| r21545 | r21546 | |
| 54849 | 60951 | <info name="release" value="19940728" /> |
| 54850 | 60952 | <info name="alt_title" value="スーパーウルトラベースボール2" /> |
| 54851 | 60953 | <part name="cart" interface="snes_cart"> |
| 60954 | ||
| 60955 | <feature name="slot" value="lorom" /> | |
| 54852 | 60956 | <dataarea name="rom" size="524288"> |
| 54853 | 60957 | <rom name="super ultra baseball 2 (japan).sfc" size="524288" crc="ffe37adf" sha1="0ad316766f146bf6a9f873f8fc35e272135f74d1" offset="0x000000" /> |
| 54854 | 60958 | </dataarea> |
| r21545 | r21546 | |
| 54866 | 60970 | <info name="alt_title" value="スーパーUNO" /> |
| 54867 | 60971 | <sharedfeat name="compatibility" value="NTSC"/> |
| 54868 | 60972 | <part name="cart" interface="snes_cart"> |
| 60973 | ||
| 60974 | <feature name="slot" value="lorom" /> | |
| 54869 | 60975 | <dataarea name="rom" size="1048576"> |
| 54870 | 60976 | <rom name="super uno (japan).sfc" size="1048576" crc="61441201" sha1="8130449b2b9a9ccf01b9472e17f7ed01fbc49b76" offset="0x000000" /> |
| 54871 | 60977 | </dataarea> |
| r21545 | r21546 | |
| 54878 | 60984 | <publisher>Atlus</publisher> |
| 54879 | 60985 | <info name="release" value="199302xx" /> |
| 54880 | 60986 | <part name="cart" interface="snes_cart"> |
| 60987 | ||
| 60988 | <feature name="slot" value="lorom" /> | |
| 54881 | 60989 | <dataarea name="rom" size="1048576"> |
| 54882 | 60990 | <rom name="super valis iv (usa).sfc" size="1048576" crc="29e8ac9f" sha1="1539afea17ed866cdc976605f1bdc871547303ff" offset="0x000000" /> |
| 54883 | 60991 | </dataarea> |
| r21545 | r21546 | |
| 54892 | 61000 | <info name="release" value="19950721" /> |
| 54893 | 61001 | <info name="alt_title" value="スーパー ヴァリアブル・ジオ" /> |
| 54894 | 61002 | <part name="cart" interface="snes_cart"> |
| 61003 | ||
| 61004 | <feature name="slot" value="lorom" /> | |
| 54895 | 61005 | <dataarea name="rom" size="3145728"> |
| 54896 | 61006 | <rom name="super variable geo (japan).sfc" size="3145728" crc="de3262e7" sha1="44e00647d681a5157fb935138fa1eda5fb3e07ff" offset="0x000000" /> |
| 54897 | 61007 | </dataarea> |
| r21545 | r21546 | |
| 54906 | 61016 | <info name="release" value="19921225" /> |
| 54907 | 61017 | <info name="alt_title" value="スーパーバレーII" /> |
| 54908 | 61018 | <part name="cart" interface="snes_cart"> |
| 61019 | ||
| 61020 | <feature name="slot" value="lorom" /> | |
| 54909 | 61021 | <dataarea name="rom" size="1048576"> |
| 54910 | 61022 | <rom name="super volley ii (japan).sfc" size="1048576" crc="4a0c88ad" sha1="55d8f5c28c259a06badf80ff0d6b2a3524ce7236" offset="0x000000" /> |
| 54911 | 61023 | </dataarea> |
| r21545 | r21546 | |
| 54920 | 61032 | <year>1993</year> |
| 54921 | 61033 | <publisher>Atlus</publisher> |
| 54922 | 61034 | <part name="cart" interface="snes_cart"> |
| 61035 | ||
| 61036 | <feature name="slot" value="lorom" /> | |
| 54923 | 61037 | <dataarea name="rom" size="1048576"> |
| 54924 | 61038 | <rom name="super widget (europe).sfc" size="1048576" crc="1f7ce2a8" sha1="6845eda332b5042f28e353b87bd3da71c267d8d9" offset="0x000000" /> |
| 54925 | 61039 | </dataarea> |
| r21545 | r21546 | |
| 54934 | 61048 | <info name="release" value="19941216" /> |
| 54935 | 61049 | <info name="alt_title" value="スーパーレッスルエンジェルス" /> |
| 54936 | 61050 | <part name="cart" interface="snes_cart"> |
| 61051 | ||
| 61052 | <feature name="slot" value="lorom" /> | |
| 54937 | 61053 | <dataarea name="rom" size="1572864"> |
| 54938 | 61054 | <rom name="super wrestle angels (japan).sfc" size="1572864" crc="b697f8a0" sha1="1897062b952636ce0d2f9b714c7cd0b08cdc340b" offset="0x000000" /> |
| 54939 | 61055 | </dataarea> |
| r21545 | r21546 | |
| 54950 | 61066 | <info name="release" value="19960126" /> |
| 54951 | 61067 | <info name="alt_title" value="スーパー野球道" /> |
| 54952 | 61068 | <part name="cart" interface="snes_cart"> |
| 61069 | ||
| 61070 | <feature name="slot" value="lorom" /> | |
| 54953 | 61071 | <dataarea name="rom" size="1572864"> |
| 54954 | 61072 | <rom name="super yakyuudou (japan).sfc" size="1572864" crc="24020e16" sha1="7a706493082a92d40a6fc50641fbd5805caad1fc" offset="0x000000" /> |
| 54955 | 61073 | </dataarea> |
| r21545 | r21546 | |
| 54966 | 61084 | <info name="release" value="19940211" /> |
| 54967 | 61085 | <info name="alt_title" value="スーパーヅガン ―ハコテン 城からの招待状―" /> |
| 54968 | 61086 | <part name="cart" interface="snes_cart"> |
| 61087 | ||
| 61088 | <feature name="slot" value="hirom" /> | |
| 54969 | 61089 | <dataarea name="rom" size="1048576"> |
| 54970 | 61090 | <rom name="super zugan - hakotenjou kara no shoutaijou (japan).sfc" size="1048576" crc="17e2de82" sha1="f62e14986e71a81b36b63cbb4f070f55074aaad9" offset="0x000000" /> |
| 54971 | 61091 | </dataarea> |
| r21545 | r21546 | |
| 54980 | 61100 | <info name="release" value="19941230" /> |
| 54981 | 61101 | <info name="alt_title" value="スーパーヅガン2 ツカンポファイター~明菜コレクション~" /> |
| 54982 | 61102 | <part name="cart" interface="snes_cart"> |
| 61103 | ||
| 61104 | <feature name="slot" value="hirom" /> | |
| 54983 | 61105 | <dataarea name="rom" size="1572864"> |
| 54984 | 61106 | <rom name="super zugan 2 - tsukanpo fighter (japan).sfc" size="1572864" crc="8679beb8" sha1="429433e5d430df6eb63dcfdca195f3e5ce21dc85" offset="0x000000" /> |
| 54985 | 61107 | </dataarea> |
| r21545 | r21546 | |
| 54994 | 61116 | <info name="release" value="19940225" /> |
| 54995 | 61117 | <info name="alt_title" value="ストバスヤロウ将" /> |
| 54996 | 61118 | <part name="cart" interface="snes_cart"> |
| 61119 | ||
| 61120 | <feature name="slot" value="lorom" /> | |
| 54997 | 61121 | <dataarea name="rom" size="1048576"> |
| 54998 | 61122 | <rom name="sutobasu yarou show (japan).sfc" size="1048576" crc="a953a1de" sha1="0391adeffd8fb1b1c34621868195541391f81657" offset="0x000000" /> |
| 54999 | 61123 | </dataarea> |
| r21545 | r21546 | |
| 55008 | 61132 | <info name="release" value="19980801 / 19990625" /> |
| 55009 | 61133 | <info name="alt_title" value="すってはっくん" /> |
| 55010 | 61134 | <part name="cart" interface="snes_cart"> |
| 61135 | ||
| 61136 | <feature name="slot" value="hirom" /> | |
| 55011 | 61137 | <dataarea name="rom" size="3145728"> |
| 55012 | 61138 | <rom name="sutte hakkun (japan).sfc" size="3145728" crc="dc173550" sha1="12e1a5133aa4f08501436e1237f980c0ef0d64e3" offset="0x000000" /> |
| 55013 | 61139 | </dataarea> |
| r21545 | r21546 | |
| 55036 | 61162 | <feature name="battery" value="BATT CR2032" /> |
| 55037 | 61163 | <feature name="cart_model" value="SHVC-006" /> |
| 55038 | 61164 | <feature name="cart_back_label" value="920214" /> |
| 61165 | ||
| 61166 | <feature name="slot" value="hirom_dsp" /> | |
| 55039 | 61167 | <dataarea name="rom" size="1048576"> |
| 55040 | 61168 | <rom name="shvc-8h-0.u1" size="1048576" crc="b846b00d" sha1="d110e337a49f6a635236c9bf485759e48411cb69" offset="0x000000" /> |
| 55041 | 61169 | </dataarea> |
| 61170 | <dataarea name="addon" size="10240"> | |
| 61171 | <rom name="dsp1a.u3" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 61172 | </dataarea> | |
| 55042 | 61173 | <dataarea name="nvram" size="2048"> |
| 55043 | 61174 | </dataarea> |
| 55044 | 61175 | </part> |
| r21545 | r21546 | |
| 55052 | 61183 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55053 | 61184 | <part name="cart" interface="snes_cart"> |
| 55054 | 61185 | <feature name="enhancement" value="DSP1" /> |
| 61186 | ||
| 61187 | <feature name="slot" value="hirom_dsp" /> | |
| 55055 | 61188 | <dataarea name="rom" size="1048576"> |
| 55056 | 61189 | <rom name="suzuka 8 hours (usa).sfc" size="1048576" crc="54740b9b" sha1="90a418a1d0a65c32ea8945c6496602f0d11514a5" offset="0x000000" /> |
| 55057 | 61190 | </dataarea> |
| 61191 | <dataarea name="addon" size="10240"> | |
| 61192 | <rom name="dsp1.bin" size="10240" crc="2838f9f5" sha1="0a03ccb1fd2bea91151c745a4d1f217ae784f889" offset="0x000000" /> | |
| 61193 | </dataarea> | |
| 55058 | 61194 | </part> |
| 55059 | 61195 | </software> |
| 55060 | 61196 | |
| r21545 | r21546 | |
| 55066 | 61202 | <info name="release" value="19920717" /> |
| 55067 | 61203 | <info name="alt_title" value="鈴木亜久里のF-1スーパードライビング" /> |
| 55068 | 61204 | <part name="cart" interface="snes_cart"> |
| 61205 | ||
| 61206 | <feature name="slot" value="lorom" /> | |
| 55069 | 61207 | <dataarea name="rom" size="1048576"> |
| 55070 | 61208 | <rom name="suzuki aguri no f-1 super driving (japan).sfc" size="1048576" crc="75bdc895" sha1="a27884a9518688e55e6e740f70f71e571b492c5d" offset="0x000000" /> |
| 55071 | 61209 | </dataarea> |
| r21545 | r21546 | |
| 55080 | 61218 | <publisher>Hudson</publisher> |
| 55081 | 61219 | <info name="release" value="199508xx" /> |
| 55082 | 61220 | <part name="cart" interface="snes_cart"> |
| 61221 | ||
| 61222 | <feature name="slot" value="hirom" /> | |
| 55083 | 61223 | <dataarea name="rom" size="2097152"> |
| 55084 | 61224 | <rom name="swat kats - the radical squadron (usa).sfc" size="2097152" crc="ea2a23fb" sha1="aa9ebe608e934607ade003e0821c11e4c6eae8de" offset="0x000000" /> |
| 55085 | 61225 | </dataarea> |
| r21545 | r21546 | |
| 55094 | 61234 | <info name="release" value="19940211" /> |
| 55095 | 61235 | <info name="alt_title" value="ソード・マニアック" /> |
| 55096 | 61236 | <part name="cart" interface="snes_cart"> |
| 61237 | ||
| 61238 | <feature name="slot" value="lorom" /> | |
| 55097 | 61239 | <dataarea name="rom" size="1048576"> |
| 55098 | 61240 | <rom name="sword maniac (japan).sfc" size="1048576" crc="a7295784" sha1="45d5de600129e1b13a4c1779122c8604fa92e7c7" offset="0x000000" /> |
| 55099 | 61241 | </dataarea> |
| r21545 | r21546 | |
| 55106 | 61248 | <year>1995</year> |
| 55107 | 61249 | <publisher>Ocean</publisher> |
| 55108 | 61250 | <part name="cart" interface="snes_cart"> |
| 61251 | ||
| 61252 | <feature name="slot" value="lorom" /> | |
| 55109 | 61253 | <dataarea name="rom" size="1048576"> |
| 55110 | 61254 | <rom name="syndicate (europe) (en,fr,de) (beta).sfc" size="1048576" crc="181cae99" sha1="d0f4eb03ed823ec05e1df6e0ed406e638f343b54" offset="0x000000" /> |
| 55111 | 61255 | </dataarea> |
| r21545 | r21546 | |
| 55120 | 61264 | <info name="release" value="19950519" /> |
| 55121 | 61265 | <info name="alt_title" value="シンジケート" /> |
| 55122 | 61266 | <part name="cart" interface="snes_cart"> |
| 61267 | ||
| 61268 | <feature name="slot" value="lorom" /> | |
| 55123 | 61269 | <dataarea name="rom" size="1048576"> |
| 55124 | 61270 | <rom name="syndicate (japan).sfc" size="1048576" crc="63c52dc4" sha1="226733c86d0be70b5ef73c14ebe8c7c1761c89f9" offset="0x000000" /> |
| 55125 | 61271 | </dataarea> |
| r21545 | r21546 | |
| 55134 | 61280 | <publisher>Ocean</publisher> |
| 55135 | 61281 | <info name="release" value="199512xx" /> |
| 55136 | 61282 | <part name="cart" interface="snes_cart"> |
| 61283 | ||
| 61284 | <feature name="slot" value="lorom" /> | |
| 55137 | 61285 | <dataarea name="rom" size="1048576"> |
| 55138 | 61286 | <rom name="syndicate (usa).sfc" size="1048576" crc="d74570d3" sha1="591527865e2b90521e36d460148f7482bc94b6a0" offset="0x000000" /> |
| 55139 | 61287 | </dataarea> |
| r21545 | r21546 | |
| 55145 | 61293 | <year>1992</year> |
| 55146 | 61294 | <publisher>Toshiba EMI</publisher> |
| 55147 | 61295 | <part name="cart" interface="snes_cart"> |
| 61296 | ||
| 61297 | <feature name="slot" value="lorom" /> | |
| 55148 | 61298 | <dataarea name="rom" size="1048576"> |
| 55149 | 61299 | <rom name="syvalion (europe) (beta).sfc" size="1048576" crc="be122755" sha1="ddfa611f1177f371c1107dbd8e8ecdb19011a232" offset="0x000000" /> |
| 55150 | 61300 | </dataarea> |
| r21545 | r21546 | |
| 55156 | 61306 | <year>1992</year> |
| 55157 | 61307 | <publisher>Toshiba EMI</publisher> |
| 55158 | 61308 | <part name="cart" interface="snes_cart"> |
| 61309 | ||
| 61310 | <feature name="slot" value="lorom" /> | |
| 55159 | 61311 | <dataarea name="rom" size="1048576"> |
| 55160 | 61312 | <rom name="syvalion (europe).sfc" size="1048576" crc="f1884ecb" sha1="78588d844774b35650af13fc02034aa51773b616" offset="0x000000" /> |
| 55161 | 61313 | </dataarea> |
| r21545 | r21546 | |
| 55170 | 61322 | <info name="release" value="19920724" /> |
| 55171 | 61323 | <info name="alt_title" value="サイバリオン" /> |
| 55172 | 61324 | <part name="cart" interface="snes_cart"> |
| 61325 | ||
| 61326 | <feature name="slot" value="lorom" /> | |
| 55173 | 61327 | <dataarea name="rom" size="1048576"> |
| 55174 | 61328 | <rom name="syvalion (japan).sfc" size="1048576" crc="75ff74f2" sha1="0bf035b7cf63a5a675984acc5eef364f0bb6d9e7" offset="0x000000" /> |
| 55175 | 61329 | </dataarea> |
| r21545 | r21546 | |
| 55184 | 61338 | <info name="release" value="19940225" /> |
| 55185 | 61339 | <info name="alt_title" value="T2 ザ・アーケードゲーム" /> |
| 55186 | 61340 | <part name="cart" interface="snes_cart"> |
| 61341 | ||
| 61342 | <feature name="slot" value="lorom" /> | |
| 55187 | 61343 | <dataarea name="rom" size="1048576"> |
| 55188 | 61344 | <rom name="t2 - the arcade game (japan).sfc" size="1048576" crc="cb5409ff" sha1="e0d076d42f85449cdd688f654c67d7f874fb4744" offset="0x000000" /> |
| 55189 | 61345 | </dataarea> |
| r21545 | r21546 | |
| 55196 | 61352 | <publisher>LJN</publisher> |
| 55197 | 61353 | <info name="release" value="199402xx" /> |
| 55198 | 61354 | <part name="cart" interface="snes_cart"> |
| 61355 | ||
| 61356 | <feature name="slot" value="lorom" /> | |
| 55199 | 61357 | <dataarea name="rom" size="1048576"> |
| 55200 | 61358 | <rom name="t2 - the arcade game (usa).sfc" size="1048576" crc="5dc6b9fe" sha1="29597788b9240be9fd1f800ce61a54298986ce73" offset="0x000000" /> |
| 55201 | 61359 | </dataarea> |
| r21545 | r21546 | |
| 55210 | 61368 | <info name="release" value="19960726" /> |
| 55211 | 61369 | <info name="alt_title" value="テーブルゲーム大集合!! 将棋・麻 雀・花札・トゥーサイト" /> |
| 55212 | 61370 | <part name="cart" interface="snes_cart"> |
| 61371 | ||
| 61372 | <feature name="slot" value="hirom" /> | |
| 55213 | 61373 | <dataarea name="rom" size="1048576"> |
| 55214 | 61374 | <rom name="table game daishuugou!! (japan).sfc" size="1048576" crc="661e791e" sha1="5d4bfe205a35af01c3dd787ec7ff599b848ae3da" offset="0x000000" /> |
| 55215 | 61375 | </dataarea> |
| r21545 | r21546 | |
| 55224 | 61384 | <info name="release" value="19951006" /> |
| 55225 | 61385 | <info name="alt_title" value="タクティクスオウカ " /> |
| 55226 | 61386 | <part name="cart" interface="snes_cart"> |
| 61387 | ||
| 61388 | <feature name="slot" value="lorom" /> | |
| 55227 | 61389 | <dataarea name="rom" size="3145728"> |
| 55228 | 61390 | <rom name="tactics ogre - let us cling together (japan) (rev 1).sfc" size="3145728" crc="271e1d07" sha1="26b5d89ab3159e4d41ace2a64ad9df7a251ce380" offset="0x000000" /> |
| 55229 | 61391 | </dataarea> |
| r21545 | r21546 | |
| 55240 | 61402 | <info name="release" value="19951006" /> |
| 55241 | 61403 | <info name="alt_title" value="タクティクスオウカ " /> |
| 55242 | 61404 | <part name="cart" interface="snes_cart"> |
| 61405 | ||
| 61406 | <feature name="slot" value="lorom" /> | |
| 55243 | 61407 | <dataarea name="rom" size="3145728"> |
| 55244 | 61408 | <rom name="tactics ogre - let us cling together (japan) (rev 2).sfc" size="3145728" crc="12f0a699" sha1="93e975f1e59004ba3da5646c57a721e8ff34b3a0" offset="0x000000" /> |
| 55245 | 61409 | </dataarea> |
| r21545 | r21546 | |
| 55256 | 61420 | <info name="release" value="19951006" /> |
| 55257 | 61421 | <info name="alt_title" value="タクティクスオウカ " /> |
| 55258 | 61422 | <part name="cart" interface="snes_cart"> |
| 61423 | ||
| 61424 | <feature name="slot" value="lorom" /> | |
| 55259 | 61425 | <dataarea name="rom" size="3145728"> |
| 55260 | 61426 | <rom name="tactics ogre - let us cling together (japan).sfc" size="3145728" crc="daf285a5" sha1="233131719da09fca94e4f7b8981b8e41570406f3" offset="0x000000" /> |
| 55261 | 61427 | </dataarea> |
| r21545 | r21546 | |
| 55273 | 61439 | <info name="alt_title" value="ただいま勇者募集中おかわり" /> |
| 55274 | 61440 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55275 | 61441 | <part name="cart" interface="snes_cart"> |
| 61442 | ||
| 61443 | <feature name="slot" value="hirom" /> | |
| 55276 | 61444 | <dataarea name="rom" size="2097152"> |
| 55277 | 61445 | <rom name="tadaima yuusha boshuuchuu okawari (japan).sfc" size="2097152" crc="1bdeb829" sha1="0a5363fb99ca8bb8efed0beb8e1ce6577f2d8887" offset="0x000000" /> |
| 55278 | 61446 | </dataarea> |
| r21545 | r21546 | |
| 55290 | 61458 | <info name="alt_title" value="足台拳道" /> |
| 55291 | 61459 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55292 | 61460 | <part name="cart" interface="snes_cart"> |
| 61461 | ||
| 61462 | <feature name="slot" value="lorom" /> | |
| 55293 | 61463 | <dataarea name="rom" size="1048576"> |
| 55294 | 61464 | <rom name="taekwon-do (japan) (ja,ko).sfc" size="1048576" crc="93f29dde" sha1="dc61cb9b82eb58a9b09cb93a10b6731eaa4cd053" offset="0x000000" /> |
| 55295 | 61465 | </dataarea> |
| r21545 | r21546 | |
| 55301 | 61471 | <year>1994?</year> |
| 55302 | 61472 | <publisher>Human Entertainment?</publisher> |
| 55303 | 61473 | <part name="cart" interface="snes_cart"> |
| 61474 | ||
| 61475 | <feature name="slot" value="lorom" /> | |
| 55304 | 61476 | <dataarea name="rom" size="1048576"> |
| 55305 | 61477 | <rom name="taekwon-do (korea).sfc" size="1048576" crc="d20d7701" sha1="11826edddb9d8e2a0267bf8d5d96b343191c6511" offset="0x000000" /> |
| 55306 | 61478 | </dataarea> |
| r21545 | r21546 | |
| 55315 | 61487 | <info name="release" value="19921120" /> |
| 55316 | 61488 | <info name="alt_title" value="対決!!ブラスナンバーズ" /> |
| 55317 | 61489 | <part name="cart" interface="snes_cart"> |
| 61490 | ||
| 61491 | <feature name="slot" value="lorom" /> | |
| 55318 | 61492 | <dataarea name="rom" size="1048576"> |
| 55319 | 61493 | <rom name="taiketsu!! brass numbers (japan).sfc" size="1048576" crc="27815b78" sha1="c68658e255797f8aeb674300bbc025e7cbe2db1e" offset="0x000000" /> |
| 55320 | 61494 | </dataarea> |
| r21545 | r21546 | |
| 55329 | 61503 | <info name="release" value="19951229" /> |
| 55330 | 61504 | <info name="alt_title" value="対局囲碁 韋駄天" /> |
| 55331 | 61505 | <part name="cart" interface="snes_cart"> |
| 61506 | ||
| 61507 | <feature name="slot" value="lorom" /> | |
| 55332 | 61508 | <dataarea name="rom" size="1048576"> |
| 55333 | 61509 | <rom name="taikyoku igo - idaten (japan).sfc" size="1048576" crc="b5db72b6" sha1="ab83bf94b9830e7335090f00980a16934e3acff7" offset="0x000000" /> |
| 55334 | 61510 | </dataarea> |
| r21545 | r21546 | |
| 55342 | 61518 | <year>199?</year> |
| 55343 | 61519 | <publisher><unlicensed></publisher> |
| 55344 | 61520 | <part name="cart" interface="snes_cart"> |
| 61521 | ||
| 61522 | <feature name="slot" value="lorom" /> | |
| 55345 | 61523 | <dataarea name="rom" size="524288"> |
| 55346 | 61524 | <rom name="taiwan 16 mahjong ii - horoscope girls edition (unl).sfc" size="524288" crc="561bbd96" sha1="7d22466ebf2d3a33e4567d6f23756a286ddcf9c7" offset="0x000000" /> |
| 55347 | 61525 | </dataarea> |
| r21545 | r21546 | |
| 55356 | 61534 | <info name="release" value="19950103" /> |
| 55357 | 61535 | <info name="alt_title" value="高橋名人の大冒険島II" /> |
| 55358 | 61536 | <part name="cart" interface="snes_cart"> |
| 61537 | ||
| 61538 | <feature name="slot" value="hirom" /> | |
| 55359 | 61539 | <dataarea name="rom" size="1572864"> |
| 55360 | 61540 | <rom name="takahashi meijin no daiboukenjima ii (japan).sfc" size="1572864" crc="1c71451c" sha1="2c9242bcd3bb6963c99b05d14e888232a630aca4" offset="0x000000" /> |
| 55361 | 61541 | </dataarea> |
| r21545 | r21546 | |
| 55372 | 61552 | <info name="release" value="19950721" /> |
| 55373 | 61553 | <info name="alt_title" value="武豊GIメモリー" /> |
| 55374 | 61554 | <part name="cart" interface="snes_cart"> |
| 61555 | ||
| 61556 | <feature name="slot" value="hirom" /> | |
| 55375 | 61557 | <dataarea name="rom" size="3145728"> |
| 55376 | 61558 | <rom name="take yutaka gi memory (japan).sfc" size="3145728" crc="21a9925d" sha1="b4aa96a3b8d32e2d453a7a6f58c9da9310d7c823" offset="0x000000" /> |
| 55377 | 61559 | </dataarea> |
| r21545 | r21546 | |
| 55388 | 61570 | <info name="release" value="19950811" /> |
| 55389 | 61571 | <info name="alt_title" value="武宮正樹九段の囲碁大将" /> |
| 55390 | 61572 | <part name="cart" interface="snes_cart"> |
| 61573 | ||
| 61574 | <feature name="slot" value="lorom" /> | |
| 55391 | 61575 | <dataarea name="rom" size="524288"> |
| 55392 | 61576 | <rom name="takemiya masaki kudan no igo taishou (japan).sfc" size="524288" crc="639022ab" sha1="4f396648c9c60cd92769c1789f37b06cd1cfcd13" offset="0x000000" /> |
| 55393 | 61577 | </dataarea> |
| r21545 | r21546 | |
| 55404 | 61588 | <info name="release" value="19990501" /> |
| 55405 | 61589 | <info name="alt_title" value="たまごっちタウン" /> |
| 55406 | 61590 | <part name="cart" interface="snes_cart"> |
| 61591 | ||
| 61592 | <feature name="slot" value="lorom" /> | |
| 55407 | 61593 | <dataarea name="rom" size="1048576"> |
| 55408 | 61594 | <rom name="tamagotch town (japan) (np).sfc" size="1048576" crc="2c877794" sha1="e5fa0a457278c831750213014f859e535de06734" offset="0x000000" /> |
| 55409 | 61595 | </dataarea> |
| r21545 | r21546 | |
| 55420 | 61606 | <info name="release" value="19950428" /> |
| 55421 | 61607 | <info name="alt_title" value="タロットミステリー" /> |
| 55422 | 61608 | <part name="cart" interface="snes_cart"> |
| 61609 | ||
| 61610 | <feature name="slot" value="hirom" /> | |
| 55423 | 61611 | <dataarea name="rom" size="1048576"> |
| 55424 | 61612 | <rom name="tarot mystery (japan).sfc" size="1048576" crc="3ce00f85" sha1="e4bb6214f740efc3b5e2d0482cd8d4f10b205044" offset="0x000000" /> |
| 55425 | 61613 | </dataarea> |
| r21545 | r21546 | |
| 55434 | 61622 | <info name="release" value="19921218" /> |
| 55435 | 61623 | <info name="alt_title" value="戦え原始人2 ルーキーの冒険" /> |
| 55436 | 61624 | <part name="cart" interface="snes_cart"> |
| 61625 | ||
| 61626 | <feature name="slot" value="lorom" /> | |
| 55437 | 61627 | <dataarea name="rom" size="524288"> |
| 55438 | 61628 | <rom name="tatakae genshijin 2 - rookie no bouken (japan).sfc" size="524288" crc="689cbf05" sha1="d782b92bb7dd79f4b47513cf604fb63e2f7cef18" offset="0x000000" /> |
| 55439 | 61629 | </dataarea> |
| r21545 | r21546 | |
| 55448 | 61638 | <info name="release" value="19940218" /> |
| 55449 | 61639 | <info name="alt_title" value="戦え原始人3 主役はやっぱり" /> |
| 55450 | 61640 | <part name="cart" interface="snes_cart"> |
| 61641 | ||
| 61642 | <feature name="slot" value="lorom" /> | |
| 55451 | 61643 | <dataarea name="rom" size="1048576"> |
| 55452 | 61644 | <rom name="tatakae genshijin 3 - shuyaku wa yappari joe & mac (japan).sfc" size="1048576" crc="a0a9f044" sha1="046ff553048e15ca592e7704896ad802b55b4a65" offset="0x000000" /> |
| 55453 | 61645 | </dataarea> |
| r21545 | r21546 | |
| 55459 | 61651 | <year>1993</year> |
| 55460 | 61652 | <publisher>Sunsoft</publisher> |
| 55461 | 61653 | <part name="cart" interface="snes_cart"> |
| 61654 | ||
| 61655 | <feature name="slot" value="lorom" /> | |
| 55462 | 61656 | <dataarea name="rom" size="1048576"> |
| 55463 | 61657 | <rom name="taz-mania (europe).sfc" size="1048576" crc="4937a4f6" sha1="de3877af6fe4dba8680df79e21e67c4793e7947c" offset="0x000000" /> |
| 55464 | 61658 | </dataarea> |
| r21545 | r21546 | |
| 55470 | 61664 | <year>1993</year> |
| 55471 | 61665 | <publisher>Sunsoft</publisher> |
| 55472 | 61666 | <part name="cart" interface="snes_cart"> |
| 61667 | ||
| 61668 | <feature name="slot" value="lorom" /> | |
| 55473 | 61669 | <dataarea name="rom" size="1048576"> |
| 55474 | 61670 | <rom name="taz-mania (usa) (beta).sfc" size="1048576" crc="5a5bd63c" sha1="32547c4bc5809977b8613a71e827be56ecfac753" offset="0x000000" /> |
| 55475 | 61671 | </dataarea> |
| r21545 | r21546 | |
| 55481 | 61677 | <year>1995</year> |
| 55482 | 61678 | <publisher>Tecmo</publisher> |
| 55483 | 61679 | <part name="cart" interface="snes_cart"> |
| 61680 | ||
| 61681 | <feature name="slot" value="lorom" /> | |
| 55484 | 61682 | <dataarea name="rom" size="1048576"> |
| 55485 | 61683 | <rom name="tecmo secret of the stars (usa) (beta).sfc" size="1048576" crc="421d2c18" sha1="d2c17d4622baafd5c4c1c23fd4a9b6d2cee785b8" offset="0x000000" /> |
| 55486 | 61684 | </dataarea> |
| r21545 | r21546 | |
| 55495 | 61693 | <publisher>Tecmo</publisher> |
| 55496 | 61694 | <info name="release" value="199507xx" /> |
| 55497 | 61695 | <part name="cart" interface="snes_cart"> |
| 61696 | ||
| 61697 | <feature name="slot" value="lorom" /> | |
| 55498 | 61698 | <dataarea name="rom" size="1572864"> |
| 55499 | 61699 | <rom name="tecmo secret of the stars (usa).sfc" size="1572864" crc="ef968ed1" sha1="958a0a835e2e39f382cb37a99098a3cdd4812cf7" offset="0x000000" /> |
| 55500 | 61700 | </dataarea> |
| r21545 | r21546 | |
| 55511 | 61711 | <info name="release" value="19941028" /> |
| 55512 | 61712 | <info name="alt_title" value="テクモスーパーベースボール" /> |
| 55513 | 61713 | <part name="cart" interface="snes_cart"> |
| 61714 | ||
| 61715 | <feature name="slot" value="lorom" /> | |
| 55514 | 61716 | <dataarea name="rom" size="1572864"> |
| 55515 | 61717 | <rom name="tecmo super baseball (japan).sfc" size="1572864" crc="2f98db3e" sha1="f967b85614f515830c07d1faa9f18988100e2f0e" offset="0x000000" /> |
| 55516 | 61718 | </dataarea> |
| r21545 | r21546 | |
| 55524 | 61726 | <year>1994</year> |
| 55525 | 61727 | <publisher>Tecmo</publisher> |
| 55526 | 61728 | <part name="cart" interface="snes_cart"> |
| 61729 | ||
| 61730 | <feature name="slot" value="lorom" /> | |
| 55527 | 61731 | <dataarea name="rom" size="1572864"> |
| 55528 | 61732 | <rom name="tecmo super baseball (usa) (beta).sfc" size="1572864" crc="024d4af5" sha1="002dac48c249abf6de1fd6bed175e9a0b12b36f6" offset="0x000000" /> |
| 55529 | 61733 | </dataarea> |
| r21545 | r21546 | |
| 55538 | 61742 | <publisher>Tecmo</publisher> |
| 55539 | 61743 | <info name="release" value="199409xx" /> |
| 55540 | 61744 | <part name="cart" interface="snes_cart"> |
| 61745 | ||
| 61746 | <feature name="slot" value="lorom" /> | |
| 55541 | 61747 | <dataarea name="rom" size="1572864"> |
| 55542 | 61748 | <rom name="tecmo super baseball (usa).sfc" size="1572864" crc="e302d853" sha1="44b182bf9e6803ce7bb48fd167df31ce60e4df06" offset="0x000000" /> |
| 55543 | 61749 | </dataarea> |
| r21545 | r21546 | |
| 55555 | 61761 | <info name="alt_title" value="テクモスーパーボウル" /> |
| 55556 | 61762 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55557 | 61763 | <part name="cart" interface="snes_cart"> |
| 61764 | ||
| 61765 | <feature name="slot" value="lorom" /> | |
| 55558 | 61766 | <dataarea name="rom" size="1572864"> |
| 55559 | 61767 | <rom name="tecmo super bowl (japan).sfc" size="1572864" crc="c7d84893" sha1="5742652d7013e7e355c7347af1cc432c366c1d71" offset="0x000000" /> |
| 55560 | 61768 | </dataarea> |
| r21545 | r21546 | |
| 55568 | 61776 | <year>1993</year> |
| 55569 | 61777 | <publisher>Tecmo</publisher> |
| 55570 | 61778 | <part name="cart" interface="snes_cart"> |
| 61779 | ||
| 61780 | <feature name="slot" value="lorom" /> | |
| 55571 | 61781 | <dataarea name="rom" size="1572864"> |
| 55572 | 61782 | <rom name="tecmo super bowl (usa) (beta).sfc" size="1572864" crc="f8e691d9" sha1="d89a1ddfd28fe4212aeffc9f7687e8da106ac009" offset="0x000000" /> |
| 55573 | 61783 | </dataarea> |
| r21545 | r21546 | |
| 55583 | 61793 | <info name="alt_title" value="テクモスーパーボウルII スペシャルエ ディション" /> |
| 55584 | 61794 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55585 | 61795 | <part name="cart" interface="snes_cart"> |
| 61796 | ||
| 61797 | <feature name="slot" value="lorom" /> | |
| 55586 | 61798 | <dataarea name="rom" size="2097152"> |
| 55587 | 61799 | <rom name="tecmo super bowl ii - special edition (japan).sfc" size="2097152" crc="5acd46ec" sha1="1fa813a7a628d9c4ae4aa75374449928ba039a06" offset="0x000000" /> |
| 55588 | 61800 | </dataarea> |
| r21545 | r21546 | |
| 55598 | 61810 | <info name="release" value="199501xx" /> |
| 55599 | 61811 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55600 | 61812 | <part name="cart" interface="snes_cart"> |
| 61813 | ||
| 61814 | <feature name="slot" value="lorom" /> | |
| 55601 | 61815 | <dataarea name="rom" size="2097152"> |
| 55602 | 61816 | <rom name="tecmo super bowl ii - special edition (usa).sfc" size="2097152" crc="d67d507b" sha1="1dba2fa606aa993a2b8cdbbd029a721882e8888e" offset="0x000000" /> |
| 55603 | 61817 | </dataarea> |
| r21545 | r21546 | |
| 55613 | 61827 | <info name="release" value="199510xx" /> |
| 55614 | 61828 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55615 | 61829 | <part name="cart" interface="snes_cart"> |
| 61830 | ||
| 61831 | <feature name="slot" value="lorom" /> | |
| 55616 | 61832 | <dataarea name="rom" size="2097152"> |
| 55617 | 61833 | <rom name="tecmo super bowl iii - final edition (usa).sfc" size="2097152" crc="8ef1411f" sha1="9af8fe77351b9d0c853d91b689ae8c41efb618e3" offset="0x000000" /> |
| 55618 | 61834 | </dataarea> |
| r21545 | r21546 | |
| 55626 | 61842 | <year>1993</year> |
| 55627 | 61843 | <publisher>Tecmo</publisher> |
| 55628 | 61844 | <part name="cart" interface="snes_cart"> |
| 61845 | ||
| 61846 | <feature name="slot" value="lorom" /> | |
| 55629 | 61847 | <dataarea name="rom" size="1048576"> |
| 55630 | 61848 | <rom name="tecmo super nba basketball (australia).sfc" size="1048576" crc="1b1c3dd9" sha1="017f394750402911c9ac5eb507053acbadc9fc8c" offset="0x000000" /> |
| 55631 | 61849 | </dataarea> |
| r21545 | r21546 | |
| 55639 | 61857 | <year>1993</year> |
| 55640 | 61858 | <publisher>Tecmo</publisher> |
| 55641 | 61859 | <part name="cart" interface="snes_cart"> |
| 61860 | ||
| 61861 | <feature name="slot" value="lorom" /> | |
| 55642 | 61862 | <dataarea name="rom" size="1048576"> |
| 55643 | 61863 | <rom name="tecmo super nba basketball (europe).sfc" size="1048576" crc="aea63622" sha1="3c483e4da49cefd66096c7f1e2275de45dd59b9f" offset="0x000000" /> |
| 55644 | 61864 | </dataarea> |
| r21545 | r21546 | |
| 55652 | 61872 | <year>1993</year> |
| 55653 | 61873 | <publisher>Konami</publisher> |
| 55654 | 61874 | <part name="cart" interface="snes_cart"> |
| 61875 | ||
| 61876 | <feature name="slot" value="lorom" /> | |
| 55655 | 61877 | <dataarea name="rom" size="2097152"> |
| 55656 | 61878 | <rom name="teenage mutant hero turtles - tournament fighters (europe).sfc" size="2097152" crc="0dda3124" sha1="a72747217f1c43c54c1b8a175dfad171023cd78e" offset="0x000000" /> |
| 55657 | 61879 | </dataarea> |
| r21545 | r21546 | |
| 55663 | 61885 | <year>1993</year> |
| 55664 | 61886 | <publisher>Konami</publisher> |
| 55665 | 61887 | <part name="cart" interface="snes_cart"> |
| 61888 | ||
| 61889 | <feature name="slot" value="lorom" /> | |
| 55666 | 61890 | <dataarea name="rom" size="2097152"> |
| 55667 | 61891 | <rom name="teenage mutant ninja turtles - tournament fighters (australia).sfc" size="2097152" crc="580026d9" sha1="76e9d9827cb8e5c4aff80c1d01a5e2acad33c5b4" offset="0x000000" /> |
| 55668 | 61892 | </dataarea> |
| r21545 | r21546 | |
| 55674 | 61898 | <year>1993</year> |
| 55675 | 61899 | <publisher>Konami</publisher> |
| 55676 | 61900 | <part name="cart" interface="snes_cart"> |
| 61901 | ||
| 61902 | <feature name="slot" value="lorom" /> | |
| 55677 | 61903 | <dataarea name="rom" size="2097152"> |
| 55678 | 61904 | <rom name="teenage mutant ninja turtles - tournament fighters (usa) (beta).sfc" size="2097152" crc="63e37d86" sha1="473d222be60c16287b7585d3d6781717fcdf7b46" offset="0x000000" /> |
| 55679 | 61905 | </dataarea> |
| r21545 | r21546 | |
| 55685 | 61911 | <year>1992</year> |
| 55686 | 61912 | <publisher>Konami</publisher> |
| 55687 | 61913 | <part name="cart" interface="snes_cart"> |
| 61914 | ||
| 61915 | <feature name="slot" value="lorom" /> | |
| 55688 | 61916 | <dataarea name="rom" size="1048576"> |
| 55689 | 61917 | <rom name="teenage mutant ninja turtles iv - turtles in time (australia).sfc" size="1048576" crc="b28f1b9d" sha1="c4ba9b0fd1b40a228e6bb1170ec227dac5b83ce5" offset="0x000000" /> |
| 55690 | 61918 | </dataarea> |
| r21545 | r21546 | |
| 55696 | 61924 | <year>1992</year> |
| 55697 | 61925 | <publisher>Konami</publisher> |
| 55698 | 61926 | <part name="cart" interface="snes_cart"> |
| 61927 | ||
| 61928 | <feature name="slot" value="lorom" /> | |
| 55699 | 61929 | <dataarea name="rom" size="1048576"> |
| 55700 | 61930 | <rom name="teenage mutant ninja turtles iv - turtles in time (usa) (beta).sfc" size="1048576" crc="a9fb97e9" sha1="10dcb06832f8f0cd68c703d206afb0f82c96eb05" offset="0x000000" /> |
| 55701 | 61931 | </dataarea> |
| r21545 | r21546 | |
| 55710 | 61940 | <info name="release" value="19920924" /> |
| 55711 | 61941 | <info name="alt_title" value="提督の決断" /> |
| 55712 | 61942 | <part name="cart" interface="snes_cart"> |
| 61943 | ||
| 61944 | <feature name="slot" value="lorom" /> | |
| 55713 | 61945 | <dataarea name="rom" size="1310720"> |
| 55714 | 61946 | <rom name="teitoku no ketsudan (japan) (rev 1).sfc" size="1310720" crc="73aede7e" sha1="bba0793732842b59dc68337a62bca5c663ef14a8" offset="0x000000" /> |
| 55715 | 61947 | </dataarea> |
| r21545 | r21546 | |
| 55726 | 61958 | <info name="release" value="19960119" /> |
| 55727 | 61959 | <info name="alt_title" value="的中競馬塾" /> |
| 55728 | 61960 | <part name="cart" interface="snes_cart"> |
| 61961 | ||
| 61962 | <feature name="slot" value="lorom" /> | |
| 55729 | 61963 | <dataarea name="rom" size="1048576"> |
| 55730 | 61964 | <rom name="tekichuu keiba juku (japan).sfc" size="1048576" crc="47e09fec" sha1="6934fbf6fc8134db346429faaa8966af32890680" offset="0x000000" /> |
| 55731 | 61965 | </dataarea> |
| r21545 | r21546 | |
| 55739 | 61973 | <year>1995</year> |
| 55740 | 61974 | <publisher>Banpresto</publisher> |
| 55741 | 61975 | <part name="cart" interface="snes_cart"> |
| 61976 | ||
| 61977 | <feature name="slot" value="hirom" /> | |
| 55742 | 61978 | <dataarea name="rom" size="2097152"> |
| 55743 | 61979 | <rom name="tenchi muyou! game hen (japan) (sample).sfc" size="2097152" crc="f0e82b14" sha1="54adc1ad028394b55c991e1e17ed414abde44eb0" offset="0x000000" /> |
| 55744 | 61980 | </dataarea> |
| r21545 | r21546 | |
| 55755 | 61991 | <info name="release" value="19951020" /> |
| 55756 | 61992 | <info name="alt_title" value="天地創造" /> |
| 55757 | 61993 | <part name="cart" interface="snes_cart"> |
| 61994 | ||
| 61995 | <feature name="slot" value="hirom" /> | |
| 55758 | 61996 | <dataarea name="rom" size="4194304"> |
| 55759 | 61997 | <rom name="tenchi souzou (japan).sfc" size="4194304" crc="3cc7fdf4" sha1="f787672e766a43a73d9bd310fcb3c2cac024b227" offset="0x000000" /> |
| 55760 | 61998 | </dataarea> |
| r21545 | r21546 | |
| 55770 | 62008 | <info name="serial" value="SHVC-AZQJ-JPN" /> |
| 55771 | 62009 | <part name="cart" interface="snes_cart"> |
| 55772 | 62010 | <feature name="enhancement" value="SPC7110" /> |
| 62011 | ||
| 62012 | <feature name="slot" value="hirom_spcrtc" /> | |
| 55773 | 62013 | <dataarea name="rom" size="5242880"> |
| 55774 | 62014 | <rom name="tengai makyou zero (japan) (shounen jump no shou).sfc" size="5242880" crc="bf8fef7a" sha1="36e5099128088b95623ff77f8196fcecd3f26731" offset="0x000000" /> |
| 55775 | 62015 | </dataarea> |
| r21545 | r21546 | |
| 55787 | 62027 | <info name="alt_title" value="天龍源一郎のプロレス レヴォリューション" /> |
| 55788 | 62028 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55789 | 62029 | <part name="cart" interface="snes_cart"> |
| 62030 | ||
| 62031 | <feature name="slot" value="lorom" /> | |
| 55790 | 62032 | <dataarea name="rom" size="2097152"> |
| 55791 | 62033 | <rom name="tenryuu genichirou no pro wrestling revolution (japan).sfc" size="2097152" crc="d5fb8c83" sha1="5260f47ab74dd1de5eb222c5a4687ad52333f968" offset="0x000000" /> |
| 55792 | 62034 | </dataarea> |
| r21545 | r21546 | |
| 55801 | 62043 | <info name="release" value="19940729" /> |
| 55802 | 62044 | <info name="alt_title" value="天使の詩 ~白き翼の祈り~" /> |
| 55803 | 62045 | <part name="cart" interface="snes_cart"> |
| 62046 | ||
| 62047 | <feature name="slot" value="hirom" /> | |
| 55804 | 62048 | <dataarea name="rom" size="1572864"> |
| 55805 | 62049 | <rom name="tenshi no uta - shiroki tsubasa no inori (japan).sfc" size="1572864" crc="6e030b96" sha1="6eec1415c46faf2bfd22dba9fdc53be11b60c3cc" offset="0x000000" /> |
| 55806 | 62050 | </dataarea> |
| r21545 | r21546 | |
| 55814 | 62058 | <year>1993</year> |
| 55815 | 62059 | <publisher>LJN</publisher> |
| 55816 | 62060 | <part name="cart" interface="snes_cart"> |
| 62061 | ||
| 62062 | <feature name="slot" value="lorom" /> | |
| 55817 | 62063 | <dataarea name="rom" size="1048576"> |
| 55818 | 62064 | <rom name="terminator 2 - judgment day (europe) (beta).sfc" size="1048576" crc="ac933465" sha1="bab24606be3b1ed0c716c9a9beb70d67d20c7fcb" offset="0x000000" /> |
| 55819 | 62065 | </dataarea> |
| r21545 | r21546 | |
| 55826 | 62072 | <publisher>LJN</publisher> |
| 55827 | 62073 | <info name="release" value="199311xx" /> |
| 55828 | 62074 | <part name="cart" interface="snes_cart"> |
| 62075 | ||
| 62076 | <feature name="slot" value="lorom" /> | |
| 55829 | 62077 | <dataarea name="rom" size="1048576"> |
| 55830 | 62078 | <rom name="terminator 2 - judgment day (usa).sfc" size="1048576" crc="f729b19e" sha1="c95c46bf2c77e7233792fc1212e90d8fc267c1a3" offset="0x000000" /> |
| 55831 | 62079 | </dataarea> |
| r21545 | r21546 | |
| 55837 | 62085 | <year>1993</year> |
| 55838 | 62086 | <publisher>Mindscape</publisher> |
| 55839 | 62087 | <part name="cart" interface="snes_cart"> |
| 62088 | ||
| 62089 | <feature name="slot" value="lorom" /> | |
| 55840 | 62090 | <dataarea name="rom" size="1048576"> |
| 55841 | 62091 | <rom name="terminator, the (europe) (beta).sfc" size="1048576" crc="6c853888" sha1="2d88c410fe09d0d7d06adb64e58949b1f19bd165" offset="0x000000" /> |
| 55842 | 62092 | </dataarea> |
| r21545 | r21546 | |
| 55849 | 62099 | <publisher>Mindscape</publisher> |
| 55850 | 62100 | <info name="release" value="199305xx" /> |
| 55851 | 62101 | <part name="cart" interface="snes_cart"> |
| 62102 | ||
| 62103 | <feature name="slot" value="lorom" /> | |
| 55852 | 62104 | <dataarea name="rom" size="1048576"> |
| 55853 | 62105 | <rom name="terminator, the (usa).sfc" size="1048576" crc="d71e6c3b" sha1="402723ff8e42dfe3139ecb792bd53f225beeb103" offset="0x000000" /> |
| 55854 | 62106 | </dataarea> |
| r21545 | r21546 | |
| 55861 | 62113 | <publisher>Nintendo</publisher> |
| 55862 | 62114 | <sharedfeat name="compatibility" value="PAL"/> |
| 55863 | 62115 | <part name="cart" interface="snes_cart"> |
| 62116 | ||
| 62117 | <feature name="slot" value="hirom" /> | |
| 55864 | 62118 | <dataarea name="rom" size="4194304"> |
| 55865 | 62119 | <rom name="terranigma (europe).sfc" size="4194304" crc="974523ff" sha1="911239b4b21106ae4a284454d345c55554985525" offset="0x000000" /> |
| 55866 | 62120 | </dataarea> |
| r21545 | r21546 | |
| 55876 | 62130 | <sharedfeat name="compatibility" value="PAL"/> |
| 55877 | 62131 | <sharedfeat name="compatibility" value="PAL"/> |
| 55878 | 62132 | <part name="cart" interface="snes_cart"> |
| 62133 | ||
| 62134 | <feature name="slot" value="hirom" /> | |
| 55879 | 62135 | <dataarea name="rom" size="4194304"> |
| 55880 | 62136 | <rom name="terranigma (germany) (rev 1).sfc" size="4194304" crc="6fb8a4df" sha1="9a64ce79bea16d01ab71b58b11df0bcf0eedd889" offset="0x000000" /> |
| 55881 | 62137 | </dataarea> |
| r21545 | r21546 | |
| 55890 | 62146 | <publisher>Nintendo</publisher> |
| 55891 | 62147 | <sharedfeat name="compatibility" value="PAL"/> |
| 55892 | 62148 | <part name="cart" interface="snes_cart"> |
| 62149 | ||
| 62150 | <feature name="slot" value="hirom" /> | |
| 55893 | 62151 | <dataarea name="rom" size="4194304"> |
| 55894 | 62152 | <rom name="terranigma (spain).sfc" size="4194304" crc="00e61534" sha1="1e1a85cf28bcb69cb34fc71f48347279d7cfea7e" offset="0x000000" /> |
| 55895 | 62153 | </dataarea> |
| r21545 | r21546 | |
| 55904 | 62162 | <publisher>Nintendo</publisher> |
| 55905 | 62163 | <sharedfeat name="compatibility" value="PAL"/> |
| 55906 | 62164 | <part name="cart" interface="snes_cart"> |
| 62165 | ||
| 62166 | <feature name="slot" value="lorom" /> | |
| 55907 | 62167 | <dataarea name="rom" size="1048576"> |
| 55908 | 62168 | <rom name="tetris 2 (europe).sfc" size="1048576" crc="19b69a57" sha1="dae51612c26bdc0ba734f4ba2bc2eb3532608c03" offset="0x000000" /> |
| 55909 | 62169 | </dataarea> |
| r21545 | r21546 | |
| 55917 | 62177 | <info name="release" value="199408xx" /> |
| 55918 | 62178 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55919 | 62179 | <part name="cart" interface="snes_cart"> |
| 62180 | ||
| 62181 | <feature name="slot" value="lorom" /> | |
| 55920 | 62182 | <dataarea name="rom" size="1048576"> |
| 55921 | 62183 | <rom name="tetris 2 (usa) (rev 1).sfc" size="1048576" crc="3bc7054a" sha1="3d1545911ad024bac0ac7c68e8f77984fb25d278" offset="0x000000" /> |
| 55922 | 62184 | </dataarea> |
| r21545 | r21546 | |
| 55929 | 62191 | <publisher>Nintendo</publisher> |
| 55930 | 62192 | <info name="release" value="199608xx" /> |
| 55931 | 62193 | <part name="cart" interface="snes_cart"> |
| 62194 | ||
| 62195 | <feature name="slot" value="lorom" /> | |
| 55932 | 62196 | <dataarea name="rom" size="1048576"> |
| 55933 | 62197 | <rom name="tetris attack (usa) (en,ja).sfc" size="1048576" crc="6c128210" sha1="2dc56eab3e70c0910ae47119d8b69f494e6000df" offset="0x000000" /> |
| 55934 | 62198 | </dataarea> |
| r21545 | r21546 | |
| 55944 | 62208 | <info name="alt_title" value="テトリス 武闘外伝" /> |
| 55945 | 62209 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55946 | 62210 | <part name="cart" interface="snes_cart"> |
| 62211 | ||
| 62212 | <feature name="slot" value="lorom" /> | |
| 55947 | 62213 | <dataarea name="rom" size="1048576"> |
| 55948 | 62214 | <rom name="tetris battle gaiden (japan).sfc" size="1048576" crc="b8f5f846" sha1="e455607b32b0adf14bf4af917cbf6561eccd1d0d" offset="0x000000" /> |
| 55949 | 62215 | </dataarea> |
| r21545 | r21546 | |
| 55959 | 62225 | <info name="alt_title" value="テトリスフラッシュ" /> |
| 55960 | 62226 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55961 | 62227 | <part name="cart" interface="snes_cart"> |
| 62228 | ||
| 62229 | <feature name="slot" value="lorom" /> | |
| 55962 | 62230 | <dataarea name="rom" size="1048576"> |
| 55963 | 62231 | <rom name="tetris flash (japan).sfc" size="1048576" crc="09e9e3bb" sha1="a7b03c0807954a1bd9a05ab9927c28284e235208" offset="0x000000" /> |
| 55964 | 62232 | </dataarea> |
| r21545 | r21546 | |
| 55974 | 62242 | <info name="alt_title" value="鉄腕アトム" /> |
| 55975 | 62243 | <sharedfeat name="compatibility" value="NTSC"/> |
| 55976 | 62244 | <part name="cart" interface="snes_cart"> |
| 62245 | ||
| 62246 | <feature name="slot" value="lorom" /> | |
| 55977 | 62247 | <dataarea name="rom" size="1310720"> |
| 55978 | 62248 | <rom name="tetsuwan atom (japan).sfc" size="1310720" crc="2b79faf0" sha1="682742315bdf95b344f0d70816ad80b43ab925a5" offset="0x000000" /> |
| 55979 | 62249 | </dataarea> |
| r21545 | r21546 | |
| 55985 | 62255 | <year>1996</year> |
| 55986 | 62256 | <publisher>Ocean</publisher> |
| 55987 | 62257 | <part name="cart" interface="snes_cart"> |
| 62258 | ||
| 62259 | <feature name="slot" value="lorom" /> | |
| 55988 | 62260 | <dataarea name="rom" size="1048576"> |
| 55989 | 62261 | <rom name="theme park (europe) (en,fr,de).sfc" size="1048576" crc="ca0e041c" sha1="1470c5f9d3d2078c55e0822b3219189120fd3f7b" offset="0x000000" /> |
| 55990 | 62262 | </dataarea> |
| r21545 | r21546 | |
| 55996 | 62268 | <year>1993</year> |
| 55997 | 62269 | <publisher>T*HQ</publisher> |
| 55998 | 62270 | <part name="cart" interface="snes_cart"> |
| 62271 | ||
| 62272 | <feature name="slot" value="lorom" /> | |
| 55999 | 62273 | <dataarea name="rom" size="1048576"> |
| 56000 | 62274 | <rom name="thomas the tank engine and friends (europe).sfc" size="1048576" crc="f597a111" sha1="cfd0bb61f2d840ce405439040e4ce4c1a5f43038" offset="0x000000" /> |
| 56001 | 62275 | </dataarea> |
| r21545 | r21546 | |
| 56008 | 62282 | <publisher>T*HQ</publisher> |
| 56009 | 62283 | <info name="release" value="199309xx" /> |
| 56010 | 62284 | <part name="cart" interface="snes_cart"> |
| 62285 | ||
| 62286 | <feature name="slot" value="lorom" /> | |
| 56011 | 62287 | <dataarea name="rom" size="1048576"> |
| 56012 | 62288 | <rom name="thomas the tank engine and friends (usa).sfc" size="1048576" crc="bb4cd5a4" sha1="7b03d25216c4021fc5a1a3c1a04012d2c1e1638f" offset="0x000000" /> |
| 56013 | 62289 | </dataarea> |
| r21545 | r21546 | |
| 56022 | 62298 | <info name="release" value="19930827" /> |
| 56023 | 62299 | <info name="alt_title" value="サラブレッドブリーダー" /> |
| 56024 | 62300 | <part name="cart" interface="snes_cart"> |
| 62301 | ||
| 62302 | <feature name="slot" value="lorom" /> | |
| 56025 | 62303 | <dataarea name="rom" size="1048576"> |
| 56026 | 62304 | <rom name="thoroughbred breeder (japan).sfc" size="1048576" crc="fe0b27ef" sha1="c775fbe6b6f7021aca2e1bda48cf1d9807449732" offset="0x000000" /> |
| 56027 | 62305 | </dataarea> |
| r21545 | r21546 | |
| 56038 | 62316 | <info name="release" value="19940608" /> |
| 56039 | 62317 | <info name="alt_title" value="サラブレッドブリーダーII" /> |
| 56040 | 62318 | <part name="cart" interface="snes_cart"> |
| 62319 | ||
| 62320 | <feature name="slot" value="lorom" /> | |
| 56041 | 62321 | <dataarea name="rom" size="2097152"> |
| 56042 | 62322 | <rom name="thoroughbred breeder ii (japan).sfc" size="2097152" crc="9d89bd3a" sha1="095bf29be3fe83d44660bbdc2e47898176289f56" offset="0x000000" /> |
| 56043 | 62323 | </dataarea> |
| r21545 | r21546 | |
| 56054 | 62334 | <info name="release" value="19961018" /> |
| 56055 | 62335 | <info name="alt_title" value="サラブレッドブリーダーIII" /> |
| 56056 | 62336 | <part name="cart" interface="snes_cart"> |
| 62337 | ||
| 62338 | <feature name="slot" value="lorom" /> | |
| 56057 | 62339 | <dataarea name="rom" size="2097152"> |
| 56058 | 62340 | <rom name="thoroughbred breeder iii (japan).sfc" size="2097152" crc="5c7fc277" sha1="00e19f7eb868eebc256c1d5734867c377904f302" offset="0x000000" /> |
| 56059 | 62341 | </dataarea> |
| r21545 | r21546 | |
| 56070 | 62352 | <info name="release" value="19911227" /> |
| 56071 | 62353 | <info name="alt_title" value="サンダースピリッツ" /> |
| 56072 | 62354 | <part name="cart" interface="snes_cart"> |
| 62355 | ||
| 62356 | <feature name="slot" value="lorom" /> | |
| 56073 | 62357 | <dataarea name="rom" size="1048576"> |
| 56074 | 62358 | <rom name="thunder spirits (japan).sfc" size="1048576" crc="41a933a6" sha1="ec812f490a1453b94c04de52b0a73bb2e2fd8820" offset="0x000000" /> |
| 56075 | 62359 | </dataarea> |
| r21545 | r21546 | |
| 56082 | 62366 | <publisher>Seika</publisher> |
| 56083 | 62367 | <info name="release" value="199206xx" /> |
| 56084 | 62368 | <part name="cart" interface="snes_cart"> |
| 62369 | ||
| 62370 | <feature name="slot" value="lorom" /> | |
| 56085 | 62371 | <dataarea name="rom" size="1048576"> |
| 56086 | 62372 | <rom name="thunder spirits (usa).sfc" size="1048576" crc="522fe837" sha1="b0519f373bde918d5d03d13d6e1b0e82599f9102" offset="0x000000" /> |
| 56087 | 62373 | </dataarea> |
| r21545 | r21546 | |
| 56096 | 62382 | <info name="release" value="19930910" /> |
| 56097 | 62383 | <info name="alt_title" value="サンダーバード 国際救助隊出撃せよ!!" /> |
| 56098 | 62384 | <part name="cart" interface="snes_cart"> |
| 62385 | ||
| 62386 | <feature name="slot" value="lorom" /> | |
| 56099 | 62387 | <dataarea name="rom" size="1048576"> |
| 56100 | 62388 | <rom name="thunderbirds - kokusai kyuujotai shutsudou seyo! (japan).sfc" size="1048576" crc="623f2197" sha1="06f72963ffab3850399eaf9d4af311a988e883f0" offset="0x000000" /> |
| 56101 | 62389 | </dataarea> |
| r21545 | r21546 | |
| 56108 | 62396 | <publisher>Fox Interactive</publisher> |
| 56109 | 62397 | <info name="release" value="199412xx" /> |
| 56110 | 62398 | <part name="cart" interface="snes_cart"> |
| 62399 | ||
| 62400 | <feature name="slot" value="lorom" /> | |
| 56111 | 62401 | <dataarea name="rom" size="2097152"> |
| 56112 | 62402 | <rom name="tick, the (usa).sfc" size="2097152" crc="12ab22a7" sha1="82cadb38f20e8610bd8c0c1763fdfa56528b8310" offset="0x000000" /> |
| 56113 | 62403 | </dataarea> |
| r21545 | r21546 | |
| 56119 | 62409 | <year>1993</year> |
| 56120 | 62410 | <publisher>Vic Tokai</publisher> |
| 56121 | 62411 | <part name="cart" interface="snes_cart"> |
| 62412 | ||
| 62413 | <feature name="slot" value="lorom" /> | |
| 56122 | 62414 | <dataarea name="rom" size="1048576"> |
| 56123 | 62415 | <rom name="time slip (europe) (beta).sfc" size="1048576" crc="de12f893" sha1="08a9c6b92641da07a2b96d5da7f183e683f9d149" offset="0x000000" /> |
| 56124 | 62416 | </dataarea> |
| r21545 | r21546 | |
| 56130 | 62422 | <year>1993</year> |
| 56131 | 62423 | <publisher>Vic Tokai</publisher> |
| 56132 | 62424 | <part name="cart" interface="snes_cart"> |
| 62425 | ||
| 62426 | <feature name="slot" value="lorom" /> | |
| 56133 | 62427 | <dataarea name="rom" size="1048576"> |
| 56134 | 62428 | <rom name="time slip (europe).sfc" size="1048576" crc="adac8eff" sha1="00e791fefb9923eb832bc7fef2c1b738de4f8f3f" offset="0x000000" /> |
| 56135 | 62429 | </dataarea> |
| r21545 | r21546 | |
| 56141 | 62435 | <year>1994</year> |
| 56142 | 62436 | <publisher>T*HQ</publisher> |
| 56143 | 62437 | <part name="cart" interface="snes_cart"> |
| 62438 | ||
| 62439 | <feature name="slot" value="lorom" /> | |
| 56144 | 62440 | <dataarea name="rom" size="1048576"> |
| 56145 | 62441 | <rom name="time trax (europe).sfc" size="1048576" crc="4d7c512f" sha1="eabdeced0b753986f46ad9ccfec597220271fe3e" offset="0x000000" /> |
| 56146 | 62442 | </dataarea> |
| r21545 | r21546 | |
| 56152 | 62448 | <year>1994</year> |
| 56153 | 62449 | <publisher>T*HQ</publisher> |
| 56154 | 62450 | <part name="cart" interface="snes_cart"> |
| 62451 | ||
| 62452 | <feature name="slot" value="lorom" /> | |
| 56155 | 62453 | <dataarea name="rom" size="1048576"> |
| 56156 | 62454 | <rom name="time trax (usa) (beta).sfc" size="1048576" crc="a7a54043" sha1="a6b78b258db1bb858b6ea11d09bb32ae0ecd39da" offset="0x000000" /> |
| 56157 | 62455 | </dataarea> |
| r21545 | r21546 | |
| 56164 | 62462 | <publisher>T*HQ</publisher> |
| 56165 | 62463 | <info name="release" value="199404xx" /> |
| 56166 | 62464 | <part name="cart" interface="snes_cart"> |
| 62465 | ||
| 62466 | <feature name="slot" value="lorom" /> | |
| 56167 | 62467 | <dataarea name="rom" size="1048576"> |
| 56168 | 62468 | <rom name="time trax (usa).sfc" size="1048576" crc="f6628157" sha1="b5e1fd97b3f27667d753dfbd88cd8d64c0984fa5" offset="0x000000" /> |
| 56169 | 62469 | </dataarea> |
| r21545 | r21546 | |
| 56175 | 62475 | <year>1995</year> |
| 56176 | 62476 | <publisher>JVC</publisher> |
| 56177 | 62477 | <part name="cart" interface="snes_cart"> |
| 62478 | ||
| 62479 | <feature name="slot" value="lorom" /> | |
| 56178 | 62480 | <dataarea name="rom" size="2097152"> |
| 56179 | 62481 | <rom name="timecop (europe).sfc" size="2097152" crc="bc0c9b71" sha1="355d9b2c747b56c62da95dc1ae0b3c8144699785" offset="0x000000" /> |
| 56180 | 62482 | </dataarea> |
| r21545 | r21546 | |
| 56189 | 62491 | <info name="release" value="19950217" /> |
| 56190 | 62492 | <info name="alt_title" value="タイムコッフ" /> |
| 56191 | 62493 | <part name="cart" interface="snes_cart"> |
| 62494 | ||
| 62495 | <feature name="slot" value="lorom" /> | |
| 56192 | 62496 | <dataarea name="rom" size="2097152"> |
| 56193 | 62497 | <rom name="timecop (japan).sfc" size="2097152" crc="4d56b5c3" sha1="e45f163286908ad809d7b7c060388e72485485d9" offset="0x000000" /> |
| 56194 | 62498 | </dataarea> |
| r21545 | r21546 | |
| 56201 | 62505 | <publisher>JVC</publisher> |
| 56202 | 62506 | <info name="release" value="199504xx" /> |
| 56203 | 62507 | <part name="cart" interface="snes_cart"> |
| 62508 | ||
| 62509 | <feature name="slot" value="lorom" /> | |
| 56204 | 62510 | <dataarea name="rom" size="2097152"> |
| 56205 | 62511 | <rom name="timecop (usa).sfc" size="2097152" crc="130b0933" sha1="cbd4cee815cb2659f661ef8faf2ce2394e68c8df" offset="0x000000" /> |
| 56206 | 62512 | </dataarea> |
| r21545 | r21546 | |
| 56212 | 62518 | <year>1993</year> |
| 56213 | 62519 | <publisher>Konami</publisher> |
| 56214 | 62520 | <part name="cart" interface="snes_cart"> |
| 62521 | ||
| 62522 | <feature name="slot" value="lorom" /> | |
| 56215 | 62523 | <dataarea name="rom" size="1048576"> |
| 56216 | 62524 | <rom name="tiny toon adventures - buster busts loose! (spain).sfc" size="1048576" crc="eeb4180c" sha1="7e8b79ea0e23aaa6e8212dad9082d7a16fe2c67b" offset="0x000000" /> |
| 56217 | 62525 | </dataarea> |
| r21545 | r21546 | |
| 56223 | 62531 | <year>1993</year> |
| 56224 | 62532 | <publisher>Konami</publisher> |
| 56225 | 62533 | <part name="cart" interface="snes_cart"> |
| 62534 | ||
| 62535 | <feature name="slot" value="lorom" /> | |
| 56226 | 62536 | <dataarea name="rom" size="1048576"> |
| 56227 | 62537 | <rom name="tiny toon adventures - buster busts loose! (usa) (beta).sfc" size="1048576" crc="f1f8f87a" sha1="3bee604951621e20912cd6eadcc80534e30e27ee" offset="0x000000" /> |
| 56228 | 62538 | </dataarea> |
| r21545 | r21546 | |
| 56238 | 62548 | <info name="alt_title" value="タイニー・トゥーン アドベンチャース ドタバ タ大運動会" /> |
| 56239 | 62549 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56240 | 62550 | <part name="cart" interface="snes_cart"> |
| 62551 | ||
| 62552 | <feature name="slot" value="lorom" /> | |
| 56241 | 62553 | <dataarea name="rom" size="1048576"> |
| 56242 | 62554 | <rom name="tiny toon adventures - dotabata daiundoukai (japan).sfc" size="1048576" crc="01344c8e" sha1="14427a94a447d8c9bf3748b8fb1717a50b9bebe9" offset="0x000000" /> |
| 56243 | 62555 | </dataarea> |
| r21545 | r21546 | |
| 56251 | 62563 | <info name="release" value="199411xx" /> |
| 56252 | 62564 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56253 | 62565 | <part name="cart" interface="snes_cart"> |
| 62566 | ||
| 62567 | <feature name="slot" value="lorom" /> | |
| 56254 | 62568 | <dataarea name="rom" size="1048576"> |
| 56255 | 62569 | <rom name="tiny toon adventures - wacky sports challenge (usa).sfc" size="1048576" crc="afe72ff0" sha1="8443eb248f64511add665f200ea6fb802101039e" offset="0x000000" /> |
| 56256 | 62570 | </dataarea> |
| r21545 | r21546 | |
| 56262 | 62576 | <year>1994</year> |
| 56263 | 62577 | <publisher>Konami</publisher> |
| 56264 | 62578 | <part name="cart" interface="snes_cart"> |
| 62579 | ||
| 62580 | <feature name="slot" value="lorom" /> | |
| 56265 | 62581 | <dataarea name="rom" size="1048576"> |
| 56266 | 62582 | <rom name="tiny toon adventures - wild & wacky sports (europe) (beta).sfc" size="1048576" crc="f13002c7" sha1="55555c60137dadd498fd1435ad116125ab67666e" offset="0x000000" /> |
| 56267 | 62583 | </dataarea> |
| r21545 | r21546 | |
| 56274 | 62590 | <publisher>Konami</publisher> |
| 56275 | 62591 | <sharedfeat name="compatibility" value="PAL"/> |
| 56276 | 62592 | <part name="cart" interface="snes_cart"> |
| 62593 | ||
| 62594 | <feature name="slot" value="lorom" /> | |
| 56277 | 62595 | <dataarea name="rom" size="1048576"> |
| 56278 | 62596 | <rom name="tiny toon adventures - wild & wacky sports (europe) (rev 1).sfc" size="1048576" crc="0f3b758d" sha1="9abc8f255bdb1870e91b4f74d6e5588412efcff9" offset="0x000000" /> |
| 56279 | 62597 | </dataarea> |
| r21545 | r21546 | |
| 56285 | 62603 | <year>1992</year> |
| 56286 | 62604 | <publisher>Sofel</publisher> |
| 56287 | 62605 | <part name="cart" interface="snes_cart"> |
| 62606 | ||
| 62607 | <feature name="slot" value="lorom" /> | |
| 56288 | 62608 | <dataarea name="rom" size="524288"> |
| 56289 | 62609 | <rom name="tko super championship boxing (europe).sfc" size="524288" crc="8871e0ff" sha1="895bf7c26112d5f3f16aefc91fb53f1ab8c45564" offset="0x000000" /> |
| 56290 | 62610 | </dataarea> |
| r21545 | r21546 | |
| 56297 | 62617 | <publisher>Sofel</publisher> |
| 56298 | 62618 | <info name="release" value="199210xx" /> |
| 56299 | 62619 | <part name="cart" interface="snes_cart"> |
| 62620 | ||
| 62621 | <feature name="slot" value="lorom" /> | |
| 56300 | 62622 | <dataarea name="rom" size="524288"> |
| 56301 | 62623 | <rom name="tko super championship boxing (usa).sfc" size="524288" crc="fd4af462" sha1="b3f4b93f6ba108f7360c1d7f1ae73d1eb4c2a390" offset="0x000000" /> |
| 56302 | 62624 | </dataarea> |
| r21545 | r21546 | |
| 56309 | 62631 | <publisher>American Softworks</publisher> |
| 56310 | 62632 | <info name="release" value="199411xx" /> |
| 56311 | 62633 | <part name="cart" interface="snes_cart"> |
| 62634 | ||
| 62635 | <feature name="slot" value="hirom" /> | |
| 56312 | 62636 | <dataarea name="rom" size="1572864"> |
| 56313 | 62637 | <rom name="tnn bass tournament of champions (usa).sfc" size="1572864" crc="c367b683" sha1="80475f5dcbed2746945e413dded3c629bad33820" offset="0x000000" /> |
| 56314 | 62638 | </dataarea> |
| r21545 | r21546 | |
| 56326 | 62650 | <info name="alt_title" value="ときめきメモリアル 伝説の樹の下て" /> |
| 56327 | 62651 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56328 | 62652 | <part name="cart" interface="snes_cart"> |
| 62653 | ||
| 62654 | <feature name="slot" value="lorom" /> | |
| 56329 | 62655 | <dataarea name="rom" size="4194304"> |
| 56330 | 62656 | <rom name="tokimeki memorial - densetsu no ki no shita de (japan).sfc" size="4194304" crc="6a3cceb1" sha1="d025db012acc9a35e79991e25eb5a301ea7afdf0" offset="0x000000" /> |
| 56331 | 62657 | </dataarea> |
| r21545 | r21546 | |
| 56342 | 62668 | <info name="release" value="19940923" /> |
| 56343 | 62669 | <info name="alt_title" value="TOKORO'S マージャン" /> |
| 56344 | 62670 | <part name="cart" interface="snes_cart"> |
| 62671 | ||
| 62672 | <feature name="slot" value="lorom" /> | |
| 56345 | 62673 | <dataarea name="rom" size="1048576"> |
| 56346 | 62674 | <rom name="tokoro's mahjong (japan).sfc" size="1048576" crc="49dbff84" sha1="fd6446626ee3a5e1a22a8399cb4c5507f487a2f4" offset="0x000000" /> |
| 56347 | 62675 | </dataarea> |
| r21545 | r21546 | |
| 56353 | 62681 | <year>1993</year> |
| 56354 | 62682 | <publisher>Hi Tech Expressions</publisher> |
| 56355 | 62683 | <part name="cart" interface="snes_cart"> |
| 62684 | ||
| 62685 | <feature name="slot" value="lorom" /> | |
| 56356 | 62686 | <dataarea name="rom" size="524288"> |
| 56357 | 62687 | <rom name="tom & jerry (europe).sfc" size="524288" crc="72b57042" sha1="44d11feb60e11d401c79cc98c084150734e27538" offset="0x000000" /> |
| 56358 | 62688 | </dataarea> |
| r21545 | r21546 | |
| 56367 | 62697 | <info name="release" value="19930625" /> |
| 56368 | 62698 | <info name="alt_title" value="トムとジェリー" /> |
| 56369 | 62699 | <part name="cart" interface="snes_cart"> |
| 62700 | ||
| 62701 | <feature name="slot" value="lorom" /> | |
| 56370 | 62702 | <dataarea name="rom" size="524288"> |
| 56371 | 62703 | <rom name="tom & jerry (japan).sfc" size="524288" crc="ba2de054" sha1="8ae694dd0113f4c8dc6dd878b85a5f68dad374ec" offset="0x000000" /> |
| 56372 | 62704 | </dataarea> |
| r21545 | r21546 | |
| 56378 | 62710 | <year>1993</year> |
| 56379 | 62711 | <publisher>Hi Tech Expressions</publisher> |
| 56380 | 62712 | <part name="cart" interface="snes_cart"> |
| 62713 | ||
| 62714 | <feature name="slot" value="lorom" /> | |
| 56381 | 62715 | <dataarea name="rom" size="524288"> |
| 56382 | 62716 | <rom name="tom & jerry (usa) (beta).sfc" size="524288" crc="cb6d3883" sha1="bfbcd8432437f8fff6be15572cd2503fef792c37" offset="0x000000" /> |
| 56383 | 62717 | </dataarea> |
| r21545 | r21546 | |
| 56390 | 62724 | <publisher>Electro Brain</publisher> |
| 56391 | 62725 | <info name="release" value="199311xx" /> |
| 56392 | 62726 | <part name="cart" interface="snes_cart"> |
| 62727 | ||
| 62728 | <feature name="slot" value="lorom" /> | |
| 56393 | 62729 | <dataarea name="rom" size="1048576"> |
| 56394 | 62730 | <rom name="tony meola's sidekicks soccer (usa).sfc" size="1048576" crc="32b658c1" sha1="4e76b176d6ead55e4bb9a1e06626061c9f37f22c" offset="0x000000" /> |
| 56395 | 62731 | </dataarea> |
| r21545 | r21546 | |
| 56401 | 62737 | <year>1992</year> |
| 56402 | 62738 | <publisher>Kemco</publisher> |
| 56403 | 62739 | <part name="cart" interface="snes_cart"> |
| 62740 | ||
| 62741 | <feature name="slot" value="lorom" /> | |
| 56404 | 62742 | <dataarea name="rom" size="524288"> |
| 56405 | 62743 | <rom name="top gear (europe).sfc" size="524288" crc="b0150052" sha1="7da85fd8f5c16d495a8a1b80b2efdaaed0d6c044" offset="0x000000" /> |
| 56406 | 62744 | </dataarea> |
| r21545 | r21546 | |
| 56413 | 62751 | <publisher>Kemco</publisher> |
| 56414 | 62752 | <info name="release" value="199204xx" /> |
| 56415 | 62753 | <part name="cart" interface="snes_cart"> |
| 62754 | ||
| 62755 | <feature name="slot" value="lorom" /> | |
| 56416 | 62756 | <dataarea name="rom" size="524288"> |
| 56417 | 62757 | <rom name="top gear (usa).sfc" size="524288" crc="d34c49b7" sha1="f686806c676a4b087a3627babbe3555d3704e3b1" offset="0x000000" /> |
| 56418 | 62758 | </dataarea> |
| r21545 | r21546 | |
| 56425 | 62765 | <publisher>Kemco</publisher> |
| 56426 | 62766 | <sharedfeat name="compatibility" value="PAL"/> |
| 56427 | 62767 | <part name="cart" interface="snes_cart"> |
| 62768 | ||
| 62769 | <feature name="slot" value="lorom" /> | |
| 56428 | 62770 | <dataarea name="rom" size="1048576"> |
| 56429 | 62771 | <rom name="top gear 2 (europe).sfc" size="1048576" crc="531463e1" sha1="ef1fc19feed3139b49c9feeb83fbdd98fb402bd9" offset="0x000000" /> |
| 56430 | 62772 | </dataarea> |
| r21545 | r21546 | |
| 56438 | 62780 | <info name="release" value="199309xx" /> |
| 56439 | 62781 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56440 | 62782 | <part name="cart" interface="snes_cart"> |
| 62783 | ||
| 62784 | <feature name="slot" value="lorom" /> | |
| 56441 | 62785 | <dataarea name="rom" size="1048576"> |
| 56442 | 62786 | <rom name="top gear 2 (usa).sfc" size="1048576" crc="2b88bee8" sha1="8ac5dab79b319deb525de73f9a51877df7a7ed9f" offset="0x000000" /> |
| 56443 | 62787 | </dataarea> |
| r21545 | r21546 | |
| 56451 | 62795 | <info name="release" value="199502xx" /> |
| 56452 | 62796 | <part name="cart" interface="snes_cart"> |
| 56453 | 62797 | <feature name="enhancement" value="DSP4" /> |
| 62798 | ||
| 62799 | <feature name="slot" value="lorom_dsp" /> | |
| 56454 | 62800 | <dataarea name="rom" size="1048576"> |
| 56455 | 62801 | <rom name="top gear 3000 (usa).sfc" size="1048576" crc="a20be998" sha1="058aadf1ee719cb9e0c7333e665797f990a6381d" offset="0x000000" /> |
| 56456 | 62802 | </dataarea> |
| 62803 | <dataarea name="addon" size="10240"> | |
| 62804 | <rom name="dsp4.bin" size="10240" crc="ce0c7783" sha1="76fd25f7dc26c3b3f7868a3aa78c7684068713e5" offset="0x000000" /> | |
| 62805 | </dataarea> | |
| 56457 | 62806 | </part> |
| 56458 | 62807 | </software> |
| 56459 | 62808 | |
| r21545 | r21546 | |
| 56465 | 62814 | <info name="release" value="19920327" /> |
| 56466 | 62815 | <info name="alt_title" value="トップレーサー" /> |
| 56467 | 62816 | <part name="cart" interface="snes_cart"> |
| 62817 | ||
| 62818 | <feature name="slot" value="lorom" /> | |
| 56468 | 62819 | <dataarea name="rom" size="524288"> |
| 56469 | 62820 | <rom name="top racer (japan).sfc" size="524288" crc="e5a57b12" sha1="7d95cb50c04b2322630d8d8361983db1f2aa82db" offset="0x000000" /> |
| 56470 | 62821 | </dataarea> |
| r21545 | r21546 | |
| 56480 | 62831 | <info name="alt_title" value="トップレーサー2" /> |
| 56481 | 62832 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56482 | 62833 | <part name="cart" interface="snes_cart"> |
| 62834 | ||
| 62835 | <feature name="slot" value="lorom" /> | |
| 56483 | 62836 | <dataarea name="rom" size="1048576"> |
| 56484 | 62837 | <rom name="top racer 2 (japan).sfc" size="1048576" crc="31daebb2" sha1="23f87973fe61b9b0e424aecef65c668aed04bc27" offset="0x000000" /> |
| 56485 | 62838 | </dataarea> |
| r21545 | r21546 | |
| 56494 | 62847 | <info name="release" value="19941209" /> |
| 56495 | 62848 | <info name="alt_title" value="牌砦" /> |
| 56496 | 62849 | <part name="cart" interface="snes_cart"> |
| 62850 | ||
| 62851 | <feature name="slot" value="lorom" /> | |
| 56497 | 62852 | <dataarea name="rom" size="1048576"> |
| 56498 | 62853 | <rom name="toride (japan).sfc" size="1048576" crc="4ce25297" sha1="4a99955c580f1341f5a30e66520e93d2ece58485" offset="0x000000" /> |
| 56499 | 62854 | </dataarea> |
| r21545 | r21546 | |
| 56505 | 62860 | <year>1993</year> |
| 56506 | 62861 | <publisher>Malibu Interactive</publisher> |
| 56507 | 62862 | <part name="cart" interface="snes_cart"> |
| 62863 | ||
| 62864 | <feature name="slot" value="lorom" /> | |
| 56508 | 62865 | <dataarea name="rom" size="1048576"> |
| 56509 | 62866 | <rom name="total carnage (europe).sfc" size="1048576" crc="596122c4" sha1="afb5b3cd82900972a86a36417cae3922d56ffa38" offset="0x000000" /> |
| 56510 | 62867 | </dataarea> |
| r21545 | r21546 | |
| 56516 | 62873 | <year>1993</year> |
| 56517 | 62874 | <publisher>Malibu Interactive</publisher> |
| 56518 | 62875 | <part name="cart" interface="snes_cart"> |
| 62876 | ||
| 62877 | <feature name="slot" value="lorom" /> | |
| 56519 | 62878 | <dataarea name="rom" size="1048576"> |
| 56520 | 62879 | <rom name="total carnage (usa) (beta) (alt 1).sfc" size="1048576" crc="82b17b1b" sha1="850c64ddc49a07f7f7a198a02dab4afed8acf3c0" offset="0x000000" /> |
| 56521 | 62880 | </dataarea> |
| r21545 | r21546 | |
| 56527 | 62886 | <year>1993</year> |
| 56528 | 62887 | <publisher>Malibu Interactive</publisher> |
| 56529 | 62888 | <part name="cart" interface="snes_cart"> |
| 62889 | ||
| 62890 | <feature name="slot" value="lorom" /> | |
| 56530 | 62891 | <dataarea name="rom" size="1048576"> |
| 56531 | 62892 | <rom name="total carnage (usa) (beta).sfc" size="1048576" crc="44a524de" sha1="50a08bb959d310dbdbaf2b81b9ed831d66017353" offset="0x000000" /> |
| 56532 | 62893 | </dataarea> |
| r21545 | r21546 | |
| 56539 | 62900 | <publisher>Malibu Interactive</publisher> |
| 56540 | 62901 | <info name="release" value="199311xx" /> |
| 56541 | 62902 | <part name="cart" interface="snes_cart"> |
| 62903 | ||
| 62904 | <feature name="slot" value="lorom" /> | |
| 56542 | 62905 | <dataarea name="rom" size="1048576"> |
| 56543 | 62906 | <rom name="total carnage (usa).sfc" size="1048576" crc="e27ff2bc" sha1="ae23d917d1f65aa92584fff1ab9b4e9c78f18c7d" offset="0x000000" /> |
| 56544 | 62907 | </dataarea> |
| r21545 | r21546 | |
| 56553 | 62916 | <info name="release" value="19950630" /> |
| 56554 | 62917 | <info name="alt_title" value="とっても!ラッキーマン ラッキー クッキー ルーレットで突撃 ~" /> |
| 56555 | 62918 | <part name="cart" interface="snes_cart"> |
| 62919 | ||
| 62920 | <feature name="slot" value="lorom" /> | |
| 56556 | 62921 | <dataarea name="rom" size="1048576"> |
| 56557 | 62922 | <rom name="tottemo! lucky man - lucky cookie roulette de totsugeki!! (japan).sfc" size="1048576" crc="8488759e" sha1="15f3a610fd47707639e96ffad06abd35457d9a32" offset="0x000000" /> |
| 56558 | 62923 | </dataarea> |
| r21545 | r21546 | |
| 56567 | 62932 | <info name="release" value="19961025" /> |
| 56568 | 62933 | <info name="alt_title" value="タワードリーム" /> |
| 56569 | 62934 | <part name="cart" interface="snes_cart"> |
| 62935 | ||
| 62936 | <feature name="slot" value="lorom" /> | |
| 56570 | 62937 | <dataarea name="rom" size="2097152"> |
| 56571 | 62938 | <rom name="tower dream (japan).sfc" size="2097152" crc="aa2d5c55" sha1="7d9ead50fbad57d785b41e1136966ea8494bbd1d" offset="0x000000" /> |
| 56572 | 62939 | </dataarea> |
| r21545 | r21546 | |
| 56583 | 62950 | <info name="release" value="19960426" /> |
| 56584 | 62951 | <info name="alt_title" value="トイ・ストーリー" /> |
| 56585 | 62952 | <part name="cart" interface="snes_cart"> |
| 62953 | ||
| 62954 | <feature name="slot" value="hirom" /> | |
| 56586 | 62955 | <dataarea name="rom" size="4194304"> |
| 56587 | 62956 | <rom name="toy story (japan).sfc" size="4194304" crc="d4af7724" sha1="89a226ad54a003964aeb343fa10e2f3355fb8f55" offset="0x000000" /> |
| 56588 | 62957 | </dataarea> |
| r21545 | r21546 | |
| 56594 | 62963 | <year>1993</year> |
| 56595 | 62964 | <publisher>Sony Imagesoft</publisher> |
| 56596 | 62965 | <part name="cart" interface="snes_cart"> |
| 62966 | ||
| 62967 | <feature name="slot" value="lorom" /> | |
| 56597 | 62968 | <dataarea name="rom" size="1048576"> |
| 56598 | 62969 | <rom name="toys (europe).sfc" size="1048576" crc="2a8a0b71" sha1="e0a41e66729c18a2eb254457f3bb795639db2f45" offset="0x000000" /> |
| 56599 | 62970 | </dataarea> |
| r21545 | r21546 | |
| 56606 | 62977 | <publisher>Absolute Entertainment</publisher> |
| 56607 | 62978 | <info name="release" value="199304xx" /> |
| 56608 | 62979 | <part name="cart" interface="snes_cart"> |
| 62980 | ||
| 62981 | <feature name="slot" value="lorom" /> | |
| 56609 | 62982 | <dataarea name="rom" size="1048576"> |
| 56610 | 62983 | <rom name="toys (usa).sfc" size="1048576" crc="efebf501" sha1="9164d8adfcc0ed348a6770b3b365dc026114aee9" offset="0x000000" /> |
| 56611 | 62984 | </dataarea> |
| r21545 | r21546 | |
| 56620 | 62993 | <info name="release" value="19960628" /> |
| 56621 | 62994 | <info name="alt_title" value="トラバース スターライト&プライリア" /> |
| 56622 | 62995 | <part name="cart" interface="snes_cart"> |
| 62996 | ||
| 62997 | <feature name="slot" value="hirom" /> | |
| 56623 | 62998 | <dataarea name="rom" size="4194304"> |
| 56624 | 62999 | <rom name="traverse - starlight & prairie (japan).sfc" size="4194304" crc="b5113ccb" sha1="47d94a325a87fd476a3b1e0850222f359b081998" offset="0x000000" /> |
| 56625 | 63000 | </dataarea> |
| r21545 | r21546 | |
| 56633 | 63008 | <year>199?</year> |
| 56634 | 63009 | <publisher><unlicensed></publisher> |
| 56635 | 63010 | <part name="cart" interface="snes_cart"> |
| 63011 | ||
| 63012 | <feature name="slot" value="lorom" /> | |
| 56636 | 63013 | <dataarea name="rom" size="8192"> |
| 56637 | 63014 | <rom name="tri-star (usa) (unl).sfc" size="8192" crc="8e647468" sha1="9c94252f2a14c2b74aa670d2b096c5bf9ca0ac67" offset="0x000000" /> |
| 56638 | 63015 | </dataarea> |
| r21545 | r21546 | |
| 56648 | 63025 | <info name="alt_title" value="トリネア" /> |
| 56649 | 63026 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56650 | 63027 | <part name="cart" interface="snes_cart"> |
| 63028 | ||
| 63029 | <feature name="slot" value="hirom" /> | |
| 56651 | 63030 | <dataarea name="rom" size="2097152"> |
| 56652 | 63031 | <rom name="trinea (japan).sfc" size="2097152" crc="c20419ec" sha1="ba4866a599c9dc380c11f0cb3c1f8e0374d35dff" offset="0x000000" /> |
| 56653 | 63032 | </dataarea> |
| r21545 | r21546 | |
| 56661 | 63040 | <year>1993</year> |
| 56662 | 63041 | <publisher>Seika</publisher> |
| 56663 | 63042 | <part name="cart" interface="snes_cart"> |
| 63043 | ||
| 63044 | <feature name="slot" value="lorom" /> | |
| 56664 | 63045 | <dataarea name="rom" size="524288"> |
| 56665 | 63046 | <rom name="troddlers (europe) (beta).sfc" size="524288" crc="5a80c4cb" sha1="c0f26aacf7890b7bd5b8292b90e61f874158c15e" offset="0x000000" /> |
| 56666 | 63047 | </dataarea> |
| r21545 | r21546 | |
| 56672 | 63053 | <year>1993</year> |
| 56673 | 63054 | <publisher>Seika</publisher> |
| 56674 | 63055 | <part name="cart" interface="snes_cart"> |
| 63056 | ||
| 63057 | <feature name="slot" value="lorom" /> | |
| 56675 | 63058 | <dataarea name="rom" size="524288"> |
| 56676 | 63059 | <rom name="troddlers (europe).sfc" size="524288" crc="dba677eb" sha1="da036a4e45b09dde40920f839e5760d2f11ea5a1" offset="0x000000" /> |
| 56677 | 63060 | </dataarea> |
| r21545 | r21546 | |
| 56684 | 63067 | <publisher>Seika</publisher> |
| 56685 | 63068 | <info name="release" value="199310xx" /> |
| 56686 | 63069 | <part name="cart" interface="snes_cart"> |
| 63070 | ||
| 63071 | <feature name="slot" value="lorom" /> | |
| 56687 | 63072 | <dataarea name="rom" size="524288"> |
| 56688 | 63073 | <rom name="troddlers (usa).sfc" size="524288" crc="6a7ff02d" sha1="59a850462151f420e9b4b72284b481fe248a8efa" offset="0x000000" /> |
| 56689 | 63074 | </dataarea> |
| r21545 | r21546 | |
| 56695 | 63080 | <year>1994</year> |
| 56696 | 63081 | <publisher>Tradewest</publisher> |
| 56697 | 63082 | <part name="cart" interface="snes_cart"> |
| 63083 | ||
| 63084 | <feature name="slot" value="lorom" /> | |
| 56698 | 63085 | <dataarea name="rom" size="1572864"> |
| 56699 | 63086 | <rom name="troy aikman nfl football (europe).sfc" size="1572864" crc="5147b442" sha1="3d0fb2c04fdb8e50841a1cfc36c6e3752af9620c" offset="0x000000" /> |
| 56700 | 63087 | </dataarea> |
| r21545 | r21546 | |
| 56709 | 63096 | <publisher>Tradewest</publisher> |
| 56710 | 63097 | <info name="release" value="199408xx" /> |
| 56711 | 63098 | <part name="cart" interface="snes_cart"> |
| 63099 | ||
| 63100 | <feature name="slot" value="lorom" /> | |
| 56712 | 63101 | <dataarea name="rom" size="1572864"> |
| 56713 | 63102 | <rom name="troy aikman nfl football (usa).sfc" size="1572864" crc="0b26446b" sha1="40a19e6cb47fcc3afe5dbc2afb5967ca99c6f1c9" offset="0x000000" /> |
| 56714 | 63103 | </dataarea> |
| r21545 | r21546 | |
| 56722 | 63111 | <year>1992</year> |
| 56723 | 63112 | <publisher>T&E Soft</publisher> |
| 56724 | 63113 | <part name="cart" interface="snes_cart"> |
| 63114 | ||
| 63115 | <feature name="slot" value="lorom" /> | |
| 56725 | 63116 | <dataarea name="rom" size="1048576"> |
| 56726 | 63117 | <rom name="true golf classics - pebble beach golf links (europe).sfc" size="1048576" crc="eeede683" sha1="ca308e834ed8e97ba37385e5507456e409ee4e3e" offset="0x000000" /> |
| 56727 | 63118 | </dataarea> |
| r21545 | r21546 | |
| 56736 | 63127 | <publisher>T&E Soft</publisher> |
| 56737 | 63128 | <info name="release" value="199204xx" /> |
| 56738 | 63129 | <part name="cart" interface="snes_cart"> |
| 63130 | ||
| 63131 | <feature name="slot" value="lorom" /> | |
| 56739 | 63132 | <dataarea name="rom" size="1048576"> |
| 56740 | 63133 | <rom name="true golf classics - pebble beach golf links (usa).sfc" size="1048576" crc="18c5ad58" sha1="7a868cf0c9eb21d812a4ba471615c3237b394db7" offset="0x000000" /> |
| 56741 | 63134 | </dataarea> |
| r21545 | r21546 | |
| 56750 | 63143 | <publisher>T&E Soft</publisher> |
| 56751 | 63144 | <info name="release" value="199111xx" /> |
| 56752 | 63145 | <part name="cart" interface="snes_cart"> |
| 63146 | ||
| 63147 | <feature name="slot" value="lorom" /> | |
| 56753 | 63148 | <dataarea name="rom" size="1048576"> |
| 56754 | 63149 | <rom name="true golf classics - waialae country club (usa).sfc" size="1048576" crc="e9d6c61e" sha1="fa57f07b7bd9a4c64c9e08bbc67db8bad32cb106" offset="0x000000" /> |
| 56755 | 63150 | </dataarea> |
| r21545 | r21546 | |
| 56763 | 63158 | <year>1995</year> |
| 56764 | 63159 | <publisher>LJN</publisher> |
| 56765 | 63160 | <part name="cart" interface="snes_cart"> |
| 63161 | ||
| 63162 | <feature name="slot" value="lorom" /> | |
| 56766 | 63163 | <dataarea name="rom" size="2097152"> |
| 56767 | 63164 | <rom name="true lies (europe).sfc" size="2097152" crc="d7099bc2" sha1="9adf1feaad5a562d344d6683512a588e8c1c6b02" offset="0x000000" /> |
| 56768 | 63165 | </dataarea> |
| r21545 | r21546 | |
| 56774 | 63171 | <year>1995</year> |
| 56775 | 63172 | <publisher>LJN</publisher> |
| 56776 | 63173 | <part name="cart" interface="snes_cart"> |
| 63174 | ||
| 63175 | <feature name="slot" value="lorom" /> | |
| 56777 | 63176 | <dataarea name="rom" size="2097152"> |
| 56778 | 63177 | <rom name="true lies (germany).sfc" size="2097152" crc="ca7342cd" sha1="f54aa038cd6a8876373d37c70b8dcc933c99f5ff" offset="0x000000" /> |
| 56779 | 63178 | </dataarea> |
| r21545 | r21546 | |
| 56788 | 63187 | <info name="release" value="19950428" /> |
| 56789 | 63188 | <info name="alt_title" value="トゥルーライス" /> |
| 56790 | 63189 | <part name="cart" interface="snes_cart"> |
| 63190 | ||
| 63191 | <feature name="slot" value="lorom" /> | |
| 56791 | 63192 | <dataarea name="rom" size="2097152"> |
| 56792 | 63193 | <rom name="true lies (japan).sfc" size="2097152" crc="6150d3f9" sha1="bbf8756aa17b1277c031d3f0e79a3e8b46ca9ac3" offset="0x000000" /> |
| 56793 | 63194 | </dataarea> |
| r21545 | r21546 | |
| 56799 | 63200 | <year>1995</year> |
| 56800 | 63201 | <publisher>LJN</publisher> |
| 56801 | 63202 | <part name="cart" interface="snes_cart"> |
| 63203 | ||
| 63204 | <feature name="slot" value="lorom" /> | |
| 56802 | 63205 | <dataarea name="rom" size="2097152"> |
| 56803 | 63206 | <rom name="true lies (usa) (beta).sfc" size="2097152" crc="6bb6a72f" sha1="675f59f72d9e84092081ae81b13e2d47b4034823" offset="0x000000" /> |
| 56804 | 63207 | </dataarea> |
| r21545 | r21546 | |
| 56811 | 63214 | <publisher>LJN</publisher> |
| 56812 | 63215 | <info name="release" value="199502xx" /> |
| 56813 | 63216 | <part name="cart" interface="snes_cart"> |
| 63217 | ||
| 63218 | <feature name="slot" value="lorom" /> | |
| 56814 | 63219 | <dataarea name="rom" size="2097152"> |
| 56815 | 63220 | <rom name="true lies (usa).sfc" size="2097152" crc="40ca49ae" sha1="06b6b9bdb46629731b53ba15d37de5c254847b51" offset="0x000000" /> |
| 56816 | 63221 | </dataarea> |
| r21545 | r21546 | |
| 56825 | 63230 | <info name="release" value="19950623" /> |
| 56826 | 63231 | <info name="alt_title" value="トランプアイラント" /> |
| 56827 | 63232 | <part name="cart" interface="snes_cart"> |
| 63233 | ||
| 63234 | <feature name="slot" value="lorom" /> | |
| 56828 | 63235 | <dataarea name="rom" size="524288"> |
| 56829 | 63236 | <rom name="trump island (japan).sfc" size="524288" crc="62830bef" sha1="7f04f0dd06eb1af6641d621052bf6c57285124ff" offset="0x000000" /> |
| 56830 | 63237 | </dataarea> |
| r21545 | r21546 | |
| 56839 | 63246 | <info name="release" value="19960301" /> |
| 56840 | 63247 | <info name="alt_title" value="晦-つきこもり" /> |
| 56841 | 63248 | <part name="cart" interface="snes_cart"> |
| 63249 | ||
| 63250 | <feature name="slot" value="hirom" /> | |
| 56842 | 63251 | <dataarea name="rom" size="4194304"> |
| 56843 | 63252 | <rom name="tsukikomori (japan).sfc" size="4194304" crc="41adf18f" sha1="da07af2af6f9d57fc65861703e18dbf61937e962" offset="0x000000" /> |
| 56844 | 63253 | </dataarea> |
| r21545 | r21546 | |
| 56855 | 63264 | <info name="release" value="19930326" /> |
| 56856 | 63265 | <info name="alt_title" value="つっぱり大相撲 立身出世編" /> |
| 56857 | 63266 | <part name="cart" interface="snes_cart"> |
| 63267 | ||
| 63268 | <feature name="slot" value="lorom" /> | |
| 56858 | 63269 | <dataarea name="rom" size="1048576"> |
| 56859 | 63270 | <rom name="tsuppari oozumou - risshinshusse hen (japan).sfc" size="1048576" crc="ecda1f8b" sha1="b01472490a3babf5f7a6e61350f47f404dc2515b" offset="0x000000" /> |
| 56860 | 63271 | </dataarea> |
| r21545 | r21546 | |
| 56872 | 63283 | <info name="alt_title" value="ツヨシしっかりしなさい 対戦 ぱずるだま" /> |
| 56873 | 63284 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56874 | 63285 | <part name="cart" interface="snes_cart"> |
| 63286 | ||
| 63287 | <feature name="slot" value="lorom" /> | |
| 56875 | 63288 | <dataarea name="rom" size="1048576"> |
| 56876 | 63289 | <rom name="tsuyoshi shikkari shinasai - taisen puzzle dama (japan).sfc" size="1048576" crc="ef878419" sha1="82a43e64a7dbecb24f570df2ae931b66730d02ed" offset="0x000000" /> |
| 56877 | 63290 | </dataarea> |
| r21545 | r21546 | |
| 56884 | 63297 | <publisher>Jaleco</publisher> |
| 56885 | 63298 | <info name="release" value="199309xx" /> |
| 56886 | 63299 | <part name="cart" interface="snes_cart"> |
| 63300 | ||
| 63301 | <feature name="slot" value="lorom" /> | |
| 56887 | 63302 | <dataarea name="rom" size="2097152"> |
| 56888 | 63303 | <rom name="tuff e nuff (usa).sfc" size="2097152" crc="865f37bf" sha1="a5c4c7e0138e939ac4012850a294a90b24b42249" offset="0x000000" /> |
| 56889 | 63304 | </dataarea> |
| r21545 | r21546 | |
| 56895 | 63310 | <year>1994</year> |
| 56896 | 63311 | <publisher>Entertainment International UK</publisher> |
| 56897 | 63312 | <part name="cart" interface="snes_cart"> |
| 63313 | ||
| 63314 | <feature name="slot" value="lorom" /> | |
| 56898 | 63315 | <dataarea name="rom" size="524288"> |
| 56899 | 63316 | <rom name="turbo toons (europe).sfc" size="524288" crc="26a9c3f4" sha1="a2fd56b1507f36189756e5089e45b053df508553" offset="0x000000" /> |
| 56900 | 63317 | </dataarea> |
| r21545 | r21546 | |
| 56910 | 63327 | <info name="alt_title" value=" ターフヒーロー" /> |
| 56911 | 63328 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56912 | 63329 | <part name="cart" interface="snes_cart"> |
| 63330 | ||
| 63331 | <feature name="slot" value="lorom" /> | |
| 56913 | 63332 | <dataarea name="rom" size="2097152"> |
| 56914 | 63333 | <rom name="turf hero (japan).sfc" size="2097152" crc="0a5370dd" sha1="5f729ce4c194dce7165210c03b2e938740f29005" offset="0x000000" /> |
| 56915 | 63334 | </dataarea> |
| r21545 | r21546 | |
| 56927 | 63346 | <info name="alt_title" value="ターフメモリース" /> |
| 56928 | 63347 | <sharedfeat name="compatibility" value="NTSC"/> |
| 56929 | 63348 | <part name="cart" interface="snes_cart"> |
| 63349 | ||
| 63350 | <feature name="slot" value="lorom" /> | |
| 56930 | 63351 | <dataarea name="rom" size="2097152"> |
| 56931 | 63352 | <rom name="turf memories (japan).sfc" size="2097152" crc="60beceed" sha1="404c0422d14f89be41d30e85acf3677f665e28c6" offset="0x000000" /> |
| 56932 | 63353 | </dataarea> |
| r21545 | r21546 | |
| 56940 | 63361 | <year>1994</year> |
| 56941 | 63362 | <publisher>Absolute Entertainment</publisher> |
| 56942 | 63363 | <part name="cart" interface="snes_cart"> |
| 63364 | ||
| 63365 | <feature name="slot" value="lorom" /> | |
| 56943 | 63366 | <dataarea name="rom" size="2097152"> |
| 56944 | 63367 | <rom name="turn and burn - no-fly zone (europe).sfc" size="2097152" crc="ee92ceb5" sha1="a2524537e844af9c3398575a4b62e3556a93843c" offset="0x000000" /> |
| 56945 | 63368 | </dataarea> |
| r21545 | r21546 | |
| 56952 | 63375 | <publisher>Absolute Entertainment</publisher> |
| 56953 | 63376 | <info name="release" value="199402xx" /> |
| 56954 | 63377 | <part name="cart" interface="snes_cart"> |
| 63378 | ||
| 63379 | <feature name="slot" value="lorom" /> | |
| 56955 | 63380 | <dataarea name="rom" size="2097152"> |
| 56956 | 63381 | <rom name="turn and burn - no-fly zone (usa).sfc" size="2097152" crc="87bfa0b8" sha1="17c1075a09f2ceb5645acb76a987674d032ab3a2" offset="0x000000" /> |
| 56957 | 63382 | </dataarea> |
| r21545 | r21546 | |
| 56964 | 63389 | <publisher>Bullet-Proof Software</publisher> |
| 56965 | 63390 | <info name="release" value="199406xx" /> |
| 56966 | 63391 | <part name="cart" interface="snes_cart"> |
| 63392 | ||
| 63393 | <feature name="slot" value="lorom" /> | |
| 56967 | 63394 | <dataarea name="rom" size="1048576"> |
| 56968 | 63395 | <rom name="twisted tales of spike mcfang, the (usa).sfc" size="1048576" crc="8c2068d1" sha1="029fd32f8561b7d1ef9ec17384d4e77ea08cd1ea" offset="0x000000" /> |
| 56969 | 63396 | </dataarea> |
| r21545 | r21546 | |
| 56980 | 63407 | <info name="release" value="19931119" /> |
| 56981 | 63408 | <info name="alt_title" value="遊人 雀獣学園" /> |
| 56982 | 63409 | <part name="cart" interface="snes_cart"> |
| 63410 | ||
| 63411 | <feature name="slot" value="lorom" /> | |
| 56983 | 63412 | <dataarea name="rom" size="1048576"> |
| 56984 | 63413 | <rom name="yuujin janjuu gakuen (japan).sfc" size="1048576" crc="d6fece51" sha1="63dc15c44ea78adf5ecdd832d90da8f0f90f4f64" offset="0x000000" /> |
| 56985 | 63414 | </dataarea> |
| r21545 | r21546 | |
| 56994 | 63423 | <info name="release" value="19941118" /> |
| 56995 | 63424 | <info name="alt_title" value="遊人 雀獣学園2" /> |
| 56996 | 63425 | <part name="cart" interface="snes_cart"> |
| 63426 | ||
| 63427 | <feature name="slot" value="lorom" /> | |
| 56997 | 63428 | <dataarea name="rom" size="2097152"> |
| 56998 | 63429 | <rom name="yuujin janjuu gakuen 2 (japan).sfc" size="2097152" crc="70fbff3b" sha1="e5c73ab8894e67a7df8cf1a6ea2db810695f19e1" offset="0x000000" /> |
| 56999 | 63430 | </dataarea> |
| r21545 | r21546 | |
| 57008 | 63439 | <info name="release" value="19940701" /> |
| 57009 | 63440 | <info name="alt_title" value="遊人のふりふりガールス" /> |
| 57010 | 63441 | <part name="cart" interface="snes_cart"> |
| 63442 | ||
| 63443 | <feature name="slot" value="lorom" /> | |
| 57011 | 63444 | <dataarea name="rom" size="1048576"> |
| 57012 | 63445 | <rom name="yuujin no furi furi girls (japan).sfc" size="1048576" crc="02855382" sha1="eb0b180e4bede40580c60b0af6a8359074d8670e" offset="0x000000" /> |
| 57013 | 63446 | </dataarea> |
| r21545 | r21546 | |
| 57020 | 63453 | <publisher>Den'Z</publisher> |
| 57021 | 63454 | <info name="serial" value="SHVC-Y7" /> |
| 57022 | 63455 | <part name="cart" interface="snes_cart"> |
| 63456 | ||
| 63457 | <feature name="slot" value="lorom" /> | |
| 57023 | 63458 | <dataarea name="rom" size="1048576"> |
| 57024 | 63459 | <rom name="u.f.o. kamen yakisoban - kettler no kuroi inbou (japan) (keihin ban).sfc" size="1048576" crc="da73211f" sha1="45b9e3c8e02b23f75ed12a56377f6219fbde68c0" offset="0x000000" /> |
| 57025 | 63460 | </dataarea> |
| r21545 | r21546 | |
| 57034 | 63469 | <info name="release" value="19941014" /> |
| 57035 | 63470 | <info name="alt_title" value="UFO仮面ヤキソバン ケトラーの 黒い陰謀" /> |
| 57036 | 63471 | <part name="cart" interface="snes_cart"> |
| 63472 | ||
| 63473 | <feature name="slot" value="lorom" /> | |
| 57037 | 63474 | <dataarea name="rom" size="1048576"> |
| 57038 | 63475 | <rom name="u.f.o. kamen yakisoban - kettler no kuroi inbou (japan).sfc" size="1048576" crc="272dfc4b" sha1="14fa63ac89fdcf3095120963fd16c73ae60f2cc7" offset="0x000000" /> |
| 57039 | 63476 | </dataarea> |
| r21545 | r21546 | |
| 57045 | 63482 | <year>1991</year> |
| 57046 | 63483 | <publisher>Capcom</publisher> |
| 57047 | 63484 | <part name="cart" interface="snes_cart"> |
| 63485 | ||
| 63486 | <feature name="slot" value="lorom" /> | |
| 57048 | 63487 | <dataarea name="rom" size="1048576"> |
| 57049 | 63488 | <rom name="u.n. squadron (europe).sfc" size="1048576" crc="c510285c" sha1="b9e2fcaabc7bb71bec3b6ad4ba1cd26e2a441a9c" offset="0x000000" /> |
| 57050 | 63489 | </dataarea> |
| r21545 | r21546 | |
| 57056 | 63495 | <year>1991</year> |
| 57057 | 63496 | <publisher>Capcom</publisher> |
| 57058 | 63497 | <part name="cart" interface="snes_cart"> |
| 63498 | ||
| 63499 | <feature name="slot" value="lorom" /> | |
| 57059 | 63500 | <dataarea name="rom" size="1048576"> |
| 57060 | 63501 | <rom name="u.n. squadron (usa).sfc" size="1048576" crc="231f0f67" sha1="a2dd48574b9f7a49977c91d12d5c52c17c2c82aa" offset="0x000000" /> |
| 57061 | 63502 | </dataarea> |
| r21545 | r21546 | |
| 57067 | 63508 | <year>1993</year> |
| 57068 | 63509 | <publisher>Bandai</publisher> |
| 57069 | 63510 | <part name="cart" interface="snes_cart"> |
| 63511 | ||
| 63512 | <feature name="slot" value="lorom" /> | |
| 57070 | 63513 | <dataarea name="rom" size="1048576"> |
| 57071 | 63514 | <rom name="uchuu no kishi tekkaman blade (japan) (beta).sfc" size="1048576" crc="b380bcd9" sha1="f27e7f3866be20a46080f4448940662951f99745" offset="0x000000" /> |
| 57072 | 63515 | </dataarea> |
| r21545 | r21546 | |
| 57081 | 63524 | <info name="release" value="19930730" /> |
| 57082 | 63525 | <info name="alt_title" value="宇宙の騎士 テッカマンブレード" /> |
| 57083 | 63526 | <part name="cart" interface="snes_cart"> |
| 63527 | ||
| 63528 | <feature name="slot" value="lorom" /> | |
| 57084 | 63529 | <dataarea name="rom" size="1048576"> |
| 57085 | 63530 | <rom name="uchuu no kishi tekkaman blade (japan).sfc" size="1048576" crc="7e107c35" sha1="4f7505f76d9094376395c96a19f038e85e71f840" offset="0x000000" /> |
| 57086 | 63531 | </dataarea> |
| r21545 | r21546 | |
| 57095 | 63540 | <info name="release" value="19940225" /> |
| 57096 | 63541 | <info name="alt_title" value="宇宙レース アストロ ゴー!ゴー!" /> |
| 57097 | 63542 | <part name="cart" interface="snes_cart"> |
| 63543 | ||
| 63544 | <feature name="slot" value="lorom" /> | |
| 57098 | 63545 | <dataarea name="rom" size="1048576"> |
| 57099 | 63546 | <rom name="uchuu race - astro go! go! (japan).sfc" size="1048576" crc="e949d47f" sha1="5ce834eaca982791916c10df4f40e3214a0d976c" offset="0x000000" /> |
| 57100 | 63547 | </dataarea> |
| r21545 | r21546 | |
| 57111 | 63558 | <info name="release" value="19950728" /> |
| 57112 | 63559 | <info name="alt_title" value="ウルティマ 恐竜帝国 ザ・サベージ・エン パイア" /> |
| 57113 | 63560 | <part name="cart" interface="snes_cart"> |
| 63561 | ||
| 63562 | <feature name="slot" value="lorom" /> | |
| 57114 | 63563 | <dataarea name="rom" size="1572864"> |
| 57115 | 63564 | <rom name="ultima - kyouryuu teikoku (japan).sfc" size="1572864" crc="dddb20ad" sha1="c1702689d6946983bd8fec54231c514dd44c4cf7" offset="0x000000" /> |
| 57116 | 63565 | </dataarea> |
| r21545 | r21546 | |
| 57124 | 63573 | <year>1994</year> |
| 57125 | 63574 | <publisher>FCI</publisher> |
| 57126 | 63575 | <part name="cart" interface="snes_cart"> |
| 63576 | ||
| 63577 | <feature name="slot" value="lorom" /> | |
| 57127 | 63578 | <dataarea name="rom" size="1048576"> |
| 57128 | 63579 | <rom name="ultima - runes of virtue ii (usa) (beta) (1993-07-30).sfc" size="1048576" crc="f6f5eee2" sha1="a00ed6c6d61eda183ccd357a4cb98e1ff258f812" offset="0x000000" /> |
| 57129 | 63580 | </dataarea> |
| r21545 | r21546 | |
| 57137 | 63588 | <year>1994</year> |
| 57138 | 63589 | <publisher>FCI</publisher> |
| 57139 | 63590 | <part name="cart" interface="snes_cart"> |
| 63591 | ||
| 63592 | <feature name="slot" value="lorom" /> | |
| 57140 | 63593 | <dataarea name="rom" size="1048576"> |
| 57141 | 63594 | <rom name="ultima - runes of virtue ii (usa) (beta) (1994-xx-xx).sfc" size="1048576" crc="f9ffcc46" sha1="66ff5ad10840dee683758630acadaec150d37b12" offset="0x000000" /> |
| 57142 | 63595 | </dataarea> |
| r21545 | r21546 | |
| 57151 | 63604 | <publisher>FCI</publisher> |
| 57152 | 63605 | <info name="release" value="199411xx" /> |
| 57153 | 63606 | <part name="cart" interface="snes_cart"> |
| 63607 | ||
| 63608 | <feature name="slot" value="lorom" /> | |
| 57154 | 63609 | <dataarea name="rom" size="1048576"> |
| 57155 | 63610 | <rom name="ultima - runes of virtue ii (usa).sfc" size="1048576" crc="cc4eebf4" sha1="4927ba3fe34b891a93dbd9cf4290186062b22138" offset="0x000000" /> |
| 57156 | 63611 | </dataarea> |
| r21545 | r21546 | |
| 57167 | 63622 | <info name="release" value="19940617" /> |
| 57168 | 63623 | <info name="alt_title" value="ウルティマ外伝 黒騎士の 陰謀" /> |
| 57169 | 63624 | <part name="cart" interface="snes_cart"> |
| 63625 | ||
| 63626 | <feature name="slot" value="lorom" /> | |
| 57170 | 63627 | <dataarea name="rom" size="1048576"> |
| 57171 | 63628 | <rom name="ultima gaiden - kuro kishi no inbou (japan).sfc" size="1048576" crc="3a1091a2" sha1="13c5b547f6ed17513dbacbdeb50038d50fb512e0" offset="0x000000" /> |
| 57172 | 63629 | </dataarea> |
| r21545 | r21546 | |
| 57180 | 63637 | <year>1992</year> |
| 57181 | 63638 | <publisher>Pony Canyon</publisher> |
| 57182 | 63639 | <part name="cart" interface="snes_cart"> |
| 63640 | ||
| 63641 | <feature name="slot" value="lorom" /> | |
| 57183 | 63642 | <dataarea name="rom" size="1048576"> |
| 57184 | 63643 | <rom name="ultima vi - itsuwari no yogensha (japan) (beta).sfc" size="1048576" crc="5693cdb4" sha1="b66aaa8edc196851b83febed235adc7a9200190d" offset="0x000000" /> |
| 57185 | 63644 | </dataarea> |
| r21545 | r21546 | |
| 57196 | 63655 | <info name="release" value="19920403" /> |
| 57197 | 63656 | <info name="alt_title" value="ウルティマVI ~偽りの予言者~" /> |
| 57198 | 63657 | <part name="cart" interface="snes_cart"> |
| 63658 | ||
| 63659 | <feature name="slot" value="lorom" /> | |
| 57199 | 63660 | <dataarea name="rom" size="1048576"> |
| 57200 | 63661 | <rom name="ultima vi - itsuwari no yogensha (japan).sfc" size="1048576" crc="7dd62a5e" sha1="52f027ead9e35e5eb72dff007cbf73bd3e005aff" offset="0x000000" /> |
| 57201 | 63662 | </dataarea> |
| r21545 | r21546 | |
| 57210 | 63671 | <publisher>FCI</publisher> |
| 57211 | 63672 | <info name="release" value="199404xx" /> |
| 57212 | 63673 | <part name="cart" interface="snes_cart"> |
| 63674 | ||
| 63675 | <feature name="slot" value="lorom" /> | |
| 57213 | 63676 | <dataarea name="rom" size="1048576"> |
| 57214 | 63677 | <rom name="ultima vi - the false prophet (usa).sfc" size="1048576" crc="9277c9f7" sha1="3ba23e4cff05e72b1a6a9719ac7a2e5cc1a0e60a" offset="0x000000" /> |
| 57215 | 63678 | </dataarea> |
| r21545 | r21546 | |
| 57226 | 63689 | <info name="release" value="19941118" /> |
| 57227 | 63690 | <info name="alt_title" value="ウルティマVII ザ・ブラックゲート" /> |
| 57228 | 63691 | <part name="cart" interface="snes_cart"> |
| 63692 | ||
| 63693 | <feature name="slot" value="lorom" /> | |
| 57229 | 63694 | <dataarea name="rom" size="1572864"> |
| 57230 | 63695 | <rom name="ultima vii - the black gate (japan).sfc" size="1572864" crc="c862200d" sha1="a929f918ce5a346c88054fb63940ffd91fbf9b32" offset="0x000000" /> |
| 57231 | 63696 | </dataarea> |
| r21545 | r21546 | |
| 57239 | 63704 | <year>1994</year> |
| 57240 | 63705 | <publisher>FCI</publisher> |
| 57241 | 63706 | <part name="cart" interface="snes_cart"> |
| 63707 | ||
| 63708 | <feature name="slot" value="lorom" /> | |
| 57242 | 63709 | <dataarea name="rom" size="1048576"> |
| 57243 | 63710 | <rom name="ultima vii - the black gate (usa) (beta).sfc" size="1048576" crc="e2234efb" sha1="c244e70befefeb4f80a792e15f7ad90b6b7a50f6" offset="0x000000" /> |
| 57244 | 63711 | </dataarea> |
| r21545 | r21546 | |
| 57251 | 63718 | <publisher>FCI</publisher> |
| 57252 | 63719 | <info name="release" value="199411xx" /> |
| 57253 | 63720 | <part name="cart" interface="snes_cart"> |
| 63721 | ||
| 63722 | <feature name="slot" value="lorom" /> | |
| 57254 | 63723 | <dataarea name="rom" size="1048576"> |
| 57255 | 63724 | <rom name="ultima vii - the black gate (usa).sfc" size="1048576" crc="e790f52f" sha1="1f41ce082530e40857642dccde2d1c8de88c6744" offset="0x000000" /> |
| 57256 | 63725 | </dataarea> |
| r21545 | r21546 | |
| 57267 | 63736 | <info name="release" value="19920724" /> |
| 57268 | 63737 | <info name="alt_title" value="ウルティメイト フットボール" /> |
| 57269 | 63738 | <part name="cart" interface="snes_cart"> |
| 63739 | ||
| 63740 | <feature name="slot" value="lorom" /> | |
| 57270 | 63741 | <dataarea name="rom" size="1048576"> |
| 57271 | 63742 | <rom name="ultimate football (japan).sfc" size="1048576" crc="4c9a5e89" sha1="cc3ec1051b9fdfa1d30c5f92ce44c37b90dfe8c3" offset="0x000000" /> |
| 57272 | 63743 | </dataarea> |
| r21545 | r21546 | |
| 57281 | 63752 | <info name="release" value="19941222" /> |
| 57282 | 63753 | <info name="alt_title" value="ウルトラベースボール 実名版2" /> |
| 57283 | 63754 | <part name="cart" interface="snes_cart"> |
| 63755 | ||
| 63756 | <feature name="slot" value="lorom" /> | |
| 57284 | 63757 | <dataarea name="rom" size="1048576"> |
| 57285 | 63758 | <rom name="ultra baseball jitsumei ban 2 (japan).sfc" size="1048576" crc="0b108549" sha1="39d716b70698fd4790a0ad97983a83e28c16adec" offset="0x000000" /> |
| 57286 | 63759 | </dataarea> |
| r21545 | r21546 | |
| 57297 | 63770 | <info name="release" value="19950728" /> |
| 57298 | 63771 | <info name="alt_title" value="ウルトラリーク燃えろ!サッ カー大決戦!" /> |
| 57299 | 63772 | <part name="cart" interface="snes_cart"> |
| 63773 | ||
| 63774 | <feature name="slot" value="lorom" /> | |
| 57300 | 63775 | <dataarea name="rom" size="1572864"> |
| 57301 | 63776 | <rom name="ultra league - moero! soccer daikessen!! (japan).sfc" size="1572864" crc="845790ef" sha1="986eba16b04e47de3e2d4e6df481ae280dbfe821" offset="0x000000" /> |
| 57302 | 63777 | </dataarea> |
| r21545 | r21546 | |
| 57308 | 63783 | <year>1991</year> |
| 57309 | 63784 | <publisher>Bandai</publisher> |
| 57310 | 63785 | <part name="cart" interface="snes_cart"> |
| 63786 | ||
| 63787 | <feature name="slot" value="lorom" /> | |
| 57311 | 63788 | <dataarea name="rom" size="524288"> |
| 57312 | 63789 | <rom name="ultraman - towards the future (europe).sfc" size="524288" crc="8b7cb277" sha1="3fcb9b146a4eaff1958eb15e7e613e09820c7882" offset="0x000000" /> |
| 57313 | 63790 | </dataarea> |
| r21545 | r21546 | |
| 57320 | 63797 | <publisher>Bandai</publisher> |
| 57321 | 63798 | <info name="release" value="199110xx" /> |
| 57322 | 63799 | <part name="cart" interface="snes_cart"> |
| 63800 | ||
| 63801 | <feature name="slot" value="lorom" /> | |
| 57323 | 63802 | <dataarea name="rom" size="524288"> |
| 57324 | 63803 | <rom name="ultraman - towards the future (usa).sfc" size="524288" crc="1ded2814" sha1="6df8da25b8cbd8436fe329901d7682432973d4f5" offset="0x000000" /> |
| 57325 | 63804 | </dataarea> |
| r21545 | r21546 | |
| 57334 | 63813 | <info name="release" value="19960719" /> |
| 57335 | 63814 | <info name="alt_title" value="海のぬし釣り" /> |
| 57336 | 63815 | <part name="cart" interface="snes_cart"> |
| 63816 | ||
| 63817 | <feature name="slot" value="lorom" /> | |
| 57337 | 63818 | <dataarea name="rom" size="2097152"> |
| 57338 | 63819 | <rom name="umi no nushi tsuri (japan) (rev 1).sfc" size="2097152" crc="c985f568" sha1="6f01bee87737de87e756f75b7b05e9cedb63faf6" offset="0x000000" /> |
| 57339 | 63820 | </dataarea> |
| r21545 | r21546 | |
| 57350 | 63831 | <info name="release" value="19941223" /> |
| 57351 | 63832 | <info name="alt_title" value="海腹川背" /> |
| 57352 | 63833 | <part name="cart" interface="snes_cart"> |
| 63834 | ||
| 63835 | <feature name="slot" value="lorom" /> | |
| 57353 | 63836 | <dataarea name="rom" size="1048576"> |
| 57354 | 63837 | <rom name="umihara kawase (japan).sfc" size="1048576" crc="393ccca2" sha1="c4da5c1aaf998f0c7114adff0436246728a2139e" offset="0x000000" /> |
| 57355 | 63838 | </dataarea> |
| r21545 | r21546 | |
| 57367 | 63850 | <info name="alt_title" value="海釣り名人スズキ編" /> |
| 57368 | 63851 | <sharedfeat name="compatibility" value="NTSC"/> |
| 57369 | 63852 | <part name="cart" interface="snes_cart"> |
| 63853 | ||
| 63854 | <feature name="slot" value="lorom" /> | |
| 57370 | 63855 | <dataarea name="rom" size="1048576"> |
| 57371 | 63856 | <rom name="umizuri meijin - suzuki hen (japan).sfc" size="1048576" crc="ba2a817c" sha1="79d9dc9db69f46fcddbe9afb42fc9b3cf69881b5" offset="0x000000" /> |
| 57372 | 63857 | </dataarea> |
| r21545 | r21546 | |
| 57382 | 63867 | <info name="serial" value="SHVC-ANZJ-JPN" /> |
| 57383 | 63868 | <info name="alt_title" value="UNDAKE 30 鮫亀大作戦 マリオバージョン" /> |
| 57384 | 63869 | <part name="cart" interface="snes_cart"> |
| 63870 | ||
| 63871 | <feature name="slot" value="hirom" /> | |
| 57385 | 63872 | <dataarea name="rom" size="262144"> |
| 57386 | 63873 | <rom name="undake 30 same game daisakusen - mario version (japan).sfc" size="262144" crc="83bfe43d" sha1="35526f00755bb29e2c9c2c08d79e6ac53862fe85" offset="0x000000" /> |
| 57387 | 63874 | </dataarea> |
| r21545 | r21546 | |
| 57395 | 63882 | <year>1994</year> |
| 57396 | 63883 | <publisher>Nintendo</publisher> |
| 57397 | 63884 | <part name="cart" interface="snes_cart"> |
| 63885 | ||
| 63886 | <feature name="slot" value="lorom" /> | |
| 57398 | 63887 | <dataarea name="rom" size="2097152"> |
| 57399 | 63888 | <rom name="unirally (europe).sfc" size="2097152" crc="d8583ed7" sha1="d39ec113ef153ec9b7bacf12ed4a47f1a6d63a06" offset="0x000000" /> |
| 57400 | 63889 | </dataarea> |
| r21545 | r21546 | |
| 57409 | 63898 | <publisher>Ocean</publisher> |
| 57410 | 63899 | <info name="release" value="199408xx" /> |
| 57411 | 63900 | <part name="cart" interface="snes_cart"> |
| 63901 | ||
| 63902 | <feature name="slot" value="lorom" /> | |
| 57412 | 63903 | <dataarea name="rom" size="1048576"> |
| 57413 | 63904 | <rom name="untouchables, the (usa).sfc" size="1048576" crc="c70f2374" sha1="a1bb783cf50c45745af14e8b032f616c125e61da" offset="0x000000" /> |
| 57414 | 63905 | </dataarea> |
| r21545 | r21546 | |
| 57420 | 63911 | <year>1995</year> |
| 57421 | 63912 | <publisher>Black Pearl</publisher> |
| 57422 | 63913 | <part name="cart" interface="snes_cart"> |
| 63914 | ||
| 63915 | <feature name="slot" value="lorom" /> | |
| 57423 | 63916 | <dataarea name="rom" size="2097152"> |
| 57424 | 63917 | <rom name="urban strike (europe).sfc" size="2097152" crc="de6e4fa7" sha1="44284af9ddf64b0d904d7952fe770adb6d1de7db" offset="0x000000" /> |
| 57425 | 63918 | </dataarea> |
| r21545 | r21546 | |
| 57432 | 63925 | <publisher>Black Pearl</publisher> |
| 57433 | 63926 | <info name="release" value="199511xx" /> |
| 57434 | 63927 | <part name="cart" interface="snes_cart"> |
| 63928 | ||
| 63929 | <feature name="slot" value="lorom" /> | |
| 57435 | 63930 | <dataarea name="rom" size="2097152"> |
| 57436 | 63931 | <rom name="urban strike (usa).sfc" size="2097152" crc="b9bf7990" sha1="6ba4a5b8ba4552b6d1a6b8db20182092e5c8f884" offset="0x000000" /> |
| 57437 | 63932 | </dataarea> |
| r21545 | r21546 | |
| 57446 | 63941 | <info name="release" value="19930319" /> |
| 57447 | 63942 | <info name="alt_title" value="U.S.A.アイスホッケー" /> |
| 57448 | 63943 | <part name="cart" interface="snes_cart"> |
| 63944 | ||
| 63945 | <feature name="slot" value="lorom" /> | |
| 57449 | 63946 | <dataarea name="rom" size="1048576"> |
| 57450 | 63947 | <rom name="usa ice hockey (japan) (rev 1).sfc" size="1048576" crc="f0e155da" sha1="45c39e7c180891eed135ae7c59d1905f766c7c86" offset="0x000000" /> |
| 57451 | 63948 | </dataarea> |
| r21545 | r21546 | |
| 57462 | 63959 | <info name="release" value="19930319" /> |
| 57463 | 63960 | <info name="alt_title" value="U.S.A.アイスホッケー" /> |
| 57464 | 63961 | <part name="cart" interface="snes_cart"> |
| 63962 | ||
| 63963 | <feature name="slot" value="lorom" /> | |
| 57465 | 63964 | <dataarea name="rom" size="1048576"> |
| 57466 | 63965 | <rom name="usa ice hockey (japan).sfc" size="1048576" crc="e5a1adb8" sha1="99c30e1f5327246bcff9a25f56a60384ba56f7dd" offset="0x000000" /> |
| 57467 | 63966 | </dataarea> |
| r21545 | r21546 | |
| 57478 | 63977 | <info name="release" value="19930122" /> |
| 57479 | 63978 | <info name="alt_title" value="うしおととら" /> |
| 57480 | 63979 | <part name="cart" interface="snes_cart"> |
| 63980 | ||
| 63981 | <feature name="slot" value="lorom" /> | |
| 57481 | 63982 | <dataarea name="rom" size="1048576"> |
| 57482 | 63983 | <rom name="ushio to tora (japan).sfc" size="1048576" crc="6eb78ae8" sha1="c93e52877d33907c09f2976163bf0e4679009ba4" offset="0x000000" /> |
| 57483 | 63984 | </dataarea> |
| r21545 | r21546 | |
| 57489 | 63990 | <year>1993</year> |
| 57490 | 63991 | <publisher>Jaleco</publisher> |
| 57491 | 63992 | <part name="cart" interface="snes_cart"> |
| 63993 | ||
| 63994 | <feature name="slot" value="lorom" /> | |
| 57492 | 63995 | <dataarea name="rom" size="524288"> |
| 57493 | 63996 | <rom name="utopia - the creation of a nation (europe).sfc" size="524288" crc="6f702486" sha1="0ce348e93cdd9821f5627bbd2d75dcadcdaf963b" offset="0x000000" /> |
| 57494 | 63997 | </dataarea> |
| r21545 | r21546 | |
| 57502 | 64005 | <year>1993</year> |
| 57503 | 64006 | <publisher>Jaleco</publisher> |
| 57504 | 64007 | <part name="cart" interface="snes_cart"> |
| 64008 | ||
| 64009 | <feature name="slot" value="lorom" /> | |
| 57505 | 64010 | <dataarea name="rom" size="524288"> |
| 57506 | 64011 | <rom name="utopia - the creation of a nation (germany).sfc" size="524288" crc="c3a6ce79" sha1="0f1757f3e1fa019cd3fe94f1c3dfdc93c6b9ee8b" offset="0x000000" /> |
| 57507 | 64012 | </dataarea> |
| r21545 | r21546 | |
| 57518 | 64023 | <info name="release" value="19931029" /> |
| 57519 | 64024 | <info name="alt_title" value="ユートピア THE CREATION OF A NATION" /> |
| 57520 | 64025 | <part name="cart" interface="snes_cart"> |
| 64026 | ||
| 64027 | <feature name="slot" value="lorom" /> | |
| 57521 | 64028 | <dataarea name="rom" size="524288"> |
| 57522 | 64029 | <rom name="utopia - the creation of a nation (japan).sfc" size="524288" crc="268c1181" sha1="9f9c5dd2002c52608c60a1032beb4f3e94364e80" offset="0x000000" /> |
| 57523 | 64030 | </dataarea> |
| r21545 | r21546 | |
| 57531 | 64038 | <year>1993</year> |
| 57532 | 64039 | <publisher>Jaleco</publisher> |
| 57533 | 64040 | <part name="cart" interface="snes_cart"> |
| 64041 | ||
| 64042 | <feature name="slot" value="lorom" /> | |
| 57534 | 64043 | <dataarea name="rom" size="524288"> |
| 57535 | 64044 | <rom name="utopia - the creation of a nation (usa) (beta).sfc" size="524288" crc="403db46b" sha1="964fc16b5774cf38ed72d37abbb1d6e1d5b9f68c" offset="0x000000" /> |
| 57536 | 64045 | </dataarea> |
| r21545 | r21546 | |
| 57543 | 64052 | <publisher>Jaleco</publisher> |
| 57544 | 64053 | <info name="release" value="199309xx" /> |
| 57545 | 64054 | <part name="cart" interface="snes_cart"> |
| 64055 | ||
| 64056 | <feature name="slot" value="lorom" /> | |
| 57546 | 64057 | <dataarea name="rom" size="524288"> |
| 57547 | 64058 | <rom name="utopia - the creation of a nation (usa).sfc" size="524288" crc="252a96c7" sha1="b55c6752a2a514f1180ecacd26e894b00cfc2dd1" offset="0x000000" /> |
| 57548 | 64059 | </dataarea> |
| r21545 | r21546 | |
| 57556 | 64067 | <year>1994</year> |
| 57557 | 64068 | <publisher>Mindscape</publisher> |
| 57558 | 64069 | <part name="cart" interface="snes_cart"> |
| 64070 | ||
| 64071 | <feature name="slot" value="lorom" /> | |
| 57559 | 64072 | <dataarea name="rom" size="1048576"> |
| 57560 | 64073 | <rom name="val d'isere championship (france) (beta) (1993-10-27).sfc" size="1048576" crc="66623ee2" sha1="610d31c0eeff4161bb3385c28b0c66250b6d2b0d" offset="0x000000" /> |
| 57561 | 64074 | </dataarea> |
| r21545 | r21546 | |
| 57567 | 64080 | <year>1993</year> |
| 57568 | 64081 | <publisher>Nintendo</publisher> |
| 57569 | 64082 | <part name="cart" interface="snes_cart"> |
| 64083 | ||
| 64084 | <feature name="slot" value="lorom" /> | |
| 57570 | 64085 | <dataarea name="rom" size="1048576"> |
| 57571 | 64086 | <rom name="vegas stakes (europe).sfc" size="1048576" crc="accb5950" sha1="e17ae0d4d58ee77edd6741c3de7dd29fdf521e51" offset="0x000000" /> |
| 57572 | 64087 | </dataarea> |
| r21545 | r21546 | |
| 57581 | 64096 | <publisher>Nintendo</publisher> |
| 57582 | 64097 | <info name="release" value="199305xx" /> |
| 57583 | 64098 | <part name="cart" interface="snes_cart"> |
| 64099 | ||
| 64100 | <feature name="slot" value="lorom" /> | |
| 57584 | 64101 | <dataarea name="rom" size="1048576"> |
| 57585 | 64102 | <rom name="vegas stakes (usa).sfc" size="1048576" crc="03a0e935" sha1="3e9b44b318df40929911067ff510bae02861e595" offset="0x000000" /> |
| 57586 | 64103 | </dataarea> |
| r21545 | r21546 | |
| 57594 | 64111 | <year>1995</year> |
| 57595 | 64112 | <publisher>Acclaim Entertainment</publisher> |
| 57596 | 64113 | <part name="cart" interface="snes_cart"> |
| 64114 | ||
| 64115 | <feature name="slot" value="lorom" /> | |
| 57597 | 64116 | <dataarea name="rom" size="3145728"> |
| 57598 | 64117 | <rom name="venom & spider-man - separation anxiety (europe).sfc" size="3145728" crc="cd274974" sha1="41c50cd9065dbd127b06a8fc1cfe63a8f0132602" offset="0x000000" /> |
| 57599 | 64118 | </dataarea> |
| r21545 | r21546 | |
| 57606 | 64125 | <publisher>Acclaim Entertainment</publisher> |
| 57607 | 64126 | <info name="release" value="199511xx" /> |
| 57608 | 64127 | <part name="cart" interface="snes_cart"> |
| 64128 | ||
| 64129 | <feature name="slot" value="lorom" /> | |
| 57609 | 64130 | <dataarea name="rom" size="3145728"> |
| 57610 | 64131 | <rom name="venom & spider-man - separation anxiety (usa).sfc" size="3145728" crc="919c509d" sha1="4cc91f82f800b9a10433d91579911083ca47484e" offset="0x000000" /> |
| 57611 | 64132 | </dataarea> |
| r21545 | r21546 | |
| 57620 | 64141 | <info name="release" value="19950929" /> |
| 57621 | 64142 | <info name="alt_title" value="ヴェルヌワールド" /> |
| 57622 | 64143 | <part name="cart" interface="snes_cart"> |
| 64144 | ||
| 64145 | <feature name="slot" value="lorom" /> | |
| 57623 | 64146 | <dataarea name="rom" size="2621440"> |
| 57624 | 64147 | <rom name="verne world (japan).sfc" size="2621440" crc="832c8449" sha1="f892f9dbcb8715ad5c71e5b43df7bf2523d39e50" offset="0x000000" /> |
| 57625 | 64148 | </dataarea> |
| r21545 | r21546 | |
| 57636 | 64159 | <info name="release" value="19931008" /> |
| 57637 | 64160 | <info name="alt_title" value="バイキングの大迷惑" /> |
| 57638 | 64161 | <part name="cart" interface="snes_cart"> |
| 64162 | ||
| 64163 | <feature name="slot" value="lorom" /> | |
| 57639 | 64164 | <dataarea name="rom" size="1048576"> |
| 57640 | 64165 | <rom name="viking no daimeiwaku (japan).sfc" size="1048576" crc="50fef979" sha1="7820419c0f1e70bd88a6c9de26a872556251deae" offset="0x000000" /> |
| 57641 | 64166 | </dataarea> |
| r21545 | r21546 | |
| 57647 | 64172 | <year>1994</year> |
| 57648 | 64173 | <publisher>Acclaim Entertainment</publisher> |
| 57649 | 64174 | <part name="cart" interface="snes_cart"> |
| 64175 | ||
| 64176 | <feature name="slot" value="lorom" /> | |
| 57650 | 64177 | <dataarea name="rom" size="2097152"> |
| 57651 | 64178 | <rom name="virtual bart (europe).sfc" size="2097152" crc="7801ad97" sha1="bfef41138865cef0a33ca6412c5faedbd898492b" offset="0x000000" /> |
| 57652 | 64179 | </dataarea> |
| r21545 | r21546 | |
| 57661 | 64188 | <info name="release" value="19940930" /> |
| 57662 | 64189 | <info name="alt_title" value="バーチャルバート" /> |
| 57663 | 64190 | <part name="cart" interface="snes_cart"> |
| 64191 | ||
| 64192 | <feature name="slot" value="lorom" /> | |
| 57664 | 64193 | <dataarea name="rom" size="2097152"> |
| 57665 | 64194 | <rom name="virtual bart (japan).sfc" size="2097152" crc="b5a561bb" sha1="6aa8187488592cf0136d1d005ea242f01125bcc2" offset="0x000000" /> |
| 57666 | 64195 | </dataarea> |
| r21545 | r21546 | |
| 57672 | 64201 | <year>1994</year> |
| 57673 | 64202 | <publisher>Acclaim Entertainment</publisher> |
| 57674 | 64203 | <part name="cart" interface="snes_cart"> |
| 64204 | ||
| 64205 | <feature name="slot" value="lorom" /> | |
| 57675 | 64206 | <dataarea name="rom" size="2097152"> |
| 57676 | 64207 | <rom name="virtual bart (usa) (beta).sfc" size="2097152" crc="14ecc04e" sha1="d8e19e5efa3d4b90bc239a6be416a95894dd9449" offset="0x000000" /> |
| 57677 | 64208 | </dataarea> |
| r21545 | r21546 | |
| 57684 | 64215 | <publisher>Acclaim Entertainment</publisher> |
| 57685 | 64216 | <info name="release" value="199409xx" /> |
| 57686 | 64217 | <part name="cart" interface="snes_cart"> |
| 64218 | ||
| 64219 | <feature name="slot" value="lorom" /> | |
| 57687 | 64220 | <dataarea name="rom" size="2097152"> |
| 57688 | 64221 | <rom name="virtual bart (usa).sfc" size="2097152" crc="5d0addda" sha1="53b51d1c137d4da59680a59834d1b0133da87eaf" offset="0x000000" /> |
| 57689 | 64222 | </dataarea> |
| r21545 | r21546 | |
| 57695 | 64228 | <year>1993</year> |
| 57696 | 64229 | <publisher>Hudson</publisher> |
| 57697 | 64230 | <part name="cart" interface="snes_cart"> |
| 64231 | ||
| 64232 | <feature name="slot" value="lorom" /> | |
| 57698 | 64233 | <dataarea name="rom" size="1048576"> |
| 57699 | 64234 | <rom name="virtual soccer (usa) (proto).sfc" size="1048576" crc="6383d9a5" sha1="5693b01123ef7321f00902f39c7fd798ba1de67e" offset="0x000000" /> |
| 57700 | 64235 | </dataarea> |
| r21545 | r21546 | |
| 57710 | 64245 | <info name="release" value="199409xx" /> |
| 57711 | 64246 | <part name="cart" interface="snes_cart"> |
| 57712 | 64247 | <feature name="enhancement" value="GSU-1" /> |
| 64248 | ||
| 64249 | <feature name="slot" value="lorom_sfx" /> | |
| 57713 | 64250 | <dataarea name="rom" size="524288"> |
| 57714 | 64251 | <rom name="vortex (usa) (en,es).sfc" size="524288" crc="31b1ad00" sha1="3a71b63605ddecf827d60554c2ddaccdd85b9624" offset="0x000000" /> |
| 57715 | 64252 | </dataarea> |
| r21545 | r21546 | |
| 57726 | 64263 | <info name="release" value="19961129" /> |
| 57727 | 64264 | <info name="alt_title" value="VS. コレクション" /> |
| 57728 | 64265 | <part name="cart" interface="snes_cart"> |
| 64266 | ||
| 64267 | <feature name="slot" value="lorom" /> | |
| 57729 | 64268 | <dataarea name="rom" size="524288"> |
| 57730 | 64269 | <rom name="vs. collection (japan).sfc" size="524288" crc="a9fcfd53" sha1="1b651e943b3b8c17815e5619837af600e3097557" offset="0x000000" /> |
| 57731 | 64270 | </dataarea> |
| r21545 | r21546 | |
| 57740 | 64279 | <info name="release" value="19950113" /> |
| 57741 | 64280 | <info name="alt_title" value="わくわくスキー わんだぁシュ プール" /> |
| 57742 | 64281 | <part name="cart" interface="snes_cart"> |
| 64282 | ||
| 64283 | <feature name="slot" value="lorom" /> | |
| 57743 | 64284 | <dataarea name="rom" size="1048576"> |
| 57744 | 64285 | <rom name="wakuwaku ski wonder spur (japan).sfc" size="1048576" crc="fcdab211" sha1="cfbf4d54a150e89273b2cca056ae3194dea9e76f" offset="0x000000" /> |
| 57745 | 64286 | </dataarea> |
| r21545 | r21546 | |
| 57756 | 64297 | <info name="release" value="19930219" /> |
| 57757 | 64298 | <info name="alt_title" value="ウォーリーをさがせ! 絵本の国の大冒険" /> |
| 57758 | 64299 | <part name="cart" interface="snes_cart"> |
| 64300 | ||
| 64301 | <feature name="slot" value="lorom" /> | |
| 57759 | 64302 | <dataarea name="rom" size="1048576"> |
| 57760 | 64303 | <rom name="wally o sagase! - ehon no kuni no daibouken (japan).sfc" size="1048576" crc="6c864780" sha1="b0c4122d0c3de32987955dca52d1219436e7c940" offset="0x000000" /> |
| 57761 | 64304 | </dataarea> |
| r21545 | r21546 | |
| 57770 | 64313 | <publisher>Advanced Productions</publisher> |
| 57771 | 64314 | <info name="release" value="199512xx" /> |
| 57772 | 64315 | <part name="cart" interface="snes_cart"> |
| 64316 | ||
| 64317 | <feature name="slot" value="lorom" /> | |
| 57773 | 64318 | <dataarea name="rom" size="2097152"> |
| 57774 | 64319 | <rom name="war 2410 (usa).sfc" size="2097152" crc="ad2dc53a" sha1="8c5d9730502f150a2cf47814ff07982620d9a8df" offset="0x000000" /> |
| 57775 | 64320 | </dataarea> |
| r21545 | r21546 | |
| 57782 | 64327 | <publisher>Advanced Productions</publisher> |
| 57783 | 64328 | <info name="release" value="199610xx" /> |
| 57784 | 64329 | <part name="cart" interface="snes_cart"> |
| 64330 | ||
| 64331 | <feature name="slot" value="lorom" /> | |
| 57785 | 64332 | <dataarea name="rom" size="1048576"> |
| 57786 | 64333 | <rom name="war 3010 - the revolution (usa).sfc" size="1048576" crc="98c974be" sha1="13722922c00f8b3e0462d5c549732d86a258f2cc" offset="0x000000" /> |
| 57787 | 64334 | </dataarea> |
| r21545 | r21546 | |
| 57796 | 64343 | <info name="release" value="19940428" /> |
| 57797 | 64344 | <info name="alt_title" value="笑っていいとも!タモリン ピック" /> |
| 57798 | 64345 | <part name="cart" interface="snes_cart"> |
| 64346 | ||
| 64347 | <feature name="slot" value="lorom" /> | |
| 57799 | 64348 | <dataarea name="rom" size="1048576"> |
| 57800 | 64349 | <rom name="waratte iitomo! tamorin pick (japan).sfc" size="1048576" crc="14cc9c86" sha1="031bb1a01a3067f71a8372afd5543328f72f9198" offset="0x000000" /> |
| 57801 | 64350 | </dataarea> |
| r21545 | r21546 | |
| 57807 | 64356 | <year>1994</year> |
| 57808 | 64357 | <publisher>Nintendo</publisher> |
| 57809 | 64358 | <part name="cart" interface="snes_cart"> |
| 64359 | ||
| 64360 | <feature name="slot" value="lorom" /> | |
| 57810 | 64361 | <dataarea name="rom" size="1048576"> |
| 57811 | 64362 | <rom name="wario's woods (europe).sfc" size="1048576" crc="80b112ca" sha1="b1e58e076f353cbd704ac0743f0a00a276570d89" offset="0x000000" /> |
| 57812 | 64363 | </dataarea> |
| r21545 | r21546 | |
| 57823 | 64374 | <info name="release" value="19950526" /> |
| 57824 | 64375 | <info name="alt_title" value="ウォーロック" /> |
| 57825 | 64376 | <part name="cart" interface="snes_cart"> |
| 64377 | ||
| 64378 | <feature name="slot" value="lorom" /> | |
| 57826 | 64379 | <dataarea name="rom" size="2097152"> |
| 57827 | 64380 | <rom name="warlock (japan).sfc" size="2097152" crc="dcadbd80" sha1="3bd61ce89ce6c3f23f51b8e2dc217f7c027af6d3" offset="0x000000" /> |
| 57828 | 64381 | </dataarea> |
| r21545 | r21546 | |
| 57834 | 64387 | <year>1995</year> |
| 57835 | 64388 | <publisher>LJN</publisher> |
| 57836 | 64389 | <part name="cart" interface="snes_cart"> |
| 64390 | ||
| 64391 | <feature name="slot" value="lorom" /> | |
| 57837 | 64392 | <dataarea name="rom" size="2097152"> |
| 57838 | 64393 | <rom name="warlock (usa) (beta) (alt 1).sfc" size="2097152" crc="af7c1a95" sha1="a38ddd4ed4dec43b426c29a0098d7c406fdd88e3" offset="0x000000" /> |
| 57839 | 64394 | </dataarea> |
| r21545 | r21546 | |
| 57845 | 64400 | <year>1995</year> |
| 57846 | 64401 | <publisher>LJN</publisher> |
| 57847 | 64402 | <part name="cart" interface="snes_cart"> |
| 64403 | ||
| 64404 | <feature name="slot" value="lorom" /> | |
| 57848 | 64405 | <dataarea name="rom" size="2097152"> |
| 57849 | 64406 | <rom name="warlock (usa) (beta).sfc" size="2097152" crc="ec9450d1" sha1="14fffd85a2c39e0aba94e9267e78d8392b777789" offset="0x000000" /> |
| 57850 | 64407 | </dataarea> |
| r21545 | r21546 | |
| 57856 | 64413 | <year>1992</year> |
| 57857 | 64414 | <publisher>Accolade</publisher> |
| 57858 | 64415 | <part name="cart" interface="snes_cart"> |
| 64416 | ||
| 64417 | <feature name="slot" value="lorom" /> | |
| 57859 | 64418 | <dataarea name="rom" size="1048576"> |
| 57860 | 64419 | <rom name="warpspeed (europe).sfc" size="1048576" crc="6e7f189f" sha1="6a6c811cb8c44caf1194155d257bfb53b7e26c04" offset="0x000000" /> |
| 57861 | 64420 | </dataarea> |
| r21545 | r21546 | |
| 57868 | 64427 | <publisher>Accolade</publisher> |
| 57869 | 64428 | <info name="release" value="199212xx" /> |
| 57870 | 64429 | <part name="cart" interface="snes_cart"> |
| 64430 | ||
| 64431 | <feature name="slot" value="lorom" /> | |
| 57871 | 64432 | <dataarea name="rom" size="1048576"> |
| 57872 | 64433 | <rom name="warpspeed (usa).sfc" size="1048576" crc="1e10a1d1" sha1="0221d6a3f09c40124ae81ec03813e02aff31c13c" offset="0x000000" /> |
| 57873 | 64434 | </dataarea> |
| r21545 | r21546 | |
| 57879 | 64440 | <year>1995</year> |
| 57880 | 64441 | <publisher>Ocean</publisher> |
| 57881 | 64442 | <part name="cart" interface="snes_cart"> |
| 64443 | ||
| 64444 | <feature name="slot" value="lorom" /> | |
| 57882 | 64445 | <dataarea name="rom" size="2097152"> |
| 57883 | 64446 | <rom name="waterworld (europe).sfc" size="2097152" crc="7acf2ac6" sha1="817df229074f4aef05d16fa92c4438004468fbe1" offset="0x000000" /> |
| 57884 | 64447 | </dataarea> |
| r21545 | r21546 | |
| 57890 | 64453 | <year>1995</year> |
| 57891 | 64454 | <publisher>Time Warner Interactive</publisher> |
| 57892 | 64455 | <part name="cart" interface="snes_cart"> |
| 64456 | ||
| 64457 | <feature name="slot" value="lorom" /> | |
| 57893 | 64458 | <dataarea name="rom" size="1572864"> |
| 57894 | 64459 | <rom name="wayne gretzky and the nhlpa all-stars (usa) (beta).sfc" size="1572864" crc="9c1e576a" sha1="7676f4a1eb684dadeaacba1644807436fb764257" offset="0x000000" /> |
| 57895 | 64460 | </dataarea> |
| r21545 | r21546 | |
| 57903 | 64468 | <year>1993</year> |
| 57904 | 64469 | <publisher>T*HQ</publisher> |
| 57905 | 64470 | <part name="cart" interface="snes_cart"> |
| 64471 | ||
| 64472 | <feature name="slot" value="lorom" /> | |
| 57906 | 64473 | <dataarea name="rom" size="1048576"> |
| 57907 | 64474 | <rom name="wayne's world (europe).sfc" size="1048576" crc="94eae7e4" sha1="a41f878dfb852724e0cabe6ed4cff73cb81aabb9" offset="0x000000" /> |
| 57908 | 64475 | </dataarea> |
| r21545 | r21546 | |
| 57915 | 64482 | <publisher>T*HQ</publisher> |
| 57916 | 64483 | <info name="release" value="199304xx" /> |
| 57917 | 64484 | <part name="cart" interface="snes_cart"> |
| 64485 | ||
| 64486 | <feature name="slot" value="lorom" /> | |
| 57918 | 64487 | <dataarea name="rom" size="1048576"> |
| 57919 | 64488 | <rom name="wayne's world (usa).sfc" size="1048576" crc="0d426a15" sha1="0681d155d6ba4c315afbb52fbb3b7c053a0935ff" offset="0x000000" /> |
| 57920 | 64489 | </dataarea> |
| r21545 | r21546 | |
| 57927 | 64496 | <publisher>FCI</publisher> |
| 57928 | 64497 | <info name="release" value="199411xx" /> |
| 57929 | 64498 | <part name="cart" interface="snes_cart"> |
| 64499 | ||
| 64500 | <feature name="slot" value="lorom" /> | |
| 57930 | 64501 | <dataarea name="rom" size="1572864"> |
| 57931 | 64502 | <rom name="wcw super brawl wrestling (usa).sfc" size="1572864" crc="8b477300" sha1="dd102caeec784913c5208f0de5ed473fd1e7eef6" offset="0x000000" /> |
| 57932 | 64503 | </dataarea> |
| r21545 | r21546 | |
| 57939 | 64510 | <publisher>Hi Tech Expressions</publisher> |
| 57940 | 64511 | <info name="release" value="199311xx" /> |
| 57941 | 64512 | <part name="cart" interface="snes_cart"> |
| 64513 | ||
| 64514 | <feature name="slot" value="lorom" /> | |
| 57942 | 64515 | <dataarea name="rom" size="1048576"> |
| 57943 | 64516 | <rom name="we're back! - a dinosaur's story (usa).sfc" size="1048576" crc="3f654414" sha1="5dfed05ffbdf6565cbfc56becc0a2d432f1a027a" offset="0x000000" /> |
| 57944 | 64517 | </dataarea> |
| r21545 | r21546 | |
| 57951 | 64524 | <publisher>Ocean</publisher> |
| 57952 | 64525 | <sharedfeat name="compatibility" value="PAL"/> |
| 57953 | 64526 | <part name="cart" interface="snes_cart"> |
| 64527 | ||
| 64528 | <feature name="slot" value="hirom" /> | |
| 57954 | 64529 | <dataarea name="rom" size="3145728"> |
| 57955 | 64530 | <rom name="weaponlord (europe).sfc" size="3145728" crc="019c4b02" sha1="8d44045c1c713fed49dc44889949a0629d3d37c6" offset="0x000000" /> |
| 57956 | 64531 | </dataarea> |
| r21545 | r21546 | |
| 57964 | 64539 | <info name="release" value="199509xx" /> |
| 57965 | 64540 | <sharedfeat name="compatibility" value="NTSC"/> |
| 57966 | 64541 | <part name="cart" interface="snes_cart"> |
| 64542 | ||
| 64543 | <feature name="slot" value="hirom" /> | |
| 57967 | 64544 | <dataarea name="rom" size="3145728"> |
| 57968 | 64545 | <rom name="weaponlord (usa).sfc" size="3145728" crc="0e7e7102" sha1="47e4e75a914021839dcd29b2709dc91978932a8c" offset="0x000000" /> |
| 57969 | 64546 | </dataarea> |
| r21545 | r21546 | |
| 57976 | 64553 | <publisher>GameTek</publisher> |
| 57977 | 64554 | <info name="release" value="199209xx" /> |
| 57978 | 64555 | <part name="cart" interface="snes_cart"> |
| 64556 | ||
| 64557 | <feature name="slot" value="lorom" /> | |
| 57979 | 64558 | <dataarea name="rom" size="524288"> |
| 57980 | 64559 | <rom name="wheel of fortune (usa).sfc" size="524288" crc="1c384b11" sha1="2e23f80d573b4047ed696ab1d901fa20c11136cc" offset="0x000000" /> |
| 57981 | 64560 | </dataarea> |
| r21545 | r21546 | |
| 57988 | 64567 | <publisher>Hi Tech Expressions</publisher> |
| 57989 | 64568 | <info name="release" value="199306xx" /> |
| 57990 | 64569 | <part name="cart" interface="snes_cart"> |
| 64570 | ||
| 64571 | <feature name="slot" value="lorom" /> | |
| 57991 | 64572 | <dataarea name="rom" size="1048576"> |
| 57992 | 64573 | <rom name="where in the world is carmen sandiego (usa) (en,fr,de,es,it).sfc" size="1048576" crc="9ef83223" sha1="98d8add2ec009468caf30be1ff4753dedb14f4f7" offset="0x000000" /> |
| 57993 | 64574 | </dataarea> |
| r21545 | r21546 | |
| 58000 | 64581 | <publisher>Hi Tech Expressions</publisher> |
| 58001 | 64582 | <info name="release" value="199305xx" /> |
| 58002 | 64583 | <part name="cart" interface="snes_cart"> |
| 64584 | ||
| 64585 | <feature name="slot" value="lorom" /> | |
| 58003 | 64586 | <dataarea name="rom" size="1048576"> |
| 58004 | 64587 | <rom name="where in time is carmen sandiego (usa) (en,fr,de,es,it).sfc" size="1048576" crc="1712018b" sha1="5240d97b235f5377e842518b70699f6e30436fc4" offset="0x000000" /> |
| 58005 | 64588 | </dataarea> |
| r21545 | r21546 | |
| 58011 | 64594 | <year>1992</year> |
| 58012 | 64595 | <publisher>Namco</publisher> |
| 58013 | 64596 | <part name="cart" interface="snes_cart"> |
| 64597 | ||
| 64598 | <feature name="slot" value="lorom" /> | |
| 58014 | 64599 | <dataarea name="rom" size="1048576"> |
| 58015 | 64600 | <rom name="whirlo (europe).sfc" size="1048576" crc="7379e3b3" sha1="9f3c77d02c7c476a460540cd5b72353a33e6d614" offset="0x000000" /> |
| 58016 | 64601 | </dataarea> |
| r21545 | r21546 | |
| 58023 | 64608 | <publisher>Titus</publisher> |
| 58024 | 64609 | <info name="release" value="199611xx" /> |
| 58025 | 64610 | <part name="cart" interface="snes_cart"> |
| 64611 | ||
| 64612 | <feature name="slot" value="lorom" /> | |
| 58026 | 64613 | <dataarea name="rom" size="1048576"> |
| 58027 | 64614 | <rom name="whizz (usa).sfc" size="1048576" crc="ea8df334" sha1="4d17271810a2c38938f9db6596b3ef064ba2cdce" offset="0x000000" /> |
| 58028 | 64615 | </dataarea> |
| r21545 | r21546 | |
| 58034 | 64621 | <year>1994</year> |
| 58035 | 64622 | <publisher>Natsume</publisher> |
| 58036 | 64623 | <part name="cart" interface="snes_cart"> |
| 64624 | ||
| 64625 | <feature name="slot" value="lorom" /> | |
| 58037 | 64626 | <dataarea name="rom" size="1048576"> |
| 58038 | 64627 | <rom name="wild guns (japan) (beta).sfc" size="1048576" crc="ceaac33d" sha1="552a0e0a17243c230ab881e3145424fd26c677ff" offset="0x000000" /> |
| 58039 | 64628 | </dataarea> |
| r21545 | r21546 | |
| 58045 | 64634 | <year>1994</year> |
| 58046 | 64635 | <publisher>Natsume</publisher> |
| 58047 | 64636 | <part name="cart" interface="snes_cart"> |
| 64637 | ||
| 64638 | <feature name="slot" value="lorom" /> | |
| 58048 | 64639 | <dataarea name="rom" size="1048576"> |
| 58049 | 64640 | <rom name="wild guns (japan) (sample).sfc" size="1048576" crc="3ca1ec46" sha1="fce87891005af88ed1ab63771b5aafaa4ebf854d" offset="0x000000" /> |
| 58050 | 64641 | </dataarea> |
| r21545 | r21546 | |
| 58059 | 64650 | <info name="release" value="19940812" /> |
| 58060 | 64651 | <info name="alt_title" value="ワイルドガンス" /> |
| 58061 | 64652 | <part name="cart" interface="snes_cart"> |
| 64653 | ||
| 64654 | <feature name="slot" value="lorom" /> | |
| 58062 | 64655 | <dataarea name="rom" size="1048576"> |
| 58063 | 64656 | <rom name="wild guns (japan).sfc" size="1048576" crc="96f948cb" sha1="c37b52dac47a2a2386865b982d64849cc62b6390" offset="0x000000" /> |
| 58064 | 64657 | </dataarea> |
| r21545 | r21546 | |
| 58072 | 64665 | <publisher>Natsume</publisher> |
| 58073 | 64666 | <info name="release" value="199507xx"/> |
| 58074 | 64667 | <part name="cart" interface="snes_cart"> |
| 64668 | ||
| 64669 | <feature name="slot" value="lorom" /> | |
| 58075 | 64670 | <dataarea name="rom" size="1048576"> |
| 58076 | 64671 | <rom name="wild guns (usa).sfc" size="1048576" crc="085d8d14" sha1="1ecf28d5f3d2e84e3cc58ed621cb0fc0dd9d70d0" offset="0x000000" /> |
| 58077 | 64672 | </dataarea> |
| r21545 | r21546 | |
| 58084 | 64679 | <publisher>Spectrum Holobyte</publisher> |
| 58085 | 64680 | <info name="release" value="199409xx" /> |
| 58086 | 64681 | <part name="cart" interface="snes_cart"> |
| 64682 | ||
| 64683 | <feature name="slot" value="lorom" /> | |
| 58087 | 64684 | <dataarea name="rom" size="524288"> |
| 58088 | 64685 | <rom name="wildsnake (usa).sfc" size="524288" crc="025adbf9" sha1="83787327e2fc621b97c16cf2a1e215554e2904a1" offset="0x000000" /> |
| 58089 | 64686 | </dataarea> |
| r21545 | r21546 | |
| 58095 | 64692 | <year>1992</year> |
| 58096 | 64693 | <publisher>Mindscape</publisher> |
| 58097 | 64694 | <part name="cart" interface="snes_cart"> |
| 64695 | ||
| 64696 | <feature name="slot" value="lorom" /> | |
| 58098 | 64697 | <dataarea name="rom" size="1048576"> |
| 58099 | 64698 | <rom name="wing commander (europe).sfc" size="1048576" crc="a7a22a40" sha1="1ee9b054438b77e5e427823a20cc71cc339bf970" offset="0x000000" /> |
| 58100 | 64699 | </dataarea> |
| r21545 | r21546 | |
| 58107 | 64706 | <publisher>Mindscape</publisher> |
| 58108 | 64707 | <info name="release" value="199211xx" /> |
| 58109 | 64708 | <part name="cart" interface="snes_cart"> |
| 64709 | ||
| 64710 | <feature name="slot" value="lorom" /> | |
| 58110 | 64711 | <dataarea name="rom" size="1048576"> |
| 58111 | 64712 | <rom name="wing commander (usa).sfc" size="1048576" crc="65ad4f8d" sha1="80333fc4f45d36c23b1f2eb35465ed8e53e0dd52" offset="0x000000" /> |
| 58112 | 64713 | </dataarea> |
| r21545 | r21546 | |
| 58118 | 64719 | <year>1993</year> |
| 58119 | 64720 | <publisher>Mindscape</publisher> |
| 58120 | 64721 | <part name="cart" interface="snes_cart"> |
| 64722 | ||
| 64723 | <feature name="slot" value="lorom" /> | |
| 58121 | 64724 | <dataarea name="rom" size="1048576"> |
| 58122 | 64725 | <rom name="wing commander - the secret missions (europe) (beta).sfc" size="1048576" crc="eac3e786" sha1="d205aff99a9ca71d4a2bcb380266bed8f6591e97" offset="0x000000" /> |
| 58123 | 64726 | </dataarea> |
| r21545 | r21546 | |
| 58129 | 64732 | <year>1993</year> |
| 58130 | 64733 | <publisher>Mindscape</publisher> |
| 58131 | 64734 | <part name="cart" interface="snes_cart"> |
| 64735 | ||
| 64736 | <feature name="slot" value="lorom" /> | |
| 58132 | 64737 | <dataarea name="rom" size="1048576"> |
| 58133 | 64738 | <rom name="wing commander - the secret missions (europe).sfc" size="1048576" crc="6ef77f07" sha1="c8662392a5d852d923490f58f04f2356c585b5bb" offset="0x000000" /> |
| 58134 | 64739 | </dataarea> |
| r21545 | r21546 | |
| 58141 | 64746 | <publisher>Mindscape</publisher> |
| 58142 | 64747 | <info name="release" value="199309xx" /> |
| 58143 | 64748 | <part name="cart" interface="snes_cart"> |
| 64749 | ||
| 64750 | <feature name="slot" value="lorom" /> | |
| 58144 | 64751 | <dataarea name="rom" size="1048576"> |
| 58145 | 64752 | <rom name="wing commander - the secret missions (usa).sfc" size="1048576" crc="d5e9af7f" sha1="c53d9b885848ecdcad9d287bdc0427c196e6c664" offset="0x000000" /> |
| 58146 | 64753 | </dataarea> |
| r21545 | r21546 | |
| 58152 | 64759 | <year>1992</year> |
| 58153 | 64760 | <publisher>Namco</publisher> |
| 58154 | 64761 | <part name="cart" interface="snes_cart"> |
| 64762 | ||
| 64763 | <feature name="slot" value="lorom" /> | |
| 58155 | 64764 | <dataarea name="rom" size="524288"> |
| 58156 | 64765 | <rom name="wings 2 - aces high (usa) (beta).sfc" size="524288" crc="cc2e31d4" sha1="6960c53a9939b06476649ef5ca7b60e6b61d14f2" offset="0x000000" /> |
| 58157 | 64766 | </dataarea> |
| r21545 | r21546 | |
| 58166 | 64775 | <info name="release" value="19961004" /> |
| 58167 | 64776 | <info name="alt_title" value="ウイニングポスト2 プログラム'96" /> |
| 58168 | 64777 | <part name="cart" interface="snes_cart"> |
| 64778 | ||
| 64779 | <feature name="slot" value="hirom" /> | |
| 58169 | 64780 | <dataarea name="rom" size="3145728"> |
| 58170 | 64781 | <rom name="winning post 2 - program '96 (japan) (rev 1).sfc" size="3145728" crc="f1f43896" sha1="c79dab10464a3292a0d54cb6ffc366a003605972" offset="0x000000" /> |
| 58171 | 64782 | </dataarea> |
| r21545 | r21546 | |
| 58182 | 64793 | <info name="release" value="19961004" /> |
| 58183 | 64794 | <info name="alt_title" value="ウイニングポスト2 プログラム'96" /> |
| 58184 | 64795 | <part name="cart" interface="snes_cart"> |
| 64796 | ||
| 64797 | <feature name="slot" value="hirom" /> | |
| 58185 | 64798 | <dataarea name="rom" size="3145728"> |
| 58186 | 64799 | <rom name="winning post 2 - program '96 (japan).sfc" size="3145728" crc="92954723" sha1="2528bb8524b12fb74140838e49640cf989a5b79f" offset="0x000000" /> |
| 58187 | 64800 | </dataarea> |
| r21545 | r21546 | |
| 58195 | 64808 | <year>1994</year> |
| 58196 | 64809 | <publisher>U.S. Gold</publisher> |
| 58197 | 64810 | <part name="cart" interface="snes_cart"> |
| 64811 | ||
| 64812 | <feature name="slot" value="hirom" /> | |
| 58198 | 64813 | <dataarea name="rom" size="2097152"> |
| 58199 | 64814 | <rom name="winter olympic games - lillehammer '94 (europe) (en,fr,de,es,it,pt,sv,no).sfc" size="2097152" crc="fcb1c794" sha1="dde7484aac121c94fbe5e840077aa73b1cf7df13" offset="0x000000" /> |
| 58200 | 64815 | </dataarea> |
| r21545 | r21546 | |
| 58207 | 64822 | <publisher>U.S. Gold</publisher> |
| 58208 | 64823 | <info name="release" value="199402xx" /> |
| 58209 | 64824 | <part name="cart" interface="snes_cart"> |
| 64825 | ||
| 64826 | <feature name="slot" value="hirom" /> | |
| 58210 | 64827 | <dataarea name="rom" size="2097152"> |
| 58211 | 64828 | <rom name="winter olympic games - lillehammer '94 (usa) (en,fr,de,es,it,pt,sv,no).sfc" size="2097152" crc="0704abe4" sha1="f95834fecdd4045324ae5bcf66a0591c2b01d4da" offset="0x000000" /> |
| 58212 | 64829 | </dataarea> |
| r21545 | r21546 | |
| 58219 | 64836 | <publisher>Seta</publisher> |
| 58220 | 64837 | <info name="release" value="199310xx" /> |
| 58221 | 64838 | <part name="cart" interface="snes_cart"> |
| 64839 | ||
| 64840 | <feature name="slot" value="lorom" /> | |
| 58222 | 64841 | <dataarea name="rom" size="1048576"> |
| 58223 | 64842 | <rom name="wizard of oz, the (usa).sfc" size="1048576" crc="d5ce2db5" sha1="eceeb210a3df9b53697ad25332a72019e875698d" offset="0x000000" /> |
| 58224 | 64843 | </dataarea> |
| r21545 | r21546 | |
| 58233 | 64852 | <info name="release" value="19960920" /> |
| 58234 | 64853 | <info name="alt_title" value="ウィザードリィ・外伝IV ~胎魔の鼓動~" /> |
| 58235 | 64854 | <part name="cart" interface="snes_cart"> |
| 64855 | ||
| 64856 | <feature name="slot" value="lorom" /> | |
| 58236 | 64857 | <dataarea name="rom" size="4194304"> |
| 58237 | 64858 | <rom name="wizardry gaiden iv - taima no kodou (japan) (rev 1).sfc" size="4194304" crc="1703d522" sha1="f4b6b592442f395ce5284fff02a9556f8b3d9fbf" offset="0x000000" /> |
| 58238 | 64859 | </dataarea> |
| r21545 | r21546 | |
| 58249 | 64870 | <info name="release" value="19960920" /> |
| 58250 | 64871 | <info name="alt_title" value="ウィザードリィ・外伝IV ~胎魔の鼓動~" /> |
| 58251 | 64872 | <part name="cart" interface="snes_cart"> |
| 64873 | ||
| 64874 | <feature name="slot" value="lorom" /> | |
| 58252 | 64875 | <dataarea name="rom" size="4194304"> |
| 58253 | 64876 | <rom name="wizardry gaiden iv - taima no kodou (japan).sfc" size="4194304" crc="85a217b5" sha1="c525a67250cbf2e2b14a9c17046f041a1e0e2ed7" offset="0x000000" /> |
| 58254 | 64877 | </dataarea> |
| r21545 | r21546 | |
| 58265 | 64888 | <info name="release" value="19990601" /> |
| 58266 | 64889 | <info name="alt_title" value="ウィザードリィI・II・III ~Story of Llylgamyn~" /> |
| 58267 | 64890 | <part name="cart" interface="snes_cart"> |
| 64891 | ||
| 64892 | <feature name="slot" value="lorom" /> | |
| 58268 | 64893 | <dataarea name="rom" size="4194304"> |
| 58269 | 64894 | <rom name="wizardry i-ii-iii - story of llylgamyn (japan) (np).sfc" size="4194304" crc="b8a72553" sha1="6b63c968aec822c0728513c01cd729ffd45dbab7" offset="0x000000" /> |
| 58270 | 64895 | </dataarea> |
| r21545 | r21546 | |
| 58279 | 64904 | <publisher>Capcom</publisher> |
| 58280 | 64905 | <info name="release" value="199404xx" /> |
| 58281 | 64906 | <part name="cart" interface="snes_cart"> |
| 64907 | ||
| 64908 | <feature name="slot" value="lorom" /> | |
| 58282 | 64909 | <dataarea name="rom" size="1048576"> |
| 58283 | 64910 | <rom name="wizardry v - heart of the maelstrom (usa).sfc" size="1048576" crc="d8fddd76" sha1="7e07a2de8874e807060a2d18429818386ac7da8e" offset="0x000000" /> |
| 58284 | 64911 | </dataarea> |
| r21545 | r21546 | |
| 58293 | 64920 | <publisher>Virgin Interactive</publisher> |
| 58294 | 64921 | <info name="release" value="199306xx" /> |
| 58295 | 64922 | <part name="cart" interface="snes_cart"> |
| 64923 | ||
| 64924 | <feature name="slot" value="lorom" /> | |
| 58296 | 64925 | <dataarea name="rom" size="1048576"> |
| 58297 | 64926 | <rom name="wolfchild (usa).sfc" size="1048576" crc="13bfb3a0" sha1="40ef16824bce5300c90130f340b1a2ebc94a8901" offset="0x000000" /> |
| 58298 | 64927 | </dataarea> |
| r21545 | r21546 | |
| 58305 | 64934 | <publisher>Imagineer</publisher> |
| 58306 | 64935 | <sharedfeat name="compatibility" value="PAL"/> |
| 58307 | 64936 | <part name="cart" interface="snes_cart"> |
| 64937 | ||
| 64938 | <feature name="slot" value="hirom" /> | |
| 58308 | 64939 | <dataarea name="rom" size="1048576"> |
| 58309 | 64940 | <rom name="wolfenstein 3d (europe).sfc" size="1048576" crc="6a455ee2" sha1="97dd894d4c0008fe935ed5c54b8d5ce2e0a32b7a" offset="0x000000" /> |
| 58310 | 64941 | </dataarea> |
| r21545 | r21546 | |
| 58316 | 64947 | <year>1994</year> |
| 58317 | 64948 | <publisher>Imagineer</publisher> |
| 58318 | 64949 | <part name="cart" interface="snes_cart"> |
| 64950 | ||
| 64951 | <feature name="slot" value="hirom" /> | |
| 58319 | 64952 | <dataarea name="rom" size="1048576"> |
| 58320 | 64953 | <rom name="wolfenstein 3d (usa) (beta).sfc" size="1048576" crc="63e442b4" sha1="a420602687ca86f75708da463e1effef85ebdc14" offset="0x000000" /> |
| 58321 | 64954 | </dataarea> |
| r21545 | r21546 | |
| 58329 | 64962 | <info name="release" value="199403xx" /> |
| 58330 | 64963 | <sharedfeat name="compatibility" value="NTSC"/> |
| 58331 | 64964 | <part name="cart" interface="snes_cart"> |
| 64965 | ||
| 64966 | <feature name="slot" value="hirom" /> | |
| 58332 | 64967 | <dataarea name="rom" size="1048576"> |
| 58333 | 64968 | <rom name="wolfenstein 3d (usa).sfc" size="1048576" crc="6582a8f5" sha1="88fe872eb984af84f8ca7633ef5bd3904a2baeb4" offset="0x000000" /> |
| 58334 | 64969 | </dataarea> |
| r21545 | r21546 | |
| 58340 | 64975 | <year>1994</year> |
| 58341 | 64976 | <publisher>LJN</publisher> |
| 58342 | 64977 | <part name="cart" interface="snes_cart"> |
| 64978 | ||
| 64979 | <feature name="slot" value="lorom" /> | |
| 58343 | 64980 | <dataarea name="rom" size="2097152"> |
| 58344 | 64981 | <rom name="wolverine - adamantium rage (europe).sfc" size="2097152" crc="78fc0d86" sha1="7282cfb57c0d33f22156e8dc52a0e535fb4b187b" offset="0x000000" /> |
| 58345 | 64982 | </dataarea> |
| r21545 | r21546 | |
| 58354 | 64991 | <info name="release" value="19950127" /> |
| 58355 | 64992 | <info name="alt_title" value="ウルヴァリン" /> |
| 58356 | 64993 | <part name="cart" interface="snes_cart"> |
| 64994 | ||
| 64995 | <feature name="slot" value="lorom" /> | |
| 58357 | 64996 | <dataarea name="rom" size="2097152"> |
| 58358 | 64997 | <rom name="wolverine - adamantium rage (japan).sfc" size="2097152" crc="d9119d9b" sha1="228e12075f9ac73e68f91690298de8c40cbba14e" offset="0x000000" /> |
| 58359 | 64998 | </dataarea> |
| r21545 | r21546 | |
| 58365 | 65004 | <year>1994</year> |
| 58366 | 65005 | <publisher>LJN</publisher> |
| 58367 | 65006 | <part name="cart" interface="snes_cart"> |
| 65007 | ||
| 65008 | <feature name="slot" value="lorom" /> | |
| 58368 | 65009 | <dataarea name="rom" size="2097152"> |
| 58369 | 65010 | <rom name="wolverine - adamantium rage (usa) (beta) (alt 1).sfc" size="2097152" crc="98455315" sha1="d7065e9c9907c524329679a2d4890d45871b4316" offset="0x000000" /> |
| 58370 | 65011 | </dataarea> |
| r21545 | r21546 | |
| 58376 | 65017 | <year>1994</year> |
| 58377 | 65018 | <publisher>LJN</publisher> |
| 58378 | 65019 | <part name="cart" interface="snes_cart"> |
| 65020 | ||
| 65021 | <feature name="slot" value="lorom" /> | |
| 58379 | 65022 | <dataarea name="rom" size="2097152"> |
| 58380 | 65023 | <rom name="wolverine - adamantium rage (usa) (beta).sfc" size="2097152" crc="7ac71f65" sha1="da24dd20d592147ab825b55a9561c8d4a8c3ecf5" offset="0x000000" /> |
| 58381 | 65024 | </dataarea> |
| r21545 | r21546 | |
| 58388 | 65031 | <publisher>LJN</publisher> |
| 58389 | 65032 | <info name="release" value="199411xx" /> |
| 58390 | 65033 | <part name="cart" interface="snes_cart"> |
| 65034 | ||
| 65035 | <feature name="slot" value="lorom" /> | |
| 58391 | 65036 | <dataarea name="rom" size="2097152"> |
| 58392 | 65037 | <rom name="wolverine - adamantium rage (usa).sfc" size="2097152" crc="4e62d6bf" sha1="3042dc1fbf896bec0944b24a19042324cd3e1bfe" offset="0x000000" /> |
| 58393 | 65038 | </dataarea> |
| r21545 | r21546 | |
| 58402 | 65047 | <info name="release" value="19941209" /> |
| 58403 | 65048 | <info name="alt_title" value="ワンダープロジェクトJ 機械の少年ピーノ" /> |
| 58404 | 65049 | <part name="cart" interface="snes_cart"> |
| 65050 | ||
| 65051 | <feature name="slot" value="hirom" /> | |
| 58405 | 65052 | <dataarea name="rom" size="3145728"> |
| 58406 | 65053 | <rom name="wonder project j - kikai no shounen pino (japan).sfc" size="3145728" crc="af8f4db9" sha1="7830eb36452bb193e1c00188db8dacb17cb742fa" offset="0x000000" /> |
| 58407 | 65054 | </dataarea> |
| r21545 | r21546 | |
| 58418 | 65065 | <info name="release" value="19931217" /> |
| 58419 | 65066 | <info name="alt_title" value="ワンダラスマジック" /> |
| 58420 | 65067 | <part name="cart" interface="snes_cart"> |
| 65068 | ||
| 65069 | <feature name="slot" value="lorom" /> | |
| 58421 | 65070 | <dataarea name="rom" size="2097152"> |
| 58422 | 65071 | <rom name="wondrous magic (japan).sfc" size="2097152" crc="4ffd52a0" sha1="efb183bd188d7f288bc326017cb89653d4361e53" offset="0x000000" /> |
| 58423 | 65072 | </dataarea> |
| r21545 | r21546 | |
| 58432 | 65081 | <publisher>Spectrum Holobyte</publisher> |
| 58433 | 65082 | <info name="release" value="199211xx" /> |
| 58434 | 65083 | <part name="cart" interface="snes_cart"> |
| 65084 | ||
| 65085 | <feature name="slot" value="lorom" /> | |
| 58435 | 65086 | <dataarea name="rom" size="524288"> |
| 58436 | 65087 | <rom name="wordtris (usa).sfc" size="524288" crc="856ab0bb" sha1="8edcb54700bfd67743efb48c65f488e9d62fbb49" offset="0x000000" /> |
| 58437 | 65088 | </dataarea> |
| r21545 | r21546 | |
| 58443 | 65094 | <year>1993</year> |
| 58444 | 65095 | <publisher>Imagineer</publisher> |
| 58445 | 65096 | <part name="cart" interface="snes_cart"> |
| 65097 | ||
| 65098 | <feature name="slot" value="lorom" /> | |
| 58446 | 65099 | <dataarea name="rom" size="524288"> |
| 58447 | 65100 | <rom name="world class rugby (europe).sfc" size="524288" crc="d73d6c80" sha1="ccdb5ed88bc7fcaef9722229bb1bcfbdf0e4161f" offset="0x000000" /> |
| 58448 | 65101 | </dataarea> |
| r21545 | r21546 | |
| 58454 | 65107 | <year>1993</year> |
| 58455 | 65108 | <publisher>Imagineer</publisher> |
| 58456 | 65109 | <part name="cart" interface="snes_cart"> |
| 65110 | ||
| 65111 | <feature name="slot" value="lorom" /> | |
| 58457 | 65112 | <dataarea name="rom" size="524288"> |
| 58458 | 65113 | <rom name="world class rugby (france).sfc" size="524288" crc="8effc2d4" sha1="d34e903870ab0fa1b15b992696a9497afdc3183f" offset="0x000000" /> |
| 58459 | 65114 | </dataarea> |
| r21545 | r21546 | |
| 58468 | 65123 | <info name="release" value="19930129" /> |
| 58469 | 65124 | <info name="alt_title" value="ワールドクラス ラグビー" /> |
| 58470 | 65125 | <part name="cart" interface="snes_cart"> |
| 65126 | ||
| 65127 | <feature name="slot" value="lorom" /> | |
| 58471 | 65128 | <dataarea name="rom" size="524288"> |
| 58472 | 65129 | <rom name="world class rugby (japan).sfc" size="524288" crc="3bb679d9" sha1="d4754759d3688119d2c959878a70e22de15f1538" offset="0x000000" /> |
| 58473 | 65130 | </dataarea> |
| r21545 | r21546 | |
| 58482 | 65139 | <info name="release" value="19940107" /> |
| 58483 | 65140 | <info name="alt_title" value="ワールドクラス ラグビー2 国内激闘編'93" /> |
| 58484 | 65141 | <part name="cart" interface="snes_cart"> |
| 65142 | ||
| 65143 | <feature name="slot" value="lorom" /> | |
| 58485 | 65144 | <dataarea name="rom" size="1048576"> |
| 58486 | 65145 | <rom name="world class rugby 2 - kokunai gekitou hen '93 (japan).sfc" size="1048576" crc="762ea6e9" sha1="164b893bd67d4d3c926ea3aae34f5257acbbb006" offset="0x000000" /> |
| 58487 | 65146 | </dataarea> |
| r21545 | r21546 | |
| 58495 | 65154 | <year>1994</year> |
| 58496 | 65155 | <publisher>GameTek</publisher> |
| 58497 | 65156 | <part name="cart" interface="snes_cart"> |
| 65157 | ||
| 65158 | <feature name="slot" value="hirom" /> | |
| 58498 | 65159 | <dataarea name="rom" size="1048576"> |
| 58499 | 65160 | <rom name="world cup striker (europe) (en,fr,de) (beta).sfc" size="1048576" crc="6928d52a" sha1="12edba034ab414b17502499c333e891a9f72d0e8" offset="0x000000" /> |
| 58500 | 65161 | </dataarea> |
| r21545 | r21546 | |
| 58508 | 65169 | <year>1994</year> |
| 58509 | 65170 | <publisher>U.S. Gold</publisher> |
| 58510 | 65171 | <part name="cart" interface="snes_cart"> |
| 65172 | ||
| 65173 | <feature name="slot" value="hirom" /> | |
| 58511 | 65174 | <dataarea name="rom" size="1572864"> |
| 58512 | 65175 | <rom name="world cup usa 94 (europe) (en,fr,de,es,it,nl,pt,sv).sfc" size="1572864" crc="5eb18063" sha1="ac748a67f63450732503a24148a1478e2f4ebe2a" offset="0x000000" /> |
| 58513 | 65176 | </dataarea> |
| r21545 | r21546 | |
| 58524 | 65187 | <info name="release" value="19940729" /> |
| 58525 | 65188 | <info name="alt_title" value="ワールドカップUSA94" /> |
| 58526 | 65189 | <part name="cart" interface="snes_cart"> |
| 65190 | ||
| 65191 | <feature name="slot" value="hirom" /> | |
| 58527 | 65192 | <dataarea name="rom" size="1572864"> |
| 58528 | 65193 | <rom name="world cup usa 94 (japan) (en,fr,de,es,it,nl,pt,sv).sfc" size="1572864" crc="24f92540" sha1="1882b7be1760f5cb8f2250b62d1fc3816bf36cbb" offset="0x000000" /> |
| 58529 | 65194 | </dataarea> |
| r21545 | r21546 | |
| 58538 | 65203 | <publisher>U.S. Gold</publisher> |
| 58539 | 65204 | <info name="release" value="199406xx" /> |
| 58540 | 65205 | <part name="cart" interface="snes_cart"> |
| 65206 | ||
| 65207 | <feature name="slot" value="hirom" /> | |
| 58541 | 65208 | <dataarea name="rom" size="1572864"> |
| 58542 | 65209 | <rom name="world cup usa 94 (usa) (en,fr,de,es,it,nl,pt,sv).sfc" size="1572864" crc="fb1c9082" sha1="aefc74b282101896737245513e7c0a718f122f54" offset="0x000000" /> |
| 58543 | 65210 | </dataarea> |
| r21545 | r21546 | |
| 58552 | 65219 | <publisher>Sunsoft</publisher> |
| 58553 | 65220 | <info name="release" value="199309xx" /> |
| 58554 | 65221 | <part name="cart" interface="snes_cart"> |
| 65222 | ||
| 65223 | <feature name="slot" value="hirom" /> | |
| 58555 | 65224 | <dataarea name="rom" size="2097152"> |
| 58556 | 65225 | <rom name="world heroes (usa).sfc" size="2097152" crc="1228ad30" sha1="ddc03392f9e07eba675818bd231dad4af8c8c128" offset="0x000000" /> |
| 58557 | 65226 | </dataarea> |
| r21545 | r21546 | |
| 58566 | 65235 | <info name="release" value="19940701" /> |
| 58567 | 65236 | <info name="alt_title" value="ワールドヒーローズ2" /> |
| 58568 | 65237 | <part name="cart" interface="snes_cart"> |
| 65238 | ||
| 65239 | <feature name="slot" value="lorom" /> | |
| 58569 | 65240 | <dataarea name="rom" size="3145728"> |
| 58570 | 65241 | <rom name="world heroes 2 (japan).sfc" size="3145728" crc="25a55b3b" sha1="68ff0f485454c796edd4fadcaaeb1aa1e07b3fb2" offset="0x000000" /> |
| 58571 | 65242 | </dataarea> |
| r21545 | r21546 | |
| 58577 | 65248 | <year>1994</year> |
| 58578 | 65249 | <publisher>Takara</publisher> |
| 58579 | 65250 | <part name="cart" interface="snes_cart"> |
| 65251 | ||
| 65252 | <feature name="slot" value="lorom" /> | |
| 58580 | 65253 | <dataarea name="rom" size="3145728"> |
| 58581 | 65254 | <rom name="world heroes 2 (usa) (beta).sfc" size="3145728" crc="acd0e8e6" sha1="cbda31055e973d921cedaa88c480f88f5515b1f1" offset="0x000000" /> |
| 58582 | 65255 | </dataarea> |
| r21545 | r21546 | |
| 58589 | 65262 | <publisher>Takara</publisher> |
| 58590 | 65263 | <info name="release" value="199409xx" /> |
| 58591 | 65264 | <part name="cart" interface="snes_cart"> |
| 65265 | ||
| 65266 | <feature name="slot" value="lorom" /> | |
| 58592 | 65267 | <dataarea name="rom" size="3145728"> |
| 58593 | 65268 | <rom name="world heroes 2 (usa).sfc" size="3145728" crc="098d7eaa" sha1="a4e97dd3589749f355cfab8f436bbe30a19df8dd" offset="0x000000" /> |
| 58594 | 65269 | </dataarea> |
| r21545 | r21546 | |
| 58600 | 65275 | <year>1995</year> |
| 58601 | 65276 | <publisher>Virgin Interactive</publisher> |
| 58602 | 65277 | <part name="cart" interface="snes_cart"> |
| 65278 | ||
| 65279 | <feature name="slot" value="lorom" /> | |
| 58603 | 65280 | <dataarea name="rom" size="2097152"> |
| 58604 | 65281 | <rom name="world masters golf (europe).sfc" size="2097152" crc="e0ee681f" sha1="9f3223c7851c1e6d0b3833a035293ad3dfa3eded" offset="0x000000" /> |
| 58605 | 65282 | </dataarea> |
| r21545 | r21546 | |
| 58611 | 65288 | <year>1993</year> |
| 58612 | 65289 | <publisher>Electro Brain</publisher> |
| 58613 | 65290 | <part name="cart" interface="snes_cart"> |
| 65291 | ||
| 65292 | <feature name="slot" value="lorom" /> | |
| 58614 | 65293 | <dataarea name="rom" size="1048576"> |
| 58615 | 65294 | <rom name="world soccer (europe).sfc" size="1048576" crc="ab7d2076" sha1="1e4ede70e1fd15e68f9698386fe443a3a80f89d7" offset="0x000000" /> |
| 58616 | 65295 | </dataarea> |
| r21545 | r21546 | |
| 58624 | 65303 | <info name="release" value="199312xx" /> |
| 58625 | 65304 | <sharedfeat name="compatibility" value="NTSC"/> |
| 58626 | 65305 | <part name="cart" interface="snes_cart"> |
| 65306 | ||
| 65307 | <feature name="slot" value="lorom" /> | |
| 58627 | 65308 | <dataarea name="rom" size="524288"> |
| 58628 | 65309 | <rom name="world soccer 94 - road to glory (usa).sfc" size="524288" crc="0aae0a10" sha1="d1cf0b5659fc4139b079eb7b80080ed7d4d7c04b" offset="0x000000" /> |
| 58629 | 65310 | </dataarea> |
| r21545 | r21546 | |
| 58635 | 65316 | <year>1994</year> |
| 58636 | 65317 | <publisher>Ocean</publisher> |
| 58637 | 65318 | <part name="cart" interface="snes_cart"> |
| 65319 | ||
| 65320 | <feature name="slot" value="lorom" /> | |
| 58638 | 65321 | <dataarea name="rom" size="2097152"> |
| 58639 | 65322 | <rom name="worms (europe).sfc" size="2097152" crc="90d0fac0" sha1="923e12fc1c59336c28be6bf5b677effb3b8faff9" offset="0x000000" /> |
| 58640 | 65323 | </dataarea> |
| r21545 | r21546 | |
| 58646 | 65329 | <year>1994</year> |
| 58647 | 65330 | <publisher>LJN</publisher> |
| 58648 | 65331 | <part name="cart" interface="snes_cart"> |
| 65332 | ||
| 65333 | <feature name="slot" value="hirom" /> | |
| 58649 | 65334 | <dataarea name="rom" size="3145728"> |
| 58650 | 65335 | <rom name="wwf raw (europe).sfc" size="3145728" crc="a5a3bfbc" sha1="87d4dadad6cdaa3b6cf6b2c1118606bcb5ef74c4" offset="0x000000" /> |
| 58651 | 65336 | </dataarea> |
| r21545 | r21546 | |
| 58658 | 65343 | <publisher>LJN</publisher> |
| 58659 | 65344 | <info name="release" value="199411xx" /> |
| 58660 | 65345 | <part name="cart" interface="snes_cart"> |
| 65346 | ||
| 65347 | <feature name="slot" value="hirom" /> | |
| 58661 | 65348 | <dataarea name="rom" size="3145728"> |
| 58662 | 65349 | <rom name="wwf raw (usa).sfc" size="3145728" crc="3e0038bf" sha1="aa2f3d719bdcd4f36db05ac2651fb0a242d6e6fb" offset="0x000000" /> |
| 58663 | 65350 | </dataarea> |
| r21545 | r21546 | |
| 58669 | 65356 | <year>1993</year> |
| 58670 | 65357 | <publisher>LJN</publisher> |
| 58671 | 65358 | <part name="cart" interface="snes_cart"> |
| 65359 | ||
| 65360 | <feature name="slot" value="lorom" /> | |
| 58672 | 65361 | <dataarea name="rom" size="2097152"> |
| 58673 | 65362 | <rom name="wwf royal rumble (europe).sfc" size="2097152" crc="6c6407b9" sha1="4bda8e1b3943485143daff02da73338ac88f61fb" offset="0x000000" /> |
| 58674 | 65363 | </dataarea> |
| r21545 | r21546 | |
| 58683 | 65372 | <info name="release" value="19930723" /> |
| 58684 | 65373 | <info name="alt_title" value="WWFロイヤルランブル" /> |
| 58685 | 65374 | <part name="cart" interface="snes_cart"> |
| 65375 | ||
| 65376 | <feature name="slot" value="lorom" /> | |
| 58686 | 65377 | <dataarea name="rom" size="2097152"> |
| 58687 | 65378 | <rom name="wwf royal rumble (japan).sfc" size="2097152" crc="e85352d2" sha1="f79e6515a01d864cc82b60f550a9c17fa5166cb0" offset="0x000000" /> |
| 58688 | 65379 | </dataarea> |
| r21545 | r21546 | |
| 58695 | 65386 | <publisher>LJN</publisher> |
| 58696 | 65387 | <info name="release" value="199306xx" /> |
| 58697 | 65388 | <part name="cart" interface="snes_cart"> |
| 65389 | ||
| 65390 | <feature name="slot" value="lorom" /> | |
| 58698 | 65391 | <dataarea name="rom" size="2097152"> |
| 58699 | 65392 | <rom name="wwf royal rumble (usa).sfc" size="2097152" crc="2101d515" sha1="cba77699d6e9b4bc15741bd6c425bdb5c3eb3664" offset="0x000000" /> |
| 58700 | 65393 | </dataarea> |
| r21545 | r21546 | |
| 58706 | 65399 | <year>1995</year> |
| 58707 | 65400 | <publisher>Acclaim Entertainment</publisher> |
| 58708 | 65401 | <part name="cart" interface="snes_cart"> |
| 65402 | ||
| 65403 | <feature name="slot" value="hirom" /> | |
| 58709 | 65404 | <dataarea name="rom" size="3145728"> |
| 58710 | 65405 | <rom name="wwf wrestlemania - the arcade game (europe).sfc" size="3145728" crc="6b8c5603" sha1="945806415415d8ddd47d0dd41561a4db8c816f2e" offset="0x000000" /> |
| 58711 | 65406 | </dataarea> |
| r21545 | r21546 | |
| 58720 | 65415 | <info name="release" value="19960301" /> |
| 58721 | 65416 | <info name="alt_title" value="レッスルマニア・ジ・アーケードゲーム" /> |
| 58722 | 65417 | <part name="cart" interface="snes_cart"> |
| 65418 | ||
| 65419 | <feature name="slot" value="hirom" /> | |
| 58723 | 65420 | <dataarea name="rom" size="3145728"> |
| 58724 | 65421 | <rom name="wwf wrestlemania - the arcade game (japan).sfc" size="3145728" crc="afbee7b1" sha1="0c5ee45e15b8e7a654bcd517060912c0da38b3ef" offset="0x000000" /> |
| 58725 | 65422 | </dataarea> |
| r21545 | r21546 | |
| 58731 | 65428 | <year>199?</year> |
| 58732 | 65429 | <publisher><unknown></publisher> |
| 58733 | 65430 | <part name="cart" interface="snes_cart"> |
| 65431 | ||
| 65432 | <feature name="slot" value="lorom" /> | |
| 58734 | 65433 | <dataarea name="rom" size="112722"> |
| 58735 | 65434 | <rom name="x (japan) (proto).sfc" size="112722" crc="bc0d0201" sha1="e2bea5718d6709b0cfde44f1f5e48f5702e992a6" offset="0x000000" /> |
| 58736 | 65435 | </dataarea> |
| r21545 | r21546 | |
| 58742 | 65441 | <year>1993</year> |
| 58743 | 65442 | <publisher>Kemco</publisher> |
| 58744 | 65443 | <part name="cart" interface="snes_cart"> |
| 65444 | ||
| 65445 | <feature name="slot" value="lorom" /> | |
| 58745 | 65446 | <dataarea name="rom" size="524288"> |
| 58746 | 65447 | <rom name="x zone (europe).sfc" size="524288" crc="1a24bc5c" sha1="f5b42aa66d9230490eb5aae41da9b7025f2ec08a" offset="0x000000" /> |
| 58747 | 65448 | </dataarea> |
| r21545 | r21546 | |
| 58754 | 65455 | <publisher>Sony Interactive</publisher> |
| 58755 | 65456 | <sharedfeat name="compatibility" value="PAL"/> |
| 58756 | 65457 | <part name="cart" interface="snes_cart"> |
| 65458 | ||
| 65459 | <feature name="slot" value="lorom" /> | |
| 58757 | 65460 | <dataarea name="rom" size="1048576"> |
| 58758 | 65461 | <rom name="x-kaliber 2097 (europe).sfc" size="1048576" crc="d7e4732f" sha1="9f4f6bae637acfc4a963593cd4936988cf0f0f72" offset="0x000000" /> |
| 58759 | 65462 | </dataarea> |
| r21545 | r21546 | |
| 58765 | 65468 | <year>1994</year> |
| 58766 | 65469 | <publisher>Activision</publisher> |
| 58767 | 65470 | <part name="cart" interface="snes_cart"> |
| 65471 | ||
| 65472 | <feature name="slot" value="lorom" /> | |
| 58768 | 65473 | <dataarea name="rom" size="1048576"> |
| 58769 | 65474 | <rom name="x-kaliber 2097 (usa) (beta).sfc" size="1048576" crc="64129f4c" sha1="3e82125905c99feff4bb51892b8987fc881001b7" offset="0x000000" /> |
| 58770 | 65475 | </dataarea> |
| r21545 | r21546 | |
| 58776 | 65481 | <year>1994</year> |
| 58777 | 65482 | <publisher>Capcom</publisher> |
| 58778 | 65483 | <part name="cart" interface="snes_cart"> |
| 65484 | ||
| 65485 | <feature name="slot" value="hirom" /> | |
| 58779 | 65486 | <dataarea name="rom" size="2097152"> |
| 58780 | 65487 | <rom name="x-men - mutant apocalypse (europe).sfc" size="2097152" crc="8e4ab536" sha1="3805bb70e4c6d4d3ed4164801c73aa355bb02e16" offset="0x000000" /> |
| 58781 | 65488 | </dataarea> |
| r21545 | r21546 | |
| 58790 | 65497 | <info name="release" value="19950103" /> |
| 58791 | 65498 | <info name="alt_title" value="エックス・メン ミュータントアポカリプス" /> |
| 58792 | 65499 | <part name="cart" interface="snes_cart"> |
| 65500 | ||
| 65501 | <feature name="slot" value="hirom" /> | |
| 58793 | 65502 | <dataarea name="rom" size="2097152"> |
| 58794 | 65503 | <rom name="x-men - mutant apocalypse (japan).sfc" size="2097152" crc="4f02a304" sha1="5ab4c41337d4fed245ebc73eec9f300af123db62" offset="0x000000" /> |
| 58795 | 65504 | </dataarea> |
| r21545 | r21546 | |
| 58802 | 65511 | <publisher>Capcom</publisher> |
| 58803 | 65512 | <info name="release" value="199411xx" /> |
| 58804 | 65513 | <part name="cart" interface="snes_cart"> |
| 65514 | ||
| 65515 | <feature name="slot" value="hirom" /> | |
| 58805 | 65516 | <dataarea name="rom" size="2097152"> |
| 58806 | 65517 | <rom name="x-men - mutant apocalypse (usa).sfc" size="2097152" crc="5e34822a" sha1="81f66a620352f6ecad3bdfe0d47f42c55971080c" offset="0x000000" /> |
| 58807 | 65518 | </dataarea> |
| r21545 | r21546 | |
| 58814 | 65525 | <publisher>Asmik</publisher> |
| 58815 | 65526 | <info name="release" value="199204xx" /> |
| 58816 | 65527 | <part name="cart" interface="snes_cart"> |
| 65528 | ||
| 65529 | <feature name="slot" value="lorom" /> | |
| 58817 | 65530 | <dataarea name="rom" size="1048576"> |
| 58818 | 65531 | <rom name="xardion (usa).sfc" size="1048576" crc="c7c12a57" sha1="8efc38bb904ce36318a1c6b0d0569a5d16b4bc19" offset="0x000000" /> |
| 58819 | 65532 | </dataarea> |
| r21545 | r21546 | |
| 58827 | 65540 | <year>1993</year> |
| 58828 | 65541 | <publisher>Tokuma Shoten</publisher> |
| 58829 | 65542 | <part name="cart" interface="snes_cart"> |
| 65543 | ||
| 65544 | <feature name="slot" value="lorom" /> | |
| 58830 | 65545 | <dataarea name="rom" size="1048576"> |
| 58831 | 65546 | <rom name="yadamon - wonderland dreams (japan) (sample).sfc" size="1048576" crc="9424bbfa" sha1="99024eafe49fde8f1fe26f0a5e927ccb3e0e548d" offset="0x000000" /> |
| 58832 | 65547 | </dataarea> |
| r21545 | r21546 | |
| 58841 | 65556 | <info name="release" value="19931126" /> |
| 58842 | 65557 | <info name="alt_title" value="ヤダモン ワンダランドドリーム" /> |
| 58843 | 65558 | <part name="cart" interface="snes_cart"> |
| 65559 | ||
| 65560 | <feature name="slot" value="lorom" /> | |
| 58844 | 65561 | <dataarea name="rom" size="1048576"> |
| 58845 | 65562 | <rom name="yadamon - wonderland dreams (japan).sfc" size="1048576" crc="b5292147" sha1="f13365792c97c423c8689a143b62f85d5f6ad3d1" offset="0x000000" /> |
| 58846 | 65563 | </dataarea> |
| r21545 | r21546 | |
| 58857 | 65574 | <info name="release" value="19950616" /> |
| 58858 | 65575 | <info name="alt_title" value="夜光虫" /> |
| 58859 | 65576 | <part name="cart" interface="snes_cart"> |
| 65577 | ||
| 65578 | <feature name="slot" value="lorom" /> | |
| 58860 | 65579 | <dataarea name="rom" size="2097152"> |
| 58861 | 65580 | <rom name="yakouchuu (japan).sfc" size="2097152" crc="0cd0e8d8" sha1="000e0846e4b5514138d435ebbe50b23294fdd921" offset="0x000000" /> |
| 58862 | 65581 | </dataarea> |
| r21545 | r21546 | |
| 58873 | 65592 | <info name="release" value="19950217" /> |
| 58874 | 65593 | <info name="alt_title" value="ヤムヤム" /> |
| 58875 | 65594 | <part name="cart" interface="snes_cart"> |
| 65595 | ||
| 65596 | <feature name="slot" value="hirom" /> | |
| 58876 | 65597 | <dataarea name="rom" size="1572864"> |
| 58877 | 65598 | <rom name="yam yam (japan).sfc" size="1572864" crc="4620c386" sha1="f9e132c783bc6df4b065739e4bb0be11e4470cd2" offset="0x000000" /> |
| 58878 | 65599 | </dataarea> |
| r21545 | r21546 | |
| 58889 | 65610 | <info name="release" value="19940617" /> |
| 58890 | 65611 | <info name="alt_title" value="やまねこバブジーの大冒険" /> |
| 58891 | 65612 | <part name="cart" interface="snes_cart"> |
| 65613 | ||
| 65614 | <feature name="slot" value="lorom" /> | |
| 58892 | 65615 | <dataarea name="rom" size="2097152"> |
| 58893 | 65616 | <rom name="yamaneko bubsy no daibouken (japan).sfc" size="2097152" crc="90387380" sha1="ac97af97cf69a1d958457d7d8248f663cb0d1d18" offset="0x000000" /> |
| 58894 | 65617 | </dataarea> |
| r21545 | r21546 | |
| 58903 | 65626 | <info name="release" value="19950103" /> |
| 58904 | 65627 | <info name="alt_title" value="ヨギーベア" /> |
| 58905 | 65628 | <part name="cart" interface="snes_cart"> |
| 65629 | ||
| 65630 | <feature name="slot" value="lorom" /> | |
| 58906 | 65631 | <dataarea name="rom" size="1048576"> |
| 58907 | 65632 | <rom name="yogi bear (japan).sfc" size="1048576" crc="1a6f48a5" sha1="bec43433ee8de72adc168a2169195a8bae703740" offset="0x000000" /> |
| 58908 | 65633 | </dataarea> |
| r21545 | r21546 | |
| 58914 | 65639 | <year>1994</year> |
| 58915 | 65640 | <publisher>Empire Interactive</publisher> |
| 58916 | 65641 | <part name="cart" interface="snes_cart"> |
| 65642 | ||
| 65643 | <feature name="slot" value="lorom" /> | |
| 58917 | 65644 | <dataarea name="rom" size="1048576"> |
| 58918 | 65645 | <rom name="yogi bear's cartoon capers (europe).sfc" size="1048576" crc="31703471" sha1="f2e7853b18613cba9a529676bb8f91275a400341" offset="0x000000" /> |
| 58919 | 65646 | </dataarea> |
| r21545 | r21546 | |
| 58928 | 65655 | <info name="release" value="19941222" /> |
| 58929 | 65656 | <info name="alt_title" value="横山光輝 三国志盤戯 スゴロク英 雄記" /> |
| 58930 | 65657 | <part name="cart" interface="snes_cart"> |
| 65658 | ||
| 65659 | <feature name="slot" value="hirom" /> | |
| 58931 | 65660 | <dataarea name="rom" size="1572864"> |
| 58932 | 65661 | <rom name="yokoyama mitsuteru sangokushi bangi - sugoroku eiyuuki (japan).sfc" size="1572864" crc="08f8cc16" sha1="d5151775058c5738397a74cb1072bdbc806cb917" offset="0x000000" /> |
| 58933 | 65662 | </dataarea> |
| r21545 | r21546 | |
| 58944 | 65673 | <info name="release" value="19940825" /> |
| 58945 | 65674 | <info name="alt_title" value="横綱物語" /> |
| 58946 | 65675 | <part name="cart" interface="snes_cart"> |
| 65676 | ||
| 65677 | <feature name="slot" value="lorom" /> | |
| 58947 | 65678 | <dataarea name="rom" size="1048576"> |
| 58948 | 65679 | <rom name="yokozuna monogatari (japan).sfc" size="1048576" crc="dda56921" sha1="8f746b8acda8fa29d85c7b90a4e64b58552176a9" offset="0x000000" /> |
| 58949 | 65680 | </dataarea> |
| r21545 | r21546 | |
| 58960 | 65691 | <info name="release" value="19930709" /> |
| 58961 | 65692 | <info name="alt_title" value="ヨッシーのクッキー" /> |
| 58962 | 65693 | <part name="cart" interface="snes_cart"> |
| 65694 | ||
| 65695 | <feature name="slot" value="lorom" /> | |
| 58963 | 65696 | <dataarea name="rom" size="524288"> |
| 58964 | 65697 | <rom name="yoshi no cookie (japan).sfc" size="524288" crc="1e1aa75f" sha1="a7261fe214888346129b322012521d80a9d15319" offset="0x000000" /> |
| 58965 | 65698 | </dataarea> |
| r21545 | r21546 | |
| 58973 | 65706 | <info name="serial" value="SHVC-YO" /> |
| 58974 | 65707 | <info name="alt_title" value="ヨッシーのクッキー クルッポンオーブンでクッキー" /> |
| 58975 | 65708 | <part name="cart" interface="snes_cart"> |
| 65709 | ||
| 65710 | <feature name="slot" value="lorom" /> | |
| 58976 | 65711 | <dataarea name="rom" size="1048576"> |
| 58977 | 65712 | <rom name="yoshi no cookie - kuruppon oven de cookie (japan).sfc" size="1048576" crc="0c52e145" sha1="f68881ba0cd10224d4db4a9a82ce35cdf418f7e8" offset="0x000000" /> |
| 58978 | 65713 | </dataarea> |
| r21545 | r21546 | |
| 58984 | 65719 | <year>1993</year> |
| 58985 | 65720 | <publisher>Nintendo</publisher> |
| 58986 | 65721 | <part name="cart" interface="snes_cart"> |
| 65722 | ||
| 65723 | <feature name="slot" value="lorom" /> | |
| 58987 | 65724 | <dataarea name="rom" size="524288"> |
| 58988 | 65725 | <rom name="yoshi's cookie (europe).sfc" size="524288" crc="5fb6e4e9" sha1="d6f851f35faccbfc1a184d826f44a0fc9f364821" offset="0x000000" /> |
| 58989 | 65726 | </dataarea> |
| r21545 | r21546 | |
| 58996 | 65733 | <publisher>Bullet-Proof Software</publisher> |
| 58997 | 65734 | <info name="release" value="199306xx" /> |
| 58998 | 65735 | <part name="cart" interface="snes_cart"> |
| 65736 | ||
| 65737 | <feature name="slot" value="lorom" /> | |
| 58999 | 65738 | <dataarea name="rom" size="524288"> |
| 59000 | 65739 | <rom name="yoshi's cookie (usa).sfc" size="524288" crc="ef15f4c3" sha1="764b5d62a235eb5e8915aaa3cbfaa3bdade516dd" offset="0x000000" /> |
| 59001 | 65740 | </dataarea> |
| r21545 | r21546 | |
| 59008 | 65747 | <publisher>Nintendo</publisher> |
| 59009 | 65748 | <sharedfeat name="compatibility" value="PAL"/> |
| 59010 | 65749 | <part name="cart" interface="snes_cart"> |
| 65750 | ||
| 65751 | <feature name="slot" value="lorom" /> | |
| 59011 | 65752 | <dataarea name="rom" size="1048576"> |
| 59012 | 65753 | <rom name="yoshi's safari (europe).sfc" size="1048576" crc="9a8178bf" sha1="96c4fe523a339e8e81e36cae6630c068982a5108" offset="0x000000" /> |
| 59013 | 65754 | </dataarea> |
| r21545 | r21546 | |
| 59021 | 65762 | <info name="release" value="199309xx" /> |
| 59022 | 65763 | <sharedfeat name="compatibility" value="NTSC"/> |
| 59023 | 65764 | <part name="cart" interface="snes_cart"> |
| 65765 | ||
| 65766 | <feature name="slot" value="lorom" /> | |
| 59024 | 65767 | <dataarea name="rom" size="1048576"> |
| 59025 | 65768 | <rom name="yoshi's safari (usa).sfc" size="1048576" crc="59490ce8" sha1="caab75bee99abbce7b812410491a9e6e0ebad9be" offset="0x000000" /> |
| 59026 | 65769 | </dataarea> |
| r21545 | r21546 | |
| 59035 | 65778 | <info name="release" value="19960126" /> |
| 59036 | 65779 | <info name="alt_title" value="幼稚園戦記まだら" /> |
| 59037 | 65780 | <part name="cart" interface="snes_cart"> |
| 65781 | ||
| 65782 | <feature name="slot" value="lorom" /> | |
| 59038 | 65783 | <dataarea name="rom" size="2097152"> |
| 59039 | 65784 | <rom name="youchien senki madara (japan).sfc" size="2097152" crc="c85236a4" sha1="74701bf9f073d106c2805654ee1b1b294e00d162" offset="0x000000" /> |
| 59040 | 65785 | </dataarea> |
| r21545 | r21546 | |
| 59051 | 65796 | <info name="release" value="19950609" /> |
| 59052 | 65797 | <info name="alt_title" value="妖怪バスター ルカの大冒険" /> |
| 59053 | 65798 | <part name="cart" interface="snes_cart"> |
| 65799 | ||
| 65800 | <feature name="slot" value="lorom" /> | |
| 59054 | 65801 | <dataarea name="rom" size="1048576"> |
| 59055 | 65802 | <rom name="youkai buster - ruka no daibouken (japan).sfc" size="1048576" crc="e6d19429" sha1="808c4c4b68ffc3ab7a8c3793d2f91909b067357d" offset="0x000000" /> |
| 59056 | 65803 | </dataarea> |
| r21545 | r21546 | |
| 59062 | 65809 | <year>1994</year> |
| 59063 | 65810 | <publisher>Virgin Interactive</publisher> |
| 59064 | 65811 | <part name="cart" interface="snes_cart"> |
| 65812 | ||
| 65813 | <feature name="slot" value="lorom" /> | |
| 59065 | 65814 | <dataarea name="rom" size="2097152"> |
| 59066 | 65815 | <rom name="young merlin (europe).sfc" size="2097152" crc="d5e69dc4" sha1="8e0da5960039de1d25c18eaaf8f9d8f3b2f125e9" offset="0x000000" /> |
| 59067 | 65816 | </dataarea> |
| r21545 | r21546 | |
| 59074 | 65823 | <publisher>Virgin Interactive</publisher> |
| 59075 | 65824 | <info name="release" value="199403xx" /> |
| 59076 | 65825 | <part name="cart" interface="snes_cart"> |
| 65826 | ||
| 65827 | <feature name="slot" value="lorom" /> | |
| 59077 | 65828 | <dataarea name="rom" size="2097152"> |
| 59078 | 65829 | <rom name="young merlin (usa).sfc" size="2097152" crc="7ea1afe8" sha1="8534ddfa5cee1fa4a2c7ff045bfa5a4c8abeb296" offset="0x000000" /> |
| 59079 | 65830 | </dataarea> |
| r21545 | r21546 | |
| 59089 | 65840 | <info name="alt_title" value="イースVエキスパート" /> |
| 59090 | 65841 | <sharedfeat name="compatibility" value="NTSC"/> |
| 59091 | 65842 | <part name="cart" interface="snes_cart"> |
| 65843 | ||
| 65844 | <feature name="slot" value="lorom" /> | |
| 59092 | 65845 | <dataarea name="rom" size="3145728"> |
| 59093 | 65846 | <rom name="ys v - expert (japan).sfc" size="3145728" crc="cfe632b9" sha1="32f1b965ea882e0ac1938214c2a30ea6adaae22f" offset="0x000000" /> |
| 59094 | 65847 | </dataarea> |
| r21545 | r21546 | |
| 59106 | 65859 | <info name="alt_title" value="イースV 失われた砂の都ケフィン" /> |
| 59107 | 65860 | <sharedfeat name="compatibility" value="NTSC"/> |
| 59108 | 65861 | <part name="cart" interface="snes_cart"> |
| 65862 | ||
| 65863 | <feature name="slot" value="lorom" /> | |
| 59109 | 65864 | <dataarea name="rom" size="3145728"> |
| 59110 | 65865 | <rom name="ys v - ushinawareta suna no miyako kefin (japan).sfc" size="3145728" crc="5e08c48c" sha1="a308ad983c19b9ffe047b9f91c9fdfea9cfb6bab" offset="0x000000" /> |
| 59111 | 65866 | </dataarea> |
| r21545 | r21546 | |
| 59122 | 65877 | <info name="release" value="19931217" /> |
| 59123 | 65878 | <info name="alt_title" value="夢幻の如く" /> |
| 59124 | 65879 | <part name="cart" interface="snes_cart"> |
| 65880 | ||
| 65881 | <feature name="slot" value="lorom" /> | |
| 59125 | 65882 | <dataarea name="rom" size="1572864"> |
| 59126 | 65883 | <rom name="yumemaboroshi no gotoku (japan).sfc" size="1572864" crc="8f44fff9" sha1="679aa3bdeedb9f68ecb8ab944bda817742d82688" offset="0x000000" /> |
| 59127 | 65884 | </dataarea> |
| r21545 | r21546 | |
| 59139 | 65896 | <info name="alt_title" value="幽☆遊☆白書 ファイナル魔界最強列伝" /> |
| 59140 | 65897 | <sharedfeat name="compatibility" value="NTSC"/> |
| 59141 | 65898 | <part name="cart" interface="snes_cart"> |
| 65899 | ||
| 65900 | <feature name="slot" value="hirom" /> | |
| 59142 | 65901 | <dataarea name="rom" size="3145728"> |
| 59143 | 65902 | <rom name="yuu yuu hakusho final - makai saikyou retsuden (japan).sfc" size="3145728" crc="5617a42e" sha1="73a444501a9aecc390ec9dfa6d6726e0e2fced9a" offset="0x000000" /> |
| 59144 | 65903 | </dataarea> |
| r21545 | r21546 | |
| 59153 | 65912 | <info name="release" value="19951222" /> |
| 59154 | 65913 | <info name="alt_title" value="ざくろの味" /> |
| 59155 | 65914 | <part name="cart" interface="snes_cart"> |
| 65915 | ||
| 65916 | <feature name="slot" value="lorom" /> | |
| 59156 | 65917 | <dataarea name="rom" size="2097152"> |
| 59157 | 65918 | <rom name="zakuro no aji (japan).sfc" size="2097152" crc="6391f9b3" sha1="6b1c7e9dfe934da5559427efe50b0a373f9f8157" offset="0x000000" /> |
| 59158 | 65919 | </dataarea> |
| r21545 | r21546 | |
| 59169 | 65930 | <info name="release" value="19920529" /> |
| 59170 | 65931 | <info name="alt_title" value="斬II スピリッツ" /> |
| 59171 | 65932 | <part name="cart" interface="snes_cart"> |
| 65933 | ||
| 65934 | <feature name="slot" value="lorom" /> | |
| 59172 | 65935 | <dataarea name="rom" size="1048576"> |
| 59173 | 65936 | <rom name="zan ii spirits (japan).sfc" size="1048576" crc="39942e05" sha1="731d7d56bafca7b5a6613cba10f1872ef326f60a" offset="0x000000" /> |
| 59174 | 65937 | </dataarea> |
| r21545 | r21546 | |
| 59185 | 65948 | <info name="release" value="19940311" /> |
| 59186 | 65949 | <info name="alt_title" value="斬III スピリッツ" /> |
| 59187 | 65950 | <part name="cart" interface="snes_cart"> |
| 65951 | ||
| 65952 | <feature name="slot" value="lorom" /> | |
| 59188 | 65953 | <dataarea name="rom" size="1572864"> |
| 59189 | 65954 | <rom name="zan iii spirits (japan).sfc" size="1572864" crc="9826771b" sha1="28997ef8dd8640ed33e0676e363c6fca96d37548" offset="0x000000" /> |
| 59190 | 65955 | </dataarea> |
| r21545 | r21546 | |
| 59201 | 65966 | <info name="release" value="19950929" /> |
| 59202 | 65967 | <info name="alt_title" value="全日本GT選手権" /> |
| 59203 | 65968 | <part name="cart" interface="snes_cart"> |
| 65969 | ||
| 65970 | <feature name="slot" value="lorom" /> | |
| 59204 | 65971 | <dataarea name="rom" size="2097152"> |
| 59205 | 65972 | <rom name="zen-nihon gt senshuken (japan).sfc" size="2097152" crc="5409d4f4" sha1="511bb35791a6c2d47b6cae659c4d9741c3c76f23" offset="0x000000" /> |
| 59206 | 65973 | </dataarea> |
| r21545 | r21546 | |
| 59215 | 65982 | <info name="release" value="19940625" /> |
| 59216 | 65983 | <info name="alt_title" value="全日本プロレス ファイト だポン!" /> |
| 59217 | 65984 | <part name="cart" interface="snes_cart"> |
| 65985 | ||
| 65986 | <feature name="slot" value="hirom" /> | |
| 59218 | 65987 | <dataarea name="rom" size="1048576"> |
| 59219 | 65988 | <rom name="zen-nihon pro wrestling - fight da pon! (japan).sfc" size="1048576" crc="379645bd" sha1="52aa5ce4612b81c90fd07f6c3dc9a712afb32668" offset="0x000000" /> |
| 59220 | 65989 | </dataarea> |
| r21545 | r21546 | |
| 59229 | 65998 | <info name="release" value="19931228" /> |
| 59230 | 65999 | <info name="alt_title" value="全日本プロレス’ 世界最強タッグ" /> |
| 59231 | 66000 | <part name="cart" interface="snes_cart"> |
| 66001 | ||
| 66002 | <feature name="slot" value="hirom" /> | |
| 59232 | 66003 | <dataarea name="rom" size="2097152"> |
| 59233 | 66004 | <rom name="zen-nihon pro wrestling' - sekai saikyou tag (japan).sfc" size="2097152" crc="a5f59477" sha1="e33dd8b5d1bc99d8c1bea57672b73a24faaba5c0" offset="0x000000" /> |
| 59234 | 66005 | </dataarea> |
| r21545 | r21546 | |
| 59243 | 66014 | <info name="release" value="19951110" /> |
| 59244 | 66015 | <info name="alt_title" value="全国縦断ウルトラ心理ゲーム" /> |
| 59245 | 66016 | <part name="cart" interface="snes_cart"> |
| 66017 | ||
| 66018 | <feature name="slot" value="hirom" /> | |
| 59246 | 66019 | <dataarea name="rom" size="1048576"> |
| 59247 | 66020 | <rom name="zenkoku juudan ultra shinri game (japan).sfc" size="1048576" crc="b1a104e6" sha1="aefd1d1de03b15ce0a91143ec72c1094c784d304" offset="0x000000" /> |
| 59248 | 66021 | </dataarea> |
| r21545 | r21546 | |
| 59257 | 66030 | <info name="release" value="19941125" /> |
| 59258 | 66031 | <info name="alt_title" value="全国高校サッカー" /> |
| 59259 | 66032 | <part name="cart" interface="snes_cart"> |
| 66033 | ||
| 66034 | <feature name="slot" value="lorom" /> | |
| 59260 | 66035 | <dataarea name="rom" size="1048576"> |
| 59261 | 66036 | <rom name="zenkoku koukou soccer (japan).sfc" size="1048576" crc="d575fdfc" sha1="0195016fd5a062a0382bb123675b54bbbebbe454" offset="0x000000" /> |
| 59262 | 66037 | </dataarea> |
| r21545 | r21546 | |
| 59273 | 66048 | <info name="release" value="19951117" /> |
| 59274 | 66049 | <info name="alt_title" value="全国高校サッカー2" /> |
| 59275 | 66050 | <part name="cart" interface="snes_cart"> |
| 66051 | ||
| 66052 | <feature name="slot" value="hirom" /> | |
| 59276 | 66053 | <dataarea name="rom" size="1048576"> |
| 59277 | 66054 | <rom name="zenkoku koukou soccer 2 (japan).sfc" size="1048576" crc="6af63041" sha1="e8bc0a3eed0206979b79ea676f8d6c0f904bdb61" offset="0x000000" /> |
| 59278 | 66055 | </dataarea> |
| r21545 | r21546 | |
| 59290 | 66067 | <info name="alt_title" value="ゼロヨンチャンプ ダブルアール" /> |
| 59291 | 66068 | <sharedfeat name="compatibility" value="NTSC"/> |
| 59292 | 66069 | <part name="cart" interface="snes_cart"> |
| 66070 | ||
| 66071 | <feature name="slot" value="lorom" /> | |
| 59293 | 66072 | <dataarea name="rom" size="2097152"> |
| 59294 | 66073 | <rom name="zero 4 champ rr (japan).sfc" size="2097152" crc="48e9887f" sha1="b4d2f8c26d8aac46bb56fb318084b968bfc04241" offset="0x000000" /> |
| 59295 | 66074 | </dataarea> |
| r21545 | r21546 | |
| 59306 | 66085 | <info name="release" value="19951125" /> |
| 59307 | 66086 | <info name="alt_title" value="ゼロヨンチャンプ ダブルアール・ヅィー" /> |
| 59308 | 66087 | <part name="cart" interface="snes_cart"> |
| 66088 | ||
| 66089 | <feature name="slot" value="hirom" /> | |
| 59309 | 66090 | <dataarea name="rom" size="3145728"> |
| 59310 | 66091 | <rom name="zero 4 champ rr-z (japan).sfc" size="3145728" crc="3c6a8dc8" sha1="b90575f1c2631cdea02d733ab8e793e82d3a8635" offset="0x000000" /> |
| 59311 | 66092 | </dataarea> |
| r21545 | r21546 | |
| 59319 | 66100 | <year>1994</year> |
| 59320 | 66101 | <publisher>Sunsoft</publisher> |
| 59321 | 66102 | <part name="cart" interface="snes_cart"> |
| 66103 | ||
| 66104 | <feature name="slot" value="lorom" /> | |
| 59322 | 66105 | <dataarea name="rom" size="2097152"> |
| 59323 | 66106 | <rom name="zero the kamikaze squirrel (europe) (rev 1).sfc" size="2097152" crc="f4830329" sha1="c00bbb06db50f7d1a9f15a2de1b44b20d2d34abd" offset="0x000000" /> |
| 59324 | 66107 | </dataarea> |
| r21545 | r21546 | |
| 59330 | 66113 | <year>1994</year> |
| 59331 | 66114 | <publisher>Sunsoft</publisher> |
| 59332 | 66115 | <part name="cart" interface="snes_cart"> |
| 66116 | ||
| 66117 | <feature name="slot" value="lorom" /> | |
| 59333 | 66118 | <dataarea name="rom" size="2097152"> |
| 59334 | 66119 | <rom name="zero the kamikaze squirrel (europe).sfc" size="2097152" crc="64d7b231" sha1="5339b9f100f51cfe64ca71173f7722cdb0077d5d" offset="0x000000" /> |
| 59335 | 66120 | </dataarea> |
| r21545 | r21546 | |
| 59344 | 66129 | <info name="release" value="19940304" /> |
| 59345 | 66130 | <info name="alt_title" value="ジーコ サッカー" /> |
| 59346 | 66131 | <part name="cart" interface="snes_cart"> |
| 66132 | ||
| 66133 | <feature name="slot" value="lorom" /> | |
| 59347 | 66134 | <dataarea name="rom" size="1048576"> |
| 59348 | 66135 | <rom name="zico soccer (japan).sfc" size="1048576" crc="fe66fef2" sha1="fa665ba625db778ba102e1b8164bc86926bd3904" offset="0x000000" /> |
| 59349 | 66136 | </dataarea> |
| r21545 | r21546 | |
| 59358 | 66145 | <info name="release" value="19940624" /> |
| 59359 | 66146 | <info name="alt_title" value="ジグザグキャットダチョウ倶楽 部も大騒ぎタ" /> |
| 59360 | 66147 | <part name="cart" interface="snes_cart"> |
| 66148 | ||
| 66149 | <feature name="slot" value="hirom" /> | |
| 59361 | 66150 | <dataarea name="rom" size="1572864"> |
| 59362 | 66151 | <rom name="zig zag cat - dachou club mo oosawagi da (japan).sfc" size="1572864" crc="53554d5e" sha1="fd1262a5e51bc76400a10e0673231aa7bfa0cffa" offset="0x000000" /> |
| 59363 | 66152 | </dataarea> |
| r21545 | r21546 | |
| 59371 | 66160 | <year>1993</year> |
| 59372 | 66161 | <publisher>Konami</publisher> |
| 59373 | 66162 | <part name="cart" interface="snes_cart"> |
| 66163 | ||
| 66164 | <feature name="slot" value="lorom" /> | |
| 59374 | 66165 | <dataarea name="rom" size="1048576"> |
| 59375 | 66166 | <rom name="zombies (europe) (beta).sfc" size="1048576" crc="399669f2" sha1="ba7d1ef309b5a6e560d021faf306a3f12f8f4dce" offset="0x000000" /> |
| 59376 | 66167 | </dataarea> |
| r21545 | r21546 | |
| 59383 | 66174 | <publisher>Konami</publisher> |
| 59384 | 66175 | <sharedfeat name="compatibility" value="PAL"/> |
| 59385 | 66176 | <part name="cart" interface="snes_cart"> |
| 66177 | ||
| 66178 | <feature name="slot" value="lorom" /> | |
| 59386 | 66179 | <dataarea name="rom" size="1048576"> |
| 59387 | 66180 | <rom name="zombies (europe).sfc" size="1048576" crc="fabff8bd" sha1="b378006fcf270ac8dd3b960a5d432024248cdb21" offset="0x000000" /> |
| 59388 | 66181 | </dataarea> |
| r21545 | r21546 | |
| 59396 | 66189 | <info name="release" value="199309xx" /> |
| 59397 | 66190 | <sharedfeat name="compatibility" value="NTSC"/> |
| 59398 | 66191 | <part name="cart" interface="snes_cart"> |
| 66192 | ||
| 66193 | <feature name="slot" value="lorom" /> | |
| 59399 | 66194 | <dataarea name="rom" size="1048576"> |
| 59400 | 66195 | <rom name="zombies ate my neighbors (usa).sfc" size="1048576" crc="7cfc0c7c" sha1="1be79496d7a38b293d6a5d9fba0e16f3cb37d5ff" offset="0x000000" /> |
| 59401 | 66196 | </dataarea> |
| r21545 | r21546 | |
| 59407 | 66202 | <year>1994</year> |
| 59408 | 66203 | <publisher>Gremlin Interactive</publisher> |
| 59409 | 66204 | <part name="cart" interface="snes_cart"> |
| 66205 | ||
| 66206 | <feature name="slot" value="lorom" /> | |
| 59410 | 66207 | <dataarea name="rom" size="1048576"> |
| 59411 | 66208 | <rom name="zool - ninja of the nth dimension (europe).sfc" size="1048576" crc="1188c64e" sha1="40e648d159bb94387f580a3b86b7a7bc3dfe3274" offset="0x000000" /> |
| 59412 | 66209 | </dataarea> |
| r21545 | r21546 | |
| 59418 | 66215 | <year>1994</year> |
| 59419 | 66216 | <publisher>GameTek</publisher> |
| 59420 | 66217 | <part name="cart" interface="snes_cart"> |
| 66218 | ||
| 66219 | <feature name="slot" value="lorom" /> | |
| 59421 | 66220 | <dataarea name="rom" size="1048576"> |
| 59422 | 66221 | <rom name="zool - ninja of the nth dimension (usa) (sample).sfc" size="1048576" crc="b4fcb68c" sha1="c0ea1c199cba274eba5d52a1ac8c1a7eccfe75db" offset="0x000000" /> |
| 59423 | 66222 | </dataarea> |
| r21545 | r21546 | |
| 59434 | 66233 | <info name="release" value="19940729" /> |
| 59435 | 66234 | <info name="alt_title" value="ズールのゆめぼうけん" /> |
| 59436 | 66235 | <part name="cart" interface="snes_cart"> |
| 66236 | ||
| 66237 | <feature name="slot" value="lorom" /> | |
| 59437 | 66238 | <dataarea name="rom" size="1048576"> |
| 59438 | 66239 | <rom name="zool no yume bouken (japan).sfc" size="1048576" crc="5c2a701d" sha1="f650083142d9f3eb2bf1b315b44d18077743fe17" offset="0x000000" /> |
| 59439 | 66240 | </dataarea> |
| r21545 | r21546 | |
| 59445 | 66246 | <year>1996</year> |
| 59446 | 66247 | <publisher>Viacom New Media</publisher> |
| 59447 | 66248 | <part name="cart" interface="snes_cart"> |
| 66249 | ||
| 66250 | <feature name="slot" value="hirom" /> | |
| 59448 | 66251 | <dataarea name="rom" size="524288"> |
| 59449 | 66252 | <rom name="zoop (europe).sfc" size="524288" crc="afd45d27" sha1="3b83fc765b5ad329d5f114aceac1685c1d827697" offset="0x000000" /> |
| 59450 | 66253 | </dataarea> |
| r21545 | r21546 | |
| 59456 | 66259 | <year>1996?</year> |
| 59457 | 66260 | <publisher>Viacom New Media</publisher> |
| 59458 | 66261 | <part name="cart" interface="snes_cart"> |
| 66262 | ||
| 66263 | <feature name="slot" value="hirom" /> | |
| 59459 | 66264 | <dataarea name="rom" size="524288"> |
| 59460 | 66265 | <rom name="zoop (usa).sfc" size="524288" crc="06f0e94c" sha1="051c767b843fc4112e0b06c2f81b65abbac9e7fc" offset="0x000000" /> |
| 59461 | 66266 | </dataarea> |
| r21545 | r21546 | |
| 59470 | 66275 | <info name="release" value="19980701" /> |
| 59471 | 66276 | <info name="alt_title" value="ず~っと麻雀!" /> |
| 59472 | 66277 | <part name="cart" interface="snes_cart"> |
| 66278 | ||
| 66279 | <feature name="slot" value="hirom" /> | |
| 59473 | 66280 | <dataarea name="rom" size="2621440"> |
| 59474 | 66281 | <rom name="zootto mahjong! (japan) (np).sfc" size="2621440" crc="c167987d" sha1="21286747d360c03e3bf86cd4504508ce55deff8f" offset="0x000000" /> |
| 59475 | 66282 | </dataarea> |
| r21545 | r21546 | |
| 59479 | 66286 | </software> |
| 59480 | 66287 | |
| 59481 | 66288 | |
| 59482 | <!-- BS-X Satellaview Memory packs --> | |
| 59483 | ||
| 59484 | <software name="bsdragon" supported="no"> | |
| 59485 | <description>BS Dragon Quest I (Jpn)</description> | |
| 59486 | <!-- BS --> | |
| 59487 | <year>199?</year> | |
| 59488 | <publisher><unknown></publisher> | |
| 59489 | <part name="cart" interface="snes_cart"> | |
| 59490 | <dataarea name="rom" size="1048576"> | |
| 59491 | <rom name="bs dragon quest i (japan) [b].bs" size="1048576" crc="577f6d20" sha1="aed921ff60c7c01a80e7e8f2d24d6684465a941e" offset="0x000000" status="baddump" /> | |
| 59492 | </dataarea> | |
| 59493 | </part> | |
| 59494 | </software> | |
| 59495 | ||
| 59496 | <software name="bszeld2" supported="no"> | |
| 59497 | <description>BS Zelda no Densetsu Map 2 - Dai-4-wa (Jpn)</description> | |
| 59498 | <!-- BS --> | |
| 59499 | <year>199?</year> | |
| 59500 | <publisher><unknown></publisher> | |
| 59501 | <part name="cart" interface="snes_cart"> | |
| 59502 | <dataarea name="rom" size="1048576"> | |
| 59503 | <rom name="bs zelda no densetsu map 2 - dai-4-wa (japan) [b].bs" size="1048576" crc="670b51ca" sha1="4a53e22e2b01f55245112da5bdd24aed7a9f7c10" offset="0x000000" status="baddump" /> | |
| 59504 | </dataarea> | |
| 59505 | </part> | |
| 59506 | </software> | |
| 59507 | ||
| 59508 | <software name="bsdandnu" supported="no"> | |
| 59509 | <description>Dandan Belt Conveyor - Ukulele no Maki (Jpn)</description> | |
| 59510 | <!-- BS --> | |
| 59511 | <year>199?</year> | |
| 59512 | <publisher><unknown></publisher> | |
| 59513 | <part name="cart" interface="snes_cart"> | |
| 59514 | <dataarea name="rom" size="1048576"> | |
| 59515 | <rom name="dandan belt conveyor - ukulele no maki (japan) [b].bs" size="1048576" crc="10205b4b" sha1="da3c4c0bb0c36b7605a93fed9ff220e46d71f6d6" offset="0x000000" status="baddump" /> | |
| 59516 | </dataarea> | |
| 59517 | </part> | |
| 59518 | </software> | |
| 59519 | ||
| 59520 | <software name="bs3jiw5g" supported="no"> | |
| 59521 | <description>3-ji no Wide Shou - 5 Gatsugou (Jpn)</description> | |
| 59522 | <!-- BS --> | |
| 59523 | <year>199?</year> | |
| 59524 | <publisher><unknown></publisher> | |
| 59525 | <part name="cart" interface="snes_cart"> | |
| 59526 | <dataarea name="rom" size="524288"> | |
| 59527 | <rom name="3-ji no wide shou - 5 gatsugou (japan).bs" size="524288" crc="78ce2bf6" sha1="d9821b56e5837818875ef99734cd208aa368d23c" offset="0x000000" /> | |
| 59528 | </dataarea> | |
| 59529 | </part> | |
| 59530 | </software> | |
| 59531 | ||
| 59532 | <software name="bs3jiw6g" supported="no"> | |
| 59533 | <description>3-ji no Wide Shou - 6 Gatsugou (Jpn)</description> | |
| 59534 | <!-- BS --> | |
| 59535 | <year>199?</year> | |
| 59536 | <publisher><unknown></publisher> | |
| 59537 | <part name="cart" interface="snes_cart"> | |
| 59538 | <dataarea name="rom" size="524288"> | |
| 59539 | <rom name="3-ji no wide shou - 6 gatsugou (japan).bs" size="524288" crc="dbe754c6" sha1="8016d1d9db9af87d59edba7a4be39f46f7561253" offset="0x000000" /> | |
| 59540 | </dataarea> | |
| 59541 | </part> | |
| 59542 | </software> | |
| 59543 | ||
| 59544 | <software name="bsalbody" supported="no"> | |
| 59545 | <description>Albert Odyssey (Jpn, BS)</description> | |
| 59546 | <!-- BS --> | |
| 59547 | <year>199?</year> | |
| 59548 | <publisher><unknown></publisher> | |
| 59549 | <part name="cart" interface="snes_cart"> | |
| 59550 | <dataarea name="rom" size="1048576"> | |
| 59551 | <rom name="albert odyssey (japan).bs" size="1048576" crc="d5f6ad68" sha1="a1a682f723573254046a8af06b92fe408fc4207a" offset="0x000000" /> | |
| 59552 | </dataarea> | |
| 59553 | </part> | |
| 59554 | </software> | |
| 59555 | ||
| 59556 | <software name="bsarkand" supported="no"> | |
| 59557 | <description>Arkanoid - Doh It Again (Jpn, BS)</description> | |
| 59558 | <!-- BS --> | |
| 59559 | <year>199?</year> | |
| 59560 | <publisher><unknown></publisher> | |
| 59561 | <part name="cart" interface="snes_cart"> | |
| 59562 | <dataarea name="rom" size="524288"> | |
| 59563 | <rom name="arkanoid - doh it again (japan).bs" size="524288" crc="ded48e0a" sha1="699c4aa1045118cdc83a1cb88416f11732e69a11" offset="0x000000" /> | |
| 59564 | </dataarea> | |
| 59565 | </part> | |
| 59566 | </software> | |
| 59567 | ||
| 59568 | <software name="bsbdas2" supported="no"> | |
| 59569 | <description>B Dash - 2 Gatsugou (Jpn)</description> | |
| 59570 | <!-- BS --> | |
| 59571 | <year>199?</year> | |
| 59572 | <publisher><unknown></publisher> | |
| 59573 | <part name="cart" interface="snes_cart"> | |
| 59574 | <dataarea name="rom" size="1048576"> | |
| 59575 | <rom name="b dash - 2 gatsugou (japan).bs" size="1048576" crc="6b16f32b" sha1="60aaee780b290dd1b4ad9a339b00d76fb00f0ced" offset="0x000000" /> | |
| 59576 | </dataarea> | |
| 59577 | </part> | |
| 59578 | </software> | |
| 59579 | ||
| 59580 | <software name="bsbdas3" supported="no"> | |
| 59581 | <description>B Dash - 3 Gatsugou (Jpn)</description> | |
| 59582 | <!-- BS --> | |
| 59583 | <year>199?</year> | |
| 59584 | <publisher><unknown></publisher> | |
| 59585 | <part name="cart" interface="snes_cart"> | |
| 59586 | <dataarea name="rom" size="1048576"> | |
| 59587 | <rom name="b dash - 3 gatsugou (japan).bs" size="1048576" crc="f2630bed" sha1="be0f839f619cbd226f1499ef80fcb91ec950e74d" offset="0x000000" /> | |
| 59588 | </dataarea> | |
| 59589 | </part> | |
| 59590 | </software> | |
| 59591 | ||
| 59592 | <software name="bsfzero4" supported="no"> | |
| 59593 | <description>BS F-Zero Grand Prix - Ace League - Dai-4-shuu (Jpn)</description> | |
| 59594 | <!-- BS --> | |
| 59595 | <year>199?</year> | |
| 59596 | <publisher><unknown></publisher> | |
| 59597 | <part name="cart" interface="snes_cart"> | |
| 59598 | <dataarea name="rom" size="1048576"> | |
| 59599 | <rom name="bs f-zero grand prix - ace league - dai-4-shuu (japan).bs" size="1048576" crc="f57d28dc" sha1="2c29ebf2fece378fc4d1186d0b60fdb6db3beef0" offset="0x000000" /> | |
| 59600 | </dataarea> | |
| 59601 | </part> | |
| 59602 | </software> | |
| 59603 | ||
| 59604 | <software name="bsfzero3" supported="no"> | |
| 59605 | <description>BS F-Zero Grand Prix - King League - Dai-3-shuu (Jpn)</description> | |
| 59606 | <!-- BS --> | |
| 59607 | <year>199?</year> | |
| 59608 | <publisher><unknown></publisher> | |
| 59609 | <part name="cart" interface="snes_cart"> | |
| 59610 | <dataarea name="rom" size="1048576"> | |
| 59611 | <rom name="bs f-zero grand prix - king league - dai-3-shuu (japan).bs" size="1048576" crc="f75713db" sha1="72ce3866ce9b7edd856515b033a69ad6fa3d96ba" offset="0x000000" /> | |
| 59612 | </dataarea> | |
| 59613 | </part> | |
| 59614 | </software> | |
| 59615 | ||
| 59616 | <software name="bsfzero1" supported="no"> | |
| 59617 | <description>BS F-Zero Grand Prix - Knight League - Dai-1-shuu (Jpn)</description> | |
| 59618 | <year>199?</year> | |
| 59619 | <!-- BS --> | |
| 59620 | <publisher><unknown></publisher> | |
| 59621 | <part name="cart" interface="snes_cart"> | |
| 59622 | <dataarea name="rom" size="1048576"> | |
| 59623 | <rom name="bs f-zero grand prix - knight league - dai-1-shuu (japan).bs" size="1048576" crc="dbacf9f0" sha1="c5197d43eb637e537ad358f7b2aa01fb6acb774a" offset="0x000000" /> | |
| 59624 | </dataarea> | |
| 59625 | </part> | |
| 59626 | </software> | |
| 59627 | ||
| 59628 | <software name="bsfzero2" supported="no"> | |
| 59629 | <description>BS F-Zero Grand Prix - Queen League - Dai-2-shuu (Jpn)</description> | |
| 59630 | <!-- BS --> | |
| 59631 | <year>199?</year> | |
| 59632 | <publisher><unknown></publisher> | |
| 59633 | <part name="cart" interface="snes_cart"> | |
| 59634 | <dataarea name="rom" size="1048576"> | |
| 59635 | <rom name="bs f-zero grand prix - queen league - dai-2-shuu (japan).bs" size="1048576" crc="ee6c9473" sha1="15050b25916eb39caf16b5f4cc3e391693251580" offset="0x000000" /> | |
| 59636 | </dataarea> | |
| 59637 | </part> | |
| 59638 | </software> | |
| 59639 | ||
| 59640 | <software name="bsfzgp2" supported="no"> | |
| 59641 | <description>BS F-Zero Grand Prix 2 - Practice (Jpn)</description> | |
| 59642 | <year>199?</year> | |
| 59643 | <!-- BS --> | |
| 59644 | <publisher><unknown></publisher> | |
| 59645 | <part name="cart" interface="snes_cart"> | |
| 59646 | <dataarea name="rom" size="1048576"> | |
| 59647 | <rom name="bs f-zero grand prix 2 - practice (japan).bs" size="1048576" crc="c4808858" sha1="881ef90e6dca67895a6096db20c5cea13de13baa" offset="0x000000" /> | |
| 59648 | </dataarea> | |
| 59649 | </part> | |
| 59650 | </software> | |
| 59651 | ||
| 59652 | <software name="bsfirem1" supported="no"> | |
| 59653 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-1-wa - Palace Kanraku (Jpn, 0929)</description> | |
| 59654 | <year>199?</year> | |
| 59655 | <!-- BS --> | |
| 59656 | <publisher><unknown></publisher> | |
| 59657 | <part name="cart" interface="snes_cart"> | |
| 59658 | <dataarea name="rom" size="1048576"> | |
| 59659 | <rom name="bs fire emblem - akaneia senki hen - dai-1-wa - palace kanraku (r) (9-29).bs" size="1048576" crc="2bcdf855" sha1="da2c02ff04d454a183c9e07df5323adfe0961ce8" offset="0x000000" /> | |
| 59660 | </dataarea> | |
| 59661 | </part> | |
| 59662 | </software> | |
| 59663 | ||
| 59664 | <software name="bsfirem1a" cloneof="bsfirem1" supported="no"> | |
| 59665 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-1-wa - Palace Kanraku (Jpn, 0404)</description> | |
| 59666 | <year>199?</year> | |
| 59667 | <!-- BS --> | |
| 59668 | <publisher><unknown></publisher> | |
| 59669 | <part name="cart" interface="snes_cart"> | |
| 59670 | <dataarea name="rom" size="1048576"> | |
| 59671 | <rom name="bs fire emblem - akaneia senki hen - dai-1-wa - palace kanraku (japan).bs" size="1048576" crc="14915411" sha1="0b22231d4d4a18183d5b8ce90510efab6456ca3d" offset="0x000000" /> | |
| 59672 | </dataarea> | |
| 59673 | </part> | |
| 59674 | </software> | |
| 59675 | ||
| 59676 | <software name="bsfirem2" supported="no"> | |
| 59677 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-2-wa - Akai Ryuu Kishi (Jpn)</description> | |
| 59678 | <year>199?</year> | |
| 59679 | <!-- BS --> | |
| 59680 | <publisher><unknown></publisher> | |
| 59681 | <part name="cart" interface="snes_cart"> | |
| 59682 | <dataarea name="rom" size="1048576"> | |
| 59683 | <rom name="bs fire emblem - akaneia senki hen - dai-2-wa - akai ryuu kishi (japan).bs" size="1048576" crc="bb73aadf" sha1="e400fe6080809fd4909091f9af42ae5413b8415f" offset="0x000000" /> | |
| 59684 | </dataarea> | |
| 59685 | </part> | |
| 59686 | </software> | |
| 59687 | ||
| 59688 | <software name="bsfirem3" supported="no"> | |
| 59689 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-3-wa - Seigi no Touzokudan (Jpn)</description> | |
| 59690 | <!-- BS --> | |
| 59691 | <year>199?</year> | |
| 59692 | <publisher><unknown></publisher> | |
| 59693 | <part name="cart" interface="snes_cart"> | |
| 59694 | <dataarea name="rom" size="1048576"> | |
| 59695 | <rom name="bs fire emblem - akaneia senki hen - dai-3-wa - seigi no touzokudan (japan).bs" size="1048576" crc="4ac9d49c" sha1="5e0996433e0384d7d209a9e11a7671ff4dea9cf1" offset="0x000000" /> | |
| 59696 | </dataarea> | |
| 59697 | </part> | |
| 59698 | </software> | |
| 59699 | ||
| 59700 | <software name="bsfirem4" supported="no"> | |
| 59701 | <description>BS Fire Emblem - Akaneia Senki Hen - Dai-4-wa - Hajimari no Toki (Jpn)</description> | |
| 59702 | <!-- BS --> | |
| 59703 | <year>199?</year> | |
| 59704 | <publisher><unknown></publisher> | |
| 59705 | <part name="cart" interface="snes_cart"> | |
| 59706 | <dataarea name="rom" size="1048576"> | |
| 59707 | <rom name="bs fire emblem - akaneia senki hen - dai-4-wa - hajimari no toki (japan).bs" size="1048576" crc="0b4b6c1f" sha1="3b0568bb44e3ac728fe4723c6d2e2de1ee8f7bb4" offset="0x000000" /> | |
| 59708 | </dataarea> | |
| 59709 | </part> | |
| 59710 | </software> | |
| 59711 | ||
| 59712 | <software name="bsfuurai" supported="no"> | |
| 59713 | <description>BS Fuurai no Shiren - Surara o Sukue - Dai-2-shuu (Jpn)</description> | |
| 59714 | <!-- BS --> | |
| 59715 | <year>199?</year> | |
| 59716 | <publisher><unknown></publisher> | |
| 59717 | <part name="cart" interface="snes_cart"> | |
| 59718 | <dataarea name="rom" size="1048576"> | |
| 59719 | <rom name="bs fuurai no shiren - surara o sukue - dai-2-shuu (japan).bs" size="1048576" crc="882bf819" sha1="dfdd964e323e677fcc3e3807fff8c98ee3aca4b4" offset="0x000000" /> | |
| 59720 | </dataarea> | |
| 59721 | </part> | |
| 59722 | </software> | |
| 59723 | ||
| 59724 | <software name="bscamp1" supported="no"> | |
| 59725 | <description>BS Marvelous - Camp Arnold Course - Dai-1-shuu (Jpn)</description> | |
| 59726 | <!-- BS --> | |
| 59727 | <year>199?</year> | |
| 59728 | <publisher><unknown></publisher> | |
| 59729 | <part name="cart" interface="snes_cart"> | |
| 59730 | <dataarea name="rom" size="1048576"> | |
| 59731 | <rom name="bs marvelous - camp arnold course - dai-1-shuu (japan).bs" size="1048576" crc="6b90c767" sha1="8d15078191f7b7b49b7dda602207456a7caf3b12" offset="0x000000" /> | |
| 59732 | </dataarea> | |
| 59733 | </part> | |
| 59734 | </software> | |
| 59735 | ||
| 59736 | <software name="bscamp2" supported="no"> | |
| 59737 | <description>BS Marvelous - Camp Arnold Course - Dai-2-shuu (Jpn)</description> | |
| 59738 | <!-- BS --> | |
| 59739 | <year>199?</year> | |
| 59740 | <publisher><unknown></publisher> | |
| 59741 | <part name="cart" interface="snes_cart"> | |
| 59742 | <dataarea name="rom" size="1048576"> | |
| 59743 | <rom name="bs marvelous - camp arnold course - dai-2-shuu (japan).bs" size="1048576" crc="f5357704" sha1="fc3d84ad42ebda1f81ea5620f313675076b2f80b" offset="0x000000" /> | |
| 59744 | </dataarea> | |
| 59745 | </part> | |
| 59746 | </software> | |
| 59747 | ||
| 59748 | <software name="bscamp3" supported="no"> | |
| 59749 | <description>BS Marvelous - Camp Arnold Course - Dai-3-shuu (Jpn)</description> | |
| 59750 | <!-- BS --> | |
| 59751 | <year>199?</year> | |
| 59752 | <publisher><unknown></publisher> | |
| 59753 | <part name="cart" interface="snes_cart"> | |
| 59754 | <dataarea name="rom" size="1048576"> | |
| 59755 | <rom name="bs marvelous - camp arnold course - dai-3-shuu (japan).bs" size="1048576" crc="2b87dbaa" sha1="c89632aec2699e3adbb449b841ec7c582aac58b2" offset="0x000000" /> | |
| 59756 | </dataarea> | |
| 59757 | </part> | |
| 59758 | </software> | |
| 59759 | ||
| 59760 | <software name="bscamp4" supported="no"> | |
| 59761 | <description>BS Marvelous - Camp Arnold Course - Dai-4-shuu (Jpn)</description> | |
| 59762 | <!-- BS --> | |
| 59763 | <year>199?</year> | |
| 59764 | <publisher><unknown></publisher> | |
| 59765 | <part name="cart" interface="snes_cart"> | |
| 59766 | <dataarea name="rom" size="1048576"> | |
| 59767 | <rom name="bs marvelous - camp arnold course - dai-4-shuu (japan).bs" size="1048576" crc="6986937e" sha1="4a7336cd58e5da4256bb7ac64716bd9fac445be4" offset="0x000000" /> | |
| 59768 | </dataarea> | |
| 59769 | </part> | |
| 59770 | </software> | |
| 59771 | ||
| 59772 | <software name="bstime1" supported="no"> | |
| 59773 | <description>BS Marvelous - Time Athletic Course - Dai-1-shuu (Jpn)</description> | |
| 59774 | <!-- BS --> | |
| 59775 | <year>199?</year> | |
| 59776 | <publisher><unknown></publisher> | |
| 59777 | <part name="cart" interface="snes_cart"> | |
| 59778 | <dataarea name="rom" size="1048576"> | |
| 59779 | <rom name="bs marvelous - time athletic course - dai-1-shuu (japan).bs" size="1048576" crc="1639db9d" sha1="4d63a2457303bb55b5f647614c321881155dedaa" offset="0x000000" /> | |
| 59780 | </dataarea> | |
| 59781 | </part> | |
| 59782 | </software> | |
| 59783 | ||
| 59784 | <software name="bstime2" supported="no"> | |
| 59785 | <description>BS Marvelous - Time Athletic Course - Dai-2-shuu (Jpn)</description> | |
| 59786 | <year>199?</year> | |
| 59787 | <publisher><unknown></publisher> | |
| 59788 | <part name="cart" interface="snes_cart"> | |
| 59789 | <dataarea name="rom" size="1048576"> | |
| 59790 | <rom name="bs marvelous - time athletic course - dai-2-shuu (japan).bs" size="1048576" crc="27d62709" sha1="f9347676f342a3d692f1af799ea0b7f84711e80b" offset="0x000000" /> | |
| 59791 | </dataarea> | |
| 59792 | </part> | |
| 59793 | </software> | |
| 59794 | ||
| 59795 | <software name="bstime3" supported="no"> | |
| 59796 | <description>BS Marvelous - Time Athletic Course - Dai-3-shuu (Jpn)</description> | |
| 59797 | <!-- BS --> | |
| 59798 | <year>199?</year> | |
| 59799 | <publisher><unknown></publisher> | |
| 59800 | <part name="cart" interface="snes_cart"> | |
| 59801 | <dataarea name="rom" size="1048576"> | |
| 59802 | <rom name="bs marvelous - time athletic course - dai-3-shuu (japan).bs" size="1048576" crc="5a88e3fb" sha1="6025b65a0aa2b0be7ee6e6b50b09a9295137d85a" offset="0x000000" /> | |
| 59803 | </dataarea> | |
| 59804 | </part> | |
| 59805 | </software> | |
| 59806 | ||
| 59807 | <software name="bstime4" supported="no"> | |
| 59808 | <description>BS Marvelous - Time Athletic Course - Dai-4-shuu (Jpn)</description> | |
| 59809 | <!-- BS --> | |
| 59810 | <year>199?</year> | |
| 59811 | <publisher><unknown></publisher> | |
| 59812 | <part name="cart" interface="snes_cart"> | |
| 59813 | <dataarea name="rom" size="1048576"> | |
| 59814 | <rom name="bs marvelous - time athletic course - dai-4-shuu (japan).bs" size="1048576" crc="fba7789e" sha1="374b3edc9e0b0d2438f4457481cbc8095a566cce" offset="0x000000" /> | |
| 59815 | </dataarea> | |
| 59816 | </part> | |
| 59817 | </software> | |
| 59818 | ||
| 59819 | <software name="bsnichmt" supported="no"> | |
| 59820 | <description>BS Nichibutsu Mahjong - Mahjong Taikai (Jpn)</description> | |
| 59821 | <!-- BS --> | |
| 59822 | <year>199?</year> | |
| 59823 | <publisher><unknown></publisher> | |
| 59824 | <part name="cart" interface="snes_cart"> | |
| 59825 | <dataarea name="rom" size="1048576"> | |
| 59826 | <rom name="bs nichibutsu mahjong - mahjong taikai (japan).bs" size="1048576" crc="f10028b1" sha1="9a46696609186336a4cdc380569f01e6af7050ec" offset="0x000000" /> | |
| 59827 | </dataarea> | |
| 59828 | </part> | |
| 59829 | </software> | |
| 59830 | ||
| 59831 | <software name="bsnichic" supported="no"> | |
| 59832 | <description>BS Nichibutsu Mahjong - Renshuu Mahjong - Ichimantou (Jpn)</description> | |
| 59833 | <!-- BS --> | |
| 59834 | <year>199?</year> | |
| 59835 | <publisher><unknown></publisher> | |
| 59836 | <part name="cart" interface="snes_cart"> | |
| 59837 | <dataarea name="rom" size="1048576"> | |
| 59838 | <rom name="bs nichibutsu mahjong - renshuu mahjong - ichimantou (japan).bs" size="1048576" crc="a0b0e5ca" sha1="67a6db29af61b94c1918daaa77022feca82bb4fe" offset="0x000000" /> | |
| 59839 | </dataarea> | |
| 59840 | </part> | |
| 59841 | </software> | |
| 59842 | ||
| 59843 | <software name="bsnichni" supported="no"> | |
| 59844 | <description>BS Nichibutsu Mahjong - Renshuu Mahjong - Nimantou (Jpn)</description> | |
| 59845 | <!-- BS --> | |
| 59846 | <year>199?</year> | |
| 59847 | <publisher><unknown></publisher> | |
| 59848 | <part name="cart" interface="snes_cart"> | |
| 59849 | <dataarea name="rom" size="1048576"> | |
| 59850 | <rom name="bs nichibutsu mahjong - renshuu mahjong - nimantou (japan).bs" size="1048576" crc="3cec7861" sha1="57e1a364268ef180ed517e13fea63ee89c607a18" offset="0x000000" /> | |
| 59851 | </dataarea> | |
| 59852 | </part> | |
| 59853 | </software> | |
| 59854 | ||
| 59855 | <software name="bshp517" supported="no"> | |
| 59856 | <description>BS Nintendo HP - 5-17 Gou (Jpn)</description> | |
| 59857 | <!-- BS --> | |
| 59858 | <year>199?</year> | |
| 59859 | <publisher><unknown></publisher> | |
| 59860 | <part name="cart" interface="snes_cart"> | |
| 59861 | <dataarea name="rom" size="1048576"> | |
| 59862 | <rom name="bs nintendo hp - 5-17 gou (japan).bs" size="1048576" crc="768f50f4" sha1="cb1c842f74eb3869e765feb196644708987ff051" offset="0x000000" /> | |
| 59863 | </dataarea> | |
| 59864 | </part> | |
| 59865 | </software> | |
| 59866 | ||
| 59867 | <software name="bshp531" supported="no"> | |
| 59868 | <description>BS Nintendo HP - 5-31 Gou (Jpn)</description> | |
| 59869 | <!-- BS --> | |
| 59870 | <year>199?</year> | |
| 59871 | <publisher><unknown></publisher> | |
| 59872 | <part name="cart" interface="snes_cart"> | |
| 59873 | <dataarea name="rom" size="1048576"> | |
| 59874 | <rom name="bs nintendo hp - 5-31 gou (japan).bs" size="1048576" crc="c9b05ce4" sha1="71642ccce9f133e4566c36b64e098b1db737ad0c" offset="0x000000" /> | |
| 59875 | </dataarea> | |
| 59876 | </part> | |
| 59877 | </software> | |
| 59878 | ||
| 59879 | <software name="bsparlor" supported="no"> | |
| 59880 | <description>BS Parlor! Parlor! - Dai-2-shuu (Jpn)</description> | |
| 59881 | <!-- BS --> | |
| 59882 | <year>199?</year> | |
| 59883 | <publisher><unknown></publisher> | |
| 59884 | <part name="cart" interface="snes_cart"> | |
| 59885 | <dataarea name="rom" size="1048576"> | |
| 59886 | <rom name="bs parlor! parlor! - dai-2-shuu (japan).bs" size="1048576" crc="3ed9a005" sha1="235499d1922646dde43c6aa93f595fc2fa09ed64" offset="0x000000" /> | |
| 59887 | </dataarea> | |
| 59888 | </part> | |
| 59889 | </software> | |
| 59890 | ||
| 59891 | <software name="bsoniga1" supported="no"> | |
| 59892 | <description>BS Shin Onigashima - Dai-1-wa - Kataribe no Koya (Jpn)</description> | |
| 59893 | <!-- BS --> | |
| 59894 | <year>199?</year> | |
| 59895 | <publisher><unknown></publisher> | |
| 59896 | <part name="cart" interface="snes_cart"> | |
| 59897 | <dataarea name="rom" size="1048576"> | |
| 59898 | <rom name="bs shin onigashima - dai-1-wa - kataribe no koya (japan).bs" size="1048576" crc="514eb6c8" sha1="a8c132c0c8323b740603b3b61bcb4082ce473e2a" offset="0x000000" /> | |
| 59899 | </dataarea> | |
| 59900 | </part> | |
| 59901 | </software> | |
| 59902 | ||
| 59903 | <software name="bsoniga2" supported="no"> | |
| 59904 | <description>BS Shin Onigashima - Dai-2-wa - Kataribe no Koya (Jpn)</description> | |
| 59905 | <!-- BS --> | |
| 59906 | <year>199?</year> | |
| 59907 | <publisher><unknown></publisher> | |
| 59908 | <part name="cart" interface="snes_cart"> | |
| 59909 | <dataarea name="rom" size="1048576"> | |
| 59910 | <rom name="bs shin onigashima - dai-2-wa - kataribe no koya (japan).bs" size="1048576" crc="67a5b7c4" sha1="05403e4829f8481b212864079286cac91d2b7761" offset="0x000000" /> | |
| 59911 | </dataarea> | |
| 59912 | </part> | |
| 59913 | </software> | |
| 59914 | ||
| 59915 | <software name="bsoniga3" supported="no"> | |
| 59916 | <description>BS Shin Onigashima - Dai-3-wa - Kataribe no Koya (Jpn)</description> | |
| 59917 | <!-- BS --> | |
| 59918 | <year>199?</year> | |
| 59919 | <publisher><unknown></publisher> | |
| 59920 | <part name="cart" interface="snes_cart"> | |
| 59921 | <dataarea name="rom" size="1048576"> | |
| 59922 | <rom name="bs shin onigashima - dai-3-wa - kataribe no koya (japan).bs" size="1048576" crc="abe60813" sha1="1ef184e69a7cb23d2062286cf71af186311393dd" offset="0x000000" /> | |
| 59923 | </dataarea> | |
| 59924 | </part> | |
| 59925 | </software> | |
| 59926 | ||
| 59927 | <software name="bsoniga4" supported="no"> | |
| 59928 | <description>BS Shin Onigashima - Dai-4-wa - Kataribe no Koya (Jpn)</description> | |
| 59929 | <!-- BS --> | |
| 59930 | <year>199?</year> | |
| 59931 | <publisher><unknown></publisher> | |
| 59932 | <part name="cart" interface="snes_cart"> | |
| 59933 | <dataarea name="rom" size="1048576"> | |
| 59934 | <rom name="bs shin onigashima - dai-4-wa - kataribe no koya (japan).bs" size="1048576" crc="f9ab3b92" sha1="93dd095f3e32e5749663ce5418cc6e194d46b281" offset="0x000000" /> | |
| 59935 | </dataarea> | |
| 59936 | </part> | |
| 59937 | </software> | |
| 59938 | ||
| 59939 | <software name="bsstgiga" supported="no"> | |
| 59940 | <description>BS St. Giga PG - 10 Gatsugou (Jpn)</description> | |
| 59941 | <!-- BS --> | |
| 59942 | <year>199?</year> | |
| 59943 | <publisher><unknown></publisher> | |
| 59944 | <part name="cart" interface="snes_cart"> | |
| 59945 | <dataarea name="rom" size="1048576"> | |
| 59946 | <rom name="bs st. giga pg - 10 gatsugou (japan).bs" size="1048576" crc="8dabd48a" sha1="572018f28976681013aad5428ebab00c4c9ec794" offset="0x000000" /> | |
| 59947 | </dataarea> | |
| 59948 | </part> | |
| 59949 | </software> | |
| 59950 | ||
| 59951 | <software name="bssmcol" supported="no"> | |
| 59952 | <description>BS Super Mario Collection - Dai-3-shuu (Jpn)</description> | |
| 59953 | <!-- BS --> | |
| 59954 | <year>199?</year> | |
| 59955 | <publisher><unknown></publisher> | |
| 59956 | <part name="cart" interface="snes_cart"> | |
| 59957 | <dataarea name="rom" size="1048576"> | |
| 59958 | <rom name="bs super mario collection - dai-3-shuu (japan).bs" size="1048576" crc="a40a3089" sha1="06c58882acf1e62e54cc0c51515448b40f057e6e" offset="0x000000" /> | |
| 59959 | </dataarea> | |
| 59960 | </part> | |
| 59961 | </software> | |
| 59962 | ||
| 59963 | <software name="bssmusa1" supported="no"> | |
| 59964 | <description>BS Super Mario USA - Power Challenge - Dai-1-kai (Jpn)</description> | |
| 59965 | <!-- BS --> | |
| 59966 | <year>199?</year> | |
| 59967 | <publisher><unknown></publisher> | |
| 59968 | <part name="cart" interface="snes_cart"> | |
| 59969 | <dataarea name="rom" size="1048576"> | |
| 59970 | <rom name="bs super mario usa - power challenge - dai-1-kai (japan).bs" size="1048576" crc="8f85a235" sha1="07d5d7f097b3999bb12cdcac40909a064bb69548" offset="0x000000" /> | |
| 59971 | </dataarea> | |
| 59972 | </part> | |
| 59973 | </software> | |
| 59974 | ||
| 59975 | <software name="bssmusa2" supported="no"> | |
| 59976 | <description>BS Super Mario USA - Power Challenge - Dai-2-kai (Jpn)</description> | |
| 59977 | <!-- BS --> | |
| 59978 | <year>199?</year> | |
| 59979 | <publisher><unknown></publisher> | |
| 59980 | <part name="cart" interface="snes_cart"> | |
| 59981 | <dataarea name="rom" size="1048576"> | |
| 59982 | <rom name="bs super mario usa - power challenge - dai-2-kai (japan).bs" size="1048576" crc="b967025a" sha1="ab1e8db79e207f136e58989a5c0302da25fb19e5" offset="0x000000" /> | |
| 59983 | </dataarea> | |
| 59984 | </part> | |
| 59985 | </software> | |
| 59986 | ||
| 59987 | <software name="bssmusa3" supported="no"> | |
| 59988 | <description>BS Super Mario USA - Power Challenge - Dai-3-kai (Jpn)</description> | |
| 59989 | <!-- BS --> | |
| 59990 | <year>199?</year> | |
| 59991 | <publisher><unknown></publisher> | |
| 59992 | <part name="cart" interface="snes_cart"> | |
| 59993 | <dataarea name="rom" size="1048576"> | |
| 59994 | <rom name="bs super mario usa - power challenge - dai-3-kai (japan).bs" size="1048576" crc="8b22a708" sha1="1c92e890f95b222c22d4bb8beb08124087c48641" offset="0x000000" /> | |
| 59995 | </dataarea> | |
| 59996 | </part> | |
| 59997 | </software> | |
| 59998 | ||
| 59999 | <software name="bssmusa4" supported="no"> | |
| 60000 | <description>BS Super Mario USA - Power Challenge - Dai-4-kai (Jpn)</description> | |
| 60001 | <!-- BS --> | |
| 60002 | <year>199?</year> | |
| 60003 | <publisher><unknown></publisher> | |
| 60004 | <part name="cart" interface="snes_cart"> | |
| 60005 | <dataarea name="rom" size="1048576"> | |
| 60006 | <rom name="bs super mario usa - power challenge - dai-4-kai (japan).bs" size="1048576" crc="ff1ded46" sha1="5f2f794c410dc7bf6d7600c9e79545a6739662d1" offset="0x000000" /> | |
| 60007 | </dataarea> | |
| 60008 | </part> | |
| 60009 | </software> | |
| 60010 | ||
| 60011 | <software name="bstantch" supported="no"> | |
| 60012 | <description>BS Tantei Club - Yuki ni Kieta Kako - Chuuhen (Jpn, 0620)</description> | |
| 60013 | <!-- BS --> | |
| 60014 | <year>199?</year> | |
| 60015 | <publisher><unknown></publisher> | |
| 60016 | <part name="cart" interface="snes_cart"> | |
| 60017 | <dataarea name="rom" size="1048576"> | |
| 60018 | <rom name="bs tantei club - yuki ni kieta kako - chuuhen (japan) (6-20).bs" size="1048576" crc="67568b74" sha1="e88c6f7c140c57d6388c18a4c2e9d241779800d1" offset="0x000000" /> | |
| 60019 | </dataarea> | |
| 60020 | </part> | |
| 60021 | </software> | |
| 60022 | ||
| 60023 | <software name="bstantcha" cloneof="bstantch" supported="no"> | |
| 60024 | <description>BS Tantei Club - Yuki ni Kieta Kako - Chuuhen (Jpn, 0614)</description> | |
| 60025 | <!-- BS --> | |
| 60026 | <year>199?</year> | |
| 60027 | <publisher><unknown></publisher> | |
| 60028 | <part name="cart" interface="snes_cart"> | |
| 60029 | <dataarea name="rom" size="1048576"> | |
| 60030 | <rom name="bs tantei club - yuki ni kieta kako - chuuhen (japan).bs" size="1048576" crc="7947abd1" sha1="db8cfcfe668ca1afb88fa8183227e154f2c421f0" offset="0x000000" /> | |
| 60031 | </dataarea> | |
| 60032 | </part> | |
| 60033 | </software> | |
| 60034 | ||
| 60035 | <software name="bstantko" supported="no"> | |
| 60036 | <description>BS Tantei Club - Yuki ni Kieta Kako - Kouhen (Jpn)</description> | |
| 60037 | <!-- BS --> | |
| 60038 | <year>199?</year> | |
| 60039 | <publisher><unknown></publisher> | |
| 60040 | <part name="cart" interface="snes_cart"> | |
| 60041 | <dataarea name="rom" size="1048576"> | |
| 60042 | <rom name="bs tantei club - yuki ni kieta kako - kouhen (japan).bs" size="1048576" crc="0cd818cf" sha1="f271b67a713b96e66cbad0461e752e27c22e6c61" offset="0x000000" /> | |
| 60043 | </dataarea> | |
| 60044 | </part> | |
| 60045 | </software> | |
| 60046 | ||
| 60047 | <software name="bstantze" supported="no"> | |
| 60048 | <description>BS Tantei Club - Yuki ni Kieta Kako - Zenpen (Jpn)</description> | |
| 60049 | <!-- BS --> | |
| 60050 | <year>199?</year> | |
| 60051 | <publisher><unknown></publisher> | |
| 60052 | <part name="cart" interface="snes_cart"> | |
| 60053 | <dataarea name="rom" size="1048576"> | |
| 60054 | <rom name="bs tantei club - yuki ni kieta kako - zenpen (japan).bs" size="1048576" crc="f26300c8" sha1="db0efaa48fa0b1ab1147791cca7a032e3ca113f5" offset="0x000000" /> | |
| 60055 | </dataarea> | |
| 60056 | </part> | |
| 60057 | </software> | |
| 60058 | ||
| 60059 | <software name="bszelda" supported="no"> | |
| 60060 | <description>BS Zelda no Densetsu - Dai-3-wa (Jpn)</description> | |
| 60061 | <!-- BS --> | |
| 60062 | <year>199?</year> | |
| 60063 | <publisher><unknown></publisher> | |
| 60064 | <part name="cart" interface="snes_cart"> | |
| 60065 | <dataarea name="rom" size="1048576"> | |
| 60066 | <rom name="bs zelda no densetsu - dai-3-wa (japan).bs" size="1048576" crc="ddc54398" sha1="4a2280a33785e89aecaa4141ac29f3dd1bdcf40c" offset="0x000000" /> | |
| 60067 | </dataarea> | |
| 60068 | </part> | |
| 60069 | </software> | |
| 60070 | ||
| 60071 | <software name="bszeldk1" supported="no"> | |
| 60072 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-1-wa (Jpn)</description> | |
| 60073 | <!-- BS --> | |
| 60074 | <year>199?</year> | |
| 60075 | <publisher><unknown></publisher> | |
| 60076 | <part name="cart" interface="snes_cart"> | |
| 60077 | <dataarea name="rom" size="1048576"> | |
| 60078 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-1-wa (japan).bs" size="1048576" crc="0d2b95a8" sha1="e784f04736f354a05a19a0e86efd8a1f40589aa4" offset="0x000000" /> | |
| 60079 | </dataarea> | |
| 60080 | </part> | |
| 60081 | </software> | |
| 60082 | ||
| 60083 | <software name="bszeldk2" supported="no"> | |
| 60084 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-2-wa (Jpn)</description> | |
| 60085 | <!-- BS --> | |
| 60086 | <year>199?</year> | |
| 60087 | <publisher><unknown></publisher> | |
| 60088 | <part name="cart" interface="snes_cart"> | |
| 60089 | <dataarea name="rom" size="1048576"> | |
| 60090 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-2-wa (japan).bs" size="1048576" crc="1b71a609" sha1="0877f63d8d096e7a35a5721ec1e4ce2cb86a7211" offset="0x000000" /> | |
| 60091 | </dataarea> | |
| 60092 | </part> | |
| 60093 | </software> | |
| 60094 | ||
| 60095 | <software name="bszeldk3" supported="no"> | |
| 60096 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-3-wa (Jpn)</description> | |
| 60097 | <!-- BS --> | |
| 60098 | <year>199?</year> | |
| 60099 | <publisher><unknown></publisher> | |
| 60100 | <part name="cart" interface="snes_cart"> | |
| 60101 | <dataarea name="rom" size="1048576"> | |
| 60102 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-3-wa (japan).bs" size="1048576" crc="c251d4fa" sha1="25efee5199c9da0805306edac3367d60253ea828" offset="0x000000" /> | |
| 60103 | </dataarea> | |
| 60104 | </part> | |
| 60105 | </software> | |
| 60106 | ||
| 60107 | <software name="bszeldk4" supported="no"> | |
| 60108 | <description>BS Zelda no Densetsu - Kodai no Sekiban - Dai-4-wa (Jpn)</description> | |
| 60109 | <!-- BS --> | |
| 60110 | <year>199?</year> | |
| 60111 | <publisher><unknown></publisher> | |
| 60112 | <part name="cart" interface="snes_cart"> | |
| 60113 | <dataarea name="rom" size="1048576"> | |
| 60114 | <rom name="bs zelda no densetsu - kodai no sekiban - dai-4-wa (japan).bs" size="1048576" crc="8385bbf4" sha1="63c1110e32d4b3b2d6525919e10e50abcc7677a3" offset="0x000000" /> | |
| 60115 | </dataarea> | |
| 60116 | </part> | |
| 60117 | </software> | |
| 60118 | ||
| 60119 | <software name="bscheap" supported="no"> | |
| 60120 | <description>Cheap de Gorgeous Vol. 1 (Jpn)</description> | |
| 60121 | <!-- BS --> | |
| 60122 | <year>199?</year> | |
| 60123 | <publisher><unknown></publisher> | |
| 60124 | <part name="cart" interface="snes_cart"> | |
| 60125 | <dataarea name="rom" size="1048576"> | |
| 60126 | <rom name="cheap de gorgeous vol. 1 (japan).bs" size="1048576" crc="ee02126e" sha1="62e98832c90321ecd9ea7cb1c6dbb3c68d3e8ee0" offset="0x000000" /> | |
| 60127 | </dataarea> | |
| 60128 | </part> | |
| 60129 | </software> | |
| 60130 | ||
| 60131 | <software name="bsctrigc" supported="no"> | |
| 60132 | <description>Chrono Trigger - Character Zukan (Jpn)</description> | |
| 60133 | <!-- BS --> | |
| 60134 | <year>199?</year> | |
| 60135 | <publisher><unknown></publisher> | |
| 60136 | <part name="cart" interface="snes_cart"> | |
| 60137 | <dataarea name="rom" size="1048576"> | |
| 60138 | <rom name="chrono trigger - character zukan (japan).bs" size="1048576" crc="6d46f88b" sha1="602136761415a010b691299a8ab6f61c5efbf197" offset="0x000000" /> | |
| 60139 | </dataarea> | |
| 60140 | </part> | |
| 60141 | </software> | |
| 60142 | ||
| 60143 | <software name="bsctrigj" supported="no"> | |
| 60144 | <description>Chrono Trigger - Jet Bike Special (Jpn)</description> | |
| 60145 | <!-- BS --> | |
| 60146 | <year>199?</year> | |
| 60147 | <publisher><unknown></publisher> | |
| 60148 | <part name="cart" interface="snes_cart"> | |
| 60149 | <dataarea name="rom" size="262144"> | |
| 60150 | <rom name="chrono trigger - jet bike special (japan).bs" size="262144" crc="9dfb3014" sha1="1f916454d4a9cedbd66babe4bb9eebc446410335" offset="0x000000" /> | |
| 60151 | </dataarea> | |
| 60152 | </part> | |
| 60153 | </software> | |
| 60154 | ||
| 60155 | <software name="bsctrigm" supported="no"> | |
| 60156 | <description>Chrono Trigger - Music Library (Jpn)</description> | |
| 60157 | <!-- BS --> | |
| 60158 | <year>199?</year> | |
| 60159 | <publisher><unknown></publisher> | |
| 60160 | <part name="cart" interface="snes_cart"> | |
| 60161 | <dataarea name="rom" size="524288"> | |
| 60162 | <rom name="chrono trigger - music library (japan).bs" size="524288" crc="027b726b" sha1="a21e00ee5e13722e57abeac58df57f12aacfd63b" offset="0x000000" /> | |
| 60163 | </dataarea> | |
| 60164 | </part> | |
| 60165 | </software> | |
| 60166 | ||
| 60167 | <software name="bscolum1" supported="no"> | |
| 60168 | <description>Columbus no Tamagoyaki - Dai-1-kai (Jpn)</description> | |
| 60169 | <!-- BS --> | |
| 60170 | <year>199?</year> | |
| 60171 | <publisher><unknown></publisher> | |
| 60172 | <part name="cart" interface="snes_cart"> | |
| 60173 | <dataarea name="rom" size="1048576"> | |
| 60174 | <rom name="columbus no tamagoyaki - dai-1-kai (japan).bs" size="1048576" crc="2289c65f" sha1="a2c91755d52d5c5b230e665920e01b584934a27b" offset="0x000000" /> | |
| 60175 | </dataarea> | |
| 60176 | </part> | |
| 60177 | </software> | |
| 60178 | ||
| 60179 | <software name="bscolum2" supported="no"> | |
| 60180 | <description>Columbus no Tamagoyaki - Dai-2-kai (Jpn)</description> | |
| 60181 | <!-- BS --> | |
| 60182 | <year>199?</year> | |
| 60183 | <publisher><unknown></publisher> | |
| 60184 | <part name="cart" interface="snes_cart"> | |
| 60185 | <dataarea name="rom" size="1048576"> | |
| 60186 | <rom name="columbus no tamagoyaki - dai-2-kai (japan).bs" size="1048576" crc="ec69ee76" sha1="30569601d3f15a586547b18702b5cf54981d0e7d" offset="0x000000" /> | |
| 60187 | </dataarea> | |
| 60188 | </part> | |
| 60189 | </software> | |
| 60190 | ||
| 60191 | <software name="bscolum3" supported="no"> | |
| 60192 | <description>Columbus no Tamagoyaki - Dai-3-kai (Jpn)</description> | |
| 60193 | <!-- BS --> | |
| 60194 | <year>199?</year> | |
| 60195 | <publisher><unknown></publisher> | |
| 60196 | <part name="cart" interface="snes_cart"> | |
| 60197 | <dataarea name="rom" size="1048576"> | |
| 60198 | <rom name="columbus no tamagoyaki - dai-3-kai (japan).bs" size="1048576" crc="00d3a32b" sha1="43a29a10a21b26e495bab35000bfc695abcca83e" offset="0x000000" /> | |
| 60199 | </dataarea> | |
| 60200 | </part> | |
| 60201 | </software> | |
| 60202 | ||
| 60203 | <software name="bscuonpa" supported="no"> | |
| 60204 | <description>Cu-On-Pa SFC (Jpn, BS, xxxx0531)</description> | |
| 60205 | <!-- BS --> | |
| 60206 | <year>199?</year> | |
| 60207 | <publisher><unknown></publisher> | |
| 60208 | <part name="cart" interface="snes_cart"> | |
| 60209 | <dataarea name="rom" size="1048576"> | |
| 60210 | <rom name="cu-on-pa sfc (japan).bs" size="1048576" crc="5f31e1d8" sha1="b09b45a7c2cb4ab50b5c364bb989e90caa036629" offset="0x000000" /> | |
| 60211 | </dataarea> | |
| 60212 | </part> | |
| 60213 | </software> | |
| 60214 | ||
| 60215 | <software name="bsdaibak" supported="no"> | |
| 60216 | <description>Daibakushou Jinsei Gekijou (Jpn, BS)</description> | |
| 60217 | <!-- BS --> | |
| 60218 | <year>199?</year> | |
| 60219 | <publisher><unknown></publisher> | |
| 60220 | <part name="cart" interface="snes_cart"> | |
| 60221 | <dataarea name="rom" size="1048576"> | |
| 60222 | <rom name="daibakushou jinsei gekijou (japan).bs" size="1048576" crc="93c4df65" sha1="07a873bb6753694e9914a270b760f810efc04525" offset="0x000000" /> | |
| 60223 | </dataarea> | |
| 60224 | </part> | |
| 60225 | </software> | |
| 60226 | ||
| 60227 | <software name="bsdandng" supported="no"> | |
| 60228 | <description>Dandan Belt Conveyor - Gyuunyuu no Maki (Jpn)</description> | |
| 60229 | <!-- BS --> | |
| 60230 | <year>199?</year> | |
| 60231 | <publisher><unknown></publisher> | |
| 60232 | <part name="cart" interface="snes_cart"> | |
| 60233 | <dataarea name="rom" size="1048576"> | |
| 60234 | <rom name="dandan belt conveyor - gyuunyuu no maki (japan).bs" size="1048576" crc="380c8c79" sha1="343e5607d62d7962a04c090cd003495fc344deee" offset="0x000000" /> | |
| 60235 | </dataarea> | |
| 60236 | </part> | |
| 60237 | </software> | |
| 60238 | ||
| 60239 | <software name="bsdigim1" supported="no"> | |
| 60240 | <description>Digital Magazine Busters BS - 4-12 Gou (Jpn)</description> | |
| 60241 | <!-- BS --> | |
| 60242 | <year>199?</year> | |
| 60243 | <publisher><unknown></publisher> | |
| 60244 | <part name="cart" interface="snes_cart"> | |
| 60245 | <dataarea name="rom" size="1048576"> | |
| 60246 | <rom name="digital magazine busters bs - 4-12 gou (japan).bs" size="1048576" crc="1976866a" sha1="98bd19065df8b65268e61457acb306f96b531a7e" offset="0x000000" /> | |
| 60247 | </dataarea> | |
| 60248 | </part> | |
| 60249 | </software> | |
| 60250 | ||
| 60251 | <software name="bsdigim2" supported="no"> | |
| 60252 | <description>Digital Magazine Busters BS - 5-10 Gou (Jpn)</description> | |
| 60253 | <!-- BS --> | |
| 60254 | <year>199?</year> | |
| 60255 | <publisher><unknown></publisher> | |
| 60256 | <part name="cart" interface="snes_cart"> | |
| 60257 | <dataarea name="rom" size="1048576"> | |
| 60258 | <rom name="digital magazine busters bs - 5-10 gou (japan).bs" size="1048576" crc="3f3f4608" sha1="61f225571e547ca9ed6c523babe1476d5f0e3e68" offset="0x000000" /> | |
| 60259 | </dataarea> | |
| 60260 | </part> | |
| 60261 | </software> | |
| 60262 | ||
| 60263 | <software name="bsdigim3" supported="no"> | |
| 60264 | <description>Digital Magazine Busters BS - 5-24 Gou (Jpn)</description> | |
| 60265 | <!-- BS --> | |
| 60266 | <year>199?</year> | |
| 60267 | <publisher><unknown></publisher> | |
| 60268 | <part name="cart" interface="snes_cart"> | |
| 60269 | <dataarea name="rom" size="1048576"> | |
| 60270 | <rom name="digital magazine busters bs - 5-24 gou (japan).bs" size="1048576" crc="8e8f27e9" sha1="7161e77985a6c21edcf7a2ea319ef83054e9cf74" offset="0x000000" /> | |
| 60271 | </dataarea> | |
| 60272 | </part> | |
| 60273 | </software> | |
| 60274 | ||
| 60275 | <software name="bsdigim4" supported="no"> | |
| 60276 | <description>Digital Magazine Busters BS - 8-23 Gou (Jpn)</description> | |
| 60277 | <!-- BS --> | |
| 60278 | <year>199?</year> | |
| 60279 | <publisher><unknown></publisher> | |
| 60280 | <part name="cart" interface="snes_cart"> | |
| 60281 | <dataarea name="rom" size="1048576"> | |
| 60282 | <rom name="digital magazine busters bs - 8-23 gou (japan).bs" size="1048576" crc="6f7f6c5d" sha1="9c0b854ff8f63a548d5e694461444a1eae77a418" offset="0x000000" /> | |
| 60283 | </dataarea> | |
| 60284 | </part> | |
| 60285 | </software> | |
| 60286 | ||
| 60287 | <software name="bsdorm2a" supported="no"> | |
| 60288 | <description>Do-Re-Mi de Faa 2~! - 5-10 Gou (Jpn)</description> | |
| 60289 | <!-- BS --> | |
| 60290 | <year>199?</year> | |
| 60291 | <publisher><unknown></publisher> | |
| 60292 | <part name="cart" interface="snes_cart"> | |
| 60293 | <dataarea name="rom" size="1048576"> | |
| 60294 | <rom name="do-re-mi de faa 2~! - 5-10 gou (japan).bs" size="1048576" crc="25401316" sha1="1c25723597a55ab94cf7289cf36b6b8941a3d5ab" offset="0x000000" /> | |
| 60295 | </dataarea> | |
| 60296 | </part> | |
| 60297 | </software> | |
| 60298 | ||
| 60299 | <software name="bsdorm2b" supported="no"> | |
| 60300 | <description>Do-Re-Mi de Faa 2~! - 5-25 Gou (Jpn)</description> | |
| 60301 | <!-- BS --> | |
| 60302 | <year>199?</year> | |
| 60303 | <publisher><unknown></publisher> | |
| 60304 | <part name="cart" interface="snes_cart"> | |
| 60305 | <dataarea name="rom" size="1048576"> | |
| 60306 | <rom name="do-re-mi de faa 2~! - 5-25 gou (japan).bs" size="1048576" crc="f8b048f5" sha1="d9af942b657a0ab2fd9979a708e10f4c3e75fcab" offset="0x000000" /> | |
| 60307 | </dataarea> | |
| 60308 | </part> | |
| 60309 | </software> | |
| 60310 | ||
| 60311 | <software name="bsdokapg" supported="no"> | |
| 60312 | <description>Dokapon Gaiden - Honoo no Audition (Jpn, BS)</description> | |
| 60313 | <!-- BS --> | |
| 60314 | <year>199?</year> | |
| 60315 | <publisher><unknown></publisher> | |
| 60316 | <part name="cart" interface="snes_cart"> | |
| 60317 | <dataarea name="rom" size="1048576"> | |
| 60318 | <rom name="dokapon gaiden - honoo no audition (japan).bs" size="1048576" crc="09457f9e" sha1="cda1ae3c721ff0fd94f9b321becfbe90cb4c0910" offset="0x000000" /> | |
| 60319 | </dataarea> | |
| 60320 | </part> | |
| 60321 | </software> | |
| 60322 | ||
| 60323 | <software name="bsdrmrio" supported="no"> | |
| 60324 | <description>Dr. Mario (Jpn, BS)</description> | |
| 60325 | <!-- BS --> | |
| 60326 | <year>199?</year> | |
| 60327 | <publisher><unknown></publisher> | |
| 60328 | <part name="cart" interface="snes_cart"> | |
| 60329 | <dataarea name="rom" size="1048576"> | |
| 60330 | <rom name="dr. mario (japan).bs" size="1048576" crc="6ea452a4" sha1="9cf6c9b5c6d4e7c33bf040b058c9baf760bb44e9" offset="0x000000" /> | |
| 60331 | </dataarea> | |
| 60332 | </part> | |
| 60333 | </software> | |
| 60334 | ||
| 60335 | <software name="bsdslayr" supported="no"> | |
| 60336 | <description>Dragon Slayer - Eiyuu Densetsu (Jpn, BS)</description> | |
| 60337 | <!-- BS --> | |
| 60338 | <year>199?</year> | |
| 60339 | <publisher><unknown></publisher> | |
| 60340 | <part name="cart" interface="snes_cart"> | |
| 60341 | <dataarea name="rom" size="1048576"> | |
| 60342 | <rom name="dragon slayer - eiyuu densetsu (japan).bs" size="1048576" crc="a6fc28cb" sha1="b9fc80d0e9fc92594669dbbb0e1970b40c36b55f" offset="0x000000" /> | |
| 60343 | </dataarea> | |
| 60344 | </part> | |
| 60345 | </software> | |
| 60346 | ||
| 60347 | <software name="dynamitr" supported="no"> | |
| 60348 | <description>Dynami Tracer (Jpn)</description> | |
| 60349 | <!-- BS --> | |
| 60350 | <year>199?</year> | |
| 60351 | <publisher><unknown></publisher> | |
| 60352 | <part name="cart" interface="snes_cart"> | |
| 60353 | <dataarea name="rom" size="1048576"> | |
| 60354 | <rom name="dynami tracer (japan).bs" size="1048576" crc="41dae33c" sha1="2ff4bc75b88480a35f42db0a2468eb3f6f8e53e5" offset="0x000000" /> | |
| 60355 | </dataarea> | |
| 60356 | </part> | |
| 60357 | </software> | |
| 60358 | ||
| 60359 | <software name="bsexbik1" supported="no"> | |
| 60360 | <description>Excitebike - Bunbun Mario Battle - Stadium 1 (Jpn)</description> | |
| 60361 | <!-- BS --> | |
| 60362 | <year>199?</year> | |
| 60363 | <publisher><unknown></publisher> | |
| 60364 | <part name="cart" interface="snes_cart"> | |
| 60365 | <dataarea name="rom" size="1048576"> | |
| 60366 | <rom name="excitebike - bunbun mario battle - stadium 1 (japan).bs" size="1048576" crc="cf37df6c" sha1="8cb5406e7c136ea8779f793f052c60cfcdfa024a" offset="0x000000" /> | |
| 60367 | </dataarea> | |
| 60368 | </part> | |
| 60369 | </software> | |
| 60370 | ||
| 60371 | <software name="bsexbik2" supported="no"> | |
| 60372 | <description>Excitebike - Bunbun Mario Battle - Stadium 2 (Jpn)</description> | |
| 60373 | <!-- BS --> | |
| 60374 | <year>199?</year> | |
| 60375 | <publisher><unknown></publisher> | |
| 60376 | <part name="cart" interface="snes_cart"> | |
| 60377 | <dataarea name="rom" size="1048576"> | |
| 60378 | <rom name="excitebike - bunbun mario battle - stadium 2 (japan).bs" size="1048576" crc="3576a0a9" sha1="127a8e792f377c368f73ae002bc81f9aa464893b" offset="0x000000" /> | |
| 60379 | </dataarea> | |
| 60380 | </part> | |
| 60381 | </software> | |
| 60382 | ||
| 60383 | <software name="bsexbik3" supported="no"> | |
| 60384 | <description>Excitebike - Bunbun Mario Battle - Stadium 3 (Jpn, 19980111 - 19980117)</description> | |
| 60385 | <!-- BS --> | |
| 60386 | <year>199?</year> | |
| 60387 | <publisher><unknown></publisher> | |
| 60388 | <part name="cart" interface="snes_cart"> | |
| 60389 | <dataarea name="rom" size="1048576"> | |
| 60390 | <rom name="excitebike - bunbun mario battle - stadium 3 (japan) (1998-01-11 - 1998-01-17).bs" size="1048576" crc="763c2ee4" sha1="7c0a2963d7767c254a132814eb9dcb00f148350e" offset="0x000000" /> | |
| 60391 | </dataarea> | |
| 60392 | </part> | |
| 60393 | </software> | |
| 60394 | ||
| 60395 | <software name="bsexbik3a" cloneof="bsexbik3" supported="no"> | |
| 60396 | <description>Excitebike - Bunbun Mario Battle - Stadium 3 (Jpn, xxxx0208)</description> | |
| 60397 | <!-- BS --> | |
| 60398 | <year>199?</year> | |
| 60399 | <publisher><unknown></publisher> | |
| 60400 | <part name="cart" interface="snes_cart"> | |
| 60401 | <dataarea name="rom" size="1048576"> | |
| 60402 | <rom name="excitebike - bunbun mario battle - stadium 3 (japan) (xxxx-02-08).bs" size="1048576" crc="e5206656" sha1="23663ef5bc1b7098ab230856fa96ea18ff4ec4a7" offset="0x000000" /> | |
| 60403 | </dataarea> | |
| 60404 | </part> | |
| 60405 | </software> | |
| 60406 | ||
| 60407 | <software name="bsexbik4" supported="no"> | |
| 60408 | <description>Excitebike - Bunbun Mario Battle - Stadium 4 (Jpn)</description> | |
| 60409 | <!-- BS --> | |
| 60410 | <year>199?</year> | |
| 60411 | <publisher><unknown></publisher> | |
| 60412 | <part name="cart" interface="snes_cart"> | |
| 60413 | <dataarea name="rom" size="1048576"> | |
| 60414 | <rom name="excitebike - bunbun mario battle - stadium 4 (japan).bs" size="1048576" crc="c9a77643" sha1="27a22ed0b6219c29bcf4a5475e2156607ebf4f1d" offset="0x000000" /> | |
| 60415 | </dataarea> | |
| 60416 | </part> | |
| 60417 | </software> | |
| 60418 | ||
| 60419 | <software name="bsfzero" supported="no"> | |
| 60420 | <description>F-Zero (Jpn, BS)</description> | |
| 60421 | <!-- BS --> | |
| 60422 | <year>199?</year> | |
| 60423 | <publisher><unknown></publisher> | |
| 60424 | <part name="cart" interface="snes_cart"> | |
| 60425 | <dataarea name="rom" size="524288"> | |
| 60426 | <rom name="f-zero (japan).bs" size="524288" crc="6ff86710" sha1="b143f71aef36cb4a5634aa4a8cca6e1938e5355d" offset="0x000000" /> | |
| 60427 | </dataarea> | |
| 60428 | </part> | |
| 60429 | </software> | |
| 60430 | ||
| 60431 | <software name="fenek" supported="no"> | |
| 60432 | <description>Fenek - 6 Gatsugou (Jpn)</description> | |
| 60433 | <!-- BS --> | |
| 60434 | <year>199?</year> | |
| 60435 | <publisher><unknown></publisher> | |
| 60436 | <part name="cart" interface="snes_cart"> | |
| 60437 | <dataarea name="rom" size="524288"> | |
| 60438 | <rom name="fenek - 6 gatsugou (japan).bs" size="524288" crc="5c26c3b2" sha1="f7e80add2fe9e6ccfda30cca64d6ed9ba14384ad" offset="0x000000" /> | |
| 60439 | </dataarea> | |
| 60440 | </part> | |
| 60441 | </software> | |
| 60442 | ||
| 60443 | <software name="bsfiremn" supported="no"> | |
| 60444 | <description>The Firemen (Jpn, BS)</description> | |
| 60445 | <!-- BS --> | |
| 60446 | <year>199?</year> | |
| 60447 | <publisher><unknown></publisher> | |
| 60448 | <part name="cart" interface="snes_cart"> | |
| 60449 | <dataarea name="rom" size="1048576"> | |
| 60450 | <rom name="firemen, the (japan).bs" size="1048576" crc="927ba7c2" sha1="90f419d52667201097edc0928f0853f55ecf83cd" offset="0x000000" /> | |
| 60451 | </dataarea> | |
| 60452 | </part> | |
| 60453 | </software> | |
| 60454 | ||
| 60455 | <software name="bsfreud1" supported="no"> | |
| 60456 | <description>Freud no Chousenjou - Dai-1-gou (Jpn)</description> | |
| 60457 | <!-- BS --> | |
| 60458 | <year>199?</year> | |
| 60459 | <publisher><unknown></publisher> | |
| 60460 | <part name="cart" interface="snes_cart"> | |
| 60461 | <dataarea name="rom" size="1048576"> | |
| 60462 | <rom name="freud no chousenjou - dai-1-gou (japan).bs" size="1048576" crc="8d78d0d7" sha1="08cdc6e6915baea5f8e4f5c393798e5364d8c5df" offset="0x000000" /> | |
| 60463 | </dataarea> | |
| 60464 | </part> | |
| 60465 | </software> | |
| 60466 | ||
| 60467 | <software name="bsfreud2" supported="no"> | |
| 60468 | <!-- BS --> | |
| 60469 | <description>Freud no Chousenjou - Dai-2-gou (Jpn)</description> | |
| 60470 | <year>199?</year> | |
| 60471 | <publisher><unknown></publisher> | |
| 60472 | <part name="cart" interface="snes_cart"> | |
| 60473 | <dataarea name="rom" size="1048576"> | |
| 60474 | <rom name="freud no chousenjou - dai-2-gou (japan).bs" size="1048576" crc="c99282d6" sha1="d7da2c9c9520a5368d6d4ea2d99e645b7a0c391a" offset="0x000000" /> | |
| 60475 | </dataarea> | |
| 60476 | </part> | |
| 60477 | </software> | |
| 60478 | ||
| 60479 | <software name="bsfreud3" supported="no"> | |
| 60480 | <description>Freud no Chousenjou - Dai-3-gou (Jpn)</description> | |
| 60481 | <!-- BS --> | |
| 60482 | <year>199?</year> | |
| 60483 | <publisher><unknown></publisher> | |
| 60484 | <part name="cart" interface="snes_cart"> | |
| 60485 | <dataarea name="rom" size="1048576"> | |
| 60486 | <rom name="freud no chousenjou - dai-3-gou (japan).bs" size="1048576" crc="f938ebc3" sha1="b867361b9e4655adfb7ad8853700c107de766924" offset="0x000000" /> | |
| 60487 | </dataarea> | |
| 60488 | </part> | |
| 60489 | </software> | |
| 60490 | ||
| 60491 | <software name="bsfreud4" supported="no"> | |
| 60492 | <description>Freud no Chousenjou - Dai-4-gou (Jpn)</description> | |
| 60493 | <!-- BS --> | |
| 60494 | <year>199?</year> | |
| 60495 | <publisher><unknown></publisher> | |
| 60496 | <part name="cart" interface="snes_cart"> | |
| 60497 | <dataarea name="rom" size="1048576"> | |
| 60498 | <rom name="freud no chousenjou - dai-4-gou (japan).bs" size="1048576" crc="12e3a8ee" sha1="79d600d9548e376cc29fbfb5f1216d7c68e0c013" offset="0x000000" /> | |
| 60499 | </dataarea> | |
| 60500 | </part> | |
| 60501 | </software> | |
| 60502 | ||
| 60503 | <software name="bsfreud5" supported="no"> | |
| 60504 | <description>Freud no Chousenjou - Dai-5-gou (Jpn)</description> | |
| 60505 | <!-- BS --> | |
| 60506 | <year>199?</year> | |
| 60507 | <publisher><unknown></publisher> | |
| 60508 | <part name="cart" interface="snes_cart"> | |
| 60509 | <dataarea name="rom" size="1048576"> | |
| 60510 | <rom name="freud no chousenjou - dai-5-gou (japan).bs" size="1048576" crc="4d0af6f3" sha1="6f6daf1946ec21140398b18cb1b5b320fcb558be" offset="0x000000" /> | |
| 60511 | </dataarea> | |
| 60512 | </part> | |
| 60513 | </software> | |
| 60514 | ||
| 60515 | <software name="bsfreud6" supported="no"> | |
| 60516 | <description>Freud no Chousenjou - Dai-6-gou (Jpn)</description> | |
| 60517 | <!-- BS --> | |
| 60518 | <year>199?</year> | |
| 60519 | <publisher><unknown></publisher> | |
| 60520 | <part name="cart" interface="snes_cart"> | |
| 60521 | <dataarea name="rom" size="1048576"> | |
| 60522 | <rom name="freud no chousenjou - dai-6-gou (japan).bs" size="1048576" crc="167f3ab1" sha1="a4f6ccffd38c02354d746503150438a5b132379e" offset="0x000000" /> | |
| 60523 | </dataarea> | |
| 60524 | </part> | |
| 60525 | </software> | |
| 60526 | ||
| 60527 | <software name="bstora1" supported="no"> | |
| 60528 | <description>Game Tora no Taikoban - 5-17 Gou (Jpn)</description> | |
| 60529 | <!-- BS --> | |
| 60530 | <year>199?</year> | |
| 60531 | <publisher><unknown></publisher> | |
| 60532 | <part name="cart" interface="snes_cart"> | |
| 60533 | <dataarea name="rom" size="524288"> | |
| 60534 | <rom name="game tora no taikoban - 5-17 gou (japan).bs" size="524288" crc="4cf3e14f" sha1="d9a3b68473e75d99ec84b95f421be0fefab1bfd7" offset="0x000000" /> | |
| 60535 | </dataarea> | |
| 60536 | </part> | |
| 60537 | </software> | |
| 60538 | ||
| 60539 | <software name="bstora2" supported="no"> | |
| 60540 | <description>Game Tora no Taikoban - 5-31 Gou (Jpn)</description> | |
| 60541 | <!-- BS --> | |
| 60542 | <year>199?</year> | |
| 60543 | <publisher><unknown></publisher> | |
| 60544 | <part name="cart" interface="snes_cart"> | |
| 60545 | <dataarea name="rom" size="524288"> | |
| 60546 | <rom name="game tora no taikoban - 5-31 gou (japan).bs" size="524288" crc="393e9715" sha1="5d374621784c4a3e57008febf59564fd352630da" offset="0x000000" /> | |
| 60547 | </dataarea> | |
| 60548 | </part> | |
| 60549 | </software> | |
| 60550 | ||
| 60551 | <software name="bsgekkct" supported="no"> | |
| 60552 | <description>Gekkan Coin Toss - Deck 1 (Jpn)</description> | |
| 60553 | <year>199?</year> | |
| 60554 | <!-- BS --> | |
| 60555 | <publisher><unknown></publisher> | |
| 60556 | <part name="cart" interface="snes_cart"> | |
| 60557 | <dataarea name="rom" size="1048576"> | |
| 60558 | <rom name="gekkan coin toss - deck 1 (japan).bs" size="1048576" crc="d2d7c3e5" sha1="75a9d2a75e66f73e5b25f4bed800d73f0e33f67e" offset="0x000000" /> | |
| 60559 | </dataarea> | |
| 60560 | </part> | |
| 60561 | </software> | |
| 60562 | ||
| 60563 | <software name="golfdais" supported="no"> | |
| 60564 | <description>Golf Daisuki! O.B. Club (Jpn)</description> | |
| 60565 | <!-- BS --> | |
| 60566 | <year>199?</year> | |
| 60567 | <publisher><unknown></publisher> | |
| 60568 | <part name="cart" interface="snes_cart"> | |
| 60569 | <dataarea name="rom" size="1048576"> | |
| 60570 | <rom name="golf daisuki! o.b. club (japan).bs" size="1048576" crc="dc00efeb" sha1="e97c6c4a5e530815cb449b7aa5a8b1d156f850b7" offset="0x000000" /> | |
| 60571 | </dataarea> | |
| 60572 | </part> | |
| 60573 | </software> | |
| 60574 | ||
| 60575 | <software name="bsgoodp3" supported="no"> | |
| 60576 | <description>GoodsPress - 3 Gatsugou (Jpn)</description> | |
| 60577 | <!-- BS --> | |
| 60578 | <year>199?</year> | |
| 60579 | <publisher><unknown></publisher> | |
| 60580 | <part name="cart" interface="snes_cart"> | |
| 60581 | <dataarea name="rom" size="1048576"> | |
| 60582 | <rom name="goodspress - 3 gatsugou (japan).bs" size="1048576" crc="e328adee" sha1="11228f9c890f64a844a1277d5c945683f08453ac" offset="0x000000" /> | |
| 60583 | </dataarea> | |
| 60584 | </part> | |
| 60585 | </software> | |
| 60586 | ||
| 60587 | <software name="bsgoodp6" supported="no"> | |
| 60588 | <description>GoodsPress - 6 Gatsugou (Jpn)</description> | |
| 60589 | <!-- BS --> | |
| 60590 | <year>199?</year> | |
| 60591 | <publisher><unknown></publisher> | |
| 60592 | <part name="cart" interface="snes_cart"> | |
| 60593 | <dataarea name="rom" size="524288"> | |
| 60594 | <rom name="goodspress - 6 gatsugou (japan).bs" size="524288" crc="fba1273b" sha1="9e2620f76a2b68036140cd265c27b116daf7853a" offset="0x000000" /> | |
| 60595 | </dataarea> | |
| 60596 | </part> | |
| 60597 | </software> | |
| 60598 | ||
| 60599 | <software name="bsgoodp7" supported="no"> | |
| 60600 | <description>GoodsPress - 7 Gatsugou (Jpn)</description> | |
| 60601 | <!-- BS --> | |
| 60602 | <year>199?</year> | |
| 60603 | <publisher><unknown></publisher> | |
| 60604 | <part name="cart" interface="snes_cart"> | |
| 60605 | <dataarea name="rom" size="1048576"> | |
| 60606 | <rom name="goodspress - 7 gatsugou (japan).bs" size="1048576" crc="83611a0c" sha1="ed401c2d6e77292567f9fc58570cc2ced4caf512" offset="0x000000" /> | |
| 60607 | </dataarea> | |
| 60608 | </part> | |
| 60609 | </software> | |
| 60610 | ||
| 60611 | <software name="bsgunjn" supported="no"> | |
| 60612 | <description>Heisei Gunjin Shougi (Jpn, BS)</description> | |
| 60613 | <!-- BS --> | |
| 60614 | <year>199?</year> | |
| 60615 | <publisher><unknown></publisher> | |
| 60616 | <part name="cart" interface="snes_cart"> | |
| 60617 | <dataarea name="rom" size="524288"> | |
| 60618 | <rom name="heisei gunjin shougi (japan).bs" size="524288" crc="63f948db" sha1="dd3cff98cd69168f1a6c5dcef7940b6dc9172dd3" offset="0x000000" /> | |
| 60619 | </dataarea> | |
| 60620 | </part> | |
| 60621 | </software> | |
| 60622 | <software name="bsikariy" supported="no"> | |
| 60623 | <description>Ikari no YoUSAi (Jpn, BS)</description> | |
| 60624 | <!-- BS --> | |
| 60625 | <year>199?</year> | |
| 60626 | <publisher><unknown></publisher> | |
| 60627 | <part name="cart" interface="snes_cart"> | |
| 60628 | <dataarea name="rom" size="1048576"> | |
| 60629 | <rom name="ikari no yousai (japan).bs" size="1048576" crc="c69a81ea" sha1="f7123f96292398380f75b67c70c242fa58f21dd5" offset="0x000000" /> | |
| 60630 | </dataarea> | |
| 60631 | </part> | |
| 60632 | </software> | |
| 60633 | ||
| 60634 | <software name="shubibi0" supported="no"> | |
| 60635 | <description>Kaizou Choujin Shubibinman Zero (Jpn)</description> | |
| 60636 | <!-- BS --> | |
| 60637 | <year>199?</year> | |
| 60638 | <publisher><unknown></publisher> | |
| 60639 | <part name="cart" interface="snes_cart"> | |
| 60640 | <dataarea name="rom" size="1048576"> | |
| 60641 | <rom name="kaizou chounin shubibinman zero (japan).bs" size="1048576" crc="5e5ba3f0" sha1="5b6a4d0740183703f35a349afb6088a8603d8966" offset="0x000000" /> | |
| 60642 | </dataarea> | |
| 60643 | </part> | |
| 60644 | </software> | |
| 60645 | ||
| 60646 | <software name="bskirbb" supported="no"> | |
| 60647 | <description>Kirby no Omochabako - Baseball (Jpn)</description> | |
| 60648 | <!-- BS --> | |
| 60649 | <year>199?</year> | |
| 60650 | <publisher><unknown></publisher> | |
| 60651 | <part name="cart" interface="snes_cart"> | |
| 60652 | <dataarea name="rom" size="524288"> | |
| 60653 | <rom name="kirby no omochabako - baseball (japan).bs" size="524288" crc="7ac28567" sha1="2e3c7ed1a590847ab6e1a0ddfd430bc7cc7d79dd" offset="0x000000" /> | |
| 60654 | </dataarea> | |
| 60655 | </part> | |
| 60656 | </software> | |
| 60657 | ||
| 60658 | <software name="bskirgb" supported="no"> | |
| 60659 | <description>Kirby no Omochabako - Guruguru Ball (Jpn)</description> | |
| 60660 | <!-- BS --> | |
| 60661 | <year>199?</year> | |
| 60662 | <publisher><unknown></publisher> | |
| 60663 | <part name="cart" interface="snes_cart"> | |
| 60664 | <dataarea name="rom" size="1048576"> | |
| 60665 | <rom name="kirby no omochabako - guruguru ball (japan).bs" size="1048576" crc="8247a684" sha1="e3b4b1b05edc6c5f6ad3ce4da002aa3fd6f26a6a" offset="0x000000" /> | |
| 60666 | </dataarea> | |
| 60667 | </part> | |
| 60668 | </software> | |
| 60669 | ||
| 60670 | <software name="bskirkuz" supported="no"> | |
| 60671 | <description>Kirby no Omochabako - Hoshi Kuzushi (Jpn)</description> | |
| 60672 | <!-- BS --> | |
| 60673 | <year>199?</year> | |
| 60674 | <publisher><unknown></publisher> | |
| 60675 | <part name="cart" interface="snes_cart"> | |
| 60676 | <dataarea name="rom" size="1048576"> | |
| 60677 | <rom name="kirby no omochabako - hoshi kuzushi (japan).bs" size="1048576" crc="a78abd76" sha1="e1b259a29ab756ee3f333006d6eeb4fdbeb5f814" offset="0x000000" /> | |
| 60678 | </dataarea> | |
| 60679 | </part> | |
| 60680 | </software> | |
| 60681 | ||
| 60682 | <software name="bskirpin" supported="no"> | |
| 60683 | <description>Kirby no Omochabako - Pinball (Jpn)</description> | |
| 60684 | <!-- BS --> | |
| 60685 | <year>199?</year> | |
| 60686 | <publisher><unknown></publisher> | |
| 60687 | <part name="cart" interface="snes_cart"> | |
| 60688 | <dataarea name="rom" size="524288"> | |
| 60689 | <rom name="kirby no omochabako - pinball (japan).bs" size="524288" crc="9d9bbd09" sha1="53faf45fd03937f663dd2e8047badb162922f896" offset="0x000000" /> | |
| 60690 | </dataarea> | |
| 60691 | </part> | |
| 60692 | </software> | |
| 60693 | ||
| 60694 | <software name="bskodom1" supported="no"> | |
| 60695 | <description>Kodomo Chousadan Mighty Pockets - ChoUSA 1 - Junk-ya Black no Ie (Jpn)</description> | |
| 60696 | <!-- BS --> | |
| 60697 | <year>199?</year> | |
| 60698 | <publisher><unknown></publisher> | |
| 60699 | <part name="cart" interface="snes_cart"> | |
| 60700 | <dataarea name="rom" size="1048576"> | |
| 60701 | <rom name="kodomo chousadan mighty pockets - chousa 1 - junk-ya black no ie (japan).bs" size="1048576" crc="85ebb7cc" sha1="cc81070dd4c7b6a527eab5ecc65a1c1433eebe5f" offset="0x000000" /> | |
| 60702 | </dataarea> | |
| 60703 | </part> | |
| 60704 | </software> | |
| 60705 | ||
| 60706 | <software name="bskodom2" supported="no"> | |
| 60707 | <description>Kodomo Chousadan Mighty Pockets - ChoUSA 2 - Hanzai Toshi Big Apple (Jpn)</description> | |
| 60708 | <!-- BS --> | |
| 60709 | <year>199?</year> | |
| 60710 | <publisher><unknown></publisher> | |
| 60711 | <part name="cart" interface="snes_cart"> | |
| 60712 | <dataarea name="rom" size="1048576"> | |
| 60713 | <rom name="kodomo chousadan mighty pockets - chousa 2 - hanzai toshi big apple (japan).bs" size="1048576" crc="188c9acb" sha1="408ac8d9c78dad14f109562fbd3149fe0114fc57" offset="0x000000" /> | |
| 60714 | </dataarea> | |
| 60715 | </part> | |
| 60716 | </software> | |
| 60717 | ||
| 60718 | <software name="bskodom3" supported="no"> | |
| 60719 | <description>Kodomo Chousadan Mighty Pockets - ChoUSA 3 - Kyakusen Queen Patra no Nazo (Jpn)</description> | |
| 60720 | <!-- BS --> | |
| 60721 | <year>199?</year> | |
| 60722 | <publisher><unknown></publisher> | |
| 60723 | <part name="cart" interface="snes_cart"> | |
| 60724 | <dataarea name="rom" size="1048576"> | |
| 60725 | <rom name="kodomo chousadan mighty pockets - chousa 3 - kyakusen queen patra no nazo (japan).bs" size="1048576" crc="35634c30" sha1="fc222418dba4730ef5f49a6621f9b3addff8c6ad" offset="0x000000" /> | |
| 60726 | </dataarea> | |
| 60727 | </part> | |
| 60728 | </software> | |
| 60729 | ||
| 60730 | <software name="bskoiwab" supported="no"> | |
| 60731 | <description>Koi wa Balance - Tatoeba K-kun no Tabou na Ichinichi Hen (Jpn)</description> | |
| 60732 | <!-- BS --> | |
| 60733 | <year>199?</year> | |
| 60734 | <publisher><unknown></publisher> | |
| 60735 | <part name="cart" interface="snes_cart"> | |
| 60736 | <dataarea name="rom" size="1048576"> | |
| 60737 | <rom name="koi wa balance - tatoeba k-kun no tabou na ichinichi hen (japan).bs" size="1048576" crc="d931df60" sha1="7c65ebc51b71f235710ee1935b84ea88236b8d48" offset="0x000000" /> | |
| 60738 | </dataarea> | |
| 60739 | </part> | |
| 60740 | </software> | |
| 60741 | ||
| 60742 | <software name="bsdoki" supported="no"> | |
| 60743 | <description>Konae-chan no Dokidoki Penguin Kazoku (Jpn)</description> | |
| 60744 | <!-- BS --> | |
| 60745 | <year>199?</year> | |
| 60746 | <publisher><unknown></publisher> | |
| 60747 | <part name="cart" interface="snes_cart"> | |
| 60748 | <dataarea name="rom" size="262144"> | |
| 60749 | <rom name="konae-chan no dokidoki penguin kazoku (japan).bs" size="262144" crc="218b11f8" sha1="6193ad723ba3d2434bfe8fc70a593d1eabe821de" offset="0x000000" /> | |
| 60750 | </dataarea> | |
| 60751 | </part> | |
| 60752 | </software> | |
| 60753 | ||
| 60754 | <software name="bspachi1" supported="no"> | |
| 60755 | <description>Let's Pachinko Nante Gindama 1 (Jpn)</description> | |
| 60756 | <!-- BS --> | |
| 60757 | <year>199?</year> | |
| 60758 | <publisher><unknown></publisher> | |
| 60759 | <part name="cart" interface="snes_cart"> | |
| 60760 | <dataarea name="rom" size="1048576"> | |
| 60761 | <rom name="let's pachinko nante gindama 1 (japan).bs" size="1048576" crc="330aad41" sha1="3b98b182ea492ac35264776829fe773cfa8fb937" offset="0x000000" /> | |
| 60762 | </dataarea> | |
| 60763 | </part> | |
| 60764 | </software> | |
| 60765 | ||
| 60766 | <software name="bspachi2" supported="no"> | |
| 60767 | <description>Let's Pachinko Nante Gindama 2 (Jpn)</description> | |
| 60768 | <!-- BS --> | |
| 60769 | <year>199?</year> | |
| 60770 | <publisher><unknown></publisher> | |
| 60771 | <part name="cart" interface="snes_cart"> | |
| 60772 | <dataarea name="rom" size="1048576"> | |
| 60773 | <rom name="let's pachinko nante gindama 2 (japan).bs" size="1048576" crc="8561ad51" sha1="f979554674df78e0ff28ca6df183dab33a1793b3" offset="0x000000" /> | |
| 60774 | </dataarea> | |
| 60775 | </part> | |
| 60776 | </software> | |
| 60777 | ||
| 60778 | <software name="bspachi3" supported="no"> | |
| 60779 | <description>Let's Pachinko Nante Gindama 3 (Jpn)</description> | |
| 60780 | <year>199?</year> | |
| 60781 | <!-- BS --> | |
| 60782 | <publisher><unknown></publisher> | |
| 60783 | <part name="cart" interface="snes_cart"> | |
| 60784 | <dataarea name="rom" size="1048576"> | |
| 60785 | <rom name="let's pachinko nante gindama 3 (japan).bs" size="1048576" crc="8f24b267" sha1="5f838668c7dc0092f3e6e92e9ea078c4b93fd1ab" offset="0x000000" /> | |
| 60786 | </dataarea> | |
| 60787 | </part> | |
| 60788 | </software> | |
| 60789 | ||
| 60790 | <software name="bspachi4" supported="no"> | |
| 60791 | <description>Let's Pachinko Nante Gindama 4 (Jpn, 0321)</description> | |
| 60792 | <!-- BS --> | |
| 60793 | <year>199?</year> | |
| 60794 | <publisher><unknown></publisher> | |
| 60795 | <part name="cart" interface="snes_cart"> | |
| 60796 | <dataarea name="rom" size="1048576"> | |
| 60797 | <rom name="let's pachinko nante gindama 4 (japan).bs" size="1048576" crc="75bc56bd" sha1="82dcebfbfe6019f4dbf0fc1bebf168d3a33feb14" offset="0x000000" /> | |
| 60798 | </dataarea> | |
| 60799 | </part> | |
| 60800 | </software> | |
| 60801 | ||
| 60802 | <software name="bslordmn" supported="no"> | |
| 60803 | <description>Lord Monarch (Jpn, BS)</description> | |
| 60804 | <!-- BS --> | |
| 60805 | <year>199?</year> | |
| 60806 | <publisher><unknown></publisher> | |
| 60807 | <part name="cart" interface="snes_cart"> | |
| 60808 | <dataarea name="rom" size="524288"> | |
| 60809 | <rom name="lord monarch (japan).bs" size="524288" crc="75e906fe" sha1="583a0bf064518a8f739653c3d09c21485dcb8c74" offset="0x000000" /> | |
| 60810 | </dataarea> | |
| 60811 | </part> | |
| 60812 | </software> | |
| 60813 | ||
| 60814 | <software name="bsmarpnt" supported="no"> | |
| 60815 | <description>Mario Paint - BS Ban (Jpn)</description> | |
| 60816 | <!-- BS --> | |
| 60817 | <year>199?</year> | |
| 60818 | <publisher><unknown></publisher> | |
| 60819 | <part name="cart" interface="snes_cart"> | |
| 60820 | <dataarea name="rom" size="1048576"> | |
| 60821 | <rom name="mario paint - bs ban (japan).bs" size="1048576" crc="4049e234" sha1="3a74179a49e433b7f743b37e84faee96399306e7" offset="0x000000" /> | |
| 60822 | </dataarea> | |
| 60823 | </part> | |
| 60824 | </software> | |
| 60825 | ||
| 60826 | <software name="bsmarpny" supported="no"> | |
| 60827 | <description>Mario Paint - Yuushou Naizou Ban (Jpn)</description> | |
| 60828 | <!-- BS --> | |
| 60829 | <year>199?</year> | |
| 60830 | <publisher><unknown></publisher> | |
| 60831 | <part name="cart" interface="snes_cart"> | |
| 60832 | <dataarea name="rom" size="1048576"> | |
| 60833 | <rom name="mario paint - yuushou naizou ban (japan).bs" size="1048576" crc="91cae9e2" sha1="5e8363db63c245fd7ed6f64b1a105dc808f9ce55" offset="0x000000" /> | |
| 60834 | </dataarea> | |
| 60835 | </part> | |
| 60836 | </software> | |
| 60837 | ||
| 60838 | <software name="bsninta2" supported="no"> | |
| 60839 | <description>Nintama Rantarou 2 (Jpn, BS)</description> | |
| 60840 | <!-- BS --> | |
| 60841 | <year>199?</year> | |
| 60842 | <publisher><unknown></publisher> | |
| 60843 | <part name="cart" interface="snes_cart"> | |
| 60844 | <dataarea name="rom" size="1048576"> | |
| 60845 | <rom name="nintama rantarou 2 (japan).bs" size="1048576" crc="dc9db257" sha1="ac2d779fe97cd01419df0d6ac89443a01d0e7d0f" offset="0x000000" /> | |
| 60846 | </dataarea> | |
| 60847 | </part> | |
| 60848 | </software> | |
| 60849 | ||
| 60850 | <software name="npm107" supported="no"> | |
| 60851 | <description>Nintendo Power Magazine 107 (Jpn)</description> | |
| 60852 | <!-- BS --> | |
| 60853 | <year>199?</year> | |
| 60854 | <publisher><unknown></publisher> | |
| 60855 | <part name="cart" interface="snes_cart"> | |
| 60856 | <dataarea name="rom" size="524288"> | |
| 60857 | <rom name="nintendo power magazine 107 (japan).bs" size="524288" crc="1622eb2d" sha1="dd8f214872a71da328c31a967765e27ad9f4239c" offset="0x000000" /> | |
| 60858 | </dataarea> | |
| 60859 | </part> | |
| 60860 | </software> | |
| 60861 | ||
| 60862 | <software name="bspanepn" supported="no"> | |
| 60863 | <description>Panel de Pon - Event '98 (Jpn, 0111)</description> | |
| 60864 | <!-- BS --> | |
| 60865 | <year>199?</year> | |
| 60866 | <publisher><unknown></publisher> | |
| 60867 | <part name="cart" interface="snes_cart"> | |
| 60868 | <dataarea name="rom" size="1048576"> | |
| 60869 | <rom name="panel de pon - event '98 (japan).bs" size="1048576" crc="36b0cf6c" sha1="b59061561a3aeac13e46735582f29826e7310141" offset="0x000000" /> | |
| 60870 | </dataarea> | |
| 60871 | </part> | |
| 60872 | </software> | |
| 60873 | ||
| 60874 | <software name="pokekame" supported="no"> | |
| 60875 | <description>Pokekame Magazine (Jpn)</description> | |
| 60876 | <!-- BS --> | |
| 60877 | <year>199?</year> | |
| 60878 | <publisher><unknown></publisher> | |
| 60879 | <part name="cart" interface="snes_cart"> | |
| 60880 | <dataarea name="rom" size="1048576"> | |
| 60881 | <rom name="pokekame magazine (japan).bs" size="1048576" crc="2a6c5ec6" sha1="35fc0d9789ef324dc27c5d041114631606862ca5" offset="0x000000" /> | |
| 60882 | </dataarea> | |
| 60883 | </part> | |
| 60884 | </software> | |
| 60885 | ||
| 60886 | <software name="radicald" supported="no"> | |
| 60887 | <description>Radical Dreamers - Nusume Nai Houseki (Jpn)</description> | |
| 60888 | <!-- BS --> | |
| 60889 | <year>199?</year> | |
| 60890 | <publisher><unknown></publisher> | |
| 60891 | <part name="cart" interface="snes_cart"> | |
| 60892 | <dataarea name="rom" size="1048576"> | |
| 60893 | <rom name="radical dreamers - nusume nai houseki (japan).bs" size="1048576" crc="be3048b6" sha1="7d724ee3473d68c5fb856a0ffc9ba5d1fc17efa5" offset="0x000000" /> | |
| 60894 | </dataarea> | |
| 60895 | </part> | |
| 60896 | </software> | |
| 60897 | ||
| 60898 | <software name="bswalker" supported="no"> | |
| 60899 | <description>Satella Walker 2 - Sate Bou o Sukuidase! (Jpn)</description> | |
| 60900 | <!-- BS --> | |
| 60901 | <year>199?</year> | |
| 60902 | <publisher><unknown></publisher> | |
| 60903 | <part name="cart" interface="snes_cart"> | |
| 60904 | <dataarea name="rom" size="1048576"> | |
| 60905 | <rom name="satella walker 2 - sate bou o sukuidase! (japan).bs" size="1048576" crc="7c8d211c" sha1="80bb866deb7141963e1ecf9b1f538ee0c28b11ed" offset="0x000000" /> | |
| 60906 | </dataarea> | |
| 60907 | </part> | |
| 60908 | </software> | |
| 60909 | ||
| 60910 | <software name="bsshangh" supported="no"> | |
| 60911 | <description>Shanghai - Banri no Choujou (Jpn, BS)</description> | |
| 60912 | <!-- BS --> | |
| 60913 | <year>199?</year> | |
| 60914 | <publisher><unknown></publisher> | |
| 60915 | <part name="cart" interface="snes_cart"> | |
| 60916 | <dataarea name="rom" size="1048576"> | |
| 60917 | <rom name="shanghai - banri no choujou (japan).bs" size="1048576" crc="60017697" sha1="94c365cddfa62eea1a56fb7f0dbcd2ad6812ddc8" offset="0x000000" /> | |
| 60918 | </dataarea> | |
| 60919 | </part> | |
| 60920 | </software> | |
| 60921 | ||
| 60922 | <software name="bswappr1" supported="no"> | |
| 60923 | <description>SoUSA Sentai Wappers - Mission 01 (Jpn)</description> | |
| 60924 | <!-- BS --> | |
| 60925 | <year>199?</year> | |
| 60926 | <publisher><unknown></publisher> | |
| 60927 | <part name="cart" interface="snes_cart"> | |
| 60928 | <dataarea name="rom" size="1048576"> | |
| 60929 | <rom name="sousa sentai wappers - mission 01 (japan).bs" size="1048576" crc="fec3d721" sha1="a96f2321a9ecf0261bd04d5aa0f15cafbe9ec30f" offset="0x000000" /> | |
| 60930 | </dataarea> | |
| 60931 | </part> | |
| 60932 | </software> | |
| 60933 | ||
| 60934 | <software name="bswappr2" supported="no"> | |
| 60935 | <description>SoUSA Sentai Wappers - Mission 02 (Jpn)</description> | |
| 60936 | <!-- BS --> | |
| 60937 | <year>199?</year> | |
| 60938 | <publisher><unknown></publisher> | |
| 60939 | <part name="cart" interface="snes_cart"> | |
| 60940 | <dataarea name="rom" size="1048576"> | |
| 60941 | <rom name="sousa sentai wappers - mission 02 (japan).bs" size="1048576" crc="a619c58d" sha1="067fd06286e3fd363b17f39876dc9dd53418038e" offset="0x000000" /> | |
| 60942 | </dataarea> | |
| 60943 | </part> | |
| 60944 | </software> | |
| 60945 | ||
| 60946 | <software name="bswapprs" supported="no"> | |
| 60947 | <description>SoUSA Sentai Wappers - Soushuuhen (Jpn)</description> | |
| 60948 | <!-- BS --> | |
| 60949 | <year>199?</year> | |
| 60950 | <publisher><unknown></publisher> | |
| 60951 | <part name="cart" interface="snes_cart"> | |
| 60952 | <dataarea name="rom" size="1048576"> | |
| 60953 | <rom name="sousa sentai wappers - soushuuhen (japan).bs" size="1048576" crc="0b423023" sha1="9ae3ee6edea0c5b348b6195b301092da06f9b409" offset="0x000000" /> | |
| 60954 | </dataarea> | |
| 60955 | </part> | |
| 60956 | </software> | |
| 60957 | ||
| 60958 | <software name="steeshot" supported="no"> | |
| 60959 | <description>Special Tee Shot (Jpn)</description> | |
| 60960 | <!-- BS --> | |
| 60961 | <year>199?</year> | |
| 60962 | <publisher><unknown></publisher> | |
| 60963 | <part name="cart" interface="snes_cart"> | |
| 60964 | <dataarea name="rom" size="1048576"> | |
| 60965 | <rom name="special tee shot (japan).bs" size="1048576" crc="2703f38e" sha1="8e7e08654a067c703c10d8a0858e2b55fac55170" offset="0x000000" /> | |
| 60966 | </dataarea> | |
| 60967 | </part> | |
| 60968 | </software> | |
| 60969 | ||
| 60970 | <software name="bssprigg" supported="no"> | |
| 60971 | <description>Spriggan Powered BS - Prelude (Jpn)</description> | |
| 60972 | <!-- BS --> | |
| 60973 | <year>199?</year> | |
| 60974 | <publisher><unknown></publisher> | |
| 60975 | <part name="cart" interface="snes_cart"> | |
| 60976 | <dataarea name="rom" size="1048576"> | |
| 60977 | <rom name="spriggan powered bs - prelude (japan).bs" size="1048576" crc="29b7cf34" sha1="fcd0258debc13e2651a96684ae95cf3d2c7f172f" offset="0x000000" /> | |
| 60978 | </dataarea> | |
| 60979 | </part> | |
| 60980 | </software> | |
| 60981 | ||
| 60982 | <software name="bssupedf" supported="no"> | |
| 60983 | <description>Super E.D.F. (Jpn, BS)</description> | |
| 60984 | <!-- BS --> | |
| 60985 | <year>199?</year> | |
| 60986 | <publisher><unknown></publisher> | |
| 60987 | <part name="cart" interface="snes_cart"> | |
| 60988 | <dataarea name="rom" size="1048576"> | |
| 60989 | <rom name="super e.d.f. (japan).bs" size="1048576" crc="f6aa6c8d" sha1="bd85da4175beef68bfff4dd39e979ecb23fc5c78" offset="0x000000" /> | |
| 60990 | </dataarea> | |
| 60991 | </part> | |
| 60992 | </software> | |
| 60993 | ||
| 60994 | <software name="bsfamwar" supported="no"> | |
| 60995 | <description>Super Famicom Wars - BS Ban - Tsukinowajima (Jpn)</description> | |
| 60996 | <!-- BS --> | |
| 60997 | <year>199?</year> | |
| 60998 | <publisher><unknown></publisher> | |
| 60999 | <part name="cart" interface="snes_cart"> | |
| 61000 | <dataarea name="rom" size="1048576"> | |
| 61001 | <rom name="super famicom wars - bs ban - tsukinowajima (japan).bs" size="1048576" crc="00513e71" sha1="3cdd2685ac91be55fb16f41a671af6c81a61f26a" offset="0x000000" /> | |
| 61002 | </dataarea> | |
| 61003 | </part> | |
| 61004 | </software> | |
| 61005 | ||
| 61006 | <software name="bssuprmj" supported="no"> | |
| 61007 | <description>Super Mahjong Taikai (Jpn, BS)</description> | |
| 61008 | <!-- BS --> | |
| 61009 | <year>199?</year> | |
| 61010 | <publisher><unknown></publisher> | |
| 61011 | <part name="cart" interface="snes_cart"> | |
| 61012 | <dataarea name="rom" size="524288"> | |
| 61013 | <rom name="super mahjong taikai (japan).bs" size="524288" crc="8eb00b71" sha1="36f73508f4c1e6d65f9b857edff03ce11312ffb4" offset="0x000000" /> | |
| 61014 | </dataarea> | |
| 61015 | </part> | |
| 61016 | </software> | |
| 61017 | ||
| 61018 | <software name="bssnazot" supported="no"> | |
| 61019 | <description>Super Nazo Puyo Tsuu - Rulue no Tetsuwan Hanjouki (Jpn, BS)</description> | |
| 61020 | <!-- BS --> | |
| 61021 | <year>199?</year> | |
| 61022 | <publisher><unknown></publisher> | |
| 61023 | <info name="alt_title" value="す~ぱ~なぞぷよ通 ルルーの鉄腕繁 盛記" /> | |
| 61024 | <part name="cart" interface="snes_cart"> | |
| 61025 | <dataarea name="rom" size="1048576"> | |
| 61026 | <rom name="super nazo puyo tsuu - rulue no tetsuwan hanjouki (japan).bs" size="1048576" crc="295e6a5f" sha1="116262e008ce5416d48a6a9ffe6d353d3659e608" offset="0x000000" /> | |
| 61027 | </dataarea> | |
| 61028 | </part> | |
| 61029 | </software> | |
| 61030 | ||
| 61031 | <software name="bsninja" supported="no"> | |
| 61032 | <description>Super Ninja-kun (Jpn, BS)</description> | |
| 61033 | <!-- BS --> | |
| 61034 | <year>199?</year> | |
| 61035 | <publisher><unknown></publisher> | |
| 61036 | <part name="cart" interface="snes_cart"> | |
| 61037 | <dataarea name="rom" size="1048576"> | |
| 61038 | <rom name="super ninja-kun (japan).bs" size="1048576" crc="bb06514e" sha1="fe69c4d4191387db3cc68d2492a633e3ad426bec" offset="0x000000" /> | |
| 61039 | </dataarea> | |
| 61040 | </part> | |
| 61041 | </software> | |
| 61042 | ||
| 61043 | <software name="bstsume" supported="no"> | |
| 61044 | <description>Super Tsumeshougi 1000 (Jpn, BS)</description> | |
| 61045 | <!-- BS --> | |
| 61046 | <year>199?</year> | |
| 61047 | <publisher><unknown></publisher> | |
| 61048 | <part name="cart" interface="snes_cart"> | |
| 61049 | <dataarea name="rom" size="524288"> | |
| 61050 | <rom name="super tsumeshougi 1000 (japan).bs" size="524288" crc="6ba3738c" sha1="56adc0a17c82529787c616319145fbc055d1ec5e" offset="0x000000" /> | |
| 61051 | </dataarea> | |
| 61052 | </part> | |
| 61053 | </software> | |
| 61054 | ||
| 61055 | <software name="bsvolly2" supported="no"> | |
| 61056 | <description>Super Volley II (Jpn, BS)</description> | |
| 61057 | <!-- BS --> | |
| 61058 | <year>199?</year> | |
| 61059 | <publisher><unknown></publisher> | |
| 61060 | <part name="cart" interface="snes_cart"> | |
| 61061 | <dataarea name="rom" size="1048576"> | |
| 61062 | <rom name="super volley ii (japan).bs" size="1048576" crc="515588a0" sha1="d293af5439b0d569a75e27aa9c0dcf03e561a31b" offset="0x000000" /> | |
| 61063 | </dataarea> | |
| 61064 | </part> | |
| 61065 | </software> | |
| 61066 | ||
| 61067 | <software name="bssutt98" supported="no"> | |
| 61068 | <description>Sutte Hakkun - 98 Event Version (Jpn)</description> | |
| 61069 | <!-- BS --> | |
| 61070 | <year>199?</year> | |
| 61071 | <publisher><unknown></publisher> | |
| 61072 | <part name="cart" interface="snes_cart"> | |
| 61073 | <dataarea name="rom" size="1048576"> | |
| 61074 | <rom name="sutte hakkun - 98 event version (japan).bs" size="1048576" crc="948b7f8e" sha1="07d341a77a21b9bdda04cb0f0d0d29b7e0efb143" offset="0x000000" /> | |
| 61075 | </dataarea> | |
| 61076 | </part> | |
| 61077 | </software> | |
| 61078 | ||
| 61079 | <software name="bssuttv2" supported="no"> | |
| 61080 | <description>Sutte Hakkun - BS Version 2 (Jpn, xxxx0603)</description> | |
| 61081 | <!-- BS --> | |
| 61082 | <year>199?</year> | |
| 61083 | <publisher><unknown></publisher> | |
| 61084 | <part name="cart" interface="snes_cart"> | |
| 61085 | <dataarea name="rom" size="1048576"> | |
| 61086 | <rom name="sutte hakkun - bs version 2 (japan) (xxxx-06-03).bs" size="1048576" crc="a387fe08" sha1="e7566cf5dd4cde20479c58e5b153507ef8c4d662" offset="0x000000" /> | |
| 61087 | </dataarea> | |
| 61088 | </part> | |
| 61089 | </software> | |
| 61090 | ||
| 61091 | <software name="bssuttv2a" cloneof="bssuttv2" supported="no"> | |
| 61092 | <description>Sutte Hakkun - BS Version 2 (Jpn, xxxx1008)</description> | |
| 61093 | <!-- BS --> | |
| 61094 | <year>199?</year> | |
| 61095 | <publisher><unknown></publisher> | |
| 61096 | <part name="cart" interface="snes_cart"> | |
| 61097 | <dataarea name="rom" size="1048576"> | |
| 61098 | <rom name="sutte hakkun - bs version 2 (japan) (xxxx-10-08).bs" size="1048576" crc="a224c713" sha1="8926559a716edffed10609dbb5355f1951a0c1e7" offset="0x000000" /> | |
| 61099 | </dataarea> | |
| 61100 | </part> | |
| 61101 | </software> | |
| 61102 | ||
| 61103 | <software name="bssuttev" supported="no"> | |
| 61104 | <description>Sutte Hakkun - Event Version (Jpn)</description> | |
| 61105 | <!-- BS --> | |
| 61106 | <year>199?</year> | |
| 61107 | <publisher><unknown></publisher> | |
| 61108 | <part name="cart" interface="snes_cart"> | |
| 61109 | <dataarea name="rom" size="1048576"> | |
| 61110 | <rom name="sutte hakkun - event version (japan).bs" size="1048576" crc="4f6c48d1" sha1="415804504016ae03a3830f62e3917d1d4b918651" offset="0x000000" /> | |
| 61111 | </dataarea> | |
| 61112 | </part> | |
| 61113 | </software> | |
| 61114 | ||
| 61115 | <software name="tconflix" supported="no"> | |
| 61116 | <description>Treasure Conflix (Jpn)</description> | |
| 61117 | <!-- BS --> | |
| 61118 | <year>199?</year> | |
| 61119 | <publisher><unknown></publisher> | |
| 61120 | <part name="cart" interface="snes_cart"> | |
| 61121 | <dataarea name="rom" size="1048576"> | |
| 61122 | <rom name="treasure conflix (japan).bs" size="1048576" crc="57a070e2" sha1="eaeceb99fe7caedb01c2e137669cb05aefb60944" offset="0x000000" /> | |
| 61123 | </dataarea> | |
| 61124 | </part> | |
| 61125 | </software> | |
| 61126 | ||
| 61127 | <software name="bswaiwai" supported="no"> | |
| 61128 | <description>Waiwai Check - 3-7 Gou (Jpn)</description> | |
| 61129 | <!-- BS --> | |
| 61130 | <year>199?</year> | |
| 61131 | <publisher><unknown></publisher> | |
| 61132 | <part name="cart" interface="snes_cart"> | |
| 61133 | <dataarea name="rom" size="1048576"> | |
| 61134 | <rom name="waiwai check - 3-7 gou (japan).bs" size="1048576" crc="34fb38cb" sha1="a10c55aee93144449bca432cb5318d8e096118bc" offset="0x000000" /> | |
| 61135 | </dataarea> | |
| 61136 | </part> | |
| 61137 | </software> | |
| 61138 | ||
| 61139 | <software name="bswario" supported="no"> | |
| 61140 | <description>Wario no Mori - Futatabi (Jpn)</description> | |
| 61141 | <!-- BS --> | |
| 61142 | <year>199?</year> | |
| 61143 | <publisher><unknown></publisher> | |
| 61144 | <part name="cart" interface="snes_cart"> | |
| 61145 | <dataarea name="rom" size="1048576"> | |
| 61146 | <rom name="wario no mori - futatabi (japan).bs" size="1048576" crc="e80783e5" sha1="8bf9312013f62cf8631a80f3f532db461a5c0a14" offset="0x000000" /> | |
| 61147 | </dataarea> | |
| 61148 | </part> | |
| 61149 | </software> | |
| 61150 | ||
| 61151 | <software name="bswizrd5" supported="no"> | |
| 61152 | <description>Wizardry V - Saika no Chuushin (Jpn, BS)</description> | |
| 61153 | <!-- BS --> | |
| 61154 | <year>199?</year> | |
| 61155 | <publisher><unknown></publisher> | |
| 61156 | <part name="cart" interface="snes_cart"> | |
| 61157 | <dataarea name="rom" size="1048576"> | |
| 61158 | <rom name="wizardry v - saika no chuushin (japan).bs" size="1048576" crc="49ef7aa9" sha1="9d4854c06fdfb7447496568cfbd1d7dda3183e32" offset="0x000000" /> | |
| 61159 | </dataarea> | |
| 61160 | </part> | |
| 61161 | </software> | |
| 61162 | ||
| 61163 | <software name="bsyoshi" supported="no"> | |
| 61164 | <description>Yoshi no Panepon - BS Ban (Jpn)</description> | |
| 61165 | <!-- BS --> | |
| 61166 | <year>199?</year> | |
| 61167 | <publisher><unknown></publisher> | |
| 61168 | <part name="cart" interface="snes_cart"> | |
| 61169 | <dataarea name="rom" size="1048576"> | |
| 61170 | <rom name="yoshi no panepon - bs ban (japan) (en,ja).bs" size="1048576" crc="7a633bc6" sha1="d3bcea66a3fd1d6518c006cd906b3b8f898a2c74" offset="0x000000" /> | |
| 61171 | </dataarea> | |
| 61172 | </part> | |
| 61173 | </software> | |
| 61174 | ||
| 61175 | <software name="bsyung1" supported="no"> | |
| 61176 | <description>Yung Hakase no Shinsatsushitsu - Dai-1-gou (Jpn)</description> | |
| 61177 | <!-- BS --> | |
| 61178 | <year>199?</year> | |
| 61179 | <publisher><unknown></publisher> | |
| 61180 | <part name="cart" interface="snes_cart"> | |
| 61181 | <dataarea name="rom" size="1048576"> | |
| 61182 | <rom name="yung hakase no shinsatsushitsu - dai-1-gou (japan).bs" size="1048576" crc="27326da6" sha1="db12d90bdfcca54b1641d3ebd298f2ba230c74cf" offset="0x000000" /> | |
| 61183 | </dataarea> | |
| 61184 | </part> | |
| 61185 | </software> | |
| 61186 | ||
| 61187 | <software name="bsyung2" supported="no"> | |
| 61188 | <description>Yung Hakase no Shinsatsushitsu - Dai-2-gou (Jpn)</description> | |
| 61189 | <!-- BS --> | |
| 61190 | <year>199?</year> | |
| 61191 | <publisher><unknown></publisher> | |
| 61192 | <part name="cart" interface="snes_cart"> | |
| 61193 | <dataarea name="rom" size="1048576"> | |
| 61194 | <rom name="yung hakase no shinsatsushitsu - dai-2-gou (japan).bs" size="1048576" crc="66ea357f" sha1="b532b5bd160208e90753f2798366893a0e8b7c70" offset="0x000000" /> | |
| 61195 | </dataarea> | |
| 61196 | </part> | |
| 61197 | </software> | |
| 61198 | ||
| 61199 | <software name="bszelda3" supported="no"> | |
| 61200 | <description>Zelda no Densetsu - Kamigami no Triforce (Jpn, BS, 0528)</description> | |
| 61201 | <!-- BS --> | |
| 61202 | <year>199?</year> | |
| 61203 | <publisher><unknown></publisher> | |
| 61204 | <part name="cart" interface="snes_cart"> | |
| 61205 | <dataarea name="rom" size="1048576"> | |
| 61206 | <rom name="zelda no densetsu - kamigami no triforce (japan).bs" size="1048576" crc="1e1cc639" sha1="5ecc217abfa1d8483002407cdaab3c7415f29c4f" offset="0x000000" /> | |
| 61207 | </dataarea> | |
| 61208 | </part> | |
| 61209 | </software> | |
| 61210 | ||
| 61211 | <software name="bszotto" supported="no"> | |
| 61212 | <description>Zootto Mahjong! - Event Version (Jpn)</description> | |
| 61213 | <!-- BS --> | |
| 61214 | <year>199?</year> | |
| 61215 | <publisher><unknown></publisher> | |
| 61216 | <part name="cart" interface="snes_cart"> | |
| 61217 | <dataarea name="rom" size="1048576"> | |
| 61218 | <rom name="zootto mahjong! - event version (japan).bs" size="1048576" crc="7aca6cf0" sha1="2ee76761e023f0c51fbbf4797c175a7c752e788c" offset="0x000000" /> | |
| 61219 | </dataarea> | |
| 61220 | </part> | |
| 61221 | </software> | |
| 61222 | ||
| 61223 | <software name="bszottob" supported="no"> | |
| 61224 | <description>Zootto Mahjong! - Preview Ban (Jpn)</description> | |
| 61225 | <!-- BS --> | |
| 61226 | <year>199?</year> | |
| 61227 | <publisher><unknown></publisher> | |
| 61228 | <part name="cart" interface="snes_cart"> | |
| 61229 | <dataarea name="rom" size="1048576"> | |
| 61230 | <rom name="zootto mahjong! - preview ban (japan).bs" size="1048576" crc="e8a0758d" sha1="8ec66c5dcda3392c27bc532a06d726783c3a1565" offset="0x000000" /> | |
| 61231 | </dataarea> | |
| 61232 | </part> | |
| 61233 | </software> | |
| 61234 | ||
| 61235 | <software name="bsaklive" supported="no"> | |
| 61236 | <!-- this game has a corrupted header, and requires to be patched in order to work --> | |
| 61237 | <description>AK LIVE Hit Gang (Jpn, BS)</description> | |
| 61238 | <!-- BS --> | |
| 61239 | <year>199?</year> | |
| 61240 | <publisher><unknown></publisher> | |
| 61241 | <part name="cart" interface="snes_cart"> | |
| 61242 | <dataarea name="rom" size="524288"> | |
| 61243 | <rom name="ak live hit gang.bs" size="524288" crc="9905d4c3" sha1="bd742cbd788439e021cd101d935451ba34a8116e" offset="0x000000" /> | |
| 61244 | </dataarea> | |
| 61245 | </part> | |
| 61246 | </software> | |
| 61247 | ||
| 61248 | <software name="bsgamb19" supported="no"> | |
| 61249 | <description>Gambler Jikochuushinha 2 - Dorapon Quest (Jpn, BS, 1219)</description> | |
| 61250 | <!-- BS --> | |
| 61251 | <year>199?</year> | |
| 61252 | <publisher><unknown></publisher> | |
| 61253 | <part name="cart" interface="snes_cart"> | |
| 61254 | <dataarea name="rom" size="1048576"> | |
| 61255 | <rom name="gambler jiko chuushinha 2 - dorapon quest (bs) (japan) (dec 19).bs" size="1048576" crc="11b8e93a" sha1="10ed890794c969654fccc8b15e92d4cef5d13382" offset="0x000000" /> | |
| 61256 | </dataarea> | |
| 61257 | </part> | |
| 61258 | </software> | |
| 61259 | ||
| 61260 | <software name="bsgamb20" supported="no"> | |
| 61261 | <description>Gambler Jikochuushinha 2 - Dorapon Quest (Jpn, BS, 1220)</description> | |
| 61262 | <!-- BS --> | |
| 61263 | <year>199?</year> | |
| 61264 | <publisher><unknown></publisher> | |
| 61265 | <part name="cart" interface="snes_cart"> | |
| 61266 | <dataarea name="rom" size="1048576"> | |
| 61267 | <rom name="gambler jiko chuushinha 2 - dorapon quest (bs) (japan) (dec 20).bs" size="1048576" crc="f9e8a8ee" sha1="a4999b026cd05ae71b6f0a8ede1ce1bf86215d08" offset="0x000000" /> | |
| 61268 | </dataarea> | |
| 61269 | </part> | |
| 61270 | </software> | |
| 61271 | ||
| 61272 | <software name="bsbomb2" supported="no"> | |
| 61273 | <description>Super Bomberman 2 (Jpn, BS)</description> | |
| 61274 | <!-- BS --> | |
| 61275 | <year>199?</year> | |
| 61276 | <publisher><unknown></publisher> | |
| 61277 | <part name="cart" interface="snes_cart"> | |
| 61278 | <dataarea name="rom" size="1048576"> | |
| 61279 | <rom name="super bomberman 2.bs" size="1048576" crc="095f2969" sha1="9fc6d3df4c35f1a1ee1e1c825ad76e07126c383a" offset="0x000000" /> | |
| 61280 | </dataarea> | |
| 61281 | </part> | |
| 61282 | </software> | |
| 61283 | ||
| 61284 | <software name="bssfpw" supported="no"> | |
| 61285 | <description>Super Fire Pro Wrestling (Jpn, BS)</description> | |
| 61286 | <!-- BS --> | |
| 61287 | <year>199?</year> | |
| 61288 | <publisher><unknown></publisher> | |
| 61289 | <part name="cart" interface="snes_cart"> | |
| 61290 | <dataarea name="rom" size="1048576"> | |
| 61291 | <rom name="super fire pro wrestling.bs" size="1048576" crc="dfd7b14d" sha1="1ff3eb2cc71abd5a0f00f6ddae24f494273adf28" offset="0x000000" /> | |
| 61292 | </dataarea> | |
| 61293 | </part> | |
| 61294 | </software> | |
| 61295 | ||
| 61296 | <software name="bsnazo" supported="no"> | |
| 61297 | <description>Super Nazo Puyo - Rulue no Roux (Jpn, BS)</description> | |
| 61298 | <!-- BS --> | |
| 61299 | <year>199?</year> | |
| 61300 | <publisher><unknown></publisher> | |
| 61301 | <part name="cart" interface="snes_cart"> | |
| 61302 | <dataarea name="rom" size="1048576"> | |
| 61303 | <rom name="super nazo puyo (bs) (japan).bs" size="1048576" crc="6b36b2af" sha1="a013f8453c7dbfd228d592340c08161f019d15bd" offset="0x000000" /> | |
| 61304 | </dataarea> | |
| 61305 | </part> | |
| 61306 | </software> | |
| 61307 | ||
| 61308 | <software name="bsbokud2" supported="no"> | |
| 61309 | <description>BS Bokujou Monogatari Dai-2-wa (Jpn, BS)</description> | |
| 61310 | <!-- BS --> | |
| 61311 | <year>199?</year> | |
| 61312 | <publisher><unknown></publisher> | |
| 61313 | <part name="cart" interface="snes_cart"> | |
| 61314 | <dataarea name="rom" size="1048576"> | |
| 61315 | <rom name="bs bokujo monogatari da-2-wa (japan).bs" size="1048576" crc="0bf62746" sha1="2f15cf736d7370646cfbd825e6d66efa0e6deb04" offset="0x000000" /> | |
| 61316 | </dataarea> | |
| 61317 | </part> | |
| 61318 | </software> | |
| 61319 | ||
| 61320 | <software name="bsbokud4" supported="no"> | |
| 61321 | <description>BS Bokujou Monogatari Dai-4-wa (Jpn, BS)</description> | |
| 61322 | <!-- BS --> | |
| 61323 | <year>199?</year> | |
| 61324 | <publisher><unknown></publisher> | |
| 61325 | <part name="cart" interface="snes_cart"> | |
| 61326 | <dataarea name="rom" size="1048576"> | |
| 61327 | <rom name="bs bokujo monogatari dai-4-wa (japan).bs" size="1048576" crc="f384b235" sha1="6011df3c53de919fcf2e6fd104d5ea1b7a0cb3d6" offset="0x000000" /> | |
| 61328 | </dataarea> | |
| 61329 | </part> | |
| 61330 | </software> | |
| 61331 | ||
| 61332 | <software name="bsboku" supported="no"> | |
| 61333 | <description>Bokujou Monogatari (Jpn, BS)</description> | |
| 61334 | <!-- BS --> | |
| 61335 | <year>199?</year> | |
| 61336 | <publisher><unknown></publisher> | |
| 61337 | <part name="cart" interface="snes_cart"> | |
| 61338 | <dataarea name="rom" size="1048576"> | |
| 61339 | <rom name="bokujou monogatari.bs" size="1048576" crc="e2093836" sha1="97520f8ac8cb2c5b8175e9148741d2e0b477e08e" offset="0x000000" /> | |
| 61340 | </dataarea> | |
| 61341 | </part> | |
| 61342 | </software> | |
| 61343 | ||
| 61344 | <software name="bscasino" supported="no"> | |
| 61345 | <!-- this was dumped from a memory pack containing data for both games. split dumps are also available, but they seem to have issues --> | |
| 61346 | <description>Kouryaku Casino Bar Nichiyoubi (Jpn) & Game Tora no Ooana Special (Jpn, 0224)</description> | |
| 61347 | <!-- BS --> | |
| 61348 | <year>199?</year> | |
| 61349 | <publisher><unknown></publisher> | |
| 61350 | <part name="cart" interface="snes_cart"> | |
| 61351 | <dataarea name="rom" size="1048576"> | |
| 61352 | <rom name="kouryaku casino bar roulette + game tora no ooana special 2-24.bs" size="1048576" crc="4b881535" sha1="ae574eae616f30accb2a000d6d480fac9845dbc2" offset="0x000000" /> | |
| 61353 | </dataarea> | |
| 61354 | </part> | |
| 61355 | </software> | |
| 61356 | ||
| 61357 | <!-- this game has a corrupted header, and requires to be patched in order to work --> | |
| 61358 | <software name="bstamopc" supported="no"> | |
| 61359 | <description>Tamori no Picross (Jpn, 0626)</description> | |
| 61360 | <!-- BS --> | |
| 61361 | <year>199?</year> | |
| 61362 | <publisher><unknown></publisher> | |
| 61363 | <part name="cart" interface="snes_cart"> | |
| 61364 | <dataarea name="rom" size="1048576"> | |
| 61365 | <rom name="tamori_no_picross_6-26.bs" size="1048576" crc="c155ecc7" sha1="30260a38b1403c117274f89373094a00cfe0e952" offset="0x000000" /> | |
| 61366 | </dataarea> | |
| 61367 | </part> | |
| 61368 | </software> | |
| 61369 | ||
| 61370 | <software name="bstamopc1" cloneof="bstamopc" supported="no"> | |
| 61371 | <description>Tamori no Picross (Jpn, 0613)</description> | |
| 61372 | <!-- BS --> | |
| 61373 | <year>199?</year> | |
| 61374 | <publisher><unknown></publisher> | |
| 61375 | <part name="cart" interface="snes_cart"> | |
| 61376 | <dataarea name="rom" size="1048576"> | |
| 61377 | <rom name="tamori_no_picross_6-13.bs" size="1048576" crc="bf6cab42" sha1="9573a7e1a2151b05302a9ea2e5b7f1ab1f195593" offset="0x000000" /> | |
| 61378 | </dataarea> | |
| 61379 | </part> | |
| 61380 | </software> | |
| 61381 | ||
| 61382 | <software name="bssndlov" supported="no"> | |
| 61383 | <description>BS Sound Journal for Lovers - Valentine Special Vol. 1 (Jpn)</description> | |
| 61384 | <!-- BS --> | |
| 61385 | <year>199?</year> | |
| 61386 | <publisher><unknown></publisher> | |
| 61387 | <part name="cart" interface="snes_cart"> | |
| 61388 | <dataarea name="rom" size="1048576"> | |
| 61389 | <rom name="bs sound journal for lovers - valentine special vol. 1.bs" size="1048576" crc="0bb960c9" sha1="ca1020f1b2a5339669e36037a8ac3fa25701fd82" offset="0x000000" /> | |
| 61390 | </dataarea> | |
| 61391 | </part> | |
| 61392 | </software> | |
| 61393 | ||
| 61394 | <software name="bspachi4a" cloneof="bspachi4" supported="no"> | |
| 61395 | <description>Let's Pachinko Nante Gindama 4 (Jpn, 1124)</description> | |
| 61396 | <!-- BS --> | |
| 61397 | <year>199?</year> | |
| 61398 | <publisher><unknown></publisher> | |
| 61399 | <part name="cart" interface="snes_cart"> | |
| 61400 | <dataarea name="rom" size="1048576"> | |
| 61401 | <rom name="lets pachinko nante gindama 4 (bs) (11-24).bs" size="1048576" crc="aa934596" sha1="5883b8e0e3409f78a1ae1d9e471ef4678cb23b88" offset="0x000000" /> | |
| 61402 | </dataarea> | |
| 61403 | </part> | |
| 61404 | </software> | |
| 61405 | ||
| 61406 | <software name="bspanepna" cloneof="bspanepn" supported="no"> | |
| 61407 | <description>Panel de Pon - Event '98 (Jpn, 1228)</description> | |
| 61408 | <!-- BS --> | |
| 61409 | <year>199?</year> | |
| 61410 | <publisher><unknown></publisher> | |
| 61411 | <part name="cart" interface="snes_cart"> | |
| 61412 | <dataarea name="rom" size="1048576"> | |
| 61413 | <rom name="panel de pon '98 event version (bs) (12-28).bs" size="1048576" crc="720a850c" sha1="cfbefc41406679c8bc906da6ed9db16f46c6beff" offset="0x000000" /> | |
| 61414 | </dataarea> | |
| 61415 | </part> | |
| 61416 | </software> | |
| 61417 | ||
| 61418 | <software name="bszelda3a" cloneof="bszelda3" supported="no"> | |
| 61419 | <description>Zelda no Densetsu - Kamigami no Triforce (Jpn, BS, 1130, Locked)</description> | |
| 61420 | <!-- BS --> | |
| 61421 | <year>199?</year> | |
| 61422 | <publisher><unknown></publisher> | |
| 61423 | <part name="cart" interface="snes_cart"> | |
| 61424 | <dataarea name="rom" size="1048576"> | |
| 61425 | <rom name="zelda no densetsu - kamigami no triforce (bs) (11-30).bs" size="1048576" crc="97a68e79" sha1="2453d475a26077be0b4c259325e90d2aa0a5a0f8" offset="0x000000" /> | |
| 61426 | </dataarea> | |
| 61427 | </part> | |
| 61428 | </software> | |
| 61429 | ||
| 61430 | <software name="bscuonpaa" cloneof="bscuonpa" supported="no"> | |
| 61431 | <description>Cu-On-Pa SFC (Jpn, BS, 0615)</description> | |
| 61432 | <!-- BS --> | |
| 61433 | <year>199?</year> | |
| 61434 | <publisher><unknown></publisher> | |
| 61435 | <part name="cart" interface="snes_cart"> | |
| 61436 | <dataarea name="rom" size="1048576"> | |
| 61437 | <rom name="cu on pa (bs) (6-15).bs" size="1048576" crc="844fc3dc" sha1="f09dc86eccae64e54ab71cd051e9cdcd77edaeac" offset="0x000000" /> | |
| 61438 | </dataarea> | |
| 61439 | </part> | |
| 61440 | </software> | |
| 61441 | ||
| 61442 | <software name="bsfzgp2a" cloneof="bsfzgp2" supported="no"> | |
| 61443 | <description>BS F-Zero Grand Prix 2 - Practice (Jpn, Bad?)</description> | |
| 61444 | <year>199?</year> | |
| 61445 | <!-- BS --> | |
| 61446 | <publisher><unknown></publisher> | |
| 61447 | <part name="cart" interface="snes_cart"> | |
| 61448 | <dataarea name="rom" size="1048576"> | |
| 61449 | <rom name="zero2.bs" size="1048576" crc="3d31659d" sha1="ee3aaf2975ab383768ab88cdb7d7beddf64ddc34" offset="0x000000" /> | |
| 61450 | </dataarea> | |
| 61451 | </part> | |
| 61452 | </software> | |
| 61453 | ||
| 61454 | <software name="bsyoshi1" cloneof="bsyoshi" supported="no"> | |
| 61455 | <description>Yoshi no Panepon - BS Ban (Jpn, 0102)</description> | |
| 61456 | <!-- BS --> | |
| 61457 | <year>199?</year> | |
| 61458 | <publisher><unknown></publisher> | |
| 61459 | <part name="cart" interface="snes_cart"> | |
| 61460 | <dataarea name="rom" size="1048576"> | |
| 61461 | <rom name="yoshi no panepon - bs ban (bs) (1-2).bs" size="1048576" crc="6775b6ca" sha1="0e13049e2f0e5fd3e65d36bdad790e1312392476" offset="0x000000" /> | |
| 61462 | </dataarea> | |
| 61463 | </part> | |
| 61464 | </software> | |
| 61465 | ||
| 61466 | <software name="bsyoshi2" cloneof="bsyoshi" supported="no"> | |
| 61467 | <description>Yoshi no Panepon - BS Ban (Jpn, 0614)</description> | |
| 61468 | <!-- BS --> | |
| 61469 | <year>199?</year> | |
| 61470 | <publisher><unknown></publisher> | |
| 61471 | <part name="cart" interface="snes_cart"> | |
| 61472 | <dataarea name="rom" size="1048576"> | |
| 61473 | <rom name="yoshi no panepon - bs ban (bs) (6-14).sfc" size="1048576" crc="2b8deb64" sha1="29cf1a5b24e949e73409c3923549f2963901c971" offset="0x000000" /> | |
| 61474 | </dataarea> | |
| 61475 | </part> | |
| 61476 | </software> | |
| 61477 | ||
| 61478 | <software name="bsyoshi3" cloneof="bsyoshi" supported="no"> | |
| 61479 | <description>Yoshi no Panepon - BS Ban (Jpn, 0705)</description> | |
| 61480 | <!-- BS --> | |
| 61481 | <year>199?</year> | |
| 61482 | <publisher><unknown></publisher> | |
| 61483 | <part name="cart" interface="snes_cart"> | |
| 61484 | <dataarea name="rom" size="1048576"> | |
| 61485 | <rom name="yoshi no panepon - bs ban (bs) (7-5).bs" size="1048576" crc="a35f7c27" sha1="f769165fd0ff2f885580f9f61ee55e9a29b1f6ea" offset="0x000000" /> | |
| 61486 | </dataarea> | |
| 61487 | </part> | |
| 61488 | </software> | |
| 61489 | ||
| 61490 | <software name="bssuttv2b" cloneof="bssuttv2" supported="no"> | |
| 61491 | <description>Sutte Hakkun - BS Version 2 (Jpn, 1019)</description> | |
| 61492 | <!-- BS --> | |
| 61493 | <year>199?</year> | |
| 61494 | <publisher><unknown></publisher> | |
| 61495 | <part name="cart" interface="snes_cart"> | |
| 61496 | <dataarea name="rom" size="1048576"> | |
| 61497 | <rom name="sutte hakkun - bs version 2 (bs-d) (10-19).bs" size="1048576" crc="a01abfbd" sha1="cb6b47fedc1296bbae53a34a844d30c19d3ab883" offset="0x000000" /> | |
| 61498 | </dataarea> | |
| 61499 | </part> | |
| 61500 | </software> | |
| 61501 | ||
| 61502 | <software name="bssuttv2c" cloneof="bssuttv2" supported="no"> | |
| 61503 | <description>Sutte Hakkun - BS Version 2 (Jpn, 1125)</description> | |
| 61504 | <!-- BS --> | |
| 61505 | <year>199?</year> | |
| 61506 | <publisher><unknown></publisher> | |
| 61507 | <part name="cart" interface="snes_cart"> | |
| 61508 | <dataarea name="rom" size="1048576"> | |
| 61509 | <rom name="sutte hakkun - bs version 2 (bs-d) (11-25).bs" size="1048576" crc="c2f2ad15" sha1="f9c3397cb9f047aa3278a6d082276ae080cdd447" offset="0x000000" /> | |
| 61510 | </dataarea> | |
| 61511 | </part> | |
| 61512 | </software> | |
| 61513 | ||
| 61514 | <software name="bskirkuza" cloneof="bskirkuz" supported="no"> | |
| 61515 | <description>Kirby no Omochabako - Hoshi Kuzushi (Jpn, 0226)</description> | |
| 61516 | <!-- BS --> | |
| 61517 | <year>199?</year> | |
| 61518 | <publisher><unknown></publisher> | |
| 61519 | <part name="cart" interface="snes_cart"> | |
| 61520 | <dataarea name="rom" size="524288"> | |
| 61521 | <rom name="kirby no omochabako - hoshi kuzushi (bs) (2-26) (!).bs" size="524288" crc="3dbbd86a" sha1="b6cda98a2a6a7a6aa9a64aec7f346039a608b093" offset="0x000000" /> | |
| 61522 | </dataarea> | |
| 61523 | </part> | |
| 61524 | </software> | |
| 61525 | ||
| 61526 | <software name="bsbaku" supported="no"> | |
| 61527 | <description>Bakusho Mondai no Shirikon Chounaikai (Jpn, 0622)</description> | |
| 61528 | <!-- BS --> | |
| 61529 | <year>199?</year> | |
| 61530 | <publisher><unknown></publisher> | |
| 61531 | <part name="cart" interface="snes_cart"> | |
| 61532 | <dataarea name="rom" size="1048576"> | |
| 61533 | <rom name="bakusho mondai no shirikon chounaikai 6-22.bs" size="1048576" crc="b86e7ab1" sha1="3cfa8bc8d6ec36e46d7a434b5e5fa835c90bc4f0" offset="0x000000" /> | |
| 61534 | </dataarea> | |
| 61535 | </part> | |
| 61536 | </software> | |
| 61537 | ||
| 61538 | <software name="bsyuki" supported="no"> | |
| 61539 | <description>BS Yuuki Nae no GE-MU no Tsubo (Jpn)</description> | |
| 61540 | <!-- BS --> | |
| 61541 | <year>199?</year> | |
| 61542 | <publisher><unknown></publisher> | |
| 61543 | <part name="cart" interface="snes_cart"> | |
| 61544 | <dataarea name="rom" size="524288"> | |
| 61545 | <rom name="bs yuuki nae no ge-mu no tsubo (japan).bs" size="524288" crc="2c889959" sha1="ce70937945e84db5d5e0cf1d9bd622d2c69adff3" offset="0x000000" /> | |
| 61546 | </dataarea> | |
| 61547 | </part> | |
| 61548 | </software> | |
| 61549 | ||
| 61550 | <software name="bsactr" supported="no"> | |
| 61551 | <description>ActRaiser (Jpn, BS)</description> | |
| 61552 | <!-- BS --> | |
| 61553 | <year>199?</year> | |
| 61554 | <publisher><unknown></publisher> | |
| 61555 | <part name="cart" interface="snes_cart"> | |
| 61556 | <dataarea name="rom" size="1048576"> | |
| 61557 | <rom name="actraiser (japan).bs" size="1048576" crc="b9a968ff" sha1="1d94b555e3a5a018dabf5fe2ea62ba73c2927a82" offset="0x000000" /> | |
| 61558 | </dataarea> | |
| 61559 | </part> | |
| 61560 | </software> | |
| 61561 | ||
| 61562 | <software name="bspuyo" supported="no"> | |
| 61563 | <description>Puyo Puyo Tsuu BS Ban (Jpn)</description> | |
| 61564 | <!-- BS --> | |
| 61565 | <year>1995</year> | |
| 61566 | <publisher><unknown></publisher> | |
| 61567 | <part name="cart" interface="snes_cart"> | |
| 61568 | <dataarea name="rom" size="1048576"> | |
| 61569 | <rom name="puyob.bs" size="1048576" crc="e63ee3b1" sha1="2fa77c709294da3a0ae5a918a574b49302a0bf17" offset="0x000000" /> | |
| 61570 | </dataarea> | |
| 61571 | </part> | |
| 61572 | </software> | |
| 61573 | ||
| 61574 | <software name="bskklown" supported="no"> | |
| 61575 | <description>Kid Klown no Crazy Chase (Jpn, BS)</description> | |
| 61576 | <!-- BS --> | |
| 61577 | <year>199?</year> | |
| 61578 | <publisher><unknown></publisher> | |
| 61579 | <part name="cart" interface="snes_cart"> | |
| 61580 | <dataarea name="rom" size="1048576"> | |
| 61581 | <rom name="kid klown no crazy chase.bs" size="1048576" crc="cd6aabee" sha1="b4ef639f09376a7880dcec6f23a03b08c0254b86" offset="0x000000" /> | |
| 61582 | </dataarea> | |
| 61583 | </part> | |
| 61584 | </software> | |
| 61585 | ||
| 61586 | <software name="bsfami" supported="no"> | |
| 61587 | <description>BS Famitsu Magazine Karara Ban 4/27 (Jpn)</description> | |
| 61588 | <!-- BS --> | |
| 61589 | <year>199?</year> | |
| 61590 | <publisher><unknown></publisher> | |
| 61591 | <part name="cart" interface="snes_cart"> | |
| 61592 | <dataarea name="rom" size="524288"> | |
| 61593 | <rom name="weekly famitsu express 4-27.bs" size="524288" crc="d8bc7bea" sha1="57c14d389b216b01616caad704a998d7d03dc155" offset="0x000000" /> | |
| 61594 | </dataarea> | |
| 61595 | </part> | |
| 61596 | </software> | |
| 61597 | ||
| 61598 | <software name="bsdoki1" cloneof="bsdoki" supported="no"> | |
| 61599 | <description>Konae-chan no Dokidoki Penguin Kazoku (Jpn, Alt)</description> | |
| 61600 | <!-- same game as the other dump, but taken from a different broadcast in the same week --> | |
| 61601 | <!-- BS --> | |
| 61602 | <year>199?</year> | |
| 61603 | <publisher><unknown></publisher> | |
| 61604 | <part name="cart" interface="snes_cart"> | |
| 61605 | <dataarea name="rom" size="262144"> | |
| 61606 | <rom name="bs konae chan no dokidoki pengin kazoku (japan) (alt).bs" size="262144" crc="33cb8a80" sha1="9c2500e5ab9c46cd32a6366fcb3df811888191b4" offset="0x000000" /> | |
| 61607 | </dataarea> | |
| 61608 | </part> | |
| 61609 | </software> | |
| 61610 | ||
| 61611 | <software name="bsjol1" supported="no"> | |
| 61612 | <description>Jewel Of Live (Jpn)</description> | |
| 61613 | <!-- BS --> | |
| 61614 | <year>199?</year> | |
| 61615 | <publisher><unknown></publisher> | |
| 61616 | <part name="cart" interface="snes_cart"> | |
| 61617 | <dataarea name="rom" size="1048576"> | |
| 61618 | <rom name="jewel of live (rpg maker super dante).bs" size="1048576" crc="ce6a4d7f" sha1="18b18757c79b48d1472dba53e475edae73e867ae" offset="0x000000" /> | |
| 61619 | </dataarea> | |
| 61620 | </part> | |
| 61621 | </software> | |
| 61622 | ||
| 61623 | <software name="bsstrw12" supported="no"> | |
| 61624 | <description>Media Strawberry Volume 12 (Jpn)</description> | |
| 61625 | <!-- BS --> | |
| 61626 | <year>199?</year> | |
| 61627 | <publisher><unknown></publisher> | |
| 61628 | <part name="cart" interface="snes_cart"> | |
| 61629 | <dataarea name="rom" size="524288"> | |
| 61630 | <rom name="media strawberry volume 12.bs" size="524288" crc="0836869e" sha1="a9c248668d9d51633a6da8a4846aea3e25c2d1a3" offset="0x000000" /> | |
| 61631 | </dataarea> | |
| 61632 | </part> | |
| 61633 | </software> | |
| 61634 | ||
| 61635 | <software name="bsdormf" supported="no"> | |
| 61636 | <description>Do-Re-Mi de Faa! Vol. 6 - 5/4 (Jpn)</description> | |
| 61637 | <!-- BS --> | |
| 61638 | <year>199?</year> | |
| 61639 | <publisher><unknown></publisher> | |
| 61640 | <part name="cart" interface="snes_cart"> | |
| 61641 | <dataarea name="rom" size="524288"> | |
| 61642 | <rom name="do-re-mi de faa! vol. 6 - 5-4 (japan).bs" size="524288" crc="0849123e" sha1="13beba44f974c4b4139a6303b14c0a5239156a02" offset="0x000000" /> | |
| 61643 | </dataarea> | |
| 61644 | </part> | |
| 61645 | </software> | |
| 61646 | ||
| 61647 | <software name="bsrg97" supported="no"> | |
| 61648 | <description>BS Race Game 97MP (Jpn)</description> | |
| 61649 | <!-- BS --> | |
| 61650 | <year>199?</year> | |
| 61651 | <publisher><unknown></publisher> | |
| 61652 | <part name="cart" interface="snes_cart"> | |
| 61653 | <dataarea name="rom" size="1048576"> | |
| 61654 | <rom name="bs race game 97mp (japan) (derby stallion 96?).bs" size="1048576" crc="1c19967c" sha1="9c1dfe24be936943a4b4a7902265942b0b70bf00" offset="0x000000" /> | |
| 61655 | </dataarea> | |
| 61656 | </part> | |
| 61657 | </software> | |
| 61658 | ||
| 61659 | <software name="bssgk4" supported="no"> | |
| 61660 | <description>Same Game Koma Editor 4 (Jpn, Data Pack?)</description> | |
| 61661 | <!-- BS --> | |
| 61662 | <year>199?</year> | |
| 61663 | <publisher><unknown></publisher> | |
| 61664 | <part name="cart" interface="snes_cart"> | |
| 61665 | <dataarea name="rom" size="1048576"> | |
| 61666 | <rom name="same game koma editor 4 (data pack)(?).bs" size="1048576" crc="d8479c20" sha1="2160f0034c1474d05937d6fdb5af16f4b06bbc4e" offset="0x000000" /> | |
| 61667 | </dataarea> | |
| 61668 | </part> | |
| 61669 | </software> | |
| 61670 | ||
| 61671 | <software name="bssdgn2" cloneof="bssdgn1" supported="no"> | |
| 61672 | <description>BS SD Gundam G-Next (Jpn, Data?)</description> | |
| 61673 | <!-- BS --> | |
| 61674 | <year>199?</year> | |
| 61675 | <publisher><unknown></publisher> | |
| 61676 | <part name="cart" interface="snes_cart"> | |
| 61677 | <dataarea name="rom" size="1048576"> | |
| 61678 | <rom name="sd gundam g-next (japan) (data).bs" size="1048576" crc="a94854ad" sha1="f2ec8f76782656134804b1e97c9f186d26da5d08" offset="0x000000" /> | |
| 61679 | </dataarea> | |
| 61680 | </part> | |
| 61681 | </software> | |
| 61682 | ||
| 61683 | <software name="bssdgn1" supported="no"> | |
| 61684 | <description>BS SD Gundam G-Next (Jpn, Data 0316)</description> | |
| 61685 | <!-- BS --> | |
| 61686 | <year>199?</year> | |
| 61687 | <publisher><unknown></publisher> | |
| 61688 | <part name="cart" interface="snes_cart"> | |
| 61689 | <dataarea name="rom" size="1048576"> | |
| 61690 | <rom name="sd gundam g-next data (3-16) (dumped august 2010).bs" size="1048576" crc="2e2ef6c4" sha1="81d2dff2d9e248e00bc7a051e603290f56f20f91" offset="0x000000" /> | |
| 61691 | </dataarea> | |
| 61692 | </part> | |
| 61693 | </software> | |
| 61694 | ||
| 61695 | <software name="bsrpgtsd" supported="no"> | |
| 61696 | <description>BS RPG Tsukuru - Super Dante (Jpn)</description> | |
| 61697 | <!-- BS --> | |
| 61698 | <year>199?</year> | |
| 61699 | <publisher><unknown></publisher> | |
| 61700 | <info name="alt_title" value="RPGツクールスーパーダンテ" /> | |
| 61701 | <part name="cart" interface="snes_cart"> | |
| 61702 | <dataarea name="rom" size="1048576"> | |
| 61703 | <rom name="rpg tsukuru - super dante.bs" size="1048576" crc="2e831a4d" sha1="1ea437e679549f76a362619657a0875d25d3a4ef" offset="0x000000" /> | |
| 61704 | </dataarea> | |
| 61705 | <dataarea name="nvram" size="32768"> | |
| 61706 | </dataarea> | |
| 61707 | </part> | |
| 61708 | </software> | |
| 61709 | ||
| 61710 | ||
| 61711 | <software name="bsrpgt1" supported="no"> | |
| 61712 | <description>BS RPG Tsukuru 2 Data</description> | |
| 61713 | <!-- BS --> | |
| 61714 | <year>199?</year> | |
| 61715 | <publisher><unknown></publisher> | |
| 61716 | <part name="cart" interface="snes_cart"> | |
| 61717 | <dataarea name="rom" size="1048576"> | |
| 61718 | <rom name="[ikari] rpg tsukuru 2 data (2011-11-17).bs" size="1048576" crc="5561afd6" sha1="f312ff25789507ebbbb6bdc1c74131f91c20145b" offset="0x000000" /> | |
| 61719 | </dataarea> | |
| 61720 | </part> | |
| 61721 | </software> | |
| 61722 | ||
| 61723 | <software name="bsrpgt2" cloneof="bsrpgt1" supported="no"> | |
| 61724 | <description>BS RPG Tsukuru 2 Data (Overwritten Bokujo Data)</description> | |
| 61725 | <!-- BS --> | |
| 61726 | <year>199?</year> | |
| 61727 | <publisher><unknown></publisher> | |
| 61728 | <part name="cart" interface="snes_cart"> | |
| 61729 | <dataarea name="rom" size="1048576"> | |
| 61730 | <rom name="rpg tsukuru 2 data (overwritten bokujo data).bs" size="1048576" crc="80ec9cc0" sha1="7ba6b26f0ec5309ed5ee14e1188891b554ca145e" offset="0x000000" /> | |
| 61731 | </dataarea> | |
| 61732 | </part> | |
| 61733 | </software> | |
| 61734 | ||
| 61735 | <software name="bsascii1" supported="no"> | |
| 61736 | <description>BS ASCII Data 1</description> | |
| 61737 | <!-- BS --> | |
| 61738 | <year>199?</year> | |
| 61739 | <publisher><unknown></publisher> | |
| 61740 | <part name="cart" interface="snes_cart"> | |
| 61741 | <dataarea name="rom" size="1048576"> | |
| 61742 | <rom name="ascii data 1.bs" size="1048576" crc="148955f9" sha1="01fbab2a57d5e9ef9abc85202c3ef75031bd17ad" offset="0x000000" /> | |
| 61743 | </dataarea> | |
| 61744 | </part> | |
| 61745 | </software> | |
| 61746 | ||
| 61747 | <software name="bsascii2" cloneof="bsascii1" supported="no"> | |
| 61748 | <description>BS ASCII Data 2</description> | |
| 61749 | <!-- BS --> | |
| 61750 | <year>199?</year> | |
| 61751 | <publisher><unknown></publisher> | |
| 61752 | <part name="cart" interface="snes_cart"> | |
| 61753 | <dataarea name="rom" size="1048576"> | |
| 61754 | <rom name="ascii data 2.bs" size="1048576" crc="bf7d57b0" sha1="f4064a38723bcd4999ff92c8202b3cc9ce3d8d03" offset="0x000000" /> | |
| 61755 | </dataarea> | |
| 61756 | </part> | |
| 61757 | </software> | |
| 61758 | ||
| 61759 | <software name="bsascii3" cloneof="bsascii1" supported="no"> | |
| 61760 | <description>BS ASCII Data 3</description> | |
| 61761 | <!-- BS --> | |
| 61762 | <year>199?</year> | |
| 61763 | <publisher><unknown></publisher> | |
| 61764 | <part name="cart" interface="snes_cart"> | |
| 61765 | <dataarea name="rom" size="1048576"> | |
| 61766 | <rom name="ascii data 3.bs" size="1048576" crc="2ab43134" sha1="885c80f0e8582e6ae62bcc42ec6249f50c5b56da" offset="0x000000" /> | |
| 61767 | </dataarea> | |
| 61768 | </part> | |
| 61769 | </software> | |
| 61770 | ||
| 61771 | <software name="bsmachi" supported="no"> | |
| 61772 | <description>Machi Magazine</description> | |
| 61773 | <!-- BS --> | |
| 61774 | <year>1995?</year> | |
| 61775 | <publisher><unknown></publisher> | |
| 61776 | <part name="cart" interface="snes_cart"> | |
| 61777 | <dataarea name="rom" size="1048576"> | |
| 61778 | <rom name="machi magazine (d).bs" size="1048576" crc="0e6c76e6" sha1="ca291cb350f69660ebc054906d05408ffef75b8d" offset="0x000000" /> | |
| 61779 | </dataarea> | |
| 61780 | </part> | |
| 61781 | </software> | |
| 61782 | ||
| 61783 | <software name="bsmachih" cloneof="bsmachi" supported="no"> | |
| 61784 | <description>Machi Magazine (Hacked)</description> | |
| 61785 | <!-- BS --> | |
| 61786 | <year>1995?</year> | |
| 61787 | <publisher><unknown></publisher> | |
| 61788 | <part name="cart" interface="snes_cart"> | |
| 61789 | <dataarea name="rom" size="262144"> | |
| 61790 | <rom name="machi magazine (header fix prepatched).bs" size="262144" crc="eda14445" sha1="f351b8593e587e7a264dd60cdf3713598289f5b5" offset="0x000000" /> | |
| 61791 | </dataarea> | |
| 61792 | </part> | |
| 61793 | </software> | |
| 61794 | ||
| 61795 | <software name="bswaiwaia" cloneof="bswaiwai" supported="no"> | |
| 61796 | <description>WaiWai Check 3-21 Saihousou + WaiWai Kids 3-16</description> | |
| 61797 | <!-- BS --> | |
| 61798 | <year>199?</year> | |
| 61799 | <publisher><unknown></publisher> | |
| 61800 | <part name="cart" interface="snes_cart"> | |
| 61801 | <dataarea name="rom" size="1048576"> | |
| 61802 | <rom name="waiwai check 3-21 saihousou + waiwai kids 3-16.bs" size="1048576" crc="17239e91" sha1="fe67f40912e7c4d290eeb175a2bd2122bfa3ae8c" offset="0x000000" /> | |
| 61803 | </dataarea> | |
| 61804 | </part> | |
| 61805 | </software> | |
| 61806 | ||
| 61807 | <!-- Find out what next BS images are... --> | |
| 61808 | <software name="bskan3" supported="no"> | |
| 61809 | <description>Kanaderu Convert 3 (Jpn)</description> | |
| 61810 | <!-- BS --> | |
| 61811 | <year>199?</year> | |
| 61812 | <publisher><unknown></publisher> | |
| 61813 | <part name="cart" interface="snes_cart"> | |
| 61814 | <dataarea name="rom" size="1048576"> | |
| 61815 | <rom name="kandu convert3.bs" size="1048576" crc="cf34fc63" sha1="7dd73150a5426aa1a3db202b3348069e064a09ea" offset="0x000000" /> | |
| 61816 | </dataarea> | |
| 61817 | </part> | |
| 61818 | </software> | |
| 61819 | ||
| 61820 | <software name="bskan3c" supported="no"> | |
| 61821 | <description>Kanaderu Convert 3c (Jpn)</description> | |
| 61822 | <!-- BS --> | |
| 61823 | <year>199?</year> | |
| 61824 | <publisher><unknown></publisher> | |
| 61825 | <part name="cart" interface="snes_cart"> | |
| 61826 | <dataarea name="rom" size="1048576"> | |
| 61827 | <rom name="kandu convert3c.bs" size="65536" crc="942960c2" sha1="ed482b950224dac0a0e60c267da23fbfe651da36" offset="0x000000" /> | |
| 61828 | </dataarea> | |
| 61829 | </part> | |
| 61830 | </software> | |
| 61831 | ||
| 61832 | <software name="bskan4" supported="no"> | |
| 61833 | <description>Kanaderu Convert 4 (Jpn)</description> | |
| 61834 | <!-- BS --> | |
| 61835 | <year>199?</year> | |
| 61836 | <publisher><unknown></publisher> | |
| 61837 | <part name="cart" interface="snes_cart"> | |
| 61838 | <dataarea name="rom" size="1048576"> | |
| 61839 | <rom name="kandu convert4.bs" size="1048576" crc="f4320a56" sha1="472b55f33a1765c6295466365de052caa7d870c8" offset="0x000000" /> | |
| 61840 | </dataarea> | |
| 61841 | </part> | |
| 61842 | </software> | |
| 61843 | ||
| 61844 | <software name="bskanrpg" supported="no"> | |
| 61845 | <description>Kanaderu Convert RPG Maker Data (Jpn)</description> | |
| 61846 | <!-- BS --> | |
| 61847 | <year>199?</year> | |
| 61848 | <publisher><unknown></publisher> | |
| 61849 | <part name="cart" interface="snes_cart"> | |
| 61850 | <dataarea name="rom" size="1048576"> | |
| 61851 | <rom name="kandu convert rpg maker data.bs" size="1048576" crc="654657c0" sha1="4b945ba2602791a155511bcacc1eff8c88166991" offset="0x000000" /> | |
| 61852 | </dataarea> | |
| 61853 | </part> | |
| 61854 | </software> | |
| 61855 | ||
| 61856 | <software name="bssnt4" supported="no"> | |
| 61857 | <description>Sound Novel Tsukuru 4 (Jpn)</description> | |
| 61858 | <!-- BS --> | |
| 61859 | <year>199?</year> | |
| 61860 | <publisher><unknown></publisher> | |
| 61861 | <part name="cart" interface="snes_cart"> | |
| 61862 | <dataarea name="rom" size="1048576"> | |
| 61863 | <rom name="sound novel 4.bs" size="1048576" crc="97539bca" sha1="09b7c79431a115109322242eca9ccdefb88a37a3" offset="0x000000" /> | |
| 61864 | </dataarea> | |
| 61865 | </part> | |
| 61866 | </software> | |
| 61867 | ||
| 61868 | <software name="bssnt4h" supported="no"> | |
| 61869 | <description>Sound Novel Tsukuru 4h (Jpn)</description> | |
| 61870 | <!-- BS --> | |
| 61871 | <year>199?</year> | |
| 61872 | <publisher><unknown></publisher> | |
| 61873 | <part name="cart" interface="snes_cart"> | |
| 61874 | <dataarea name="rom" size="1048576"> | |
| 61875 | <rom name="sound novel 4h.bs" size="131072" crc="be335a19" sha1="23ccbb01a99f90527bc5c20345d1a5ea969ac044" offset="0x000000" /> | |
| 61876 | </dataarea> | |
| 61877 | </part> | |
| 61878 | </software> | |
| 61879 | ||
| 61880 | <software name="bssbm"> | |
| 61881 | <description>Sonic Blast Man (Jpn, BS)</description> | |
| 61882 | <!-- BS --> | |
| 61883 | <year>199?</year> | |
| 61884 | <publisher><unknown></publisher> | |
| 61885 | <part name="cart" interface="snes_cart"> | |
| 61886 | <dataarea name="rom" size="1048576"> | |
| 61887 | <rom name="sonic blastman (bs).sfc" size="1048576" crc="86bb53e5" sha1="e8411f5e0ea2b2922416710c9b463023fe1e5f39" offset="0x000000" /> | |
| 61888 | </dataarea> | |
| 61889 | </part> | |
| 61890 | </software> | |
| 61891 | ||
| 61892 | <software name="tablgmbs"> | |
| 61893 | <description>Table Game Daishuugou!! (Jpn, BS)</description> | |
| 61894 | <!-- BS --> | |
| 61895 | <year>199?</year> | |
| 61896 | <publisher><unknown></publisher> | |
| 61897 | <part name="cart" interface="snes_cart"> | |
| 61898 | <dataarea name="rom" size="1048576"> | |
| 61899 | <rom name="table game daisyugo (bs).sfc" size="1048576" crc="47e3047e" sha1="00ddbd9471f9b22b927a2361c672d7e4081fb69d" offset="0x000000" /> | |
| 61900 | </dataarea> | |
| 61901 | </part> | |
| 61902 | </software> | |
| 61903 | ||
| 61904 | <software name="bsshangha" cloneof="bsshangh" supported="no"> | |
| 61905 | <description>Shanghai - Banri no Choujou (Jpn, BS, Alt)</description> | |
| 61906 | <!-- BS --> | |
| 61907 | <year>199?</year> | |
| 61908 | <publisher><unknown></publisher> | |
| 61909 | <part name="cart" interface="snes_cart"> | |
| 61910 | <dataarea name="rom" size="1048576"> | |
| 61911 | <rom name="shanghai - banri no choujou (bs).bs" size="1048576" crc="5c95f21c" sha1="82a238519f92dc3174dd3226a1243c69d7f03528" offset="0x000000" /> | |
| 61912 | </dataarea> | |
| 61913 | </part> | |
| 61914 | </software> | |
| 61915 | ||
| 61916 | <software name="bsgalb5" supported="no"> | |
| 61917 | <description>Gal Kan Bazooka Dai-5-Kan (Jpn)</description> | |
| 61918 | <!-- BS --> | |
| 61919 | <year>199?</year> | |
| 61920 | <publisher><unknown></publisher> | |
| 61921 | <part name="cart" interface="snes_cart"> | |
| 61922 | <dataarea name="rom" size="1048576"> | |
| 61923 | <rom name="gal kan bazooka dai-5-kan.bs" size="1048576" crc="38762b6b" sha1="382154ea2304618a2f61f57b022ec6c65617348d" offset="0x000000" /> | |
| 61924 | </dataarea> | |
| 61925 | </part> | |
| 61926 | </software> | |
| 61927 | ||
| 61928 | <software name="bssates4" supported="no"> | |
| 61929 | <description>Satesupo DX Dai-4-Gou (Jpn)</description> | |
| 61930 | <!-- BS --> | |
| 61931 | <year>199?</year> | |
| 61932 | <publisher><unknown></publisher> | |
| 61933 | <part name="cart" interface="snes_cart"> | |
| 61934 | <dataarea name="rom" size="1048576"> | |
| 61935 | <rom name="satesupo dx dai-4-gou.bs" size="1048576" crc="8ada2ba7" sha1="6923096cc33296af8e7ce7978457e39a36035fee" offset="0x000000" /> | |
| 61936 | </dataarea> | |
| 61937 | </part> | |
| 61938 | </software> | |
| 61939 | ||
| 61940 | <software name="bsdezamn" supported="no"> | |
| 61941 | <description>Dezaemon BSX Version - BS-X Shooting (Jpn)</description> | |
| 61942 | <!-- BS --> | |
| 61943 | <year>199?</year> | |
| 61944 | <publisher><unknown></publisher> | |
| 61945 | <part name="cart" interface="snes_cart"> | |
| 61946 | <dataarea name="rom" size="1048576"> | |
| 61947 | <rom name="dezaemon bsx version - bs-x shooting.bs" size="1048576" crc="5a9be5a8" sha1="e52d59e800c17c678711a681d3308f0804c238e0" offset="0x000000" /> | |
| 61948 | </dataarea> | |
| 61949 | </part> | |
| 61950 | </software> | |
| 61951 | ||
| 61952 | <software name="shubibi0a" cloneof="shubibi0" supported="no"> | |
| 61953 | <description>Kaizou Choujin Shubibinman Zero (Jpn, Locked)</description> | |
| 61954 | <!-- BS --> | |
| 61955 | <year>199?</year> | |
| 61956 | <publisher><unknown></publisher> | |
| 61957 | <part name="cart" interface="snes_cart"> | |
| 61958 | <dataarea name="rom" size="1048576"> | |
| 61959 | <rom name="kaizou choujin shubibinman zero (l).bs" size="1048576" crc="26a4f6c3" sha1="dd084021a7e2afd939fee3b6426778f6e5c2f333" offset="0x000000" /> | |
| 61960 | </dataarea> | |
| 61961 | </part> | |
| 61962 | </software> | |
| 61963 | ||
| 61964 | <software name="bsbomb" supported="no"> | |
| 61965 | <description>Super Bomberman (Jpn, BS, Locked)</description> | |
| 61966 | <!-- BS --> | |
| 61967 | <year>199?</year> | |
| 61968 | <publisher><unknown></publisher> | |
| 61969 | <part name="cart" interface="snes_cart"> | |
| 61970 | <dataarea name="rom" size="1048576"> | |
| 61971 | <rom name="super bomberman.bs" size="1048576" crc="9ea79162" sha1="1dcea52ea7e358c9d8b628b6f7f352c8e96daa61" offset="0x000000" /> | |
| 61972 | </dataarea> | |
| 61973 | </part> | |
| 61974 | </software> | |
| 61975 | ||
| 61976 | <software name="bsbtour4" supported="no"> | |
| 61977 | <description>Bass Tournament 4 (Jpn, BS, Incomplete Data)</description> | |
| 61978 | <!-- BS --> | |
| 61979 | <year>199?</year> | |
| 61980 | <publisher><unknown></publisher> | |
| 61981 | <part name="cart" interface="snes_cart"> | |
| 61982 | <dataarea name="rom" size="1048576"> | |
| 61983 | <rom name="bass tournament 4 (incomplete).bs" size="1048576" crc="ccefbd30" sha1="413ee71e3301a958c6998f907460ec95cd20b666" offset="0x000000" status="baddump" /> | |
| 61984 | </dataarea> | |
| 61985 | </part> | |
| 61986 | </software> | |
| 61987 | ||
| 61988 | <software name="bsmonop2" supported="no"> | |
| 61989 | <description>BS Monopoly Red Cup (Jpn)</description> | |
| 61990 | <!-- BS --> | |
| 61991 | <year>199?</year> | |
| 61992 | <publisher><unknown></publisher> | |
| 61993 | <part name="cart" interface="snes_cart"> | |
| 61994 | <dataarea name="rom" size="1048576"> | |
| 61995 | <rom name="monopoly 2 bs - red cup.bs" size="1048576" crc="9b0a441c" sha1="9ee4160c3d6ffb0e5e3889dc442e9d3263a11c1e" offset="0x000000" status="baddump" /> | |
| 61996 | </dataarea> | |
| 61997 | </part> | |
| 61998 | </software> | |
| 61999 | ||
| 62000 | <software name="bsmonop3" supported="no"> | |
| 62001 | <description>BS Monopoly Yellow Cup (Jpn)</description> | |
| 62002 | <!-- BS --> | |
| 62003 | <year>199?</year> | |
| 62004 | <publisher><unknown></publisher> | |
| 62005 | <part name="cart" interface="snes_cart"> | |
| 62006 | <dataarea name="rom" size="1048576"> | |
| 62007 | <rom name="monopoly 2 bs - yellow cup.bs" size="1048576" crc="ed1108b5" sha1="11616e85ec1d7b3c31272f2076e56dfc97e4f3e4" offset="0x000000" status="baddump" /> | |
| 62008 | </dataarea> | |
| 62009 | </part> | |
| 62010 | </software> | |
| 62011 | ||
| 62012 | <software name="bslemmin" supported="no"> | |
| 62013 | <description>Lemmings (Jpn, BS)</description> | |
| 62014 | <!-- BS --> | |
| 62015 | <year>199?</year> | |
| 62016 | <publisher><unknown></publisher> | |
| 62017 | <part name="cart" interface="snes_cart"> | |
| 62018 | <dataarea name="rom" size="1048576"> | |
| 62019 | <rom name="lemmings (bs).bs" size="1048576" crc="25e19b04" sha1="16d31b379d3aa212b9b0d2235b41e85c35aad7bc" offset="0x000000" status="baddump" /> | |
| 62020 | </dataarea> | |
| 62021 | </part> | |
| 62022 | </software> | |
| 62023 | ||
| 62024 | <software name="bsdokap4" supported="no"> | |
| 62025 | <description>Kessen! Dokapon Oukoku IV - Densetsu no Yuusha-tachi (Jpn, BS)</description> | |
| 62026 | <!-- BS --> | |
| 62027 | <year>199?</year> | |
| 62028 | <publisher><unknown></publisher> | |
| 62029 | <part name="cart" interface="snes_cart"> | |
| 62030 | <dataarea name="rom" size="1048576"> | |
| 62031 | <rom name="kessen! dokapon oukoku iv - densetsu no yuusha-tachi (bs).bs" size="1048576" crc="e6a2e0d8" sha1="a40d9dedeff858fca2a549fadb2cbe7f0a84fc44" offset="0x000000" status="baddump" /> | |
| 62032 | </dataarea> | |
| 62033 | </part> | |
| 62034 | </software> | |
| 62035 | ||
| 62036 | <software name="bsmaria" supported="no"> | |
| 62037 | <description>Maria - Part 1 (Jpn, BS)</description> | |
| 62038 | <!-- BS --> | |
| 62039 | <year>199?</year> | |
| 62040 | <publisher><unknown></publisher> | |
| 62041 | <part name="cart" interface="snes_cart"> | |
| 62042 | <dataarea name="rom" size="1048576"> | |
| 62043 | <rom name="maria - part 1 (bs).bs" size="1048576" crc="c406562f" sha1="52eadd827bdba497bc2b0dc10ccfec4abebc8c0f" offset="0x000000" status="baddump" /> | |
| 62044 | </dataarea> | |
| 62045 | </part> | |
| 62046 | </software> | |
| 62047 | ||
| 62048 | <software name="bsssold" supported="no"> | |
| 62049 | <description>Star Soldier - 2 Minute (Jpn, BS)</description> | |
| 62050 | <!-- BS --> | |
| 62051 | <year>199?</year> | |
| 62052 | <publisher><unknown></publisher> | |
| 62053 | <part name="cart" interface="snes_cart"> | |
| 62054 | <dataarea name="rom" size="1048576"> | |
| 62055 | <rom name="star soldier 2mins (b).bs" size="1048576" crc="c79c1b8d" sha1="fd81383fbf4fee2cb528e2336c346112f44933c9" offset="0x000000" status="baddump" /> | |
| 62056 | </dataarea> | |
| 62057 | </part> | |
| 62058 | </software> | |
| 62059 | ||
| 62060 | <software name="bsswalk2" supported="no"> | |
| 62061 | <description>BS Satellawalker 2 Dai-ichi-wa (Jpn)</description> | |
| 62062 | <!-- BS --> | |
| 62063 | <year>199?</year> | |
| 62064 | <publisher><unknown></publisher> | |
| 62065 | <part name="cart" interface="snes_cart"> | |
| 62066 | <dataarea name="rom" size="1048576"> | |
| 62067 | <rom name="satella2_1.bs" size="1048576" crc="5ea2b6bb" sha1="3a46898cdbbb414bc6462effd4419a2a471be807" offset="0x000000" status="baddump" /> | |
| 62068 | </dataarea> | |
| 62069 | </part> | |
| 62070 | </software> | |
| 62071 | ||
| 62072 | <software name="bscasin2" supported="no"> | |
| 62073 | <!-- this was dumped from a memory pack containing data for both games. --> | |
| 62074 | <description>Kouryaku Casino Bar - Suiyoubi & Kinyoubi (Jpn, BS)</description> | |
| 62075 | <!-- BS --> | |
| 62076 | <year>199?</year> | |
| 62077 | <publisher><unknown></publisher> | |
| 62078 | <part name="cart" interface="snes_cart"> | |
| 62079 | <dataarea name="rom" size="1048576"> | |
| 62080 | <rom name="kouryaku casino bar double pack.bs" size="1048576" crc="390c560f" sha1="ede3dfe2d30452644c75c8648a95b539def19fd2" offset="0x000000" status="baddump" /> | |
| 62081 | </dataarea> | |
| 62082 | </part> | |
| 62083 | </software> | |
| 62084 | ||
| 62085 | ||
| 62086 | <!-- BS Unknow packs, to be sorted out once we emulate this properly! --> | |
| 62087 | ||
| 62088 | <!-- This pack returns a 'Error 41' message on a real unit, and it does not work further --> | |
| 62089 | <software name="bsunk01" supported="no"> | |
| 62090 | <description>BS Unknown Memory Pack 01 (Jpn)</description> | |
| 62091 | <!-- BS --> | |
| 62092 | <year>199?</year> | |
| 62093 | <publisher><unknown></publisher> | |
| 62094 | <part name="cart" interface="snes_cart"> | |
| 62095 | <dataarea name="rom" size="1048576"> | |
| 62096 | <rom name="asdf.bs" size="1048576" crc="ff0bab5d" sha1="98106965b02c41f1be7289acb408581de3d82a52" offset="0x000000" /> | |
| 62097 | </dataarea> | |
| 62098 | </part> | |
| 62099 | </software> | |
| 62100 | ||
| 62101 | <!-- These packs were released as an "Assorted set of data packs, which seem to be RPG Tsukuru and Sound Novel Tsukuru data" --> | |
| 62102 | <software name="bsunk02" supported="no"> | |
| 62103 | <description>BS Unknown Memory Pack 02 (Jpn, ASCII MUSIC TOOL1995.11.02 V1.0)</description> | |
| 62104 | <!-- BS --> | |
| 62105 | <year>199?</year> | |
| 62106 | <publisher><unknown></publisher> | |
| 62107 | <part name="cart" interface="snes_cart"> | |
| 62108 | <dataarea name="rom" size="65536"> | |
| 62109 | <rom name="ascii music tool1995.11.02 v1.0.bs" size="65536" crc="ee250acb" sha1="9cabc99c9c5bbbe192d401127ddb69dc14fcf35a" offset="0x000000" /> | |
| 62110 | </dataarea> | |
| 62111 | </part> | |
| 62112 | </software> | |
| 62113 | ||
| 62114 | <software name="bsunk03" supported="no"> | |
| 62115 | <description>BS Unknown Memory Pack 03 (Jpn, KANADERU CONVERT 1)</description> | |
| 62116 | <!-- BS --> | |
| 62117 | <year>199?</year> | |
| 62118 | <publisher><unknown></publisher> | |
| 62119 | <part name="cart" interface="snes_cart"> | |
| 62120 | <dataarea name="rom" size="262144"> | |
| 62121 | <rom name="kanaderu convert 1.bs" size="262144" crc="0fe1b6a4" sha1="ae04f366ffa9bc5409b9231023f3049c50255a0b" offset="0x000000" /> | |
| 62122 | </dataarea> | |
| 62123 | </part> | |
| 62124 | </software> | |
| 62125 | ||
| 62126 | <software name="bsunk04" supported="no"> | |
| 62127 | <description>BS Unknown Memory Pack 04 (Jpn, KANADERU CONVERT 2)</description> | |
| 62128 | <!-- BS --> | |
| 62129 | <year>199?</year> | |
| 62130 | <publisher><unknown></publisher> | |
| 62131 | <part name="cart" interface="snes_cart"> | |
| 62132 | <dataarea name="rom" size="131072"> | |
| 62133 | <rom name="kanaderu convert 2.bs" size="131072" crc="4a5ffa76" sha1="5a0e2b4f6dd5ccb2c4bcfa51bfacf905da0d6bd4" offset="0x000000" /> | |
| 62134 | </dataarea> | |
| 62135 | </part> | |
| 62136 | </software> | |
| 62137 | ||
| 62138 | <software name="bsunk05" supported="no"> | |
| 62139 | <description>BS Unknown Memory Pack 05 (Jpn, KANADERU CONVERT 5)</description> | |
| 62140 | <!-- BS --> | |
| 62141 | <year>199?</year> | |
| 62142 | <publisher><unknown></publisher> | |
| 62143 | <part name="cart" interface="snes_cart"> | |
| 62144 | <dataarea name="rom" size="262144"> | |
| 62145 | <rom name="kanaderu convert 5.bs" size="262144" crc="a502aa9d" sha1="39b41cac1bd60f276cafb719939917129260a82d" offset="0x000000" /> | |
| 62146 | </dataarea> | |
| 62147 | </part> | |
| 62148 | </software> | |
| 62149 | ||
| 62150 | <software name="bsunk06" supported="no"> | |
| 62151 | <description>BS Unknown Memory Pack 06 (Jpn, RPG DATA 01)</description> | |
| 62152 | <!-- BS --> | |
| 62153 | <year>199?</year> | |
| 62154 | <publisher><unknown></publisher> | |
| 62155 | <part name="cart" interface="snes_cart"> | |
| 62156 | <dataarea name="rom" size="131072"> | |
| 62157 | <rom name="rpg data 01.bs" size="131072" crc="7c9a8066" sha1="e40b2712aae8e9a7bd5f99873ef9f3a0821e79cd" offset="0x000000" /> | |
| 62158 | </dataarea> | |
| 62159 | </part> | |
| 62160 | </software> | |
| 62161 | ||
| 62162 | <software name="bsunk07" supported="no"> | |
| 62163 | <description>BS Unknown Memory Pack 07 (Jpn, RPG DATA 01 a)</description> | |
| 62164 | <!-- BS --> | |
| 62165 | <year>199?</year> | |
| 62166 | <publisher><unknown></publisher> | |
| 62167 | <part name="cart" interface="snes_cart"> | |
| 62168 | <dataarea name="rom" size="131072"> | |
| 62169 | <rom name="rpg data 01 a.bs" size="131072" crc="dcfeef74" sha1="d9ec72de332e90fe794d9d53f5c7ece7e55ff281" offset="0x000000" /> | |
| 62170 | </dataarea> | |
| 62171 | </part> | |
| 62172 | </software> | |
| 62173 | ||
| 62174 | <software name="bsunk08" supported="no"> | |
| 62175 | <description>BS Unknown Memory Pack 08 (Jpn, RPG DATA 02)</description> | |
| 62176 | <!-- BS --> | |
| 62177 | <year>199?</year> | |
| 62178 | <publisher><unknown></publisher> | |
| 62179 | <part name="cart" interface="snes_cart"> | |
| 62180 | <dataarea name="rom" size="262144"> | |
| 62181 | <rom name="rpg data 02.bs" size="262144" crc="0cdc896b" sha1="9242f1cd7d2b08457ad2a434180bc54ce113f4d2" offset="0x000000" /> | |
| 62182 | </dataarea> | |
| 62183 | </part> | |
| 62184 | </software> | |
| 62185 | ||
| 62186 | <software name="bsunk09" supported="no"> | |
| 62187 | <description>BS Unknown Memory Pack 09 (Jpn, RPG DATA 02 b)</description> | |
| 62188 | <!-- BS --> | |
| 62189 | <year>199?</year> | |
| 62190 | <publisher><unknown></publisher> | |
| 62191 | <part name="cart" interface="snes_cart"> | |
| 62192 | <dataarea name="rom" size="131072"> | |
| 62193 | <rom name="rpg data 02 b.bs" size="131072" crc="b5abf7d5" sha1="ba7f004a07fed15521cacb980bcdd36dae9ae21a" offset="0x000000" /> | |
| 62194 | </dataarea> | |
| 62195 | </part> | |
| 62196 | </software> | |
| 62197 | ||
| 62198 | <software name="bsunk10" supported="no"> | |
| 62199 | <description>BS Unknown Memory Pack 10 (Jpn, RPG DATA 03 Judas Priest)</description> | |
| 62200 | <!-- BS --> | |
| 62201 | <year>199?</year> | |
| 62202 | <publisher><unknown></publisher> | |
| 62203 | <part name="cart" interface="snes_cart"> | |
| 62204 | <dataarea name="rom" size="131072"> | |
| 62205 | <rom name="rpg data 03 judas priest.bs" size="131072" crc="a00a6450" sha1="5c1dc43900c76042db10d49a1e3ae6a8dc8f7672" offset="0x000000" /> | |
| 62206 | </dataarea> | |
| 62207 | </part> | |
| 62208 | </software> | |
| 62209 | ||
| 62210 | <software name="bsunk11" supported="no"> | |
| 62211 | <description>BS Unknown Memory Pack 11 (Jpn, SOUND NOVEL 1)</description> | |
| 62212 | <!-- BS --> | |
| 62213 | <year>199?</year> | |
| 62214 | <publisher><unknown></publisher> | |
| 62215 | <part name="cart" interface="snes_cart"> | |
| 62216 | <dataarea name="rom" size="131072"> | |
| 62217 | <rom name="sound novel 1.bs" size="131072" crc="cab837e0" sha1="2254ac8d4c919ade22eadae630b1b82c228a2c82" offset="0x000000" /> | |
| 62218 | </dataarea> | |
| 62219 | </part> | |
| 62220 | </software> | |
| 62221 | ||
| 62222 | <software name="bsunk12" supported="no"> | |
| 62223 | <description>BS Unknown Memory Pack 12 (Jpn, SOUND NOVEL 1 a)</description> | |
| 62224 | <!-- BS --> | |
| 62225 | <year>199?</year> | |
| 62226 | <publisher><unknown></publisher> | |
| 62227 | <part name="cart" interface="snes_cart"> | |
| 62228 | <dataarea name="rom" size="131072"> | |
| 62229 | <rom name="sound novel 1 a.bs" size="131072" crc="c7657cd1" sha1="106843f2528869b75918156f5079353236e5278d" offset="0x000000" /> | |
| 62230 | </dataarea> | |
| 62231 | </part> | |
| 62232 | </software> | |
| 62233 | ||
| 62234 | <software name="bsunk13" supported="no"> | |
| 62235 | <description>BS Unknown Memory Pack 13 (Jpn, SOUND NOVEL 2)</description> | |
| 62236 | <!-- BS --> | |
| 62237 | <year>199?</year> | |
| 62238 | <publisher><unknown></publisher> | |
| 62239 | <part name="cart" interface="snes_cart"> | |
| 62240 | <dataarea name="rom" size="131072"> | |
| 62241 | <rom name="sound novel 2.bs" size="131072" crc="05f3faef" sha1="6162f262c25f3a45f07297db6eb3f08dd11ed8e1" offset="0x000000" /> | |
| 62242 | </dataarea> | |
| 62243 | </part> | |
| 62244 | </software> | |
| 62245 | ||
| 62246 | <software name="bsunk14" supported="no"> | |
| 62247 | <description>BS Unknown Memory Pack 14 (Jpn, SOUND NOVEL 3)</description> | |
| 62248 | <!-- BS --> | |
| 62249 | <year>199?</year> | |
| 62250 | <publisher><unknown></publisher> | |
| 62251 | <part name="cart" interface="snes_cart"> | |
| 62252 | <dataarea name="rom" size="131072"> | |
| 62253 | <rom name="sound novel 3.bs" size="131072" crc="c1bc6475" sha1="cb675b6f9df9917cce34ce59d2d645d48d50c188" offset="0x000000" /> | |
| 62254 | </dataarea> | |
| 62255 | </part> | |
| 62256 | </software> | |
| 62257 | ||
| 62258 | <software name="bsunk15" supported="no"> | |
| 62259 | <description>BS Unknown Memory Pack 15 (Jpn, SOUND NOVEL 3 a)</description> | |
| 62260 | <!-- BS --> | |
| 62261 | <year>199?</year> | |
| 62262 | <publisher><unknown></publisher> | |
| 62263 | <part name="cart" interface="snes_cart"> | |
| 62264 | <dataarea name="rom" size="131072"> | |
| 62265 | <rom name="sound novel 3 a.bs" size="131072" crc="93516da4" sha1="3ba52325c030b629cd9773a707b83f515600add9" offset="0x000000" /> | |
| 62266 | </dataarea> | |
| 62267 | </part> | |
| 62268 | </software> | |
| 62269 | ||
| 62270 | <software name="bsunk16" supported="no"> | |
| 62271 | <description>BS Unknown Memory Pack 16 (Jpn, SOUND NOVEL 4)</description> | |
| 62272 | <!-- BS --> | |
| 62273 | <year>199?</year> | |
| 62274 | <publisher><unknown></publisher> | |
| 62275 | <part name="cart" interface="snes_cart"> | |
| 62276 | <dataarea name="rom" size="131072"> | |
| 62277 | <rom name="sound novel 4.bs" size="131072" crc="4f823052" sha1="5478c8f3e84b5ee0680a99435288f1e4311982a4" offset="0x000000" /> | |
| 62278 | </dataarea> | |
| 62279 | </part> | |
| 62280 | </software> | |
| 62281 | ||
| 62282 | <software name="bsunk17" supported="no"> | |
| 62283 | <description>BS Unknown Memory Pack 17 (Jpn, SOUND NOVEL 4 a)</description> | |
| 62284 | <!-- BS --> | |
| 62285 | <year>199?</year> | |
| 62286 | <publisher><unknown></publisher> | |
| 62287 | <part name="cart" interface="snes_cart"> | |
| 62288 | <dataarea name="rom" size="131072"> | |
| 62289 | <rom name="sound novel 4 a.bs" size="131072" crc="7426f308" sha1="1254626439c10cf474a74b02d9f501a3aefb2c84" offset="0x000000" /> | |
| 62290 | </dataarea> | |
| 62291 | </part> | |
| 62292 | </software> | |
| 62293 | ||
| 62294 | <software name="bsunk18" supported="no"> | |
| 62295 | <description>BS Unknown Memory Pack 18 (Jpn, SOUND NOVEL 5)</description> | |
| 62296 | <!-- BS --> | |
| 62297 | <year>199?</year> | |
| 62298 | <publisher><unknown></publisher> | |
| 62299 | <part name="cart" interface="snes_cart"> | |
| 62300 | <dataarea name="rom" size="131072"> | |
| 62301 | <rom name="sound novel 5.bs" size="131072" crc="3955eb83" sha1="6d785d32410ec1acc2efeffe4717e26c1221d2ed" offset="0x000000" /> | |
| 62302 | </dataarea> | |
| 62303 | </part> | |
| 62304 | </software> | |
| 62305 | ||
| 62306 | <software name="bsunk19" supported="no"> | |
| 62307 | <description>BS Unknown Memory Pack 19 (Jpn, SOUND NOVEL 6)</description> | |
| 62308 | <!-- BS --> | |
| 62309 | <year>199?</year> | |
| 62310 | <publisher><unknown></publisher> | |
| 62311 | <part name="cart" interface="snes_cart"> | |
| 62312 | <dataarea name="rom" size="131072"> | |
| 62313 | <rom name="sound novel 6.bs" size="131072" crc="d9ee913a" sha1="ab6e28dd1e2542f974160e571abb9181e4767edc" offset="0x000000" /> | |
| 62314 | </dataarea> | |
| 62315 | </part> | |
| 62316 | </software> | |
| 62317 | ||
| 62318 | <software name="bsunk20" supported="no"> | |
| 62319 | <description>BS Unknown Memory Pack 20 (Jpn, SOUND NOVEL 7)</description> | |
| 62320 | <!-- BS --> | |
| 62321 | <year>199?</year> | |
| 62322 | <publisher><unknown></publisher> | |
| 62323 | <part name="cart" interface="snes_cart"> | |
| 62324 | <dataarea name="rom" size="131072"> | |
| 62325 | <rom name="sound novel 7.bs" size="131072" crc="c7d0b4df" sha1="d426c22704f2ea96ec9ec95af72f8959e7df27ca" offset="0x000000" /> | |
| 62326 | </dataarea> | |
| 62327 | </part> | |
| 62328 | </software> | |
| 62329 | ||
| 62330 | <!-- This packs was dumped by ChronoMoogle and Ikari, but it does not work. Investigate if it contains corrupted or deleted data --> | |
| 62331 | <software name="bsunk21" supported="no"> | |
| 62332 | <description>BS Unknown Memory Pack 21 (Jpn, ASCII MUSIC DATA, Bad?)</description> | |
| 62333 | <!-- BS --> | |
| 62334 | <year>199?</year> | |
| 62335 | <publisher><unknown></publisher> | |
| 62336 | <part name="cart" interface="snes_cart"> | |
| 62337 | <dataarea name="rom" size="1048576"> | |
| 62338 | <rom name="unknown music data (bad?).bs" size="1048576" crc="f96d9d29" sha1="48980784d21f2e9568d18bb326af033fa1e33889" offset="0x000000" /> | |
| 62339 | </dataarea> | |
| 62340 | </part> | |
| 62341 | </software> | |
| 62342 | ||
| 62343 | <!-- This packs was dumped by Ikari and has blank data banks. --> | |
| 62344 | <software name="bsunk22" supported="no"> | |
| 62345 | <description>BS Unknown Memory Pack 22 (Jpn, RPG Tsukuru Data Bad?)</description> | |
| 62346 | <!-- BS --> | |
| 62347 | <year>199?</year> | |
| 62348 | <publisher><unknown></publisher> | |
| 62349 | <part name="cart" interface="snes_cart"> | |
| 62350 | <dataarea name="rom" size="1048576"> | |
| 62351 | <rom name="unknown - every other bank erased.bs" size="1048576" crc="5738ad34" sha1="f41ad479353dbbf7136af678faf7b0b8d96876d8" offset="0x000000" /> | |
| 62352 | </dataarea> | |
| 62353 | </part> | |
| 62354 | </software> | |
| 62355 | ||
| 62356 | ||
| 62357 | 66289 | <!-- Non game cartridges --> |
| 62358 | 66290 | |
| 62359 | 66291 | <software name="ggenie2" cloneof="ggenie" supported="no"> |
| r21545 | r21546 | |
| 62361 | 66293 | <year>199?</year> |
| 62362 | 66294 | <publisher><unknown></publisher> |
| 62363 | 66295 | <part name="cart" interface="snes_cart"> |
| 66296 | ||
| 66297 | <feature name="slot" value="lorom" /> | |
| 62364 | 66298 | <dataarea name="rom" size="65536"> |
| 62365 | 66299 | <rom name="game genie (usa) (alt 1) (unl) [b].sfc" size="65536" crc="58cbf2fe" sha1="81a5c4667e3021094edf3c82b2e9d1e453f547b3" offset="0x000000" status="baddump" /> |
| 62366 | 66300 | </dataarea> |
| r21545 | r21546 | |
| 62372 | 66306 | <year>199?</year> |
| 62373 | 66307 | <publisher><unknown></publisher> |
| 62374 | 66308 | <part name="cart" interface="snes_cart"> |
| 66309 | ||
| 66310 | <feature name="slot" value="lorom" /> | |
| 62375 | 66311 | <dataarea name="rom" size="32768"> |
| 62376 | 66312 | <rom name="game genie (usa) (unl) [b].sfc" size="32768" crc="f8d4c303" sha1="6d96c3556b8eef50d5a49a807f246cba1ff48b6b" offset="0x000000" status="baddump" /> |
| 62377 | 66313 | </dataarea> |
| r21545 | r21546 | |
| 62383 | 66319 | <year>199?</year> |
| 62384 | 66320 | <publisher><unknown></publisher> |
| 62385 | 66321 | <part name="cart" interface="snes_cart"> |
| 66322 | ||
| 66323 | <feature name="slot" value="lorom" /> | |
| 62386 | 66324 | <dataarea name="rom" size="32768"> |
| 62387 | 66325 | <rom name="game genie (usa) (v2.0) (unl).sfc" size="32768" crc="ac94f94a" sha1="58dd143049c5a1527975d64c9773b605aca307c3" offset="0x000000" /> |
| 62388 | 66326 | </dataarea> |
| r21545 | r21546 | |
| 62394 | 66332 | <year>199?</year> |
| 62395 | 66333 | <publisher><unknown></publisher> |
| 62396 | 66334 | <part name="cart" interface="snes_cart"> |
| 66335 | ||
| 66336 | <feature name="slot" value="lorom" /> | |
| 62397 | 66337 | <dataarea name="rom" size="32768"> |
| 62398 | 66338 | <rom name="game saver (europe) (v1.6) (unl).sfc" size="32768" crc="9da23b4a" sha1="e9004aa7a4fc8913420d05ed3e671d5d0931b54a" offset="0x000000" /> |
| 62399 | 66339 | </dataarea> |
| r21545 | r21546 | |
| 62405 | 66345 | <year>199?</year> |
| 62406 | 66346 | <publisher><unknown></publisher> |
| 62407 | 66347 | <part name="cart" interface="snes_cart"> |
| 66348 | ||
| 66349 | <feature name="slot" value="lorom" /> | |
| 62408 | 66350 | <dataarea name="rom" size="32768"> |
| 62409 | 66351 | <rom name="pro action replay (europe) (unl) [b].sfc" size="32768" crc="81a67556" sha1="bdc945a9dc3cecc372110bdafc1beac8ce899ae8" offset="0x000000" status="baddump" /> |
| 62410 | 66352 | </dataarea> |
| r21545 | r21546 | |
| 62416 | 66358 | <year>199?</year> |
| 62417 | 66359 | <publisher><unknown></publisher> |
| 62418 | 66360 | <part name="cart" interface="snes_cart"> |
| 66361 | ||
| 66362 | <feature name="slot" value="lorom" /> | |
| 62419 | 66363 | <dataarea name="rom" size="32768"> |
| 62420 | 66364 | <rom name="pro action replay mk2 (europe) (unl) [b].sfc" size="32768" crc="83b1d39e" sha1="7ca6a6dccf7470a1d0c9b66536f439d9868aa0ef" offset="0x000000" status="baddump" /> |
| 62421 | 66365 | </dataarea> |
| r21545 | r21546 | |
| 62429 | 66373 | <year>199?</year> |
| 62430 | 66374 | <publisher><unknown></publisher> |
| 62431 | 66375 | <part name="cart" interface="snes_cart"> |
| 66376 | ||
| 66377 | <feature name="slot" value="lorom" /> | |
| 62432 | 66378 | <dataarea name="rom" size="32768"> |
| 62433 | 66379 | <rom name="pro action replay mk2 (europe) (v1.1) (unl) [b].sfc" size="32768" crc="70d6b036" sha1="9fc8e45dbddb7cbdd54ba3232adb23160c7a480d" offset="0x000000" status="baddump" /> |
| 62434 | 66380 | </dataarea> |
| r21545 | r21546 | |
| 62442 | 66388 | <year>199?</year> |
| 62443 | 66389 | <publisher><unknown></publisher> |
| 62444 | 66390 | <part name="cart" interface="snes_cart"> |
| 66391 | ||
| 66392 | <feature name="slot" value="lorom" /> | |
| 62445 | 66393 | <dataarea name="rom" size="131072"> |
| 62446 | 66394 | <rom name="pro action replay mk3 (europe) (unl).sfc" size="131072" crc="0d7f770a" sha1="896d1edd00def92023d7f3a6c2e46ad737c44698" offset="0x000000" /> |
| 62447 | 66395 | </dataarea> |
| r21545 | r21546 | |
| 62453 | 66401 | <year>199?</year> |
| 62454 | 66402 | <publisher>Nintendo</publisher> |
| 62455 | 66403 | <part name="cart" interface="snes_cart"> |
| 66404 | ||
| 66405 | <feature name="slot" value="lorom" /> | |
| 62456 | 66406 | <dataarea name="rom" size="131072"> |
| 62457 | 66407 | <rom name="controller test cassette (japan).sfc" size="131072" crc="edf7ebb9" sha1="b93c39c683ba3be4c8f7b4fc120444fe0510568e" offset="0x000000" /> |
| 62458 | 66408 | </dataarea> |
| r21545 | r21546 | |
| 62464 | 66414 | <year>199?</year> |
| 62465 | 66415 | <publisher>Nintendo</publisher> |
| 62466 | 66416 | <part name="cart" interface="snes_cart"> |
| 66417 | ||
| 66418 | <feature name="slot" value="lorom" /> | |
| 62467 | 66419 | <dataarea name="rom" size="1048576"> |
| 62468 | 66420 | <rom name="snes test program.sfc" size="1048576" crc="d4553100" sha1="89eea825c1d434a62cba9867001eec6aac75c469" offset="0x000000" /> |
| 62469 | 66421 | </dataarea> |
| r21545 | r21546 | |
| 62476 | 66428 | <year>1995</year> |
| 62477 | 66429 | <publisher>Catapult Entertainment</publisher> |
| 62478 | 66430 | <part name="cart" interface="snes_cart"> |
| 66431 | ||
| 66432 | <feature name="slot" value="hirom" /> | |
| 62479 | 66433 | <dataarea name="rom" size="2097152"> |
| 62480 | 66434 | <rom name="xband (japan).sfc" size="2097152" crc="42d47034" sha1="0ea7c97f82debaef88f27c446a45de784efb145f" offset="0x000000" /> |
| 62481 | 66435 | </dataarea> |
| r21545 | r21546 | |
| 62488 | 66442 | <year>1994</year> |
| 62489 | 66443 | <publisher>Catapult Entertainment</publisher> |
| 62490 | 66444 | <part name="cart" interface="snes_cart"> |
| 66445 | ||
| 66446 | <feature name="slot" value="hirom" /> | |
| 62491 | 66447 | <dataarea name="rom" size="1048576"> |
| 62492 | 66448 | <rom name="x band snes us rom 1.0.1.u2" size="1048576" crc="a8b868a0" sha1="3f56b109a05097f09fd8859205ea635453d1cb45" offset="0x000000" /> |
| 62493 | 66449 | </dataarea> |
| r21545 | r21546 | |
| 62501 | 66457 | <year>1996</year> |
| 62502 | 66458 | <publisher>Bandai</publisher> |
| 62503 | 66459 | <part name="cart" interface="snes_cart"> |
| 66460 | ||
| 66461 | <feature name="slot" value="lorom_sufami" /> | |
| 62504 | 66462 | <dataarea name="rom" size="262144"> |
| 62505 | 66463 | <rom name="sufami turbo (japan).sfc" size="262144" crc="9b4ca911" sha1="ef86ea192eed03d5c413fdbbfd46043be1d7a127" offset="0x000000" /> |
| 62506 | 66464 | </dataarea> |
| r21545 | r21546 | |
| 62512 | 66470 | <year>199?</year> |
| 62513 | 66471 | <publisher>Nintendo</publisher> |
| 62514 | 66472 | <part name="cart" interface="snes_cart"> |
| 66473 | ||
| 66474 | <feature name="slot" value="lorom_sgb" /> | |
| 62515 | 66475 | <dataarea name="rom" size="262144"> |
| 62516 | 66476 | <rom name="super game boy (japan, usa) (rev 1).sfc" size="262144" crc="27a03c98" sha1="6380a5913ace3041a305fbaf822b5a8847fea7ed" offset="0x000000" /> |
| 62517 | 66477 | </dataarea> |
| r21545 | r21546 | |
| 62523 | 66483 | <year>199?</year> |
| 62524 | 66484 | <publisher>Nintendo</publisher> |
| 62525 | 66485 | <part name="cart" interface="snes_cart"> |
| 66486 | ||
| 66487 | <feature name="slot" value="lorom" /> | |
| 62526 | 66488 | <dataarea name="rom" size="524288"> |
| 62527 | 66489 | <rom name="nintendo power menu program (japan) (np).sfc" size="524288" crc="65fe9a35" sha1="c826f3464ae2e54b39b923b5dc33ffb999c852a5" offset="0x000000" /> |
| 62528 | 66490 | </dataarea> |
| r21545 | r21546 | |
| 62534 | 66496 | <year>199?</year> |
| 62535 | 66497 | <publisher>Nintendo</publisher> |
| 62536 | 66498 | <part name="cart" interface="snes_cart"> |
| 66499 | ||
| 66500 | <feature name="slot" value="lorom" /> | |
| 62537 | 66501 | <dataarea name="rom" size="524288"> |
| 62538 | 66502 | <rom name="nintendo power menu program (japan) (rev 1) (np).sfc" size="524288" crc="9f2a7ca7" sha1="ca8f71d5fd2003831e031c71987ecc2ea647a7ce" offset="0x000000" /> |
| 62539 | 66503 | </dataarea> |
| r21545 | r21546 | |
| 62545 | 66509 | <year>199?</year> |
| 62546 | 66510 | <publisher><unknown></publisher> |
| 62547 | 66511 | <part name="cart" interface="snes_cart"> |
| 66512 | ||
| 66513 | <feature name="slot" value="lorom" /> | |
| 62548 | 66514 | <dataarea name="rom" size="131072"> |
| 62549 | 66515 | <rom name="aging cassette (japan).sfc" size="131072" crc="55938e4e" sha1="bf14ffdea30d4df4d158a14e3b8f107df38d167b" offset="0x000000" /> |
| 62550 | 66516 | </dataarea> |
| Previous | 199869 Revisions | Next |