diff options
| author | inspectredc <78732756+inspectredc@users.noreply.github.com> | 2025-03-30 18:19:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-30 13:19:18 -0400 |
| commit | 41052efcdf8df8e67517cc93da8975fcd4e14af9 (patch) | |
| tree | 58b2ecaf94e4d9c7c39323a193a73e17b955d088 | |
| parent | a7f24ae8a0da54440f4666c1619283676863ca6a (diff) | |
NTSC GC Support (#36)soh-macready
* Add ntsc-gc-u rom info
* Add JP GC NMQs
* Add NTSC MQ rom info
| -rw-r--r-- | rom_info.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rom_info.py b/rom_info.py index a6f5eb5..26e8740 100644 --- a/rom_info.py +++ b/rom_info.py @@ -40,6 +40,11 @@ ROM_INFO_TABLE[Checksums.OOT_PAL_GC_DBG1] = RomVersion("CFG/filelists/dbg.txt", ROM_INFO_TABLE[Checksums.OOT_PAL_GC_MQ_DBG] = RomVersion("CFG/filelists/dbg.txt", 0x12F70, "GC_MQ_D") ROM_INFO_TABLE[Checksums.OOT_PAL_10] = RomVersion("CFG/filelists/pal_oot.txt", 0x7950, "N64_PAL_10") ROM_INFO_TABLE[Checksums.OOT_PAL_11] = RomVersion("CFG/filelists/pal_oot.txt", 0x7950, "N64_PAL_11") +ROM_INFO_TABLE[Checksums.OOT_NTSC_US_GC] = RomVersion("CFG/filelists/gamecube.txt", 0x7170, "GC_NMQ_NTSC_U") +ROM_INFO_TABLE[Checksums.OOT_NTSC_JP_GC] = RomVersion("CFG/filelists/gamecube.txt", 0x7170, "GC_NMQ_NTSC_J") +ROM_INFO_TABLE[Checksums.OOT_NTSC_JP_GC_CE] = RomVersion("CFG/filelists/gamecube.txt", 0x7170, "GC_NMQ_NTSC_J_CE") +ROM_INFO_TABLE[Checksums.OOT_NTSC_US_MQ] = RomVersion("CFG/filelists/gamecube.txt", 0x7170, "GC_MQ_NTSC_U") +ROM_INFO_TABLE[Checksums.OOT_NTSC_JP_MQ] = RomVersion("CFG/filelists/gamecube.txt", 0x7170, "GC_MQ_NTSC_J") ROM_INFO_TABLE[Checksums.OOT_NTSC_10] = RomVersion("CFG/filelists/ntsc_oot.txt", 0x7430, "N64_NTSC_10") ROM_INFO_TABLE[Checksums.OOT_NTSC_11] = RomVersion("CFG/filelists/ntsc_oot.txt", 0x7430, "N64_NTSC_11") ROM_INFO_TABLE[Checksums.OOT_NTSC_12] = RomVersion("CFG/filelists/ntsc_12_oot.txt", 0x7430, "N64_NTSC_12") |
