diff options
| author | emilybrooks <emilybrooksemilybrooks@gmail.com> | 2024-06-11 19:48:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-11 19:48:56 -0700 |
| commit | 167abace845b413e26bb8fbb48d87cf37e7e7049 (patch) | |
| tree | db6412e7e1167448e328d6b387230398cd5f251e | |
| parent | 69201d6d724625233f4fc80873f509951c4e5556 (diff) | |
update progress tracking (#194)
* ignore hasm files
* add assets to progress.py
* add assets to frogress script
| -rwxr-xr-x | tools/progress.py | 45 | ||||
| -rwxr-xr-x | tools/upload_frogress.py | 10 | ||||
| -rw-r--r-- | yamls/jp/assets.yaml | 348 |
3 files changed, 395 insertions, 8 deletions
diff --git a/tools/progress.py b/tools/progress.py index 257fc42..552eb33 100755 --- a/tools/progress.py +++ b/tools/progress.py @@ -41,7 +41,13 @@ def getProgressFromMapFile(mapFile: mapfile_parser.MapFile, asmPath: Path, nonma extensionlessFilePath = extensionlessFilePath.with_suffix("") fullAsmFile = asmPath / extensionlessFilePath.with_suffix(".s") - wholeFileIsUndecomped = fullAsmFile.exists() + + handwrittenAsmFiles = [Path("boot/libc64/fp.o"), Path("makerom/entry.o")] + + if originalFilePath in handwrittenAsmFiles: + wholeFileIsUndecomped = False + else: + wholeFileIsUndecomped = fullAsmFile.exists() for func in file: @@ -82,6 +88,34 @@ def getProgress(mapPath: Path, version: str) -> tuple[mapfile_parser.ProgressSta return getProgressFromMapFile(mapFile.filterBySectionType(".text"), ASMPATH / version, nonMatchingsPath, aliases={"ultralib": "libultra"}) +def getAssetProgress(mapPath: Path, version: str): + totalStats = mapfile_parser.ProgressStats() + progressPerFolder: dict[str, mapfile_parser.ProgressStats] = dict() + progressPerFolder["objects"] = mapfile_parser.ProgressStats() + progressPerFolder["unidentified"] = mapfile_parser.ProgressStats() + + mapFile = mapfile_parser.MapFile() + mapFile.readMapFile(mapPath) + mapFile = mapFile.filterBySectionType(".data") + + for segment in mapFile: + for file in segment: + + if len(file) == 0: + continue + + if str(file.filepath).startswith("build/src/objects"): + totalStats.decompedSize += file.size + progressPerFolder["objects"].decompedSize += file.size + elif str(file.filepath).startswith("build/assets/" + version + "/objects"): + totalStats.undecompedSize += file.size + progressPerFolder["objects"].undecompedSize += file.size + elif str(file.filepath).startswith("build/assets/" + version): + progressPerFolder["unidentified"].undecompedSize += file.size + totalStats.undecompedSize += file.size + + return totalStats, progressPerFolder + def progressMain(): parser = argparse.ArgumentParser() parser.add_argument("-v", "--version", help="version to process", default="jp") @@ -90,9 +124,12 @@ def progressMain(): mapPath = Path("build") / f"animalforest-{args.version}.map" - totalStats, progressPerFolder = getProgress(mapPath, args.version) - - mapfile_parser.progress_stats.printStats(totalStats, progressPerFolder) + codeTotalStats, codeProgressPerFolder = getProgress(mapPath, args.version) + assetTotalStats, assetProgressPerFolder = getAssetProgress(mapPath, args.version) + print("code:") + mapfile_parser.progress_stats.printStats(codeTotalStats, codeProgressPerFolder) + print("\n\nassets:") + mapfile_parser.progress_stats.printStats(assetTotalStats, assetProgressPerFolder) if __name__ == "__main__": progressMain() diff --git a/tools/upload_frogress.py b/tools/upload_frogress.py index 301ce5c..480c8cf 100755 --- a/tools/upload_frogress.py +++ b/tools/upload_frogress.py @@ -23,16 +23,18 @@ def uploadProgressMain(): args = parser.parse_args() version: str = args.version - category: str = "code" apikey: str = args.apikey mapPath = Path("build") / f"animalforest-{args.version}.map" - totalStats, progressPerFolder = progress.getProgress(mapPath, version) + codeTotalStats, codeProgressPerFolder = progress.getProgress(mapPath, version) + codeEntries: dict[str, int] = mapfile_parser.frontends.upload_frogress.getFrogressEntriesFromStats(codeTotalStats, codeProgressPerFolder, verbose=True) - entries: dict[str, int] = mapfile_parser.frontends.upload_frogress.getFrogressEntriesFromStats(totalStats, progressPerFolder, verbose=True) + assetTotalStats, assetProgressPerFolder = progress.getAssetProgress(mapPath, version) + assetEntries: dict[str, int] = mapfile_parser.frontends.upload_frogress.getFrogressEntriesFromStats(assetTotalStats, assetProgressPerFolder, verbose=True) url = mapfile_parser.utils.generateFrogressEndpointUrl(BASE_URL, PROJECT, version) - exit(mapfile_parser.frontends.upload_frogress.uploadEntriesToFrogress(entries, category, url, apikey=apikey, verbose=True)) + mapfile_parser.frontends.upload_frogress.uploadEntriesToFrogress(codeEntries, "code", url, apikey=apikey, verbose=True) + mapfile_parser.frontends.upload_frogress.uploadEntriesToFrogress(assetEntries, "assets", url, apikey=apikey, verbose=True) if __name__ == '__main__': uploadProgressMain() diff --git a/yamls/jp/assets.yaml b/yamls/jp/assets.yaml index 1a7af61..635052e 100644 --- a/yamls/jp/assets.yaml +++ b/yamls/jp/assets.yaml @@ -63,6 +63,7 @@ - [0xA20010] - name: locerrmsg + dir: misc type: bin start: 0xA21000 vram: 0x01000000 @@ -71,6 +72,7 @@ - [0xA21680] - name: gameplay_keep + dir: objects type: bin # code start: 0xA22000 vram: 0x04000000 @@ -274,6 +276,7 @@ - [0xB35930] - name: object_00B36000 + dir: objects type: bin # code start: 0xB36000 vram: 0x06000000 @@ -285,6 +288,7 @@ - [0xB67E20] - name: object_00B68000 + dir: objects type: bin # code start: 0xB68000 vram: 0x06000000 @@ -296,6 +300,7 @@ - [0xB88000] - name: object_00B88000 + dir: objects type: bin # code start: 0xB88000 vram: 0x06000000 @@ -315,6 +320,7 @@ - [0xB8A070] - name: object_00B8B000 + dir: objects type: bin # code start: 0xB8B000 vram: 0x06000000 @@ -326,6 +332,7 @@ - [0xB8ECE0] - name: object_00B8F000 + dir: objects type: bin # code start: 0xB8F000 vram: 0x06000000 @@ -457,6 +464,7 @@ - [0xD24970] - name: object_00D25000 + dir: objects type: bin # code start: 0xD25000 vram: 0x06000000 @@ -468,6 +476,7 @@ - [0xD28540] - name: object_00D29000 + dir: objects type: bin # code start: 0xD29000 vram: 0x06000000 @@ -479,6 +488,7 @@ - [0xD2C0A0] - name: object_00D2D000 + dir: objects type: bin # code start: 0xD2D000 vram: 0x06000000 @@ -490,6 +500,7 @@ - [0xD37440] - name: object_00D38000 + dir: objects type: bin # code start: 0xD38000 vram: 0x06000000 @@ -501,6 +512,7 @@ - [0xD42440] - name: object_00D43000 + dir: objects type: bin # code start: 0xD43000 vram: 0x06000000 @@ -512,6 +524,7 @@ - [0xD4CE90] - name: object_00D4D000 + dir: objects type: bin # code start: 0xD4D000 vram: 0x06000000 @@ -1950,6 +1963,7 @@ - [0xDF42F0] - name: object_00DF5000 + dir: objects type: bin # code start: 0xDF5000 vram: 0x06000000 @@ -1961,6 +1975,7 @@ - [0xDFF0D0] - name: object_00E00000 + dir: objects type: bin # code start: 0xE00000 vram: 0x06000000 @@ -1972,6 +1987,7 @@ - [0xE00180] - name: object_00E01000 + dir: objects type: bin # code start: 0xE01000 vram: 0x06000000 @@ -2007,6 +2023,7 @@ - [0xE04530] - name: object_00E05000 + dir: objects type: bin # code start: 0xE05000 vram: 0x06000000 @@ -2026,6 +2043,7 @@ - [0xE0D0E0] - name: object_00E0E000 + dir: objects type: bin # code start: 0xE0E000 vram: 0x06000000 @@ -2037,6 +2055,7 @@ - [0xE60390] - name: object_00E61000 + dir: objects type: bin # code start: 0xE61000 vram: 0x06000000 @@ -2048,6 +2067,7 @@ - [0xE63350] - name: object_00E64000 + dir: objects type: bin # code start: 0xE64000 vram: 0x06000000 @@ -2059,6 +2079,7 @@ - [0xE65020] - name: object_00E66000 + dir: objects type: bin # code start: 0xE66000 vram: 0x06000000 @@ -2070,6 +2091,7 @@ - [0xE68140] - name: object_00E69000 + dir: objects type: bin # code start: 0xE69000 vram: 0x06000000 @@ -2081,6 +2103,7 @@ - [0xE6A020] - name: object_00E6B000 + dir: objects type: bin # code start: 0xE6B000 vram: 0x06000000 @@ -2092,6 +2115,7 @@ - [0xE6C020] - name: object_00E6D000 + dir: objects type: bin # code start: 0xE6D000 vram: 0x06000000 @@ -2103,6 +2127,7 @@ - [0xE6E020] - name: object_00E6F000 + dir: objects type: bin # code start: 0xE6F000 vram: 0x06000000 @@ -2114,6 +2139,7 @@ - [0xE70020] - name: object_00E71000 + dir: objects type: bin # code start: 0xE71000 vram: 0x06000000 @@ -2125,6 +2151,7 @@ - [0xE72020] - name: object_00E73000 + dir: objects type: bin # code start: 0xE73000 vram: 0x06000000 @@ -2136,6 +2163,7 @@ - [0xE755D0] - name: object_00E76000 + dir: objects type: bin # code start: 0xE76000 vram: 0x06000000 @@ -2147,6 +2175,7 @@ - [0xE77020] - name: object_00E78000 + dir: objects type: bin # code start: 0xE78000 vram: 0x06000000 @@ -2158,6 +2187,7 @@ - [0xE79FE0] - name: object_00E7A000 + dir: objects type: bin # code start: 0xE7A000 vram: 0x06000000 @@ -2169,6 +2199,7 @@ - [0xE7B620] - name: object_00E7C000 + dir: objects type: bin # code start: 0xE7C000 vram: 0x06000000 @@ -2180,6 +2211,7 @@ - [0xE7D620] - name: object_00E7E000 + dir: objects type: bin # code start: 0xE7E000 vram: 0x06000000 @@ -2191,6 +2223,7 @@ - [0xE7F620] - name: object_00E80000 + dir: objects type: bin # code start: 0xE80000 vram: 0x06000000 @@ -2202,6 +2235,7 @@ - [0xE81620] - name: object_00E82000 + dir: objects type: bin # code start: 0xE82000 vram: 0x06000000 @@ -2213,6 +2247,7 @@ - [0xE83620] - name: object_00E84000 + dir: objects type: bin # code start: 0xE84000 vram: 0x06000000 @@ -2224,6 +2259,7 @@ - [0xE85620] - name: object_00E86000 + dir: objects type: bin # code start: 0xE86000 vram: 0x06000000 @@ -2235,6 +2271,7 @@ - [0xE87620] - name: object_00E88000 + dir: objects type: bin # code start: 0xE88000 vram: 0x06000000 @@ -2246,6 +2283,7 @@ - [0xE89620] - name: object_00E8A000 + dir: objects type: bin # code start: 0xE8A000 vram: 0x06000000 @@ -2257,6 +2295,7 @@ - [0xE8B620] - name: object_00E8C000 + dir: objects type: bin # code start: 0xE8C000 vram: 0x06000000 @@ -2268,6 +2307,7 @@ - [0xE8E1F0] - name: object_00E8F000 + dir: objects type: bin # code start: 0xE8F000 vram: 0x06000000 @@ -2279,6 +2319,7 @@ - [0xE90020] - name: object_00E91000 + dir: objects type: bin # code start: 0xE91000 vram: 0x06000000 @@ -2290,6 +2331,7 @@ - [0xE92020] - name: object_00E93000 + dir: objects type: bin # code start: 0xE93000 vram: 0x06000000 @@ -2301,6 +2343,7 @@ - [0xE94020] - name: object_00E95000 + dir: objects type: bin # code start: 0xE95000 vram: 0x06000000 @@ -2312,6 +2355,7 @@ - [0xE96020] - name: object_00E97000 + dir: objects type: bin # code start: 0xE97000 vram: 0x06000000 @@ -2323,6 +2367,7 @@ - [0xE98020] - name: object_00E99000 + dir: objects type: bin # code start: 0xE99000 vram: 0x06000000 @@ -2334,6 +2379,7 @@ - [0xE9B020] - name: object_00E9C000 + dir: objects type: bin # code start: 0xE9C000 vram: 0x06000000 @@ -2345,6 +2391,7 @@ - [0xE9D020] - name: object_00E9E000 + dir: objects type: bin # code start: 0xE9E000 vram: 0x06000000 @@ -2356,6 +2403,7 @@ - [0xE9F020] - name: object_00EA0000 + dir: objects type: bin # code start: 0xEA0000 vram: 0x06000000 @@ -2367,6 +2415,7 @@ - [0xEA1020] - name: object_00EA2000 + dir: objects type: bin # code start: 0xEA2000 vram: 0x06000000 @@ -2378,6 +2427,7 @@ - [0xEA3020] - name: object_00EA4000 + dir: objects type: bin # code start: 0xEA4000 vram: 0x06000000 @@ -2389,6 +2439,7 @@ - [0xEA5020] - name: object_00EA6000 + dir: objects type: bin # code start: 0xEA6000 vram: 0x06000000 @@ -2400,6 +2451,7 @@ - [0xEA7020] - name: object_00EA8000 + dir: objects type: bin # code start: 0xEA8000 vram: 0x06000000 @@ -2411,6 +2463,7 @@ - [0xEA9020] - name: object_00EAA000 + dir: objects type: bin # code start: 0xEAA000 vram: 0x06000000 @@ -2422,6 +2475,7 @@ - [0xEAB020] - name: object_00EAC000 + dir: objects type: bin # code start: 0xEAC000 vram: 0x06000000 @@ -2433,6 +2487,7 @@ - [0xEAD020] - name: object_00EAE000 + dir: objects type: bin # code start: 0xEAE000 vram: 0x06000000 @@ -2444,6 +2499,7 @@ - [0xEAF020] - name: object_00EB0000 + dir: objects type: bin # code start: 0xEB0000 vram: 0x06000000 @@ -2455,6 +2511,7 @@ - [0xEB2100] - name: object_00EB3000 + dir: objects type: bin # code start: 0xEB3000 vram: 0x06000000 @@ -2466,6 +2523,7 @@ - [0xEB4020] - name: object_00EB5000 + dir: objects type: bin # code start: 0xEB5000 vram: 0x06000000 @@ -2477,6 +2535,7 @@ - [0xEB7060] - name: object_00EB8000 + dir: objects type: bin # code start: 0xEB8000 vram: 0x06000000 @@ -2488,6 +2547,7 @@ - [0xEB9620] - name: object_00EBA000 + dir: objects type: bin # code start: 0xEBA000 vram: 0x06000000 @@ -2499,6 +2559,7 @@ - [0xEBB620] - name: object_00EBC000 + dir: objects type: bin # code start: 0xEBC000 vram: 0x06000000 @@ -2510,6 +2571,7 @@ - [0xEBD620] - name: object_00EBE000 + dir: objects type: bin # code start: 0xEBE000 vram: 0x06000000 @@ -2521,6 +2583,7 @@ - [0xEBF620] - name: object_00EC0000 + dir: objects type: bin # code start: 0xEC0000 vram: 0x06000000 @@ -2532,6 +2595,7 @@ - [0xEC27D0] - name: object_00EC3000 + dir: objects type: bin # code start: 0xEC3000 vram: 0x06000000 @@ -2543,6 +2607,7 @@ - [0xEC4020] - name: object_00EC5000 + dir: objects type: bin # code start: 0xEC5000 vram: 0x06000000 @@ -2554,6 +2619,7 @@ - [0xEC6CF0] - name: object_00EC7000 + dir: objects type: bin # code start: 0xEC7000 vram: 0x06000000 @@ -2565,6 +2631,7 @@ - [0xEC8620] - name: object_00EC9000 + dir: objects type: bin # code start: 0xEC9000 vram: 0x06000000 @@ -2576,6 +2643,7 @@ - [0xECA620] - name: object_00ECB000 + dir: objects type: bin # code start: 0xECB000 vram: 0x06000000 @@ -2587,6 +2655,7 @@ - [0xECC620] - name: object_00ECD000 + dir: objects type: bin # code start: 0xECD000 vram: 0x06000000 @@ -2598,6 +2667,7 @@ - [0xECE620] - name: object_00ECF000 + dir: objects type: bin # code start: 0xECF000 vram: 0x06000000 @@ -2609,6 +2679,7 @@ - [0xED0620] - name: object_00ED1000 + dir: objects type: bin # code start: 0xED1000 vram: 0x06000000 @@ -2620,6 +2691,7 @@ - [0xED2620] - name: object_00ED3000 + dir: objects type: bin # code start: 0xED3000 vram: 0x06000000 @@ -2631,6 +2703,7 @@ - [0xED4620] - name: object_00ED5000 + dir: objects type: bin # code start: 0xED5000 vram: 0x06000000 @@ -2642,6 +2715,7 @@ - [0xED6620] - name: object_00ED7000 + dir: objects type: bin # code start: 0xED7000 vram: 0x06000000 @@ -2653,6 +2727,7 @@ - [0xED8620] - name: object_00ED9000 + dir: objects type: bin # code start: 0xED9000 vram: 0x06000000 @@ -2664,6 +2739,7 @@ - [0xEDA620] - name: object_00EDB000 + dir: objects type: bin # code start: 0xEDB000 vram: 0x06000000 @@ -2675,6 +2751,7 @@ - [0xEDC620] - name: object_00EDD000 + dir: objects type: bin # code start: 0xEDD000 vram: 0x06000000 @@ -2686,6 +2763,7 @@ - [0xEDE620] - name: object_00EDF000 + dir: objects type: bin # code start: 0xEDF000 vram: 0x06000000 @@ -2705,6 +2783,7 @@ - [0xEE2620] - name: object_00EE3000 + dir: objects type: bin # code start: 0xEE3000 vram: 0x06000000 @@ -2716,6 +2795,7 @@ - [0xEE57F0] - name: object_00EE6000 + dir: objects type: bin # code start: 0xEE6000 vram: 0x06000000 @@ -2727,6 +2807,7 @@ - [0xEE7020] - name: object_00EE8000 + dir: objects type: bin # code start: 0xEE8000 vram: 0x06000000 @@ -2738,6 +2819,7 @@ - [0xEE9020] - name: object_00EEA000 + dir: objects type: bin # code start: 0xEEA000 vram: 0x06000000 @@ -2749,6 +2831,7 @@ - [0xEEB020] - name: object_00EEC000 + dir: objects type: bin # code start: 0xEEC000 vram: 0x06000000 @@ -2760,6 +2843,7 @@ - [0xEED020] - name: object_00EEE000 + dir: objects type: bin # code start: 0xEEE000 vram: 0x06000000 @@ -2771,6 +2855,7 @@ - [0xEEF020] - name: object_00EF0000 + dir: objects type: bin # code start: 0xEF0000 vram: 0x06000000 @@ -2782,6 +2867,7 @@ - [0xEF1020] - name: object_00EF2000 + dir: objects type: bin # code start: 0xEF2000 vram: 0x06000000 @@ -2793,6 +2879,7 @@ - [0xEF3020] - name: object_00EF4000 + dir: objects type: bin # code start: 0xEF4000 vram: 0x06000000 @@ -2804,6 +2891,7 @@ - [0xEF5020] - name: object_00EF6000 + dir: objects type: bin # code start: 0xEF6000 vram: 0x06000000 @@ -2815,6 +2903,7 @@ - [0xEF7EF0] - name: object_00EF8000 + dir: objects type: bin # code start: 0xEF8000 vram: 0x06000000 @@ -2826,6 +2915,7 @@ - [0xEF9620] - name: object_00EFA000 + dir: objects type: bin # code start: 0xEFA000 vram: 0x06000000 @@ -2837,6 +2927,7 @@ - [0xEFB620] - name: object_00EFC000 + dir: objects type: bin # code start: 0xEFC000 vram: 0x06000000 @@ -2848,6 +2939,7 @@ - [0xEFD620] - name: object_00EFE000 + dir: objects type: bin # code start: 0xEFE000 vram: 0x06000000 @@ -2859,6 +2951,7 @@ - [0xEFF620] - name: object_00F00000 + dir: objects type: bin # code start: 0xF00000 vram: 0x06000000 @@ -2870,6 +2963,7 @@ - [0xF01620] - name: object_00F02000 + dir: objects type: bin # code start: 0xF02000 vram: 0x06000000 @@ -2881,6 +2975,7 @@ - [0xF03620] - name: object_00F04000 + dir: objects type: bin # code start: 0xF04000 vram: 0x06000000 @@ -2892,6 +2987,7 @@ - [0xF05620] - name: object_00F06000 + dir: objects type: bin # code start: 0xF06000 vram: 0x06000000 @@ -2903,6 +2999,7 @@ - [0xF07620] - name: object_00F08000 + dir: objects type: bin # code start: 0xF08000 vram: 0x06000000 @@ -2914,6 +3011,7 @@ - [0xF09620] - name: object_00F0A000 + dir: objects type: bin # code start: 0xF0A000 vram: 0x06000000 @@ -2925,6 +3023,7 @@ - [0xF0C150] - name: object_00F0D000 + dir: objects type: bin # code start: 0xF0D000 vram: 0x06000000 @@ -2936,6 +3035,7 @@ - [0xF0E020] - name: object_00F0F000 + dir: objects type: bin # code start: 0xF0F000 vram: 0x06000000 @@ -2947,6 +3047,7 @@ - [0xF11020] - name: object_00F12000 + dir: objects type: bin # code start: 0xF12000 vram: 0x06000000 @@ -2958,6 +3059,7 @@ - [0xF13620] - name: object_00F14000 + dir: objects type: bin # code start: 0xF14000 vram: 0x06000000 @@ -2969,6 +3071,7 @@ - [0xF15620] - name: object_00F16000 + dir: objects type: bin # code start: 0xF16000 vram: 0x06000000 @@ -2980,6 +3083,7 @@ - [0xF17620] - name: object_00F18000 + dir: objects type: bin # code start: 0xF18000 vram: 0x06000000 @@ -2991,6 +3095,7 @@ - [0xF19620] - name: object_00F1A000 + dir: objects type: bin # code start: 0xF1A000 vram: 0x06000000 @@ -3002,6 +3107,7 @@ - [0xF1C1D0] - name: object_00F1D000 + dir: objects type: bin # code start: 0xF1D000 vram: 0x06000000 @@ -3013,6 +3119,7 @@ - [0xF1E020] - name: object_00F1F000 + dir: objects type: bin # code start: 0xF1F000 vram: 0x06000000 @@ -3024,6 +3131,7 @@ - [0xF20020] - name: object_00F21000 + dir: objects type: bin # code start: 0xF21000 vram: 0x06000000 @@ -3035,6 +3143,7 @@ - [0xF22020] - name: object_00F23000 + dir: objects type: bin # code start: 0xF23000 vram: 0x06000000 @@ -3046,6 +3155,7 @@ - [0xF24020] - name: object_00F25000 + dir: objects type: bin # code start: 0xF25000 vram: 0x06000000 @@ -3057,6 +3167,7 @@ - [0xF26FB0] - name: object_00F27000 + dir: objects type: bin # code start: 0xF27000 vram: 0x06000000 @@ -3068,6 +3179,7 @@ - [0xF28020] - name: object_00F29000 + dir: objects type: bin # code start: 0xF29000 vram: 0x06000000 @@ -3079,6 +3191,7 @@ - [0xF2B630] - name: object_00F2C000 + dir: objects type: bin # code start: 0xF2C000 vram: 0x06000000 @@ -3090,6 +3203,7 @@ - [0xF2D020] - name: object_00F2E000 + dir: objects type: bin # code start: 0xF2E000 vram: 0x06000000 @@ -3101,6 +3215,7 @@ - [0xF30030] - name: object_00F31000 + dir: objects type: bin # code start: 0xF31000 vram: 0x06000000 @@ -3112,6 +3227,7 @@ - [0xF32620] - name: object_00F33000 + dir: objects type: bin # code start: 0xF33000 vram: 0x06000000 @@ -3123,6 +3239,7 @@ - [0xF34620] - name: object_00F35000 + dir: objects type: bin # code start: 0xF35000 vram: 0x06000000 @@ -3134,6 +3251,7 @@ - [0xF36620] - name: object_00F37000 + dir: objects type: bin # code start: 0xF37000 vram: 0x06000000 @@ -3145,6 +3263,7 @@ - [0xF38620] - name: object_00F39000 + dir: objects type: bin # code start: 0xF39000 vram: 0x06000000 @@ -3156,6 +3275,7 @@ - [0xF3A620] - name: object_00F3B000 + dir: objects type: bin # code start: 0xF3B000 vram: 0x06000000 @@ -3167,6 +3287,7 @@ - [0xF3C620] - name: object_00F3D000 + dir: objects type: bin # code start: 0xF3D000 vram: 0x06000000 @@ -3178,6 +3299,7 @@ - [0xF3E620] - name: object_00F3F000 + dir: objects type: bin # code start: 0xF3F000 vram: 0x06000000 @@ -3189,6 +3311,7 @@ - [0xF40620] - name: object_00F41000 + dir: objects type: bin # code start: 0xF41000 vram: 0x06000000 @@ -3200,6 +3323,7 @@ - [0xF42620] - name: object_00F43000 + dir: objects type: bin # code start: 0xF43000 vram: 0x06000000 @@ -3211,6 +3335,7 @@ - [0xF44620] - name: object_00F45000 + dir: objects type: bin # code start: 0xF45000 vram: 0x06000000 @@ -3222,6 +3347,7 @@ - [0xF473D0] - name: object_00F48000 + dir: objects type: bin # code start: 0xF48000 vram: 0x06000000 @@ -3233,6 +3359,7 @@ - [0xF49020] - name: object_00F4A000 + dir: objects type: bin # code start: 0xF4A000 vram: 0x06000000 @@ -3244,6 +3371,7 @@ - [0xF4BEE0] - name: object_00F4C000 + dir: objects type: bin # code start: 0xF4C000 vram: 0x06000000 @@ -3255,6 +3383,7 @@ - [0xF4D620] - name: object_00F4E000 + dir: objects type: bin # code start: 0xF4E000 vram: 0x06000000 @@ -3266,6 +3395,7 @@ - [0xF4F620] - name: object_00F50000 + dir: objects type: bin # code start: 0xF50000 vram: 0x06000000 @@ -3277,6 +3407,7 @@ - [0xF51620] - name: object_00F52000 + dir: objects type: bin # code start: 0xF52000 vram: 0x06000000 @@ -3288,6 +3419,7 @@ - [0xF53620] - name: object_00F54000 + dir: objects type: bin # code start: 0xF54000 vram: 0x06000000 @@ -3299,6 +3431,7 @@ - [0xF55620] - name: object_00F56000 + dir: objects type: bin # code start: 0xF56000 vram: 0x06000000 @@ -3310,6 +3443,7 @@ - [0xF57620] - name: object_00F58000 + dir: objects type: bin # code start: 0xF58000 vram: 0x06000000 @@ -3321,6 +3455,7 @@ - [0xF59620] - name: object_00F5A000 + dir: objects type: bin # code start: 0xF5A000 vram: 0x06000000 @@ -3332,6 +3467,7 @@ - [0xF5B620] - name: object_00F5C000 + dir: objects type: bin # code start: 0xF5C000 vram: 0x06000000 @@ -3343,6 +3479,7 @@ - [0xF5D620] - name: object_00F5E000 + dir: objects type: bin # code start: 0xF5E000 vram: 0x06000000 @@ -3354,6 +3491,7 @@ - [0xF5F620] - name: object_00F60000 + dir: objects type: bin # code start: 0xF60000 vram: 0x06000000 @@ -3365,6 +3503,7 @@ - [0xF62140] - name: object_00F63000 + dir: objects type: bin # code start: 0xF63000 vram: 0x06000000 @@ -3376,6 +3515,7 @@ - [0xF64620] - name: object_00F65000 + dir: objects type: bin # code start: 0xF65000 vram: 0x06000000 @@ -3387,6 +3527,7 @@ - [0xF66620] - name: object_00F67000 + dir: objects type: bin # code start: 0xF67000 vram: 0x06000000 @@ -3398,6 +3539,7 @@ - [0xF68620] - name: object_00F69000 + dir: objects type: bin # code start: 0xF69000 vram: 0x06000000 @@ -3409,6 +3551,7 @@ - [0xF6A620] - name: object_00F6B000 + dir: objects type: bin # code start: 0xF6B000 vram: 0x06000000 @@ -3420,6 +3563,7 @@ - [0xF6C620] - name: object_00F6D000 + dir: objects type: bin # code start: 0xF6D000 vram: 0x06000000 @@ -3431,6 +3575,7 @@ - [0xF6E620] - name: object_00F6F000 + dir: objects type: bin # code start: 0xF6F000 vram: 0x06000000 @@ -3442,6 +3587,7 @@ - [0xF70A80] - name: object_00F71000 + dir: objects type: bin # code start: 0xF71000 vram: 0x06000000 @@ -3453,6 +3599,7 @@ - [0xF72620] - name: object_00F73000 + dir: objects type: bin # code start: 0xF73000 vram: 0x06000000 @@ -3464,6 +3611,7 @@ - [0xF74620] - name: object_00F75000 + dir: objects type: bin # code start: 0xF75000 vram: 0x06000000 @@ -3475,6 +3623,7 @@ - [0xF76620] - name: object_00F77000 + dir: objects type: bin # code start: 0xF77000 vram: 0x06000000 @@ -3486,6 +3635,7 @@ - [0xF78620] - name: object_00F79000 + dir: objects type: bin # code start: 0xF79000 vram: 0x06000000 @@ -3497,6 +3647,7 @@ - [0xF7A620] - name: object_00F7B000 + dir: objects type: bin # code start: 0xF7B000 vram: 0x06000000 @@ -3508,6 +3659,7 @@ - [0xF7C620] - name: object_00F7D000 + dir: objects type: bin # code start: 0xF7D000 vram: 0x06000000 @@ -3519,6 +3671,7 @@ - [0xF7E620] - name: object_00F7F000 + dir: objects type: bin # code start: 0xF7F000 vram: 0x06000000 @@ -3530,6 +3683,7 @@ - [0xF80620] - name: object_00F81000 + dir: objects type: bin # code start: 0xF81000 vram: 0x06000000 @@ -3541,6 +3695,7 @@ - [0xF82620] - name: object_00F83000 + dir: objects type: bin # code start: 0xF83000 vram: 0x06000000 @@ -3552,6 +3707,7 @@ - [0xF84620] - name: object_00F85000 + dir: objects type: bin # code start: 0xF85000 vram: 0x06000000 @@ -3563,6 +3719,7 @@ - [0xF86620] - name: object_00F87000 + dir: objects type: bin # code start: 0xF87000 vram: 0x06000000 @@ -3574,6 +3731,7 @@ - [0xF88620] - name: object_00F89000 + dir: objects type: bin # code start: 0xF89000 vram: 0x06000000 @@ -3585,6 +3743,7 @@ - [0xF8B760] - name: object_00F8C000 + dir: objects type: bin # code start: 0xF8C000 vram: 0x06000000 @@ -3596,6 +3755,7 @@ - [0xF8D020] - name: object_00F8E000 + dir: objects type: bin # code start: 0xF8E000 vram: 0x06000000 @@ -3607,6 +3767,7 @@ - [0xF90020] - name: object_00F91000 + dir: objects type: bin # code start: 0xF91000 vram: 0x06000000 @@ -3618,6 +3779,7 @@ - [0xF92620] - name: object_00F93000 + dir: objects type: bin # code start: 0xF93000 vram: 0x06000000 @@ -3629,6 +3791,7 @@ - [0xF94620] - name: object_00F95000 + dir: objects type: bin # code start: 0xF95000 vram: 0x06000000 @@ -3640,6 +3803,7 @@ - [0xF96620] - name: object_00F97000 + dir: objects type: bin # code start: 0xF97000 vram: 0x06000000 @@ -3651,6 +3815,7 @@ - [0xF98620] - name: object_00F99000 + dir: objects type: bin # code start: 0xF99000 vram: 0x06000000 @@ -3662,6 +3827,7 @@ - [0xF9A620] - name: object_00F9B000 + dir: objects type: bin # code start: 0xF9B000 vram: 0x06000000 @@ -3673,6 +3839,7 @@ - [0xF9C620] - name: object_00F9D000 + dir: objects type: bin # code start: 0xF9D000 vram: 0x06000000 @@ -3684,6 +3851,7 @@ - [0xF9F620] - name: object_00FA0000 + dir: objects type: bin # code start: 0xFA0000 vram: 0x06000000 @@ -3695,6 +3863,7 @@ - [0xFA1620] - name: object_00FA2000 + dir: objects type: bin # code start: 0xFA2000 vram: 0x06000000 @@ -3706,6 +3875,7 @@ - [0xFA3620] - name: object_00FA4000 + dir: objects type: bin # code start: 0xFA4000 vram: 0x06000000 @@ -3717,6 +3887,7 @@ - [0xFA5620] - name: object_00FA6000 + dir: objects type: bin # code start: 0xFA6000 vram: 0x06000000 @@ -3728,6 +3899,7 @@ - [0xFA7620] - name: object_00FA8000 + dir: objects type: bin # code start: 0xFA8000 vram: 0x06000000 @@ -3739,6 +3911,7 @@ - [0xFA9BF0] - name: object_00FAA000 + dir: objects type: bin # code start: 0xFAA000 vram: 0x06000000 @@ -3750,6 +3923,7 @@ - [0xFAB620] - name: object_00FAC000 + dir: objects type: bin # code start: 0xFAC000 vram: 0x06000000 @@ -3761,6 +3935,7 @@ - [0xFAE200] - name: object_00FAF000 + dir: objects type: bin # code start: 0xFAF000 vram: 0x06000000 @@ -3772,6 +3947,7 @@ - [0xFB0020] - name: object_00FB1000 + dir: objects type: bin # code start: 0xFB1000 vram: 0x06000000 @@ -3783,6 +3959,7 @@ - [0xFB2A90] - name: object_00FB3000 + dir: objects type: bin # code start: 0xFB3000 vram: 0x06000000 @@ -3794,6 +3971,7 @@ - [0xFB3820] - name: object_00FB4000 + dir: objects type: bin # code start: 0xFB4000 vram: 0x06000000 @@ -3805,6 +3983,7 @@ - [0xFB6780] - name: object_00FB7000 + dir: objects type: bin # code start: 0xFB7000 vram: 0x06000000 @@ -3816,6 +3995,7 @@ - [0xFB8020] - name: object_00FB9000 + dir: objects type: bin # code start: 0xFB9000 vram: 0x06000000 @@ -3827,6 +4007,7 @@ - [0xFBA020] - name: object_00FBB000 + dir: objects type: bin # code start: 0xFBB000 vram: 0x06000000 @@ -3838,6 +4019,7 @@ - [0xFBC020] - name: object_00FBD000 + dir: objects type: bin # code start: 0xFBD000 vram: 0x06000000 @@ -3849,6 +4031,7 @@ - [0xFBE020] - name: object_00FBF000 + dir: objects type: bin # code start: 0xFBF000 vram: 0x06000000 @@ -3860,6 +4043,7 @@ - [0xFC0020] - name: object_00FC1000 + dir: objects type: bin # code start: 0xFC1000 vram: 0x06000000 @@ -3871,6 +4055,7 @@ - [0xFC2020] - name: object_00FC3000 + dir: objects type: bin # code start: 0xFC3000 vram: 0x06000000 @@ -3882,6 +4067,7 @@ - [0xFC4020] - name: object_00FC5000 + dir: objects type: bin # code start: 0xFC5000 vram: 0x06000000 @@ -3893,6 +4079,7 @@ - [0xFC73F0] - name: object_00FC8000 + dir: objects type: bin # code start: 0xFC8000 vram: 0x06000000 @@ -3904,6 +4091,7 @@ - [0xFC9020] - name: object_00FCA000 + dir: objects type: bin # code start: 0xFCA000 vram: 0x06000000 @@ -3915,6 +4103,7 @@ - [0xFCB020] - name: object_00FCC000 + dir: objects type: bin # code start: 0xFCC000 vram: 0x06000000 @@ -3926,6 +4115,7 @@ - [0xFCD020] - name: object_00FCE000 + dir: objects type: bin # code start: 0xFCE000 vram: 0x06000000 @@ -3937,6 +4127,7 @@ - [0xFCF020] - name: object_00FD0000 + dir: objects type: bin # code start: 0xFD0000 vram: 0x06000000 @@ -3948,6 +4139,7 @@ - [0xFD1020] - name: object_00FD2000 + dir: objects type: bin # code start: 0xFD2000 vram: 0x06000000 @@ -3959,6 +4151,7 @@ - [0xFD3020] - name: object_00FD4000 + dir: objects type: bin # code start: 0xFD4000 vram: 0x06000000 @@ -3970,6 +4163,7 @@ - [0xFD5020] - name: object_00FD6000 + dir: objects type: bin # code start: 0xFD6000 vram: 0x06000000 @@ -3981,6 +4175,7 @@ - [0xFD8030] - name: object_00FD9000 + dir: objects type: bin # code start: 0xFD9000 vram: 0x06000000 @@ -3992,6 +4187,7 @@ - [0xFDA620] - name: object_00FDB000 + dir: objects type: bin # code start: 0xFDB000 vram: 0x06000000 @@ -4003,6 +4199,7 @@ - [0xFDD7F0] - name: object_00FDE000 + dir: objects type: bin # code start: 0xFDE000 vram: 0x06000000 @@ -4014,6 +4211,7 @@ - [0xFDF020] - name: object_00FE0000 + dir: objects type: bin # code start: 0xFE0000 vram: 0x06000000 @@ -4025,6 +4223,7 @@ - [0xFE26C0] - name: object_00FE3000 + dir: objects type: bin # code start: 0xFE3000 vram: 0x06000000 @@ -4036,6 +4235,7 @@ - [0xFE4020] - name: object_00FE5000 + dir: objects type: bin # code start: 0xFE5000 vram: 0x06000000 @@ -4047,6 +4247,7 @@ - [0xFE6020] - name: object_00FE7000 + dir: objects type: bin # code start: 0xFE7000 vram: 0x06000000 @@ -4058,6 +4259,7 @@ - [0xFE8020] - name: object_00FE9000 + dir: objects type: bin # code start: 0xFE9000 vram: 0x06000000 @@ -4069,6 +4271,7 @@ - [0xFEA020] - name: object_00FEB000 + dir: objects type: bin # code start: 0xFEB000 vram: 0x06000000 @@ -4080,6 +4283,7 @@ - [0xFEC020] - name: object_00FED000 + dir: objects type: bin # code start: 0xFED000 vram: 0x06000000 @@ -4091,6 +4295,7 @@ - [0xFEE020] - name: object_00FEF000 + dir: objects type: bin # code start: 0xFEF000 vram: 0x06000000 @@ -4102,6 +4307,7 @@ - [0xFF1670] - name: object_00FF2000 + dir: objects type: bin # code start: 0xFF2000 vram: 0x06000000 @@ -4113,6 +4319,7 @@ - [0xFF3020] - name: object_00FF4000 + dir: objects type: bin # code start: 0xFF4000 vram: 0x06000000 @@ -4124,6 +4331,7 @@ - [0xFF5F80] - name: object_00FF6000 + dir: objects type: bin # code start: 0xFF6000 vram: 0x06000000 @@ -4135,6 +4343,7 @@ - [0xFF7620] - name: object_00FF8000 + dir: objects type: bin # code start: 0xFF8000 vram: 0x06000000 @@ -4146,6 +4355,7 @@ - [0xFF9620] - name: object_00FFA000 + dir: objects type: bin # code start: 0xFFA000 vram: 0x06000000 @@ -4157,6 +4367,7 @@ - [0xFFB620] - name: object_00FFC000 + dir: objects type: bin # code start: 0xFFC000 vram: 0x06000000 @@ -4168,6 +4379,7 @@ - [0xFFD620] - name: object_00FFE000 + dir: objects type: bin # code start: 0xFFE000 vram: 0x06000000 @@ -4179,6 +4391,7 @@ - [0xFFF620] - name: object_01000000 + dir: objects type: bin # code start: 0x1000000 vram: 0x06000000 @@ -4190,6 +4403,7 @@ - [0x1002620] - name: object_01003000 + dir: objects type: bin # code start: 0x1003000 vram: 0x06000000 @@ -4201,6 +4415,7 @@ - [0x1004620] - name: object_01005000 + dir: objects type: bin # code start: 0x1005000 vram: 0x06000000 @@ -4212,6 +4427,7 @@ - [0x1006620] - name: object_01007000 + dir: objects type: bin # code start: 0x1007000 vram: 0x06000000 @@ -4223,6 +4439,7 @@ - [0x1008620] - name: object_01009000 + dir: objects type: bin # code start: 0x1009000 vram: 0x06000000 @@ -4234,6 +4451,7 @@ - [0x100ACB0] - name: object_0100B000 + dir: objects type: bin # code start: 0x100B000 vram: 0x06000000 @@ -4245,6 +4463,7 @@ - [0x100C620] - name: object_0100D000 + dir: objects type: bin # code start: 0x100D000 vram: 0x06000000 @@ -4256,6 +4475,7 @@ - [0x100EF80] - name: object_0100F000 + dir: objects type: bin # code start: 0x100F000 vram: 0x06000000 @@ -4267,6 +4487,7 @@ - [0x1010020] - name: object_01011000 + dir: objects type: bin # code start: 0x1011000 vram: 0x06000000 @@ -4278,6 +4499,7 @@ - [0x1013270] - name: object_01014000 + dir: objects type: bin # code start: 0x1014000 vram: 0x06000000 @@ -4289,6 +4511,7 @@ - [0x1015020] - name: object_01016000 + dir: objects type: bin # code start: 0x1016000 vram: 0x06000000 @@ -4300,6 +4523,7 @@ - [0x1018220] - name: object_01019000 + dir: objects type: bin # code start: 0x1019000 vram: 0x06000000 @@ -4311,6 +4535,7 @@ - [0x101A620] - name: object_0101B000 + dir: objects type: bin # code start: 0x101B000 vram: 0x06000000 @@ -4322,6 +4547,7 @@ - [0x101C620] - name: object_0101D000 + dir: objects type: bin # code start: 0x101D000 vram: 0x06000000 @@ -4333,6 +4559,7 @@ - [0x101E620] - name: object_0101F000 + dir: objects type: bin # code start: 0x101F000 vram: 0x06000000 @@ -4344,6 +4571,7 @@ - [0x1020620] - name: object_01021000 + dir: objects type: bin # code start: 0x1021000 vram: 0x06000000 @@ -4355,6 +4583,7 @@ - [0x1022620] - name: object_01023000 + dir: objects type: bin # code start: 0x1023000 vram: 0x06000000 @@ -4366,6 +4595,7 @@ - [0x1024620] - name: object_01025000 + dir: objects type: bin # code start: 0x1025000 vram: 0x06000000 @@ -4377,6 +4607,7 @@ - [0x1026620] - name: object_01027000 + dir: objects type: bin # code start: 0x1027000 vram: 0x06000000 @@ -4388,6 +4619,7 @@ - [0x1028620] - name: object_01029000 + dir: objects type: bin # code start: 0x1029000 vram: 0x06000000 @@ -4399,6 +4631,7 @@ - [0x102A620] - name: object_0102B000 + dir: objects type: bin # code start: 0x102B000 vram: 0x06000000 @@ -4410,6 +4643,7 @@ - [0x102D800] - name: object_0102E000 + dir: objects type: bin # code start: 0x102E000 vram: 0x06000000 @@ -4421,6 +4655,7 @@ - [0x102F020] - name: object_01030000 + dir: objects type: bin # code start: 0x1030000 vram: 0x06000000 @@ -4432,6 +4667,7 @@ - [0x1032280] - name: object_01033000 + dir: objects type: bin # code start: 0x1033000 vram: 0x06000000 @@ -4443,6 +4679,7 @@ - [0x1034020] - name: object_01035000 + dir: objects type: bin # code start: 0x1035000 vram: 0x06000000 @@ -4454,6 +4691,7 @@ - [0x1036020] - name: object_01037000 + dir: objects type: bin # code start: 0x1037000 vram: 0x06000000 @@ -4465,6 +4703,7 @@ - [0x1038020] - name: object_01039000 + dir: objects type: bin # code start: 0x1039000 vram: 0x06000000 @@ -4476,6 +4715,7 @@ - [0x103A020] - name: object_0103B000 + dir: objects type: bin # code start: 0x103B000 vram: 0x06000000 @@ -4487,6 +4727,7 @@ - [0x103D210] - name: object_0103E000 + dir: objects type: bin # code start: 0x103E000 vram: 0x06000000 @@ -4498,6 +4739,7 @@ - [0x103F020] - name: object_01040000 + dir: objects type: bin # code start: 0x1040000 vram: 0x06000000 @@ -4509,6 +4751,7 @@ - [0x1041020] - name: object_01042000 + dir: objects type: bin # code start: 0x1042000 vram: 0x06000000 @@ -4520,6 +4763,7 @@ - [0x1043020] - name: object_01044000 + dir: objects type: bin # code start: 0x1044000 vram: 0x06000000 @@ -4531,6 +4775,7 @@ - [0x1045020] - name: object_01046000 + dir: objects type: bin # code start: 0x1046000 vram: 0x06000000 @@ -4542,6 +4787,7 @@ - [0x1047020] - name: object_01048000 + dir: objects type: bin # code start: 0x1048000 vram: 0x06000000 @@ -4553,6 +4799,7 @@ - [0x1049020] - name: object_0104A000 + dir: objects type: bin # code start: 0x104A000 vram: 0x06000000 @@ -4564,6 +4811,7 @@ - [0x104B020] - name: object_0104C000 + dir: objects type: bin # code start: 0x104C000 vram: 0x06000000 @@ -4575,6 +4823,7 @@ - [0x104DCC0] - name: object_0104E000 + dir: objects type: bin # code start: 0x104E000 vram: 0x06000000 @@ -4586,6 +4835,7 @@ - [0x104F620] - name: object_01050000 + dir: objects type: bin # code start: 0x1050000 vram: 0x06000000 @@ -4597,6 +4847,7 @@ - [0x1051620] - name: object_01052000 + dir: objects type: bin # code start: 0x1052000 vram: 0x06000000 @@ -4608,6 +4859,7 @@ - [0x1053620] - name: object_01054000 + dir: objects type: bin # code start: 0x1054000 vram: 0x06000000 @@ -4619,6 +4871,7 @@ - [0x1055620] - name: object_01056000 + dir: objects type: bin # code start: 0x1056000 vram: 0x06000000 @@ -4630,6 +4883,7 @@ - [0x1057620] - name: object_01058000 + dir: objects type: bin # code start: 0x1058000 vram: 0x06000000 @@ -4641,6 +4895,7 @@ - [0x1059620] - name: object_0105A000 + dir: objects type: bin # code start: 0x105A000 vram: 0x06000000 @@ -4652,6 +4907,7 @@ - [0x105B620] - name: object_0105C000 + dir: objects type: bin # code start: 0x105C000 vram: 0x06000000 @@ -4663,6 +4919,7 @@ - [0x105D620] - name: object_0105E000 + dir: objects type: bin # code start: 0x105E000 vram: 0x06000000 @@ -4674,6 +4931,7 @@ - [0x105F620] - name: object_01060000 + dir: objects type: bin # code start: 0x1060000 vram: 0x06000000 @@ -4685,6 +4943,7 @@ - [0x1061620] - name: object_01062000 + dir: objects type: bin # code start: 0x1062000 vram: 0x06000000 @@ -4696,6 +4955,7 @@ - [0x1064170] - name: object_01065000 + dir: objects type: bin # code start: 0x1065000 vram: 0x06000000 @@ -4707,6 +4967,7 @@ - [0x1066620] - name: object_01067000 + dir: objects type: bin # code start: 0x1067000 vram: 0x06000000 @@ -4718,6 +4979,7 @@ - [0x1069770] - name: object_0106A000 + dir: objects type: bin # code start: 0x106A000 vram: 0x06000000 @@ -4729,6 +4991,7 @@ - [0x106B620] - name: object_0106C000 + dir: objects type: bin # code start: 0x106C000 vram: 0x06000000 @@ -4740,6 +5003,7 @@ - [0x106E590] - name: object_0106F000 + dir: objects type: bin # code start: 0x106F000 vram: 0x06000000 @@ -4751,6 +5015,7 @@ - [0x1070020] - name: object_01071000 + dir: objects type: bin # code start: 0x1071000 vram: 0x06000000 @@ -4762,6 +5027,7 @@ - [0x10734D0] - name: object_01074000 + dir: objects type: bin # code start: 0x1074000 vram: 0x06000000 @@ -4773,6 +5039,7 @@ - [0x1075020] - name: object_01076000 + dir: objects type: bin # code start: 0x1076000 vram: 0x06000000 @@ -4784,6 +5051,7 @@ - [0x1078680] - name: object_01079000 + dir: objects type: bin # code start: 0x1079000 vram: 0x06000000 @@ -4795,6 +5063,7 @@ - [0x107A020] - name: object_0107B000 + dir: objects type: bin # code start: 0x107B000 vram: 0x06000000 @@ -4806,6 +5075,7 @@ - [0x107CEF0] - name: object_0107D000 + dir: objects type: bin # code start: 0x107D000 vram: 0x06000000 @@ -4817,6 +5087,7 @@ - [0x107E620] - name: object_0107F000 + dir: objects type: bin # code start: 0x107F000 vram: 0x06000000 @@ -4828,6 +5099,7 @@ - [0x1080620] - name: object_01081000 + dir: objects type: bin # code start: 0x1081000 vram: 0x06000000 @@ -4839,6 +5111,7 @@ - [0x1082620] - name: object_01083000 + dir: objects type: bin # code start: 0x1083000 vram: 0x06000000 @@ -4850,6 +5123,7 @@ - [0x1084620] - name: object_01085000 + dir: objects type: bin # code start: 0x1085000 vram: 0x06000000 @@ -4861,6 +5135,7 @@ - [0x1086620] - name: object_01087000 + dir: objects type: bin # code start: 0x1087000 vram: 0x06000000 @@ -4872,6 +5147,7 @@ - [0x1088620] - name: object_01089000 + dir: objects type: bin # code start: 0x1089000 vram: 0x06000000 @@ -4883,6 +5159,7 @@ - [0x108A620] - name: object_0108B000 + dir: objects type: bin # code start: 0x108B000 vram: 0x06000000 @@ -4894,6 +5171,7 @@ - [0x108C620] - name: object_0108D000 + dir: objects type: bin # code start: 0x108D000 vram: 0x06000000 @@ -4905,6 +5183,7 @@ - [0x108E620] - name: object_0108F000 + dir: objects type: bin # code start: 0x108F000 vram: 0x06000000 @@ -4916,6 +5195,7 @@ - [0x1090620] - name: object_01091000 + dir: objects type: bin # code start: 0x1091000 vram: 0x06000000 @@ -4927,6 +5207,7 @@ - [0x1093800] - name: object_01094000 + dir: objects type: bin # code start: 0x1094000 vram: 0x06000000 @@ -4938,6 +5219,7 @@ - [0x1095620] - name: object_01096000 + dir: objects type: bin # code start: 0x1096000 vram: 0x06000000 @@ -4949,6 +5231,7 @@ - [0x1097620] - name: object_01098000 + dir: objects type: bin # code start: 0x1098000 vram: 0x06000000 @@ -4960,6 +5243,7 @@ - [0x1099620] - name: object_0109A000 + dir: objects type: bin # code start: 0x109A000 vram: 0x06000000 @@ -4971,6 +5255,7 @@ - [0x109B620] - name: object_0109C000 + dir: objects type: bin # code start: 0x109C000 vram: 0x06000000 @@ -4982,6 +5267,7 @@ - [0x109DD60] - name: object_0109E000 + dir: objects type: bin # code start: 0x109E000 vram: 0x06000000 @@ -4993,6 +5279,7 @@ - [0x109F620] - name: object_010A0000 + dir: objects type: bin # code start: 0x10A0000 vram: 0x06000000 @@ -5004,6 +5291,7 @@ - [0x10A1C70] - name: object_010A2000 + dir: objects type: bin # code start: 0x10A2000 vram: 0x06000000 @@ -5015,6 +5303,7 @@ - [0x10A3620] - name: object_010A4000 + dir: objects type: bin # code start: 0x10A4000 vram: 0x06000000 @@ -5026,6 +5315,7 @@ - [0x10A5620] - name: object_010A6000 + dir: objects type: bin # code start: 0x10A6000 vram: 0x06000000 @@ -5037,6 +5327,7 @@ - [0x10A7620] - name: object_010A8000 + dir: objects type: bin # code start: 0x10A8000 vram: 0x06000000 @@ -5048,6 +5339,7 @@ - [0x10A9620] - name: object_010AA000 + dir: objects type: bin # code start: 0x10AA000 vram: 0x06000000 @@ -5059,6 +5351,7 @@ - [0x10AB620] - name: object_010AC000 + dir: objects type: bin # code start: 0x10AC000 vram: 0x06000000 @@ -5070,6 +5363,7 @@ - [0x10AD620] - name: object_010AE000 + dir: objects type: bin # code start: 0x10AE000 vram: 0x06000000 @@ -5081,6 +5375,7 @@ - [0x10B0060] - name: object_010B1000 + dir: objects type: bin # code start: 0x10B1000 vram: 0x06000000 @@ -5092,6 +5387,7 @@ - [0x10B2020] - name: object_010B3000 + dir: objects type: bin # code start: 0x10B3000 vram: 0x06000000 @@ -5103,6 +5399,7 @@ - [0x10B5270] - name: object_010B6000 + dir: objects type: bin # code start: 0x10B6000 vram: 0x06000000 @@ -5114,6 +5411,7 @@ - [0x10B7020] - name: object_010B8000 + dir: objects type: bin # code start: 0x10B8000 vram: 0x06000000 @@ -5125,6 +5423,7 @@ - [0x10BA100] - name: object_010BB000 + dir: objects type: bin # code start: 0x10BB000 vram: 0x06000000 @@ -5136,6 +5435,7 @@ - [0x10BC620] - name: object_010BD000 + dir: objects type: bin # code start: 0x10BD000 vram: 0x06000000 @@ -5147,6 +5447,7 @@ - [0x10BE620] - name: object_010BF000 + dir: objects type: bin # code start: 0x10BF000 vram: 0x06000000 @@ -5158,6 +5459,7 @@ - [0x10C0620] - name: object_010C1000 + dir: objects type: bin # code start: 0x10C1000 vram: 0x06000000 @@ -5169,6 +5471,7 @@ - [0x10C2620] - name: object_010C3000 + dir: objects type: bin # code start: 0x10C3000 vram: 0x06000000 @@ -5180,6 +5483,7 @@ - [0x10C4620] - name: object_010C5000 + dir: objects type: bin # code start: 0x10C5000 vram: 0x06000000 @@ -5191,6 +5495,7 @@ - [0x10C6620] - name: object_010C7000 + dir: objects type: bin # code start: 0x10C7000 vram: 0x06000000 @@ -5202,6 +5507,7 @@ - [0x10C8620] - name: object_010C9000 + dir: objects type: bin # code start: 0x10C9000 vram: 0x06000000 @@ -5213,6 +5519,7 @@ - [0x10CA620] - name: object_010CB000 + dir: objects type: bin # code start: 0x10CB000 vram: 0x06000000 @@ -5224,6 +5531,7 @@ - [0x10CC620] - name: object_010CD000 + dir: objects type: bin # code start: 0x10CD000 vram: 0x06000000 @@ -5235,6 +5543,7 @@ - [0x10CE620] - name: object_010CF000 + dir: objects type: bin # code start: 0x10CF000 vram: 0x06000000 @@ -5246,6 +5555,7 @@ - [0x10D1300] - name: object_010D2000 + dir: objects type: bin # code start: 0x10D2000 vram: 0x06000000 @@ -5257,6 +5567,7 @@ - [0x10D3620] - name: object_010D4000 + dir: objects type: bin # code start: 0x10D4000 vram: 0x06000000 @@ -5268,6 +5579,7 @@ - [0x10D60B0] - name: object_010D7000 + dir: objects type: bin # code start: 0x10D7000 vram: 0x06000000 @@ -5279,6 +5591,7 @@ - [0x10D8020] - name: object_010D9000 + dir: objects type: bin # code start: 0x10D9000 vram: 0x06000000 @@ -5290,6 +5603,7 @@ - [0x10DB500] - name: object_010DC000 + dir: objects type: bin # code start: 0x10DC000 vram: 0x06000000 @@ -5301,6 +5615,7 @@ - [0x10DD020] - name: object_010DE000 + dir: objects type: bin # code start: 0x10DE000 vram: 0x06000000 @@ -5312,6 +5627,7 @@ - [0x10DF020] - name: object_010E0000 + dir: objects type: bin # code start: 0x10E0000 vram: 0x06000000 @@ -5323,6 +5639,7 @@ - [0x10E1020] - name: object_010E2000 + dir: objects type: bin # code start: 0x10E2000 vram: 0x06000000 @@ -5334,6 +5651,7 @@ - [0x10E4710] - name: object_010E5000 + dir: objects type: bin # code start: 0x10E5000 vram: 0x06000000 @@ -5345,6 +5663,7 @@ - [0x10E6620] - name: object_010E7000 + dir: objects type: bin # code start: 0x10E7000 vram: 0x06000000 @@ -5356,6 +5675,7 @@ - [0x10E90D0] - name: object_010EA000 + dir: objects type: bin # code start: 0x10EA000 vram: 0x06000000 @@ -5367,6 +5687,7 @@ - [0x10EB020] - name: object_010EC000 + dir: objects type: bin # code start: 0x10EC000 vram: 0x06000000 @@ -5378,6 +5699,7 @@ - [0x10ED020] - name: object_010EE000 + dir: objects type: bin # code start: 0x10EE000 vram: 0x06000000 @@ -5389,6 +5711,7 @@ - [0x10EF020] - name: object_010F0000 + dir: objects type: bin # code start: 0x10F0000 vram: 0x06000000 @@ -5400,6 +5723,7 @@ - [0x10F1020] - name: object_010F2000 + dir: objects type: bin # code start: 0x10F2000 vram: 0x06000000 @@ -5487,6 +5811,7 @@ - [0x11029E0] - name: object_01103000 + dir: objects type: bin # code start: 0x1103000 vram: 0x06000000 @@ -5498,6 +5823,7 @@ - [0x11054F0] - name: object_01106000 + dir: objects type: bin # code start: 0x1106000 vram: 0x06000000 @@ -6335,6 +6661,7 @@ - [0x11285B0] - name: object_01129000 + dir: objects type: bin # code start: 0x1129000 vram: 0x06000000 @@ -6501,6 +6828,7 @@ - [0x1130400] - name: object_01131000 + dir: objects type: bin # code start: 0x1131000 vram: 0x06000000 @@ -6512,6 +6840,7 @@ - [0x11331F0] - name: object_01134000 + dir: objects type: bin # code start: 0x1134000 vram: 0x06000000 @@ -6523,6 +6852,7 @@ - [0x1134AD0] - name: object_01135000 + dir: objects type: bin # code start: 0x1135000 vram: 0x06000000 @@ -6561,6 +6891,7 @@ - [0x113C100] - name: object_0113D000 + dir: objects type: bin # code start: 0x113D000 vram: 0x06000000 @@ -6572,6 +6903,7 @@ - [0x1146950] - name: object_01147000 + dir: objects type: bin # code start: 0x1147000 vram: 0x06000000 @@ -8442,6 +8774,7 @@ - [0x13895F0] - name: object_0138A000 + dir: objects type: bin # code start: 0x138A000 vram: 0x06000000 @@ -8533,6 +8866,7 @@ - [0x13A35D0] - name: object_013A4000 + dir: objects type: bin # code start: 0x13A4000 vram: 0x06000000 @@ -8544,6 +8878,7 @@ - [0x13A42C0] - name: object_013A5000 + dir: objects type: bin # code start: 0x13A5000 vram: 0x06000000 @@ -8555,6 +8890,7 @@ - [0x13A5470] - name: object_013A6000 + dir: objects type: bin # code start: 0x13A6000 vram: 0x06000000 @@ -8590,6 +8926,7 @@ - [0x13AAC90] - name: object_013AB000 + dir: objects type: bin # code start: 0x13AB000 vram: 0x06000000 @@ -8681,6 +9018,7 @@ - [0x13E2B40] - name: object_013E3000 + dir: objects type: bin # code start: 0x13E3000 vram: 0x06000000 @@ -8716,6 +9054,7 @@ - [0x13EA760] - name: object_013EB000 + dir: objects type: bin # code start: 0x13EB000 vram: 0x06000000 @@ -8783,6 +9122,7 @@ - [0x140B430] - name: object_0140C000 + dir: objects type: bin # code start: 0x140C000 vram: 0x06000000 @@ -14330,6 +14670,7 @@ - [0x179D040] - name: object_0179E000 + dir: objects type: bin # code start: 0x179E000 vram: 0x06000000 @@ -14341,6 +14682,7 @@ - [0x179E2C0] - name: object_0179F000 + dir: objects type: bin # code start: 0x179F000 vram: 0x06000000 @@ -14352,6 +14694,7 @@ - [0x17A0590] - name: object_017A1000 + dir: objects type: bin # code start: 0x17A1000 vram: 0x06000000 @@ -14363,6 +14706,7 @@ - [0x1829880] - name: object_0182A000 + dir: objects type: bin # code start: 0x182A000 vram: 0x06000000 @@ -14382,6 +14726,7 @@ - [0x1870860] - name: object_01871000 + dir: objects type: bin # code start: 0x1871000 vram: 0x06000000 @@ -14393,6 +14738,7 @@ - [0x187FFA0] - name: object_01880000 + dir: objects type: bin # code start: 0x1880000 vram: 0x06000000 @@ -14404,6 +14750,7 @@ - [0x18830A0] - name: object_01884000 + dir: objects type: bin # code start: 0x1884000 vram: 0x06000000 @@ -14415,6 +14762,7 @@ - [0x18876C0] - name: object_01888000 + dir: objects type: bin # code start: 0x1888000 vram: 0x06000000 |
