cartreader/sd/README.md

95 lines
3.5 KiB
Markdown
Raw Normal View History

2022-07-07 01:05:39 +02:00
### Copy these files to the root of your SD card. If you're on Linux or MAC make sure the Windows style line endings(CRLF) don't get removed.
Hint: You can select all the databases, right-click, properties, mark checkbox Hidden and now they won't show up in the Cart Reader's file browser.
2016-07-04 13:21:34 +02:00
2022-08-22 18:14:41 +02:00
## gb.txt / gg.txt / md.txt / pce.txt / sms.txt / vb.txt
These files store the ROM names and the CRC32 checksums of the complete ROM and are used only for verification at the end of the dumping process.
2017-02-11 16:28:16 +01:00
2022-07-07 01:02:33 +02:00
Example:
007 - The World Is Not Enough (USA, Europe).gbc
E038E666
2017-02-11 16:28:16 +01:00
2022-07-07 01:02:33 +02:00
Name
CRC32
2022-08-22 18:14:41 +02:00
## colv.txt / wsv.txt
Stores the ROM name, CRC32 of the complete ROM, CRC32 of the first 512 bytes and size in KB, since the size is not stored in the ROM it is needed for dumping.
Example:
Artillery Duel (USA).col
6F88FCF0,48474D52,16
Name
CRC32 (complete ROM), CRC32 (512 bytes), size in KB
2022-07-07 01:02:33 +02:00
## gba.txt
This file stores the GBA database which is needed because the save type and rom size are not stored inside the rom.
Example:
007 - Everything or Nothing (USA, Europe) (En,Fr,De).gba
9D4F1E18,BJBE,08,1
Name
CRC32, game id, size in MByte, savetype
Savetypes:
2017-02-11 16:28:16 +01:00
0 = Unknown or no save
1 = 4k Eeprom
2 = 64K Eeprom
3 = 256K Sram
4 = 512K Flash
5 = 1024K Flash
6 = 512K Sram
2022-08-22 18:14:41 +02:00
## intv.txt
This file stores the Intellivision database which is needed because the save type and rom size are not stored inside the rom.
Example:
Air Strike (USA) (Proto).int
2C668249,1BB8CBB9,0,08,0
Name
CRC32(whole ROM), CRC32(first 512bytes), mapper, size in KB, save
2021-11-15 19:55:58 +01:00
## n64.txt
2022-07-07 01:02:33 +02:00
This file stores the N64 database which is needed because the save type and rom size are not stored inside the rom.
The CRC32 checksum is used to verify a good dump.
2016-07-04 13:21:34 +02:00
2022-07-07 01:02:33 +02:00
Example:
007 - The World Is Not Enough (Europe) (En,Fr,De).z64
002C3B2A,3B941695,32,0
Name
CRC32, ROM internal CRC1, size in MByte, savetype
2016-07-04 13:21:34 +02:00
Savetypes:
0 = no save chip
1 = SRAM
4 = Flashram
5 = 4K Eeprom
6 = 16K Eeprom
2022-06-16 18:29:39 +02:00
## nes.txt
2022-10-10 13:30:44 +02:00
This file stores the CRC32 of the complete ROM minus the iNES header, the CRC32 calculated over the first 512 bytes of the first or last(MMC3) PRG bank and the iNES Header. The iNES header holds all the mapping info.
2022-07-07 01:02:33 +02:00
Example:
89 Dennou Kyuusei Uranai (Japan).nes
BA58ED29,716956B4,4E45531A100010080000070700000001
Name
2022-07-19 17:54:09 +02:00
CRC32 (prg+chr combined), CRC32 (512 bytes), iNES Header
2016-07-04 13:21:34 +02:00
## nes20db.txt
This file stores NES 2.0 data about NES ROMs, generated from [NewRisingSun's nes20db XML file on NesDev](https://forums.nesdev.org/viewtopic.php?t=19940). Converting updated versions of the XML file to this format requires compiling and running [NES20Tool](https://github.com/Kreeblah/NES20Tool) with the following options at runtime:
NES20Tool -operation transform -xml-file nes20db.xml -xml-format nes20db -format-transform-type sanni -format-transform-destination nes20db.txt
2022-07-07 01:02:33 +02:00
## snes.txt
This file is needed for odd sized SNES games like Final Fantasy (JAP), Super Metroid(US/JAP) or Tales of Symphonia. Without this file you will get overdumps and the checksum calculation will fail.
2018-04-18 17:00:27 +02:00
2022-07-07 01:02:33 +02:00
Example:
2022-08-22 18:14:41 +02:00
2020 Super Baseball (Japan).sfc
E95A3DD7,0C19,379A6FFB,12,024
2016-07-04 13:21:34 +02:00
2022-07-07 01:02:33 +02:00
Name
2022-08-22 18:14:41 +02:00
CRC32, internal checksum, CRC32 of header area(0xFFB0-0xFFFF), size in Mbit, number of banks (lorom needs twice as many banks as hirom for the same rom size, lorom: 32kb banks, hirom: 64kb banks)