diff options
| author | Adam Bird <Archez@users.noreply.github.com> | 2023-10-04 11:05:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-04 10:05:02 -0500 |
| commit | 89de1472606b101a25d489d3e01f1769d3bc186c (patch) | |
| tree | 5bad2f39f10029676e926b44343698c5981a061d | |
| parent | 4e8de88b83d6d664ef653cf8750e37a22ac4612b (diff) | |
N64 PAL 1.0 support (#3182)
* initial n64 pal 1.0 support - hashes and rominfo
* initial xml copy pal 1.0
* initial offset fixes
* update title copyright to be platform based
* bump lus for clearMtx
* add scripted xml definitions
* offset fixes and xml fixups
* rename and sort pal mq definition
* more offset fixes
| -rw-r--r-- | rom_info.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rom_info.py b/rom_info.py index 8bf471c..897b145 100644 --- a/rom_info.py +++ b/rom_info.py @@ -38,6 +38,7 @@ ROM_INFO_TABLE[Checksums.OOT_PAL_GC] = RomVersion("CFG/filelists/gamecube_pal.tx ROM_INFO_TABLE[Checksums.OOT_PAL_MQ] = RomVersion("CFG/filelists/gamecube_pal.txt", 0x7170, "GC_MQ_PAL_F") ROM_INFO_TABLE[Checksums.OOT_PAL_GC_DBG1] = RomVersion("CFG/filelists/dbg.txt", 0x12F70, "GC_NMQ_D") 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") class RomDmaEntry: |
