Super Nintendo Entertainment System (SNES), part of GameDB.
SNES.data.json
: All data, structured in the JSON formatSNES.data.tsv
: All data, structured in the TSV formatSNES.release_dates.pdf
: Histogram of release dates, stratified by regionSNES.titles.json
: Mapping of serial numbers to game titles, structured in the JSON format
SNES games don't have unique internal game IDs or serial numbers. The following 4 fields can be used to uniquely identify a game:
- The Internal Title, which is at offsets
0x00
through0x19
(inclusive) of the ROM header - The Developer ID, which is at offset
0x1A
of the ROM header - The ROM Version, which is at offset
0x1B
of the ROM header - The Checksum (see calculation code)
The game folders within games
are named as follows (i.e., these 4 fields delimited by .....
):
DEVELOPER_ID.....INTERNAL_TITLE.....ROM_VERSION.....CHECKSUM
See the GameID SNES identification code for implementation details.