commit dfe56fda27e26a218222988cbe9973b7ca28733e Author: Luke Street Date: Wed Mar 23 17:22:48 2022 -0400 Initial commit Former-commit-id: ce247fb2645aa0e959f1354f84e51520df5c4584 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..0bfeaccb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Explicitly declare text files +*.py text + +# Enforce platform-specific encodings +*.bat text eol=crlf +*.sh text eol=lf +*.sha1 text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..348460f7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +.vscode +*.dat +*.exe +*.dll +*.idb +*.id0 +*.id1 +*.id2 +*.nam +*.til +*.o +*.out +*.elf +*.dol +*.a +*.d +*.map +*.exe +*.dump +*.7z +*.bat +*.sln +*.filters +*.vcxproj +*.user +include/*.s + +build/ +tools/mwcc_compiler/ +tools/elf2dol +tools/elf2rel +decomp/ +errors.txt +output.asm +Debug/ +.vs/ + +ctx.c diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..56e92754 --- /dev/null +++ b/Makefile @@ -0,0 +1,208 @@ +ifneq ($(findstring MINGW,$(shell uname)),) + WINDOWS := 1 +endif +ifneq ($(findstring MSYS,$(shell uname)),) + WINDOWS := 1 +endif + +# If 0, tells the console to chill out. (Quiets the make process.) +VERBOSE ?= 1 + +# If MAPGENFLAG set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes. +MAPGENFLAG ?= 1 + +ifeq ($(VERBOSE),0) + QUIET := @ +endif + +#------------------------------------------------------------------------------- +# Files +#------------------------------------------------------------------------------- + +NAME := mp1 +VERSION ?= 0 + +# Overkill epilogue fixup strategy. Set to 1 if necessary. +EPILOGUE_PROCESS := 0 + +BUILD_DIR := build/$(NAME).$(VERSION) +ifeq ($(EPILOGUE_PROCESS),1) +EPILOGUE_DIR := epilogue/$(NAME).$(VERSION) +endif + +# Inputs +S_FILES := $(wildcard asm/*.s) +C_FILES := $(wildcard src/*.c) +CPP_FILES := $(wildcard src/*.cpp) +CPP_FILES += $(wildcard src/*.cp) +LDSCRIPT := $(BUILD_DIR)/ldscript.lcf + +# Outputs +DOL := $(BUILD_DIR)/main.dol +ELF := $(DOL:.dol=.elf) +MAP := $(BUILD_DIR)/MetroidPrime.MAP + + +ifeq ($(MAPGENFLAG),1) + MAPGEN := -map $(MAP) +endif + +include obj_files.mk +ifeq ($(EPILOGUE_PROCESS),1) +include e_files.mk +endif + +O_FILES := $(INIT_O_FILES) $(EXTAB_O_FILES) $(EXTABINDEX_O_FILES) $(TEXT_O_FILES) \ + $(CTORS_O_FILES) $(DTORS_O_FILES) $(RODATA_O_FILES) $(DATA_O_FILES) \ + $(BSS_O_FILES) $(SDATA_O_FILES) $(SBSS_O_FILES) $(SDATA2_O_FILES) \ + $(SBSS2_O_FILES) +ifeq ($(EPILOGUE_PROCESS),1) +E_FILES := $(EPILOGUE_UNSCHEDULED) +endif +#------------------------------------------------------------------------------- +# Tools +#------------------------------------------------------------------------------- + +MWCC_VERSION := 2.6 +ifeq ($(EPILOGUE_PROCESS),1) +MWCC_EPI_VERSION := 1.2.5 +MWCC_EPI_EXE := mwcceppc.exe +endif +MWLD_VERSION := 2.6 + +# Programs +ifeq ($(WINDOWS),1) + WINE := + AS := $(DEVKITPPC)/bin/powerpc-eabi-as.exe + CPP := $(DEVKITPPC)/bin/powerpc-eabi-cpp.exe -P +else + WINE ?= wine + AS := $(DEVKITPPC)/bin/powerpc-eabi-as + CPP := $(DEVKITPPC)/bin/powerpc-eabi-cpp -P +endif +CC = $(WINE) tools/mwcc_compiler/$(MWCC_VERSION)/mwcceppc.exe +ifeq ($(EPILOGUE_PROCESS),1) +CC_EPI = $(WINE) tools/mwcc_compiler/$(MWCC_EPI_VERSION)/$(MWCC_EPI_EXE) +endif +LD := $(WINE) tools/mwcc_compiler/$(MWLD_VERSION)/mwldeppc.exe +ELF2DOL := tools/elf2dol +SHA1SUM := sha1sum +PYTHON := python3 + +FRANK := tools/franklite.py + +# Options +INCLUDES := -i include/ +ASM_INCLUDES := -I include/ + +ASFLAGS := -mgekko $(ASM_INCLUDES) --defsym version=$(VERSION) +ifeq ($(VERBOSE),1) +# this set of LDFLAGS outputs warnings. +LDFLAGS := $(MAPGEN) -fp hard -nodefaults +endif +ifeq ($(VERBOSE),0) +# this set of LDFLAGS generates no warnings. +LDFLAGS := $(MAPGEN) -fp hard -nodefaults -w off +endif +CFLAGS = -Cpp_exceptions off -enum int -inline auto -proc gekko -RTTI off -fp hard -fp_contract on -rostr -O4,p -use_lmw_stmw on -sdata 8 -sdata2 8 -nodefaults $(INCLUDES) + +ifeq ($(VERBOSE),0) +# this set of ASFLAGS generates no warnings. +ASFLAGS += -W +endif + +$(BUILD_DIR)/src/os/__start.o: MWCC_VERSION := 1.2.5 + +#------------------------------------------------------------------------------- +# Recipes +#------------------------------------------------------------------------------- + +### Default target ### + +default: all + +all: $(DOL) + +ALL_DIRS := $(sort $(dir $(O_FILES))) +ifeq ($(EPILOGUE_PROCESS),1) +EPI_DIRS := $(sort $(dir $(E_FILES))) +endif + +# Make sure build directory exists before compiling anything +DUMMY != mkdir -p $(ALL_DIRS) + +# ifeq ($(EPILOGUE_PROCESS),1) +# Make sure profile directory exists before compiling anything +# DUMMY != mkdir -p $(EPI_DIRS) +# endif + +.PHONY: tools + +$(LDSCRIPT): ldscript.lcf + $(QUIET) $(CPP) -MMD -MP -MT $@ -MF $@.d -I include/ -I . -DBUILD_DIR=$(BUILD_DIR) -o $@ $< + +$(DOL): $(ELF) | tools + $(QUIET) $(ELF2DOL) $< $@ + $(QUIET) $(SHA1SUM) -c sha1/$(NAME).$(VERSION).sha1 +ifneq ($(findstring -map,$(LDFLAGS)),) + $(QUIET) $(PYTHON) tools/calcprogress.py $@ +endif + +clean: + rm -f -d -r build + rm -f -d -r epilogue + find . -name '*.o' -exec rm {} + + find . -name 'ctx.c' -exec rm {} + + find ./include -name "*.s" -type f -delete + $(MAKE) -C tools clean +tools: + $(MAKE) -C tools + +# ELF creation makefile instructions +ifeq ($(EPILOGUE_PROCESS),1) + @echo Linking ELF $@ +$(ELF): $(O_FILES) $(E_FILES) $(LDSCRIPT) + $(QUIET) @echo $(O_FILES) > build/o_files + $(QUIET) $(LD) $(LDFLAGS) -o $@ -lcf $(LDSCRIPT) @build/o_files +else +$(ELF): $(O_FILES) $(LDSCRIPT) + @echo Linking ELF $@ + $(QUIET) @echo $(O_FILES) > build/o_files + $(QUIET) $(LD) $(LDFLAGS) -o $@ -lcf $(LDSCRIPT) @build/o_files +endif + +$(BUILD_DIR)/%.o: %.s + @echo Assembling $< + $(QUIET) $(AS) $(ASFLAGS) -o $@ $< + +$(BUILD_DIR)/%.o: %.c + @echo "Compiling " $< + $(QUIET) $(CC) $(CFLAGS) -c -o $@ $< + +$(BUILD_DIR)/%.o: %.cp + @echo "Compiling " $< + $(QUIET) $(CC) $(CFLAGS) -c -o $@ $< + +$(BUILD_DIR)/%.o: %.cpp + @echo "Compiling " $< + $(QUIET) $(CC) $(CFLAGS) -c -o $@ $< + +ifeq ($(EPILOGUE_PROCESS),1) +$(EPILOGUE_DIR)/%.o: %.c $(BUILD_DIR)/%.o + @echo Frank is fixing $< + $(QUIET) $(PYTHON) $(FRANK) $(word 2,$^) $(word 2,$^) + +$(EPILOGUE_DIR)/%.o: %.cp $(BUILD_DIR)/%.o + @echo Frank is fixing $< + $(QUIET) $(PYTHON) $(FRANK) $(word 2,$^) $(word 2,$^) + +$(EPILOGUE_DIR)/%.o: %.cpp $(BUILD_DIR)/%.o + @echo Frank is fixing $< + $(QUIET) $(PYTHON) $(FRANK) $(word 2,$^) $(word 2,$^) +endif +# If we need Frank, add the following after the @echo +# $(QUIET) $(CC_EPI) $(CFLAGS) -c -o $@ $< + +### Debug Print ### + +print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true diff --git a/asm/Runtime/PPCEABI/H/__mem.s b/asm/Runtime/PPCEABI/H/__mem.s new file mode 100644 index 00000000..906dcfc4 --- /dev/null +++ b/asm/Runtime/PPCEABI/H/__mem.s @@ -0,0 +1,104 @@ +.include "macros.inc" + +.section .init, "ax" # 0x80003100 - 0x80005620 + +.global memset +memset: +/* 800033A8 000003A8 94 21 FF F0 */ stwu r1, -0x10(r1) +/* 800033AC 000003AC 7C 08 02 A6 */ mflr r0 +/* 800033B0 000003B0 90 01 00 14 */ stw r0, 0x14(r1) +/* 800033B4 000003B4 93 E1 00 0C */ stw r31, 0xc(r1) +/* 800033B8 000003B8 7C 7F 1B 78 */ mr r31, r3 +/* 800033BC 000003BC 48 00 00 1D */ bl __fill_mem +/* 800033C0 000003C0 80 01 00 14 */ lwz r0, 0x14(r1) +/* 800033C4 000003C4 7F E3 FB 78 */ mr r3, r31 +/* 800033C8 000003C8 83 E1 00 0C */ lwz r31, 0xc(r1) +/* 800033CC 000003CC 7C 08 03 A6 */ mtlr r0 +/* 800033D0 000003D0 38 21 00 10 */ addi r1, r1, 0x10 +/* 800033D4 000003D4 4E 80 00 20 */ blr + +.global __fill_mem +__fill_mem: +/* 800033D8 000003D8 28 05 00 20 */ cmplwi r5, 0x20 +/* 800033DC 000003DC 54 84 06 3E */ clrlwi r4, r4, 0x18 +/* 800033E0 000003E0 38 C3 FF FF */ addi r6, r3, -1 +/* 800033E4 000003E4 7C 87 23 78 */ mr r7, r4 +/* 800033E8 000003E8 41 80 00 90 */ blt lbl_80003478 +/* 800033EC 000003EC 7C C0 30 F8 */ nor r0, r6, r6 +/* 800033F0 000003F0 54 03 07 BF */ clrlwi. r3, r0, 0x1e +/* 800033F4 000003F4 41 82 00 14 */ beq lbl_80003408 +/* 800033F8 000003F8 7C A3 28 50 */ subf r5, r3, r5 +lbl_800033FC: +/* 800033FC 000003FC 34 63 FF FF */ addic. r3, r3, -1 +/* 80003400 00000400 9C E6 00 01 */ stbu r7, 1(r6) +/* 80003404 00000404 40 82 FF F8 */ bne lbl_800033FC +lbl_80003408: +/* 80003408 00000408 28 07 00 00 */ cmplwi r7, 0 +/* 8000340C 0000040C 41 82 00 1C */ beq lbl_80003428 +/* 80003410 00000410 54 E3 C0 0E */ slwi r3, r7, 0x18 +/* 80003414 00000414 54 E0 80 1E */ slwi r0, r7, 0x10 +/* 80003418 00000418 54 E4 40 2E */ slwi r4, r7, 8 +/* 8000341C 0000041C 7C 60 03 78 */ or r0, r3, r0 +/* 80003420 00000420 7C 80 03 78 */ or r0, r4, r0 +/* 80003424 00000424 7C E7 03 78 */ or r7, r7, r0 +lbl_80003428: +/* 80003428 00000428 54 A3 D9 7F */ rlwinm. r3, r5, 0x1b, 5, 0x1f +/* 8000342C 0000042C 38 86 FF FD */ addi r4, r6, -3 +/* 80003430 00000430 41 82 00 2C */ beq lbl_8000345C +lbl_80003434: +/* 80003434 00000434 90 E4 00 04 */ stw r7, 4(r4) +/* 80003438 00000438 34 63 FF FF */ addic. r3, r3, -1 +/* 8000343C 0000043C 90 E4 00 08 */ stw r7, 8(r4) +/* 80003440 00000440 90 E4 00 0C */ stw r7, 0xc(r4) +/* 80003444 00000444 90 E4 00 10 */ stw r7, 0x10(r4) +/* 80003448 00000448 90 E4 00 14 */ stw r7, 0x14(r4) +/* 8000344C 0000044C 90 E4 00 18 */ stw r7, 0x18(r4) +/* 80003450 00000450 90 E4 00 1C */ stw r7, 0x1c(r4) +/* 80003454 00000454 94 E4 00 20 */ stwu r7, 0x20(r4) +/* 80003458 00000458 40 82 FF DC */ bne lbl_80003434 +lbl_8000345C: +/* 8000345C 0000045C 54 A3 F7 7F */ rlwinm. r3, r5, 0x1e, 0x1d, 0x1f +/* 80003460 00000460 41 82 00 10 */ beq lbl_80003470 +lbl_80003464: +/* 80003464 00000464 34 63 FF FF */ addic. r3, r3, -1 +/* 80003468 00000468 94 E4 00 04 */ stwu r7, 4(r4) +/* 8000346C 0000046C 40 82 FF F8 */ bne lbl_80003464 +lbl_80003470: +/* 80003470 00000470 38 C4 00 03 */ addi r6, r4, 3 +/* 80003474 00000474 54 A5 07 BE */ clrlwi r5, r5, 0x1e +lbl_80003478: +/* 80003478 00000478 28 05 00 00 */ cmplwi r5, 0 +/* 8000347C 0000047C 4D 82 00 20 */ beqlr +lbl_80003480: +/* 80003480 00000480 34 A5 FF FF */ addic. r5, r5, -1 +/* 80003484 00000484 9C E6 00 01 */ stbu r7, 1(r6) +/* 80003488 00000488 40 82 FF F8 */ bne lbl_80003480 +/* 8000348C 0000048C 4E 80 00 20 */ blr + +.global memcpy +memcpy: +/* 80003490 00000490 7C 04 18 40 */ cmplw r4, r3 +/* 80003494 00000494 41 80 00 28 */ blt lbl_800034BC +/* 80003498 00000498 38 84 FF FF */ addi r4, r4, -1 +/* 8000349C 0000049C 38 C3 FF FF */ addi r6, r3, -1 +/* 800034A0 000004A0 38 A5 00 01 */ addi r5, r5, 1 +/* 800034A4 000004A4 48 00 00 0C */ b lbl_800034B0 +lbl_800034A8: +/* 800034A8 000004A8 8C 04 00 01 */ lbzu r0, 1(r4) +/* 800034AC 000004AC 9C 06 00 01 */ stbu r0, 1(r6) +lbl_800034B0: +/* 800034B0 000004B0 34 A5 FF FF */ addic. r5, r5, -1 +/* 800034B4 000004B4 40 82 FF F4 */ bne lbl_800034A8 +/* 800034B8 000004B8 4E 80 00 20 */ blr +lbl_800034BC: +/* 800034BC 000004BC 7C 84 2A 14 */ add r4, r4, r5 +/* 800034C0 000004C0 7C C3 2A 14 */ add r6, r3, r5 +/* 800034C4 000004C4 38 A5 00 01 */ addi r5, r5, 1 +/* 800034C8 000004C8 48 00 00 0C */ b lbl_800034D4 +lbl_800034CC: +/* 800034CC 000004CC 8C 04 FF FF */ lbzu r0, -1(r4) +/* 800034D0 000004D0 9C 06 FF FF */ stbu r0, -1(r6) +lbl_800034D4: +/* 800034D4 000004D4 34 A5 FF FF */ addic. r5, r5, -1 +/* 800034D8 000004D8 40 82 FF F4 */ bne lbl_800034CC +/* 800034DC 000004DC 4E 80 00 20 */ blr diff --git a/asm/bss.s b/asm/bss.s new file mode 100644 index 00000000..85cf4e1a --- /dev/null +++ b/asm/bss.s @@ -0,0 +1,1143 @@ +.include "macros.inc" + +.section .bss, "wa" # 0x803F7560 - 0x805A6BBF +.global lbl_803F7560 +lbl_803F7560: + .skip 0x60168 +.global lbl_804576C8 +lbl_804576C8: + .skip 0xD0 +.global lbl_80457798 +lbl_80457798: + .skip 0x160 +.global lbl_804578F8 +lbl_804578F8: + .skip 0x10 +.global lbl_80457908 +lbl_80457908: + .skip 0xC0 +.global lbl_804579C8 +lbl_804579C8: + .skip 0x20 +.global lbl_804579E8 +lbl_804579E8: + .skip 0x10 +.global lbl_804579F8 +lbl_804579F8: + .skip 0x18 +.global lbl_80457A10 +lbl_80457A10: + .skip 0x838 +.global lbl_80458248 +lbl_80458248: + .skip 0x108 +.global lbl_80458350 +lbl_80458350: + .skip 0x1E58 +.global lbl_8045A1A8 +lbl_8045A1A8: + .skip 0xF98 +.global lbl_8045B140 +lbl_8045B140: + .skip 0x40 +.global lbl_8045B180 +lbl_8045B180: + .skip 0x5C +.global lbl_8045B1DC +lbl_8045B1DC: + .skip 0xF4 +.global lbl_8045B2D0 +lbl_8045B2D0: + .skip 0xC8 +.global lbl_8045B398 +lbl_8045B398: + .skip 0x120 +.global lbl_8045B4B8 +lbl_8045B4B8: + .skip 0x228 +.global lbl_8045B6E0 +lbl_8045B6E0: + .skip 0x254 +.global lbl_8045B934 +lbl_8045B934: + .skip 0x368 +.global lbl_8045BC9C +lbl_8045BC9C: + .skip 0x298 +.global lbl_8045BF34 +lbl_8045BF34: + .skip 0x34 +.global lbl_8045BF68 +lbl_8045BF68: + .skip 0x68 +.global lbl_8045BFD0 +lbl_8045BFD0: + .skip 0x238 +.global lbl_8045C208 +lbl_8045C208: + .skip 0x310 +.global lbl_8045C518 +lbl_8045C518: + .skip 0x18 +.global lbl_8045C530 +lbl_8045C530: + .skip 0x20 +.global lbl_8045C550 +lbl_8045C550: + .skip 0x30 +.global lbl_8045C580 +lbl_8045C580: + .skip 0x18 +.global lbl_8045C598 +lbl_8045C598: + .skip 0xC +.global lbl_8045C5A4 +lbl_8045C5A4: + .skip 0x10 +.global lbl_8045C5B4 +lbl_8045C5B4: + .skip 0xF3C8 +.global lbl_8046B97C +lbl_8046B97C: + .skip 0xA3C +.global lbl_8046C3B8 +lbl_8046C3B8: + .skip 0x10 +.global lbl_8046C3C8 +lbl_8046C3C8: + .skip 0x18 +.global lbl_8046C3E0 +lbl_8046C3E0: + .skip 0x28 +.global lbl_8046C408 +lbl_8046C408: + .skip 0x18 +.global lbl_8046C420 +lbl_8046C420: + .skip 0x18 +.global lbl_8046C438 +lbl_8046C438: + .skip 0x18 +.global lbl_8046C450 +lbl_8046C450: + .skip 0x20 +.global lbl_8046C470 +lbl_8046C470: + .skip 0xC +.global lbl_8046C47C +lbl_8046C47C: + .skip 0xC +.global lbl_8046C488 +lbl_8046C488: + .skip 0x10 +.global lbl_8046C498 +lbl_8046C498: + .skip 0x60 +.global lbl_8046C4F8 +lbl_8046C4F8: + .skip 0xC +.global lbl_8046C504 +lbl_8046C504: + .skip 0x1C +.global lbl_8046C520 +lbl_8046C520: + .skip 0x18 +.global lbl_8046C538 +lbl_8046C538: + .skip 0x20 +.global lbl_8046C558 +lbl_8046C558: + .skip 0xC +.global lbl_8046C564 +lbl_8046C564: + .skip 0xC +.global lbl_8046C570 +lbl_8046C570: + .skip 0xA8 +.global lbl_8046C618 +lbl_8046C618: + .skip 0x108 +.global lbl_8046C720 +lbl_8046C720: + .skip 0x18 +.global lbl_8046C738 +lbl_8046C738: + .skip 0x10 +.global lbl_8046C748 +lbl_8046C748: + .skip 0x10 +.global lbl_8046C758 +lbl_8046C758: + .skip 0x18 +.global lbl_8046C770 +lbl_8046C770: + .skip 0x18 +.global lbl_8046C788 +lbl_8046C788: + .skip 0x18 +.global lbl_8046C7A0 +lbl_8046C7A0: + .skip 0x30 +.global lbl_8046C7D0 +lbl_8046C7D0: + .skip 0x78 +.global lbl_8046C848 +lbl_8046C848: + .skip 0x18 +.global lbl_8046C860 +lbl_8046C860: + .skip 0x18 +.global lbl_8046C878 +lbl_8046C878: + .skip 0x18 +.global lbl_8046C890 +lbl_8046C890: + .skip 0x18 +.global lbl_8046C8A8 +lbl_8046C8A8: + .skip 0x18 +.global lbl_8046C8C0 +lbl_8046C8C0: + .skip 0x18 +.global lbl_8046C8D8 +lbl_8046C8D8: + .skip 0x18 +.global lbl_8046C8F0 +lbl_8046C8F0: + .skip 0x18 +.global lbl_8046C908 +lbl_8046C908: + .skip 0xC +.global lbl_8046C914 +lbl_8046C914: + .skip 0xC +.global lbl_8046C920 +lbl_8046C920: + .skip 0x18 +.global lbl_8046C938 +lbl_8046C938: + .skip 0x18 +.global lbl_8046C950 +lbl_8046C950: + .skip 0xFC +.global lbl_8046CA4C +lbl_8046CA4C: + .skip 0xF4 +.global lbl_8046CB40 +lbl_8046CB40: + .skip 0x800 +.global lbl_8046D340 +lbl_8046D340: + .skip 0xC +.global lbl_8046D34C +lbl_8046D34C: + .skip 0x14 +.global lbl_8046D360 +lbl_8046D360: + .skip 0x18 +.global lbl_8046D378 +lbl_8046D378: + .skip 0x18 +.global lbl_8046D390 +lbl_8046D390: + .skip 0x18 +.global lbl_8046D3A8 +lbl_8046D3A8: + .skip 0x150 +.global lbl_8046D4F8 +lbl_8046D4F8: + .skip 0x2E8 +.global lbl_8046D7E0 +lbl_8046D7E0: + .skip 0x1E0 +.global lbl_8046D9C0 +lbl_8046D9C0: + .skip 0x2D0 +.global lbl_8046DC90 +lbl_8046DC90: + .skip 0x18 +.global lbl_8046DCA8 +lbl_8046DCA8: + .skip 0x18 +.global lbl_8046DCC0 +lbl_8046DCC0: + .skip 0x400 +.global lbl_8046E0C0 +lbl_8046E0C0: + .skip 0x18 +.global lbl_8046E0D8 +lbl_8046E0D8: + .skip 0x18 +.global lbl_8046E0F0 +lbl_8046E0F0: + .skip 0x100 +.global lbl_8046E1F0 +lbl_8046E1F0: + .skip 0x10 +.global lbl_8046E200 +lbl_8046E200: + .skip 0xC +.global lbl_8046E20C +lbl_8046E20C: + .skip 0x1DF8 +.global lbl_80470004 +lbl_80470004: + .skip 0x9168 +.global lbl_8047916C +lbl_8047916C: + .skip 0xC +.global lbl_80479178 +lbl_80479178: + .skip 0x320 +.global lbl_80479498 +lbl_80479498: + .skip 0x48 +.global lbl_804794E0 +lbl_804794E0: + .skip 0x30 +.global lbl_80479510 +lbl_80479510: + .skip 0x48 +.global lbl_80479558 +lbl_80479558: + .skip 0x48 +.global lbl_804795A0 +lbl_804795A0: + .skip 0x200 +.global lbl_804797A0 +lbl_804797A0: + .skip 0x400 +.global lbl_80479BA0 +lbl_80479BA0: + .skip 0x30 +.global lbl_80479BD0 +lbl_80479BD0: + .skip 0xF0 +.global lbl_80479CC0 +lbl_80479CC0: + .skip 0x46000 +.global lbl_804BFCC0 +lbl_804BFCC0: + .skip 0x50 +.global lbl_804BFD10 +lbl_804BFD10: + .skip 0x20 +.global lbl_804BFD30 +lbl_804BFD30: + .skip 0xC +.global lbl_804BFD3C +lbl_804BFD3C: + .skip 0xC +.global lbl_804BFD48 +lbl_804BFD48: + .skip 0x10 +.global lbl_804BFD58 +lbl_804BFD58: + .skip 0xC +.global lbl_804BFD64 +lbl_804BFD64: + .skip 0xC4 +.global lbl_804BFE28 +lbl_804BFE28: + .skip 0x20 +.global lbl_804BFE48 +lbl_804BFE48: + .skip 0x20 +.global lbl_804BFE68 +lbl_804BFE68: + .skip 0x4C +.global lbl_804BFEB4 +lbl_804BFEB4: + .skip 0x4C +.global lbl_804BFF00 +lbl_804BFF00: + .skip 0x10 +.global lbl_804BFF10 +lbl_804BFF10: + .skip 0xC +.global lbl_804BFF1C +lbl_804BFF1C: + .skip 0x14 +.global lbl_804BFF30 +lbl_804BFF30: + .skip 0x10 +.global lbl_804BFF40 +lbl_804BFF40: + .skip 0x10 +.global lbl_804BFF50 +lbl_804BFF50: + .skip 0xC +.global lbl_804BFF5C +lbl_804BFF5C: + .skip 0x34 +.global lbl_804BFF90 +lbl_804BFF90: + .skip 0x10 +.global lbl_804BFFA0 +lbl_804BFFA0: + .skip 0xC +.global lbl_804BFFAC +lbl_804BFFAC: + .skip 0x14 +.global lbl_804BFFC0 +lbl_804BFFC0: + .skip 0x8000C +.global lbl_8053FFCC +lbl_8053FFCC: + .skip 0x28 +.global lbl_8053FFF4 +lbl_8053FFF4: + .skip 0x10 +.global lbl_80540004 +lbl_80540004: + .skip 0xC +.global lbl_80540010 +lbl_80540010: + .skip 0x10 +.global lbl_80540020 +lbl_80540020: + .skip 0x500 +.global lbl_80540520 +lbl_80540520: + .skip 0x30 +.global lbl_80540550 +lbl_80540550: + .skip 0x30 +.global lbl_80540580 +lbl_80540580: + .skip 0x64 +.global lbl_805405E4 +lbl_805405E4: + .skip 0x5C +.global lbl_80540640 +lbl_80540640: + .skip 0x3E0 +.global lbl_80540A20 +lbl_80540A20: + .skip 0xC +.global lbl_80540A2C +lbl_80540A2C: + .skip 0x14 +.global lbl_80540A40 +lbl_80540A40: + .skip 0xC +.global lbl_80540A4C +lbl_80540A4C: + .skip 0x34 +.global lbl_80540A80 +lbl_80540A80: + .skip 0x68 +.global lbl_80540AE8 +lbl_80540AE8: + .skip 0x78 +.global lbl_80540B60 +lbl_80540B60: + .skip 0x20 +.global lbl_80540B80 +lbl_80540B80: + .skip 0x20 +.global lbl_80540BA0 +lbl_80540BA0: + .skip 0x58 +.global lbl_80540BF8 +lbl_80540BF8: + .skip 0x20 +.global lbl_80540C18 +lbl_80540C18: + .skip 0x40 +.global lbl_80540C58 +lbl_80540C58: + .skip 0x30 +.global lbl_80540C88 +lbl_80540C88: + .skip 0x578 +.global lbl_80541200 +lbl_80541200: + .skip 0x50 +.global lbl_80541250 +lbl_80541250: + .skip 0x48 +.global lbl_80541298 +lbl_80541298: + .skip 0x2E8 +.global lbl_80541580 +lbl_80541580: + .skip 0x20 +.global lbl_805415A0 +lbl_805415A0: + .skip 0x58 +.global lbl_805415F8 +lbl_805415F8: + .skip 0x9F8 +.global lbl_80541FF0 +lbl_80541FF0: + .skip 0x10 +.global lbl_80542000 +lbl_80542000: + .skip 0x40 +.global lbl_80542040 +lbl_80542040: + .skip 0xF0 +.global lbl_80542130 +lbl_80542130: + .skip 0x58 +.global lbl_80542188 +lbl_80542188: + .skip 0x10 +.global lbl_80542198 +lbl_80542198: + .skip 0x100 +.global lbl_80542298 +lbl_80542298: + .skip 0x338 +.global lbl_805425D0 +lbl_805425D0: + .skip 0x1400 +.global lbl_805439D0 +lbl_805439D0: + .skip 0xC340 +.global lbl_8054FD10 +lbl_8054FD10: + .skip 0x100 +.global lbl_8054FE10 +lbl_8054FE10: + .skip 0x240 +.global lbl_80550050 +lbl_80550050: + .skip 0x214 +.global lbl_80550264 +lbl_80550264: + .skip 0x600 +.global lbl_80550864 +lbl_80550864: + .skip 0x40 +.global lbl_805508A4 +lbl_805508A4: + .skip 0x180 +.global lbl_80550A24 +lbl_80550A24: + .skip 0x20 +.global lbl_80550A44 +lbl_80550A44: + .skip 0x20 +.global lbl_80550A64 +lbl_80550A64: + .skip 0x20 +.global lbl_80550A84 +lbl_80550A84: + .skip 0x20 +.global lbl_80550AA4 +lbl_80550AA4: + .skip 0x10 +.global lbl_80550AB4 +lbl_80550AB4: + .skip 0x40 +.global lbl_80550AF4 +lbl_80550AF4: + .skip 0x480 +.global lbl_80550F74 +lbl_80550F74: + .skip 0x484 +.global lbl_805513F8 +lbl_805513F8: + .skip 0x1900 +.global lbl_80552CF8 +lbl_80552CF8: + .skip 0x800 +.global lbl_805534F8 +lbl_805534F8: + .skip 0xC00 +.global lbl_805540F8 +lbl_805540F8: + .skip 0x4000 +.global lbl_805580F8 +lbl_805580F8: + .skip 0x600 +.global lbl_805586F8 +lbl_805586F8: + .skip 0x400 +.global lbl_80558AF8 +lbl_80558AF8: + .skip 0x800 +.global lbl_805592F8 +lbl_805592F8: + .skip 0x4000 +.global lbl_8055D2F8 +lbl_8055D2F8: + .skip 0x20 +.global lbl_8055D318 +lbl_8055D318: + .skip 0xC +.global lbl_8055D324 +lbl_8055D324: + .skip 0xC +.global lbl_8055D330 +lbl_8055D330: + .skip 0x20 +.global lbl_8055D350 +lbl_8055D350: + .skip 0xF00 +.global lbl_8055E250 +lbl_8055E250: + .skip 0x40 +.global lbl_8055E290 +lbl_8055E290: + .skip 0x80 +.global lbl_8055E310 +lbl_8055E310: + .skip 0x950 +.global lbl_8055EC60 +lbl_8055EC60: + .skip 0x600 +.global lbl_8055F260 +lbl_8055F260: + .skip 0x5E0 +.global lbl_8055F840 +lbl_8055F840: + .skip 0x100 +.global lbl_8055F940 +lbl_8055F940: + .skip 0x50 +.global lbl_8055F990 +lbl_8055F990: + .skip 0x400 +.global lbl_8055FD90 +lbl_8055FD90: + .skip 0x300 +.global lbl_80560090 +lbl_80560090: + .skip 0x700 +.global lbl_80560790 +lbl_80560790: + .skip 0x200 +.global lbl_80560990 +lbl_80560990: + .skip 0x4300 +.global lbl_80564C90 +lbl_80564C90: + .skip 0x80 +.global lbl_80564D10 +lbl_80564D10: + .skip 0x2180 +.global lbl_80566E90 +lbl_80566E90: + .skip 0x40 +.global lbl_80566ED0 +lbl_80566ED0: + .skip 0x80 +.global lbl_80566F50 +lbl_80566F50: + .skip 0x40 +.global lbl_80566F90 +lbl_80566F90: + .skip 0x284 +.global lbl_80567214 +lbl_80567214: + .skip 0x284 +.global lbl_80567498 +lbl_80567498: + .skip 0x408 +.global lbl_805678A0 +lbl_805678A0: + .skip 0x60 +.global lbl_80567900 +lbl_80567900: + .skip 0x2008 +.global lbl_80569908 +lbl_80569908: + .skip 0x30 +.global lbl_80569938 +lbl_80569938: + .skip 0x30 +.global lbl_80569968 +lbl_80569968: + .skip 0x30 +.global lbl_80569998 +lbl_80569998: + .skip 0x30 +.global lbl_805699C8 +lbl_805699C8: + .skip 0x30 +.global lbl_805699F8 +lbl_805699F8: + .skip 0x30 +.global lbl_80569A28 +lbl_80569A28: + .skip 0x30 +.global lbl_80569A58 +lbl_80569A58: + .skip 0x220 +.global lbl_80569C78 +lbl_80569C78: + .skip 0x20 +.global lbl_80569C98 +lbl_80569C98: + .skip 0x80 +.global lbl_80569D18 +lbl_80569D18: + .skip 0xA0 +.global lbl_80569DB8 +lbl_80569DB8: + .skip 0x20 +.global lbl_80569DD8 +lbl_80569DD8: + .skip 0x20 +.global lbl_80569DF8 +lbl_80569DF8: + .skip 0x40 +.global lbl_80569E38 +lbl_80569E38: + .skip 0x60 +.global lbl_80569E98 +lbl_80569E98: + .skip 0xC8 +.global lbl_80569F60 +lbl_80569F60: + .skip 0x118 +.global lbl_8056A078 +lbl_8056A078: + .skip 0x28 +.global lbl_8056A0A0 +lbl_8056A0A0: + .skip 0x100 +.global lbl_8056A1A0 +lbl_8056A1A0: + .skip 0x400 +.global lbl_8056A5A0 +lbl_8056A5A0: + .skip 0x48 +.global lbl_8056A5E8 +lbl_8056A5E8: + .skip 0xC +.global lbl_8056A5F4 +lbl_8056A5F4: + .skip 0xC +.global lbl_8056A600 +lbl_8056A600: + .skip 0x17F4 +.global lbl_8056BDF4 +lbl_8056BDF4: + .skip 0x4C4 +.global lbl_8056C2B8 +lbl_8056C2B8: + .skip 0x734 +.global lbl_8056C9EC +lbl_8056C9EC: + .skip 0x554 +.global lbl_8056CF40 +lbl_8056CF40: + .skip 0x4C4 +.global lbl_8056D404 +lbl_8056D404: + .skip 0xC +.global lbl_8056D410 +lbl_8056D410: + .skip 0x10 +.global lbl_8056D420 +lbl_8056D420: + .skip 0xD4 +.global lbl_8056D4F4 +lbl_8056D4F4: + .skip 0x84 +.global lbl_8056D578 +lbl_8056D578: + .skip 0x1A0 +.global lbl_8056D718 +lbl_8056D718: + .skip 0x68 +.global lbl_8056D780 +lbl_8056D780: + .skip 0x68 +.global lbl_8056D7E8 +lbl_8056D7E8: + .skip 0x68 +.global lbl_8056D850 +lbl_8056D850: + .skip 0x1F08 +.global lbl_8056F758 +lbl_8056F758: + .skip 0x104 +.global lbl_8056F85C +lbl_8056F85C: + .skip 0x38 +.global lbl_8056F894 +lbl_8056F894: + .skip 0x10 +.global lbl_8056F8A4 +lbl_8056F8A4: + .skip 0x10 +.global lbl_8056F8B4 +lbl_8056F8B4: + .skip 0x750 +.global lbl_80570004 +lbl_80570004: + .skip 0x948 +.global lbl_8057094C +lbl_8057094C: + .skip 0x1000 +.global lbl_8057194C +lbl_8057194C: + .skip 0x40 +.global lbl_8057198C +lbl_8057198C: + .skip 0x40 +.global lbl_805719CC +lbl_805719CC: + .skip 0x10 +.global lbl_805719DC +lbl_805719DC: + .skip 0xC +.global lbl_805719E8 +lbl_805719E8: + .skip 0x1A8 +.global lbl_80571B90 +lbl_80571B90: + .skip 0xD4 +.global lbl_80571C64 +lbl_80571C64: + .skip 0x208 +.global lbl_80571E6C +lbl_80571E6C: + .skip 0x68 +.global lbl_80571ED4 +lbl_80571ED4: + .skip 0x68 +.global lbl_80571F3C +lbl_80571F3C: + .skip 0x68 +.global lbl_80571FA4 +lbl_80571FA4: + .skip 0x68 +.global lbl_8057200C +lbl_8057200C: + .skip 0xC +.global lbl_80572018 +lbl_80572018: + .skip 0xC +.global lbl_80572024 +lbl_80572024: + .skip 0x18 +.global lbl_8057203C +lbl_8057203C: + .skip 0xC +.global lbl_80572048 +lbl_80572048: + .skip 0x18 +.global lbl_80572060 +lbl_80572060: + .skip 0xC +.global lbl_8057206C +lbl_8057206C: + .skip 0xC +.global lbl_80572078 +lbl_80572078: + .skip 0x60 +.global lbl_805720D8 +lbl_805720D8: + .skip 0x10 +.global lbl_805720E8 +lbl_805720E8: + .skip 0x10 +.global lbl_805720F8 +lbl_805720F8: + .skip 0x10 +.global lbl_80572108 +lbl_80572108: + .skip 0x10 +.global lbl_80572118 +lbl_80572118: + .skip 0x10 +.global lbl_80572128 +lbl_80572128: + .skip 0xC +.global lbl_80572134 +lbl_80572134: + .skip 0xC +.global lbl_80572140 +lbl_80572140: + .skip 0x2A0 +.global lbl_805723E0 +lbl_805723E0: + .skip 0x18 +.global lbl_805723F8 +lbl_805723F8: + .skip 0xC +.global lbl_80572404 +lbl_80572404: + .skip 0x110 +.global lbl_80572514 +lbl_80572514: + .skip 0x10 +.global lbl_80572524 +lbl_80572524: + .skip 0x10 +.global lbl_80572534 +lbl_80572534: + .skip 0x10 +.global lbl_80572544 +lbl_80572544: + .skip 0x68 +.global lbl_805725AC +lbl_805725AC: + .skip 0x68 +.global lbl_80572614 +lbl_80572614: + .skip 0x74 +.global lbl_80572688 +lbl_80572688: + .skip 0xC +.global lbl_80572694 +lbl_80572694: + .skip 0x68 +.global lbl_805726FC +lbl_805726FC: + .skip 0x4B0 +.global lbl_80572BAC +lbl_80572BAC: + .skip 0x19000 +.global lbl_8058BBAC +lbl_8058BBAC: + .skip 0xC000 +.global lbl_80597BAC +lbl_80597BAC: + .skip 0x8000 +.global lbl_8059FBAC +lbl_8059FBAC: + .skip 0x18 +.global lbl_8059FBC4 +lbl_8059FBC4: + .skip 0xC +.global lbl_8059FBD0 +lbl_8059FBD0: + .skip 0xA8 +.global lbl_8059FC78 +lbl_8059FC78: + .skip 0x18 +.global lbl_8059FC90 +lbl_8059FC90: + .skip 0x18 +.global lbl_8059FCA8 +lbl_8059FCA8: + .skip 0x18 +.global lbl_8059FCC0 +lbl_8059FCC0: + .skip 0x18 +.global lbl_8059FCD8 +lbl_8059FCD8: + .skip 0x18 +.global lbl_8059FCF0 +lbl_8059FCF0: + .skip 0x18 +.global lbl_8059FD08 +lbl_8059FD08: + .skip 0x10 +.global lbl_8059FD18 +lbl_8059FD18: + .skip 0x18 +.global lbl_8059FD30 +lbl_8059FD30: + .skip 0x18 +.global lbl_8059FD48 +lbl_8059FD48: + .skip 0x2BC +.global lbl_805A0004 +lbl_805A0004: + .skip 0x2B5C +.global lbl_805A2B60 +lbl_805A2B60: + .skip 0x1604 +.global lbl_805A4164 +lbl_805A4164: + .skip 0xA04 +.global lbl_805A4B68 +lbl_805A4B68: + .skip 0x1E0 +.global lbl_805A4D48 +lbl_805A4D48: + .skip 0x9C +.global lbl_805A4DE4 +lbl_805A4DE4: + .skip 0x154 +.global lbl_805A4F38 +lbl_805A4F38: + .skip 0x60 +.global lbl_805A4F98 +lbl_805A4F98: + .skip 0x1E0 +.global lbl_805A5178 +lbl_805A5178: + .skip 0x9C +.global lbl_805A5214 +lbl_805A5214: + .skip 0x154 +.global lbl_805A5368 +lbl_805A5368: + .skip 0x60 +.global lbl_805A53C8 +lbl_805A53C8: + .skip 0x18 +.global lbl_805A53E0 +lbl_805A53E0: + .skip 0xC +.global lbl_805A53EC +lbl_805A53EC: + .skip 0x260 +.global lbl_805A564C +lbl_805A564C: + .skip 0x4C +.global lbl_805A5698 +lbl_805A5698: + .skip 0x7D8 +.global lbl_805A5E70 +lbl_805A5E70: + .skip 0x4C +.global lbl_805A5EBC +lbl_805A5EBC: + .skip 0x4C +.global lbl_805A5F08 +lbl_805A5F08: + .skip 0x4C +.global lbl_805A5F54 +lbl_805A5F54: + .skip 0x4C +.global lbl_805A5FA0 +lbl_805A5FA0: + .skip 0x4C +.global lbl_805A5FEC +lbl_805A5FEC: + .skip 0x4C +.global lbl_805A6038 +lbl_805A6038: + .skip 0x4C +.global lbl_805A6084 +lbl_805A6084: + .skip 0x4C +.global lbl_805A60D0 +lbl_805A60D0: + .skip 0xA0 +.global lbl_805A6170 +lbl_805A6170: + .skip 0x30 +.global lbl_805A61A0 +lbl_805A61A0: + .skip 0xC +.global lbl_805A61AC +lbl_805A61AC: + .skip 0xC +.global lbl_805A61B8 +lbl_805A61B8: + .skip 0x1C +.global lbl_805A61D4 +lbl_805A61D4: + .skip 0x30 +.global lbl_805A6204 +lbl_805A6204: + .skip 0x30 +.global lbl_805A6234 +lbl_805A6234: + .skip 0xC +.global lbl_805A6240 +lbl_805A6240: + .skip 0x200 +.global lbl_805A6440 +lbl_805A6440: + .skip 0x80 +.global lbl_805A64C0 +lbl_805A64C0: + .skip 0x40 +.global lbl_805A6500 +lbl_805A6500: + .skip 0x3C +.global lbl_805A653C +lbl_805A653C: + .skip 0x30 +.global lbl_805A656C +lbl_805A656C: + .skip 0x30 +.global lbl_805A659C +lbl_805A659C: + .skip 0x30 +.global lbl_805A65CC +lbl_805A65CC: + .skip 0x30 +.global lbl_805A65FC +lbl_805A65FC: + .skip 0x24 +.global lbl_805A6620 +lbl_805A6620: + .skip 0x40 +.global lbl_805A6660 +lbl_805A6660: + .skip 0x10 +.global lbl_805A6670 +lbl_805A6670: + .skip 0x30 +.global lbl_805A66A0 +lbl_805A66A0: + .skip 0x54 +.global lbl_805A66F4 +lbl_805A66F4: + .skip 0xC +.global lbl_805A6700 +lbl_805A6700: + .skip 0xC +.global lbl_805A670C +lbl_805A670C: + .skip 0xC +.global lbl_805A6718 +lbl_805A6718: + .skip 0xC +.global lbl_805A6724 +lbl_805A6724: + .skip 0xC +.global lbl_805A6730 +lbl_805A6730: + .skip 0xC +.global lbl_805A673C +lbl_805A673C: + .skip 0x18 +.global lbl_805A6754 +lbl_805A6754: + .skip 0x30 +.global lbl_805A6784 +lbl_805A6784: + .skip 0x18 +.global lbl_805A679C +lbl_805A679C: + .skip 0x18 +.global lbl_805A67B4 +lbl_805A67B4: + .skip 0xC +.global lbl_805A67C0 +lbl_805A67C0: + .skip 0xC +.global lbl_805A67CC +lbl_805A67CC: + .skip 0x10 +.global lbl_805A67DC +lbl_805A67DC: + .skip 0x20 +.global lbl_805A67FC +lbl_805A67FC: + .skip 0x10 +.global lbl_805A680C +lbl_805A680C: + .skip 0x1C +.global lbl_805A6828 +lbl_805A6828: + .skip 0x38 +.global lbl_805A6860 +lbl_805A6860: + .skip 0x300 +.global lbl_805A6B60 +lbl_805A6B60: + .skip 0x30 +.global lbl_805A6B90 +lbl_805A6B90: + .skip 0x10 +.global lbl_805A6BA0 +lbl_805A6BA0: + .skip 0x4 +.global lbl_805A6BA8 +lbl_805A6BA8: + .skip 0xC diff --git a/asm/ctors.s b/asm/ctors.s new file mode 100644 index 00000000..00377fca --- /dev/null +++ b/asm/ctors.s @@ -0,0 +1,6 @@ +.include "macros.inc" + +.section .ctors, "wa" # 0x803CB1C0 - 0x803CB380 +.global lbl_803CB1C0 +lbl_803CB1C0: + .incbin "baserom.dol", 0x3C81C0, 0x1C0 diff --git a/asm/data.s b/asm/data.s new file mode 100644 index 00000000..b09d6480 --- /dev/null +++ b/asm/data.s @@ -0,0 +1,2925 @@ +.include "macros.inc" + +.section .data, "wa" # 0x803D8D60 - 0x803F7560 +.global lbl_803D8D60 +lbl_803D8D60: + .incbin "baserom.dol", 0x3D5D60, 0xC +.global lbl_803D8D6C +lbl_803D8D6C: + .incbin "baserom.dol", 0x3D5D6C, 0xC +.global lbl_803D8D78 +lbl_803D8D78: + .incbin "baserom.dol", 0x3D5D78, 0xC +.global lbl_803D8D84 +lbl_803D8D84: + .incbin "baserom.dol", 0x3D5D84, 0xC +.global lbl_803D8D90 +lbl_803D8D90: + .incbin "baserom.dol", 0x3D5D90, 0x10C +.global lbl_803D8E9C +lbl_803D8E9C: + .incbin "baserom.dol", 0x3D5E9C, 0xC +.global lbl_803D8EA8 +lbl_803D8EA8: + .incbin "baserom.dol", 0x3D5EA8, 0x10 +.global lbl_803D8EB8 +lbl_803D8EB8: + .incbin "baserom.dol", 0x3D5EB8, 0x108 +.global lbl_803D8FC0 +lbl_803D8FC0: + .incbin "baserom.dol", 0x3D5FC0, 0x21C +.global lbl_803D91DC +lbl_803D91DC: + .incbin "baserom.dol", 0x3D61DC, 0x21C +.global lbl_803D93F8 +lbl_803D93F8: + .incbin "baserom.dol", 0x3D63F8, 0x114 +.global lbl_803D950C +lbl_803D950C: + .incbin "baserom.dol", 0x3D650C, 0xF4 +.global lbl_803D9600 +lbl_803D9600: + .incbin "baserom.dol", 0x3D6600, 0x60 +.global lbl_803D9660 +lbl_803D9660: + .incbin "baserom.dol", 0x3D6660, 0x78 +.global lbl_803D96D8 +lbl_803D96D8: + .incbin "baserom.dol", 0x3D66D8, 0x10 +.global lbl_803D96E8 +lbl_803D96E8: + .incbin "baserom.dol", 0x3D66E8, 0x88 +.global lbl_803D9770 +lbl_803D9770: + .incbin "baserom.dol", 0x3D6770, 0x1C +.global lbl_803D978C +lbl_803D978C: + .incbin "baserom.dol", 0x3D678C, 0x58 +.global lbl_803D97E4 +lbl_803D97E4: + .incbin "baserom.dol", 0x3D67E4, 0x2C +.global lbl_803D9810 +lbl_803D9810: + .incbin "baserom.dol", 0x3D6810, 0x10 +.global lbl_803D9820 +lbl_803D9820: + .incbin "baserom.dol", 0x3D6820, 0x9C +.global lbl_803D98BC +lbl_803D98BC: + .incbin "baserom.dol", 0x3D68BC, 0x1C +.global lbl_803D98D8 +lbl_803D98D8: + .incbin "baserom.dol", 0x3D68D8, 0x28 +.global lbl_803D9900 +lbl_803D9900: + .incbin "baserom.dol", 0x3D6900, 0x28 +.global lbl_803D9928 +lbl_803D9928: + .incbin "baserom.dol", 0x3D6928, 0x1C +.global lbl_803D9944 +lbl_803D9944: + .incbin "baserom.dol", 0x3D6944, 0x44 +.global lbl_803D9988 +lbl_803D9988: + .incbin "baserom.dol", 0x3D6988, 0x10 +.global lbl_803D9998 +lbl_803D9998: + .incbin "baserom.dol", 0x3D6998, 0x1C +.global lbl_803D99B4 +lbl_803D99B4: + .incbin "baserom.dol", 0x3D69B4, 0x20 +.global lbl_803D99D4 +lbl_803D99D4: + .incbin "baserom.dol", 0x3D69D4, 0x1C +.global lbl_803D99F0 +lbl_803D99F0: + .incbin "baserom.dol", 0x3D69F0, 0x1C +.global lbl_803D9A0C +lbl_803D9A0C: + .incbin "baserom.dol", 0x3D6A0C, 0xC +.global lbl_803D9A18 +lbl_803D9A18: + .incbin "baserom.dol", 0x3D6A18, 0x1C +.global lbl_803D9A34 +lbl_803D9A34: + .incbin "baserom.dol", 0x3D6A34, 0x1C +.global lbl_803D9A50 +lbl_803D9A50: + .incbin "baserom.dol", 0x3D6A50, 0x1C +.global lbl_803D9A6C +lbl_803D9A6C: + .incbin "baserom.dol", 0x3D6A6C, 0x1C +.global lbl_803D9A88 +lbl_803D9A88: + .incbin "baserom.dol", 0x3D6A88, 0xE0 +.global lbl_803D9B68 +lbl_803D9B68: + .incbin "baserom.dol", 0x3D6B68, 0xC +.global lbl_803D9B74 +lbl_803D9B74: + .incbin "baserom.dol", 0x3D6B74, 0xC +.global lbl_803D9B80 +lbl_803D9B80: + .incbin "baserom.dol", 0x3D6B80, 0xC +.global lbl_803D9B8C +lbl_803D9B8C: + .incbin "baserom.dol", 0x3D6B8C, 0xC +.global lbl_803D9B98 +lbl_803D9B98: + .incbin "baserom.dol", 0x3D6B98, 0x10 +.global lbl_803D9BA8 +lbl_803D9BA8: + .incbin "baserom.dol", 0x3D6BA8, 0x20 +.global lbl_803D9BC8 +lbl_803D9BC8: + .incbin "baserom.dol", 0x3D6BC8, 0xC +.global lbl_803D9BD4 +lbl_803D9BD4: + .incbin "baserom.dol", 0x3D6BD4, 0xC +.global lbl_803D9BE0 +lbl_803D9BE0: + .incbin "baserom.dol", 0x3D6BE0, 0x1C +.global lbl_803D9BFC +lbl_803D9BFC: + .incbin "baserom.dol", 0x3D6BFC, 0xC +.global lbl_803D9C08 +lbl_803D9C08: + .incbin "baserom.dol", 0x3D6C08, 0xC +.global lbl_803D9C14 +lbl_803D9C14: + .incbin "baserom.dol", 0x3D6C14, 0xC +.global lbl_803D9C20 +lbl_803D9C20: + .incbin "baserom.dol", 0x3D6C20, 0xC +.global lbl_803D9C2C +lbl_803D9C2C: + .incbin "baserom.dol", 0x3D6C2C, 0xC +.global lbl_803D9C38 +lbl_803D9C38: + .incbin "baserom.dol", 0x3D6C38, 0xC +.global lbl_803D9C44 +lbl_803D9C44: + .incbin "baserom.dol", 0x3D6C44, 0xC +.global lbl_803D9C50 +lbl_803D9C50: + .incbin "baserom.dol", 0x3D6C50, 0x20 +.global lbl_803D9C70 +lbl_803D9C70: + .incbin "baserom.dol", 0x3D6C70, 0x18 +.global lbl_803D9C88 +lbl_803D9C88: + .incbin "baserom.dol", 0x3D6C88, 0x20 +.global lbl_803D9CA8 +lbl_803D9CA8: + .incbin "baserom.dol", 0x3D6CA8, 0x10 +.global lbl_803D9CB8 +lbl_803D9CB8: + .incbin "baserom.dol", 0x3D6CB8, 0xC +.global lbl_803D9CC4 +lbl_803D9CC4: + .incbin "baserom.dol", 0x3D6CC4, 0xC +.global lbl_803D9CD0 +lbl_803D9CD0: + .incbin "baserom.dol", 0x3D6CD0, 0x10 +.global lbl_803D9CE0 +lbl_803D9CE0: + .incbin "baserom.dol", 0x3D6CE0, 0x70 +.global lbl_803D9D50 +lbl_803D9D50: + .incbin "baserom.dol", 0x3D6D50, 0x24 +.global lbl_803D9D74 +lbl_803D9D74: + .incbin "baserom.dol", 0x3D6D74, 0x64 +.global lbl_803D9DD8 +lbl_803D9DD8: + .incbin "baserom.dol", 0x3D6DD8, 0x2C +.global lbl_803D9E04 +lbl_803D9E04: + .incbin "baserom.dol", 0x3D6E04, 0x2C +.global lbl_803D9E30 +lbl_803D9E30: + .incbin "baserom.dol", 0x3D6E30, 0x20 +.global lbl_803D9E50 +lbl_803D9E50: + .incbin "baserom.dol", 0x3D6E50, 0x10 +.global lbl_803D9E60 +lbl_803D9E60: + .incbin "baserom.dol", 0x3D6E60, 0x10 +.global lbl_803D9E70 +lbl_803D9E70: + .incbin "baserom.dol", 0x3D6E70, 0x10 +.global lbl_803D9E80 +lbl_803D9E80: + .incbin "baserom.dol", 0x3D6E80, 0x10 +.global lbl_803D9E90 +lbl_803D9E90: + .incbin "baserom.dol", 0x3D6E90, 0x20 +.global lbl_803D9EB0 +lbl_803D9EB0: + .incbin "baserom.dol", 0x3D6EB0, 0x6C +.global lbl_803D9F1C +lbl_803D9F1C: + .incbin "baserom.dol", 0x3D6F1C, 0xA4 +.global lbl_803D9FC0 +lbl_803D9FC0: + .incbin "baserom.dol", 0x3D6FC0, 0x38 +.global lbl_803D9FF8 +lbl_803D9FF8: + .incbin "baserom.dol", 0x3D6FF8, 0x1C +.global lbl_803DA014 +lbl_803DA014: + .incbin "baserom.dol", 0x3D7014, 0x38 +.global lbl_803DA04C +lbl_803DA04C: + .incbin "baserom.dol", 0x3D704C, 0x3C +.global lbl_803DA088 +lbl_803DA088: + .incbin "baserom.dol", 0x3D7088, 0x10 +.global lbl_803DA098 +lbl_803DA098: + .incbin "baserom.dol", 0x3D7098, 0x10 +.global lbl_803DA0A8 +lbl_803DA0A8: + .incbin "baserom.dol", 0x3D70A8, 0x70 +.global lbl_803DA118 +lbl_803DA118: + .incbin "baserom.dol", 0x3D7118, 0x70 +.global lbl_803DA188 +lbl_803DA188: + .incbin "baserom.dol", 0x3D7188, 0xC +.global lbl_803DA194 +lbl_803DA194: + .incbin "baserom.dol", 0x3D7194, 0x74 +.global lbl_803DA208 +lbl_803DA208: + .incbin "baserom.dol", 0x3D7208, 0x2C +.global lbl_803DA234 +lbl_803DA234: + .incbin "baserom.dol", 0x3D7234, 0x2C +.global lbl_803DA260 +lbl_803DA260: + .incbin "baserom.dol", 0x3D7260, 0xC +.global lbl_803DA26C +lbl_803DA26C: + .incbin "baserom.dol", 0x3D726C, 0x2C +.global lbl_803DA298 +lbl_803DA298: + .incbin "baserom.dol", 0x3D7298, 0xC +.global lbl_803DA2A4 +lbl_803DA2A4: + .incbin "baserom.dol", 0x3D72A4, 0x44 +.global lbl_803DA2E8 +lbl_803DA2E8: + .incbin "baserom.dol", 0x3D72E8, 0x1C +.global lbl_803DA304 +lbl_803DA304: + .incbin "baserom.dol", 0x3D7304, 0x1C +.global lbl_803DA320 +lbl_803DA320: + .incbin "baserom.dol", 0x3D7320, 0x20 +.global lbl_803DA340 +lbl_803DA340: + .incbin "baserom.dol", 0x3D7340, 0x10 +.global lbl_803DA350 +lbl_803DA350: + .incbin "baserom.dol", 0x3D7350, 0x10 +.global lbl_803DA360 +lbl_803DA360: + .incbin "baserom.dol", 0x3D7360, 0x24 +.global lbl_803DA384 +lbl_803DA384: + .incbin "baserom.dol", 0x3D7384, 0xC +.global lbl_803DA390 +lbl_803DA390: + .incbin "baserom.dol", 0x3D7390, 0x3C +.global lbl_803DA3CC +lbl_803DA3CC: + .incbin "baserom.dol", 0x3D73CC, 0x74 +.global lbl_803DA440 +lbl_803DA440: + .incbin "baserom.dol", 0x3D7440, 0x10 +.global lbl_803DA450 +lbl_803DA450: + .incbin "baserom.dol", 0x3D7450, 0x88 +.global lbl_803DA4D8 +lbl_803DA4D8: + .incbin "baserom.dol", 0x3D74D8, 0x80 +.global lbl_803DA558 +lbl_803DA558: + .incbin "baserom.dol", 0x3D7558, 0x70 +.global lbl_803DA5C8 +lbl_803DA5C8: + .incbin "baserom.dol", 0x3D75C8, 0x2CC +.global lbl_803DA894 +lbl_803DA894: + .incbin "baserom.dol", 0x3D7894, 0x64 +.global lbl_803DA8F8 +lbl_803DA8F8: + .incbin "baserom.dol", 0x3D78F8, 0x28 +.global lbl_803DA920 +lbl_803DA920: + .incbin "baserom.dol", 0x3D7920, 0xAC +.global lbl_803DA9CC +lbl_803DA9CC: + .incbin "baserom.dol", 0x3D79CC, 0xC +.global lbl_803DA9D8 +lbl_803DA9D8: + .incbin "baserom.dol", 0x3D79D8, 0xC +.global lbl_803DA9E4 +lbl_803DA9E4: + .incbin "baserom.dol", 0x3D79E4, 0xC +.global lbl_803DA9F0 +lbl_803DA9F0: + .incbin "baserom.dol", 0x3D79F0, 0xC +.global lbl_803DA9FC +lbl_803DA9FC: + .incbin "baserom.dol", 0x3D79FC, 0xC +.global lbl_803DAA08 +lbl_803DAA08: + .incbin "baserom.dol", 0x3D7A08, 0xC +.global lbl_803DAA14 +lbl_803DAA14: + .incbin "baserom.dol", 0x3D7A14, 0xC +.global lbl_803DAA20 +lbl_803DAA20: + .incbin "baserom.dol", 0x3D7A20, 0xC +.global lbl_803DAA2C +lbl_803DAA2C: + .incbin "baserom.dol", 0x3D7A2C, 0xC +.global lbl_803DAA38 +lbl_803DAA38: + .incbin "baserom.dol", 0x3D7A38, 0xC +.global lbl_803DAA44 +lbl_803DAA44: + .incbin "baserom.dol", 0x3D7A44, 0xC +.global lbl_803DAA50 +lbl_803DAA50: + .incbin "baserom.dol", 0x3D7A50, 0xC +.global lbl_803DAA5C +lbl_803DAA5C: + .incbin "baserom.dol", 0x3D7A5C, 0xC +.global lbl_803DAA68 +lbl_803DAA68: + .incbin "baserom.dol", 0x3D7A68, 0x10 +.global lbl_803DAA78 +lbl_803DAA78: + .incbin "baserom.dol", 0x3D7A78, 0x84 +.global lbl_803DAAFC +lbl_803DAAFC: + .incbin "baserom.dol", 0x3D7AFC, 0x84 +.global lbl_803DAB80 +lbl_803DAB80: + .incbin "baserom.dol", 0x3D7B80, 0x10 +.global lbl_803DAB90 +lbl_803DAB90: + .incbin "baserom.dol", 0x3D7B90, 0x74 +.global lbl_803DAC04 +lbl_803DAC04: + .incbin "baserom.dol", 0x3D7C04, 0x24 +.global lbl_803DAC28 +lbl_803DAC28: + .incbin "baserom.dol", 0x3D7C28, 0x10 +.global lbl_803DAC38 +lbl_803DAC38: + .incbin "baserom.dol", 0x3D7C38, 0x6C +.global lbl_803DACA4 +lbl_803DACA4: + .incbin "baserom.dol", 0x3D7CA4, 0xC +.global lbl_803DACB0 +lbl_803DACB0: + .incbin "baserom.dol", 0x3D7CB0, 0x10 +.global lbl_803DACC0 +lbl_803DACC0: + .incbin "baserom.dol", 0x3D7CC0, 0x70 +.global lbl_803DAD30 +lbl_803DAD30: + .incbin "baserom.dol", 0x3D7D30, 0x10 +.global lbl_803DAD40 +lbl_803DAD40: + .incbin "baserom.dol", 0x3D7D40, 0x98 +.global lbl_803DADD8 +lbl_803DADD8: + .incbin "baserom.dol", 0x3D7DD8, 0x20 +.global lbl_803DADF8 +lbl_803DADF8: + .incbin "baserom.dol", 0x3D7DF8, 0x78 +.global lbl_803DAE70 +lbl_803DAE70: + .incbin "baserom.dol", 0x3D7E70, 0xC +.global lbl_803DAE7C +lbl_803DAE7C: + .incbin "baserom.dol", 0x3D7E7C, 0x2C +.global lbl_803DAEA8 +lbl_803DAEA8: + .incbin "baserom.dol", 0x3D7EA8, 0x2C +.global lbl_803DAED4 +lbl_803DAED4: + .incbin "baserom.dol", 0x3D7ED4, 0x1C +.global lbl_803DAEF0 +lbl_803DAEF0: + .incbin "baserom.dol", 0x3D7EF0, 0x20 +.global lbl_803DAF10 +lbl_803DAF10: + .incbin "baserom.dol", 0x3D7F10, 0x28 +.global lbl_803DAF38 +lbl_803DAF38: + .incbin "baserom.dol", 0x3D7F38, 0x10 +.global lbl_803DAF48 +lbl_803DAF48: + .incbin "baserom.dol", 0x3D7F48, 0x10 +.global lbl_803DAF58 +lbl_803DAF58: + .incbin "baserom.dol", 0x3D7F58, 0xD74 +.global lbl_803DBCCC +lbl_803DBCCC: + .incbin "baserom.dol", 0x3D8CCC, 0x294 +.global lbl_803DBF60 +lbl_803DBF60: + .incbin "baserom.dol", 0x3D8F60, 0xEC +.global lbl_803DC04C +lbl_803DC04C: + .incbin "baserom.dol", 0x3D904C, 0xEC +.global lbl_803DC138 +lbl_803DC138: + .incbin "baserom.dol", 0x3D9138, 0xEC +.global lbl_803DC224 +lbl_803DC224: + .incbin "baserom.dol", 0x3D9224, 0xEC +.global lbl_803DC310 +lbl_803DC310: + .incbin "baserom.dol", 0x3D9310, 0xEC +.global lbl_803DC3FC +lbl_803DC3FC: + .incbin "baserom.dol", 0x3D93FC, 0xEC +.global lbl_803DC4E8 +lbl_803DC4E8: + .incbin "baserom.dol", 0x3D94E8, 0xEC +.global lbl_803DC5D4 +lbl_803DC5D4: + .incbin "baserom.dol", 0x3D95D4, 0xEC +.global lbl_803DC6C0 +lbl_803DC6C0: + .incbin "baserom.dol", 0x3D96C0, 0xEC +.global lbl_803DC7AC +lbl_803DC7AC: + .incbin "baserom.dol", 0x3D97AC, 0xEC +.global lbl_803DC898 +lbl_803DC898: + .incbin "baserom.dol", 0x3D9898, 0xEC +.global lbl_803DC984 +lbl_803DC984: + .incbin "baserom.dol", 0x3D9984, 0xEC +.global lbl_803DCA70 +lbl_803DCA70: + .incbin "baserom.dol", 0x3D9A70, 0xEC +.global lbl_803DCB5C +lbl_803DCB5C: + .incbin "baserom.dol", 0x3D9B5C, 0xEC +.global lbl_803DCC48 +lbl_803DCC48: + .incbin "baserom.dol", 0x3D9C48, 0xEC +.global lbl_803DCD34 +lbl_803DCD34: + .incbin "baserom.dol", 0x3D9D34, 0xEC +.global lbl_803DCE20 +lbl_803DCE20: + .incbin "baserom.dol", 0x3D9E20, 0xEC +.global lbl_803DCF0C +lbl_803DCF0C: + .incbin "baserom.dol", 0x3D9F0C, 0xEC +.global lbl_803DCFF8 +lbl_803DCFF8: + .incbin "baserom.dol", 0x3D9FF8, 0xEC +.global lbl_803DD0E4 +lbl_803DD0E4: + .incbin "baserom.dol", 0x3DA0E4, 0xEC +.global lbl_803DD1D0 +lbl_803DD1D0: + .incbin "baserom.dol", 0x3DA1D0, 0xEC +.global lbl_803DD2BC +lbl_803DD2BC: + .incbin "baserom.dol", 0x3DA2BC, 0xEC +.global lbl_803DD3A8 +lbl_803DD3A8: + .incbin "baserom.dol", 0x3DA3A8, 0xEC +.global lbl_803DD494 +lbl_803DD494: + .incbin "baserom.dol", 0x3DA494, 0xEC +.global lbl_803DD580 +lbl_803DD580: + .incbin "baserom.dol", 0x3DA580, 0xEC +.global lbl_803DD66C +lbl_803DD66C: + .incbin "baserom.dol", 0x3DA66C, 0xEC +.global lbl_803DD758 +lbl_803DD758: + .incbin "baserom.dol", 0x3DA758, 0xEC +.global lbl_803DD844 +lbl_803DD844: + .incbin "baserom.dol", 0x3DA844, 0xEC +.global lbl_803DD930 +lbl_803DD930: + .incbin "baserom.dol", 0x3DA930, 0xEC +.global lbl_803DDA1C +lbl_803DDA1C: + .incbin "baserom.dol", 0x3DAA1C, 0xEC +.global lbl_803DDB08 +lbl_803DDB08: + .incbin "baserom.dol", 0x3DAB08, 0xEC +.global lbl_803DDBF4 +lbl_803DDBF4: + .incbin "baserom.dol", 0x3DABF4, 0xEC +.global lbl_803DDCE0 +lbl_803DDCE0: + .incbin "baserom.dol", 0x3DACE0, 0xEC +.global lbl_803DDDCC +lbl_803DDDCC: + .incbin "baserom.dol", 0x3DADCC, 0xEC +.global lbl_803DDEB8 +lbl_803DDEB8: + .incbin "baserom.dol", 0x3DAEB8, 0xEC +.global lbl_803DDFA4 +lbl_803DDFA4: + .incbin "baserom.dol", 0x3DAFA4, 0xEC +.global lbl_803DE090 +lbl_803DE090: + .incbin "baserom.dol", 0x3DB090, 0xEC +.global lbl_803DE17C +lbl_803DE17C: + .incbin "baserom.dol", 0x3DB17C, 0xEC +.global lbl_803DE268 +lbl_803DE268: + .incbin "baserom.dol", 0x3DB268, 0xEC +.global lbl_803DE354 +lbl_803DE354: + .incbin "baserom.dol", 0x3DB354, 0xEC +.global lbl_803DE440 +lbl_803DE440: + .incbin "baserom.dol", 0x3DB440, 0xEC +.global lbl_803DE52C +lbl_803DE52C: + .incbin "baserom.dol", 0x3DB52C, 0xEC +.global lbl_803DE618 +lbl_803DE618: + .incbin "baserom.dol", 0x3DB618, 0xEC +.global lbl_803DE704 +lbl_803DE704: + .incbin "baserom.dol", 0x3DB704, 0xEC +.global lbl_803DE7F0 +lbl_803DE7F0: + .incbin "baserom.dol", 0x3DB7F0, 0xEC +.global lbl_803DE8DC +lbl_803DE8DC: + .incbin "baserom.dol", 0x3DB8DC, 0xEC +.global lbl_803DE9C8 +lbl_803DE9C8: + .incbin "baserom.dol", 0x3DB9C8, 0xEC +.global lbl_803DEAB4 +lbl_803DEAB4: + .incbin "baserom.dol", 0x3DBAB4, 0xEC +.global lbl_803DEBA0 +lbl_803DEBA0: + .incbin "baserom.dol", 0x3DBBA0, 0xEC +.global lbl_803DEC8C +lbl_803DEC8C: + .incbin "baserom.dol", 0x3DBC8C, 0xEC +.global lbl_803DED78 +lbl_803DED78: + .incbin "baserom.dol", 0x3DBD78, 0xEC +.global lbl_803DEE64 +lbl_803DEE64: + .incbin "baserom.dol", 0x3DBE64, 0xEC +.global lbl_803DEF50 +lbl_803DEF50: + .incbin "baserom.dol", 0x3DBF50, 0xEC +.global lbl_803DF03C +lbl_803DF03C: + .incbin "baserom.dol", 0x3DC03C, 0xEC +.global lbl_803DF128 +lbl_803DF128: + .incbin "baserom.dol", 0x3DC128, 0x6C +.global lbl_803DF194 +lbl_803DF194: + .incbin "baserom.dol", 0x3DC194, 0x8C +.global lbl_803DF220 +lbl_803DF220: + .incbin "baserom.dol", 0x3DC220, 0x8C +.global lbl_803DF2AC +lbl_803DF2AC: + .incbin "baserom.dol", 0x3DC2AC, 0x7C +.global lbl_803DF328 +lbl_803DF328: + .incbin "baserom.dol", 0x3DC328, 0x20 +.global lbl_803DF348 +lbl_803DF348: + .incbin "baserom.dol", 0x3DC348, 0x70 +.global lbl_803DF3B8 +lbl_803DF3B8: + .incbin "baserom.dol", 0x3DC3B8, 0x70 +.global lbl_803DF428 +lbl_803DF428: + .incbin "baserom.dol", 0x3DC428, 0x10 +.global lbl_803DF438 +lbl_803DF438: + .incbin "baserom.dol", 0x3DC438, 0x10 +.global lbl_803DF448 +lbl_803DF448: + .incbin "baserom.dol", 0x3DC448, 0x50 +.global lbl_803DF498 +lbl_803DF498: + .incbin "baserom.dol", 0x3DC498, 0x50 +.global lbl_803DF4E8 +lbl_803DF4E8: + .incbin "baserom.dol", 0x3DC4E8, 0x10 +.global lbl_803DF4F8 +lbl_803DF4F8: + .incbin "baserom.dol", 0x3DC4F8, 0x88 +.global lbl_803DF580 +lbl_803DF580: + .incbin "baserom.dol", 0x3DC580, 0x84 +.global lbl_803DF604 +lbl_803DF604: + .incbin "baserom.dol", 0x3DC604, 0x84 +.global lbl_803DF688 +lbl_803DF688: + .incbin "baserom.dol", 0x3DC688, 0x6C +.global lbl_803DF6F4 +lbl_803DF6F4: + .incbin "baserom.dol", 0x3DC6F4, 0xC +.global lbl_803DF700 +lbl_803DF700: + .incbin "baserom.dol", 0x3DC700, 0x10 +.global lbl_803DF710 +lbl_803DF710: + .incbin "baserom.dol", 0x3DC710, 0x48 +.global lbl_803DF758 +lbl_803DF758: + .incbin "baserom.dol", 0x3DC758, 0x48 +.global lbl_803DF7A0 +lbl_803DF7A0: + .incbin "baserom.dol", 0x3DC7A0, 0x48 +.global lbl_803DF7E8 +lbl_803DF7E8: + .incbin "baserom.dol", 0x3DC7E8, 0x48 +.global lbl_803DF830 +lbl_803DF830: + .incbin "baserom.dol", 0x3DC830, 0x20 +.global lbl_803DF850 +lbl_803DF850: + .incbin "baserom.dol", 0x3DC850, 0x20 +.global lbl_803DF870 +lbl_803DF870: + .incbin "baserom.dol", 0x3DC870, 0x20 +.global lbl_803DF890 +lbl_803DF890: + .incbin "baserom.dol", 0x3DC890, 0x2CC +.global lbl_803DFB5C +lbl_803DFB5C: + .incbin "baserom.dol", 0x3DCB5C, 0x94 +.global lbl_803DFBF0 +lbl_803DFBF0: + .incbin "baserom.dol", 0x3DCBF0, 0x20 +.global lbl_803DFC10 +lbl_803DFC10: + .incbin "baserom.dol", 0x3DCC10, 0x2C +.global lbl_803DFC3C +lbl_803DFC3C: + .incbin "baserom.dol", 0x3DCC3C, 0x44 +.global lbl_803DFC80 +lbl_803DFC80: + .incbin "baserom.dol", 0x3DCC80, 0x20 +.global lbl_803DFCA0 +lbl_803DFCA0: + .incbin "baserom.dol", 0x3DCCA0, 0x20 +.global lbl_803DFCC0 +lbl_803DFCC0: + .incbin "baserom.dol", 0x3DCCC0, 0x24 +.global lbl_803DFCE4 +lbl_803DFCE4: + .incbin "baserom.dol", 0x3DCCE4, 0x24 +.global lbl_803DFD08 +lbl_803DFD08: + .incbin "baserom.dol", 0x3DCD08, 0x70 +.global lbl_803DFD78 +lbl_803DFD78: + .incbin "baserom.dol", 0x3DCD78, 0x88 +.global lbl_803DFE00 +lbl_803DFE00: + .incbin "baserom.dol", 0x3DCE00, 0x20 +.global lbl_803DFE20 +lbl_803DFE20: + .incbin "baserom.dol", 0x3DCE20, 0x20 +.global lbl_803DFE40 +lbl_803DFE40: + .incbin "baserom.dol", 0x3DCE40, 0x10 +.global lbl_803DFE50 +lbl_803DFE50: + .incbin "baserom.dol", 0x3DCE50, 0x20 +.global lbl_803DFE70 +lbl_803DFE70: + .incbin "baserom.dol", 0x3DCE70, 0x80 +.global lbl_803DFEF0 +lbl_803DFEF0: + .incbin "baserom.dol", 0x3DCEF0, 0x6C +.global lbl_803DFF5C +lbl_803DFF5C: + .incbin "baserom.dol", 0x3DCF5C, 0x24 +.global lbl_803DFF80 +lbl_803DFF80: + .incbin "baserom.dol", 0x3DCF80, 0x10 +.global lbl_803DFF90 +lbl_803DFF90: + .incbin "baserom.dol", 0x3DCF90, 0x74 +.global lbl_803E0004 +lbl_803E0004: + .incbin "baserom.dol", 0x3DD004, 0x258 +.global lbl_803E025C +lbl_803E025C: + .incbin "baserom.dol", 0x3DD25C, 0x4C +.global lbl_803E02A8 +lbl_803E02A8: + .incbin "baserom.dol", 0x3DD2A8, 0x20 +.global lbl_803E02C8 +lbl_803E02C8: + .incbin "baserom.dol", 0x3DD2C8, 0x70 +.global lbl_803E0338 +lbl_803E0338: + .incbin "baserom.dol", 0x3DD338, 0xC +.global lbl_803E0344 +lbl_803E0344: + .incbin "baserom.dol", 0x3DD344, 0xC +.global lbl_803E0350 +lbl_803E0350: + .incbin "baserom.dol", 0x3DD350, 0x2CC +.global lbl_803E061C +lbl_803E061C: + .incbin "baserom.dol", 0x3DD61C, 0xC +.global lbl_803E0628 +lbl_803E0628: + .incbin "baserom.dol", 0x3DD628, 0x88 +.global lbl_803E06B0 +lbl_803E06B0: + .incbin "baserom.dol", 0x3DD6B0, 0x2C +.global lbl_803E06DC +lbl_803E06DC: + .incbin "baserom.dol", 0x3DD6DC, 0x24 +.global lbl_803E0700 +lbl_803E0700: + .incbin "baserom.dol", 0x3DD700, 0x34 +.global lbl_803E0734 +lbl_803E0734: + .incbin "baserom.dol", 0x3DD734, 0xC +.global lbl_803E0740 +lbl_803E0740: + .incbin "baserom.dol", 0x3DD740, 0xC +.global lbl_803E074C +lbl_803E074C: + .incbin "baserom.dol", 0x3DD74C, 0xC +.global lbl_803E0758 +lbl_803E0758: + .incbin "baserom.dol", 0x3DD758, 0xC +.global lbl_803E0764 +lbl_803E0764: + .incbin "baserom.dol", 0x3DD764, 0xC +.global lbl_803E0770 +lbl_803E0770: + .incbin "baserom.dol", 0x3DD770, 0xC +.global lbl_803E077C +lbl_803E077C: + .incbin "baserom.dol", 0x3DD77C, 0xC +.global lbl_803E0788 +lbl_803E0788: + .incbin "baserom.dol", 0x3DD788, 0xC +.global lbl_803E0794 +lbl_803E0794: + .incbin "baserom.dol", 0x3DD794, 0xC +.global lbl_803E07A0 +lbl_803E07A0: + .incbin "baserom.dol", 0x3DD7A0, 0x30 +.global lbl_803E07D0 +lbl_803E07D0: + .incbin "baserom.dol", 0x3DD7D0, 0xC +.global lbl_803E07DC +lbl_803E07DC: + .incbin "baserom.dol", 0x3DD7DC, 0xC +.global lbl_803E07E8 +lbl_803E07E8: + .incbin "baserom.dol", 0x3DD7E8, 0xC +.global lbl_803E07F4 +lbl_803E07F4: + .incbin "baserom.dol", 0x3DD7F4, 0xC +.global lbl_803E0800 +lbl_803E0800: + .incbin "baserom.dol", 0x3DD800, 0x2CC +.global lbl_803E0ACC +lbl_803E0ACC: + .incbin "baserom.dol", 0x3DDACC, 0x2C +.global lbl_803E0AF8 +lbl_803E0AF8: + .incbin "baserom.dol", 0x3DDAF8, 0x94 +.global lbl_803E0B8C +lbl_803E0B8C: + .incbin "baserom.dol", 0x3DDB8C, 0xC +.global lbl_803E0B98 +lbl_803E0B98: + .incbin "baserom.dol", 0x3DDB98, 0x48 +.global lbl_803E0BE0 +lbl_803E0BE0: + .incbin "baserom.dol", 0x3DDBE0, 0x18 +.global lbl_803E0BF8 +lbl_803E0BF8: + .incbin "baserom.dol", 0x3DDBF8, 0x70 +.global lbl_803E0C68 +lbl_803E0C68: + .incbin "baserom.dol", 0x3DDC68, 0x78 +.global lbl_803E0CE0 +lbl_803E0CE0: + .incbin "baserom.dol", 0x3DDCE0, 0x20 +.global lbl_803E0D00 +lbl_803E0D00: + .incbin "baserom.dol", 0x3DDD00, 0x70 +.global lbl_803E0D70 +lbl_803E0D70: + .incbin "baserom.dol", 0x3DDD70, 0x70 +.global lbl_803E0DE0 +lbl_803E0DE0: + .incbin "baserom.dol", 0x3DDDE0, 0x2D0 +.global lbl_803E10B0 +lbl_803E10B0: + .incbin "baserom.dol", 0x3DE0B0, 0xC +.global lbl_803E10BC +lbl_803E10BC: + .incbin "baserom.dol", 0x3DE0BC, 0xC +.global lbl_803E10C8 +lbl_803E10C8: + .incbin "baserom.dol", 0x3DE0C8, 0x10 +.global lbl_803E10D8 +lbl_803E10D8: + .incbin "baserom.dol", 0x3DE0D8, 0x4C +.global lbl_803E1124 +lbl_803E1124: + .incbin "baserom.dol", 0x3DE124, 0x4C +.global lbl_803E1170 +lbl_803E1170: + .incbin "baserom.dol", 0x3DE170, 0x4C +.global lbl_803E11BC +lbl_803E11BC: + .incbin "baserom.dol", 0x3DE1BC, 0x4C +.global lbl_803E1208 +lbl_803E1208: + .incbin "baserom.dol", 0x3DE208, 0x4C +.global lbl_803E1254 +lbl_803E1254: + .incbin "baserom.dol", 0x3DE254, 0x50 +.global lbl_803E12A4 +lbl_803E12A4: + .incbin "baserom.dol", 0x3DE2A4, 0x54 +.global lbl_803E12F8 +lbl_803E12F8: + .incbin "baserom.dol", 0x3DE2F8, 0x20 +.global lbl_803E1318 +lbl_803E1318: + .incbin "baserom.dol", 0x3DE318, 0x38 +.global lbl_803E1350 +lbl_803E1350: + .incbin "baserom.dol", 0x3DE350, 0x20 +.global lbl_803E1370 +lbl_803E1370: + .incbin "baserom.dol", 0x3DE370, 0x38 +.global lbl_803E13A8 +lbl_803E13A8: + .incbin "baserom.dol", 0x3DE3A8, 0x38 +.global lbl_803E13E0 +lbl_803E13E0: + .incbin "baserom.dol", 0x3DE3E0, 0x38 +.global lbl_803E1418 +lbl_803E1418: + .incbin "baserom.dol", 0x3DE418, 0x38 +.global lbl_803E1450 +lbl_803E1450: + .incbin "baserom.dol", 0x3DE450, 0x38 +.global lbl_803E1488 +lbl_803E1488: + .incbin "baserom.dol", 0x3DE488, 0x38 +.global lbl_803E14C0 +lbl_803E14C0: + .incbin "baserom.dol", 0x3DE4C0, 0x18 +.global lbl_803E14D8 +lbl_803E14D8: + .incbin "baserom.dol", 0x3DE4D8, 0x18 +.global lbl_803E14F0 +lbl_803E14F0: + .incbin "baserom.dol", 0x3DE4F0, 0x4C +.global lbl_803E153C +lbl_803E153C: + .incbin "baserom.dol", 0x3DE53C, 0x50 +.global lbl_803E158C +lbl_803E158C: + .incbin "baserom.dol", 0x3DE58C, 0x50 +.global lbl_803E15DC +lbl_803E15DC: + .incbin "baserom.dol", 0x3DE5DC, 0x54 +.global lbl_803E1630 +lbl_803E1630: + .incbin "baserom.dol", 0x3DE630, 0x4C +.global lbl_803E167C +lbl_803E167C: + .incbin "baserom.dol", 0x3DE67C, 0x50 +.global lbl_803E16CC +lbl_803E16CC: + .incbin "baserom.dol", 0x3DE6CC, 0x4C +.global lbl_803E1718 +lbl_803E1718: + .incbin "baserom.dol", 0x3DE718, 0x38 +.global lbl_803E1750 +lbl_803E1750: + .incbin "baserom.dol", 0x3DE750, 0x3C +.global lbl_803E178C +lbl_803E178C: + .incbin "baserom.dol", 0x3DE78C, 0x3C +.global lbl_803E17C8 +lbl_803E17C8: + .incbin "baserom.dol", 0x3DE7C8, 0x38 +.global lbl_803E1800 +lbl_803E1800: + .incbin "baserom.dol", 0x3DE800, 0x78 +.global lbl_803E1878 +lbl_803E1878: + .incbin "baserom.dol", 0x3DE878, 0x38 +.global lbl_803E18B0 +lbl_803E18B0: + .incbin "baserom.dol", 0x3DE8B0, 0x38 +.global lbl_803E18E8 +lbl_803E18E8: + .incbin "baserom.dol", 0x3DE8E8, 0xC +.global lbl_803E18F4 +lbl_803E18F4: + .incbin "baserom.dol", 0x3DE8F4, 0xC +.global lbl_803E1900 +lbl_803E1900: + .incbin "baserom.dol", 0x3DE900, 0xC +.global lbl_803E190C +lbl_803E190C: + .incbin "baserom.dol", 0x3DE90C, 0xC +.global lbl_803E1918 +lbl_803E1918: + .incbin "baserom.dol", 0x3DE918, 0x2CC +.global lbl_803E1BE4 +lbl_803E1BE4: + .incbin "baserom.dol", 0x3DEBE4, 0xA4 +.global lbl_803E1C88 +lbl_803E1C88: + .incbin "baserom.dol", 0x3DEC88, 0x2CC +.global lbl_803E1F54 +lbl_803E1F54: + .incbin "baserom.dol", 0x3DEF54, 0x24 +.global lbl_803E1F78 +lbl_803E1F78: + .incbin "baserom.dol", 0x3DEF78, 0x38 +.global lbl_803E1FB0 +lbl_803E1FB0: + .incbin "baserom.dol", 0x3DEFB0, 0x38 +.global lbl_803E1FE8 +lbl_803E1FE8: + .incbin "baserom.dol", 0x3DEFE8, 0x20 +.global lbl_803E2008 +lbl_803E2008: + .incbin "baserom.dol", 0x3DF008, 0x38 +.global lbl_803E2040 +lbl_803E2040: + .incbin "baserom.dol", 0x3DF040, 0x38 +.global lbl_803E2078 +lbl_803E2078: + .incbin "baserom.dol", 0x3DF078, 0x40 +.global lbl_803E20B8 +lbl_803E20B8: + .incbin "baserom.dol", 0x3DF0B8, 0xC +.global lbl_803E20C4 +lbl_803E20C4: + .incbin "baserom.dol", 0x3DF0C4, 0x2CC +.global lbl_803E2390 +lbl_803E2390: + .incbin "baserom.dol", 0x3DF390, 0x38 +.global lbl_803E23C8 +lbl_803E23C8: + .incbin "baserom.dol", 0x3DF3C8, 0x70 +.global lbl_803E2438 +lbl_803E2438: + .incbin "baserom.dol", 0x3DF438, 0x70 +.global lbl_803E24A8 +lbl_803E24A8: + .incbin "baserom.dol", 0x3DF4A8, 0x38 +.global lbl_803E24E0 +lbl_803E24E0: + .incbin "baserom.dol", 0x3DF4E0, 0x2D0 +.global lbl_803E27B0 +lbl_803E27B0: + .incbin "baserom.dol", 0x3DF7B0, 0x20 +.global lbl_803E27D0 +lbl_803E27D0: + .incbin "baserom.dol", 0x3DF7D0, 0x38 +.global lbl_803E2808 +lbl_803E2808: + .incbin "baserom.dol", 0x3DF808, 0x70 +.global lbl_803E2878 +lbl_803E2878: + .incbin "baserom.dol", 0x3DF878, 0x2D0 +.global lbl_803E2B48 +lbl_803E2B48: + .incbin "baserom.dol", 0x3DFB48, 0x20 +.global lbl_803E2B68 +lbl_803E2B68: + .incbin "baserom.dol", 0x3DFB68, 0x6C +.global lbl_803E2BD4 +lbl_803E2BD4: + .incbin "baserom.dol", 0x3DFBD4, 0xCC +.global lbl_803E2CA0 +lbl_803E2CA0: + .incbin "baserom.dol", 0x3DFCA0, 0x68 +.global lbl_803E2D08 +lbl_803E2D08: + .incbin "baserom.dol", 0x3DFD08, 0x20 +.global lbl_803E2D28 +lbl_803E2D28: + .incbin "baserom.dol", 0x3DFD28, 0x2D0 +.global lbl_803E2FF8 +lbl_803E2FF8: + .incbin "baserom.dol", 0x3DFFF8, 0xC +.global lbl_803E3004 +lbl_803E3004: + .incbin "baserom.dol", 0x3E0004, 0x2D4 +.global lbl_803E32D8 +lbl_803E32D8: + .incbin "baserom.dol", 0x3E02D8, 0x70 +.global lbl_803E3348 +lbl_803E3348: + .incbin "baserom.dol", 0x3E0348, 0x2D0 +.global lbl_803E3618 +lbl_803E3618: + .incbin "baserom.dol", 0x3E0618, 0x20 +.global lbl_803E3638 +lbl_803E3638: + .incbin "baserom.dol", 0x3E0638, 0x70 +.global lbl_803E36A8 +lbl_803E36A8: + .incbin "baserom.dol", 0x3E06A8, 0x2E0 +.global lbl_803E3988 +lbl_803E3988: + .incbin "baserom.dol", 0x3E0988, 0x40 +.global lbl_803E39C8 +lbl_803E39C8: + .incbin "baserom.dol", 0x3E09C8, 0x90 +.global lbl_803E3A58 +lbl_803E3A58: + .incbin "baserom.dol", 0x3E0A58, 0x70 +.global lbl_803E3AC8 +lbl_803E3AC8: + .incbin "baserom.dol", 0x3E0AC8, 0x10 +.global lbl_803E3AD8 +lbl_803E3AD8: + .incbin "baserom.dol", 0x3E0AD8, 0x2D0 +.global lbl_803E3DA8 +lbl_803E3DA8: + .incbin "baserom.dol", 0x3E0DA8, 0x80 +.global lbl_803E3E28 +lbl_803E3E28: + .incbin "baserom.dol", 0x3E0E28, 0x20 +.global lbl_803E3E48 +lbl_803E3E48: + .incbin "baserom.dol", 0x3E0E48, 0x38 +.global lbl_803E3E80 +lbl_803E3E80: + .incbin "baserom.dol", 0x3E0E80, 0x80 +.global lbl_803E3F00 +lbl_803E3F00: + .incbin "baserom.dol", 0x3E0F00, 0x80 +.global lbl_803E3F80 +lbl_803E3F80: + .incbin "baserom.dol", 0x3E0F80, 0x68 +.global lbl_803E3FE8 +lbl_803E3FE8: + .incbin "baserom.dol", 0x3E0FE8, 0x10 +.global lbl_803E3FF8 +lbl_803E3FF8: + .incbin "baserom.dol", 0x3E0FF8, 0x10 +.global lbl_803E4008 +lbl_803E4008: + .incbin "baserom.dol", 0x3E1008, 0x10 +.global lbl_803E4018 +lbl_803E4018: + .incbin "baserom.dol", 0x3E1018, 0x2D0 +.global lbl_803E42E8 +lbl_803E42E8: + .incbin "baserom.dol", 0x3E12E8, 0x48 +.global lbl_803E4330 +lbl_803E4330: + .incbin "baserom.dol", 0x3E1330, 0x70 +.global lbl_803E43A0 +lbl_803E43A0: + .incbin "baserom.dol", 0x3E13A0, 0x38 +.global lbl_803E43D8 +lbl_803E43D8: + .incbin "baserom.dol", 0x3E13D8, 0x28 +.global lbl_803E4400 +lbl_803E4400: + .incbin "baserom.dol", 0x3E1400, 0x70 +.global lbl_803E4470 +lbl_803E4470: + .incbin "baserom.dol", 0x3E1470, 0x1C +.global lbl_803E448C +lbl_803E448C: + .incbin "baserom.dol", 0x3E148C, 0x1C +.global lbl_803E44A8 +lbl_803E44A8: + .incbin "baserom.dol", 0x3E14A8, 0x20 +.global lbl_803E44C8 +lbl_803E44C8: + .incbin "baserom.dol", 0x3E14C8, 0x44 +.global lbl_803E450C +lbl_803E450C: + .incbin "baserom.dol", 0x3E150C, 0x44 +.global lbl_803E4550 +lbl_803E4550: + .incbin "baserom.dol", 0x3E1550, 0x44 +.global lbl_803E4594 +lbl_803E4594: + .incbin "baserom.dol", 0x3E1594, 0x44 +.global lbl_803E45D8 +lbl_803E45D8: + .incbin "baserom.dol", 0x3E15D8, 0x70 +.global lbl_803E4648 +lbl_803E4648: + .incbin "baserom.dol", 0x3E1648, 0x80 +.global lbl_803E46C8 +lbl_803E46C8: + .incbin "baserom.dol", 0x3E16C8, 0x20 +.global lbl_803E46E8 +lbl_803E46E8: + .incbin "baserom.dol", 0x3E16E8, 0x20 +.global lbl_803E4708 +lbl_803E4708: + .incbin "baserom.dol", 0x3E1708, 0x20 +.global lbl_803E4728 +lbl_803E4728: + .incbin "baserom.dol", 0x3E1728, 0x2CC +.global lbl_803E49F4 +lbl_803E49F4: + .incbin "baserom.dol", 0x3E19F4, 0x60 +.global lbl_803E4A54 +lbl_803E4A54: + .incbin "baserom.dol", 0x3E1A54, 0xC4 +.global lbl_803E4B18 +lbl_803E4B18: + .incbin "baserom.dol", 0x3E1B18, 0x84 +.global lbl_803E4B9C +lbl_803E4B9C: + .incbin "baserom.dol", 0x3E1B9C, 0x44 +.global lbl_803E4BE0 +lbl_803E4BE0: + .incbin "baserom.dol", 0x3E1BE0, 0x84 +.global lbl_803E4C64 +lbl_803E4C64: + .incbin "baserom.dol", 0x3E1C64, 0x94 +.global lbl_803E4CF8 +lbl_803E4CF8: + .incbin "baserom.dol", 0x3E1CF8, 0x10 +.global lbl_803E4D08 +lbl_803E4D08: + .incbin "baserom.dol", 0x3E1D08, 0x6C +.global lbl_803E4D74 +lbl_803E4D74: + .incbin "baserom.dol", 0x3E1D74, 0x6C +.global lbl_803E4DE0 +lbl_803E4DE0: + .incbin "baserom.dol", 0x3E1DE0, 0xA8 +.global lbl_803E4E88 +lbl_803E4E88: + .incbin "baserom.dol", 0x3E1E88, 0x2CC +.global lbl_803E5154 +lbl_803E5154: + .incbin "baserom.dol", 0x3E2154, 0x74 +.global lbl_803E51C8 +lbl_803E51C8: + .incbin "baserom.dol", 0x3E21C8, 0x20 +.global lbl_803E51E8 +lbl_803E51E8: + .incbin "baserom.dol", 0x3E21E8, 0x70 +.global lbl_803E5258 +lbl_803E5258: + .incbin "baserom.dol", 0x3E2258, 0xC +.global lbl_803E5264 +lbl_803E5264: + .incbin "baserom.dol", 0x3E2264, 0xC +.global lbl_803E5270 +lbl_803E5270: + .incbin "baserom.dol", 0x3E2270, 0xC +.global lbl_803E527C +lbl_803E527C: + .incbin "baserom.dol", 0x3E227C, 0xC +.global lbl_803E5288 +lbl_803E5288: + .incbin "baserom.dol", 0x3E2288, 0xC +.global lbl_803E5294 +lbl_803E5294: + .incbin "baserom.dol", 0x3E2294, 0xC +.global lbl_803E52A0 +lbl_803E52A0: + .incbin "baserom.dol", 0x3E22A0, 0x10 +.global lbl_803E52B0 +lbl_803E52B0: + .incbin "baserom.dol", 0x3E22B0, 0x48 +.global lbl_803E52F8 +lbl_803E52F8: + .incbin "baserom.dol", 0x3E22F8, 0x20 +.global lbl_803E5318 +lbl_803E5318: + .incbin "baserom.dol", 0x3E2318, 0x70 +.global lbl_803E5388 +lbl_803E5388: + .incbin "baserom.dol", 0x3E2388, 0x2CC +.global lbl_803E5654 +lbl_803E5654: + .incbin "baserom.dol", 0x3E2654, 0xC4 +.global lbl_803E5718 +lbl_803E5718: + .incbin "baserom.dol", 0x3E2718, 0x10 +.global lbl_803E5728 +lbl_803E5728: + .incbin "baserom.dol", 0x3E2728, 0x20 +.global lbl_803E5748 +lbl_803E5748: + .incbin "baserom.dol", 0x3E2748, 0x10 +.global lbl_803E5758 +lbl_803E5758: + .incbin "baserom.dol", 0x3E2758, 0x6C +.global lbl_803E57C4 +lbl_803E57C4: + .incbin "baserom.dol", 0x3E27C4, 0x6C +.global lbl_803E5830 +lbl_803E5830: + .incbin "baserom.dol", 0x3E2830, 0x70 +.global lbl_803E58A0 +lbl_803E58A0: + .incbin "baserom.dol", 0x3E28A0, 0x20 +.global lbl_803E58C0 +lbl_803E58C0: + .incbin "baserom.dol", 0x3E28C0, 0x70 +.global lbl_803E5930 +lbl_803E5930: + .incbin "baserom.dol", 0x3E2930, 0xC +.global lbl_803E593C +lbl_803E593C: + .incbin "baserom.dol", 0x3E293C, 0xC +.global lbl_803E5948 +lbl_803E5948: + .incbin "baserom.dol", 0x3E2948, 0xC +.global lbl_803E5954 +lbl_803E5954: + .incbin "baserom.dol", 0x3E2954, 0x2CC +.global lbl_803E5C20 +lbl_803E5C20: + .incbin "baserom.dol", 0x3E2C20, 0x20 +.global lbl_803E5C40 +lbl_803E5C40: + .incbin "baserom.dol", 0x3E2C40, 0x20 +.global lbl_803E5C60 +lbl_803E5C60: + .incbin "baserom.dol", 0x3E2C60, 0x20 +.global lbl_803E5C80 +lbl_803E5C80: + .incbin "baserom.dol", 0x3E2C80, 0x20 +.global lbl_803E5CA0 +lbl_803E5CA0: + .incbin "baserom.dol", 0x3E2CA0, 0x20 +.global lbl_803E5CC0 +lbl_803E5CC0: + .incbin "baserom.dol", 0x3E2CC0, 0x20 +.global lbl_803E5CE0 +lbl_803E5CE0: + .incbin "baserom.dol", 0x3E2CE0, 0x2CC +.global lbl_803E5FAC +lbl_803E5FAC: + .incbin "baserom.dol", 0x3E2FAC, 0x48 +.global lbl_803E5FF4 +lbl_803E5FF4: + .incbin "baserom.dol", 0x3E2FF4, 0x80 +.global lbl_803E6074 +lbl_803E6074: + .incbin "baserom.dol", 0x3E3074, 0x294 +.global lbl_803E6308 +lbl_803E6308: + .incbin "baserom.dol", 0x3E3308, 0x6C +.global lbl_803E6374 +lbl_803E6374: + .incbin "baserom.dol", 0x3E3374, 0x24 +.global lbl_803E6398 +lbl_803E6398: + .incbin "baserom.dol", 0x3E3398, 0x70 +.global lbl_803E6408 +lbl_803E6408: + .incbin "baserom.dol", 0x3E3408, 0x2CC +.global lbl_803E66D4 +lbl_803E66D4: + .incbin "baserom.dol", 0x3E36D4, 0x84 +.global lbl_803E6758 +lbl_803E6758: + .incbin "baserom.dol", 0x3E3758, 0x20 +.global lbl_803E6778 +lbl_803E6778: + .incbin "baserom.dol", 0x3E3778, 0x70 +.global lbl_803E67E8 +lbl_803E67E8: + .incbin "baserom.dol", 0x3E37E8, 0x14 +.global lbl_803E67FC +lbl_803E67FC: + .incbin "baserom.dol", 0x3E37FC, 0xC +.global lbl_803E6808 +lbl_803E6808: + .incbin "baserom.dol", 0x3E3808, 0xC +.global lbl_803E6814 +lbl_803E6814: + .incbin "baserom.dol", 0x3E3814, 0xC +.global lbl_803E6820 +lbl_803E6820: + .incbin "baserom.dol", 0x3E3820, 0xC +.global lbl_803E682C +lbl_803E682C: + .incbin "baserom.dol", 0x3E382C, 0xC +.global lbl_803E6838 +lbl_803E6838: + .incbin "baserom.dol", 0x3E3838, 0xC +.global lbl_803E6844 +lbl_803E6844: + .incbin "baserom.dol", 0x3E3844, 0xC +.global lbl_803E6850 +lbl_803E6850: + .incbin "baserom.dol", 0x3E3850, 0xC +.global lbl_803E685C +lbl_803E685C: + .incbin "baserom.dol", 0x3E385C, 0x2CC +.global lbl_803E6B28 +lbl_803E6B28: + .incbin "baserom.dol", 0x3E3B28, 0x70 +.global lbl_803E6B98 +lbl_803E6B98: + .incbin "baserom.dol", 0x3E3B98, 0x18 +.global lbl_803E6BB0 +lbl_803E6BB0: + .incbin "baserom.dol", 0x3E3BB0, 0x20 +.global lbl_803E6BD0 +lbl_803E6BD0: + .incbin "baserom.dol", 0x3E3BD0, 0x10 +.global lbl_803E6BE0 +lbl_803E6BE0: + .incbin "baserom.dol", 0x3E3BE0, 0x2D0 +.global lbl_803E6EB0 +lbl_803E6EB0: + .incbin "baserom.dol", 0x3E3EB0, 0x54 +.global lbl_803E6F04 +lbl_803E6F04: + .incbin "baserom.dol", 0x3E3F04, 0x60 +.global lbl_803E6F64 +lbl_803E6F64: + .incbin "baserom.dol", 0x3E3F64, 0x60 +.global lbl_803E6FC4 +lbl_803E6FC4: + .incbin "baserom.dol", 0x3E3FC4, 0x14 +.global lbl_803E6FD8 +lbl_803E6FD8: + .incbin "baserom.dol", 0x3E3FD8, 0x70 +.global lbl_803E7048 +lbl_803E7048: + .incbin "baserom.dol", 0x3E4048, 0x20 +.global lbl_803E7068 +lbl_803E7068: + .incbin "baserom.dol", 0x3E4068, 0x20 +.global lbl_803E7088 +lbl_803E7088: + .incbin "baserom.dol", 0x3E4088, 0x48 +.global lbl_803E70D0 +lbl_803E70D0: + .incbin "baserom.dol", 0x3E40D0, 0x18 +.global lbl_803E70E8 +lbl_803E70E8: + .incbin "baserom.dol", 0x3E40E8, 0x70 +.global lbl_803E7158 +lbl_803E7158: + .incbin "baserom.dol", 0x3E4158, 0x78 +.global lbl_803E71D0 +lbl_803E71D0: + .incbin "baserom.dol", 0x3E41D0, 0x1C +.global lbl_803E71EC +lbl_803E71EC: + .incbin "baserom.dol", 0x3E41EC, 0x84 +.global lbl_803E7270 +lbl_803E7270: + .incbin "baserom.dol", 0x3E4270, 0x34 +.global lbl_803E72A4 +lbl_803E72A4: + .incbin "baserom.dol", 0x3E42A4, 0xAC +.global lbl_803E7350 +lbl_803E7350: + .incbin "baserom.dol", 0x3E4350, 0x2CC +.global lbl_803E761C +lbl_803E761C: + .incbin "baserom.dol", 0x3E461C, 0x60 +.global lbl_803E767C +lbl_803E767C: + .incbin "baserom.dol", 0x3E467C, 0xC4 +.global lbl_803E7740 +lbl_803E7740: + .incbin "baserom.dol", 0x3E4740, 0xC +.global lbl_803E774C +lbl_803E774C: + .incbin "baserom.dol", 0x3E474C, 0x2CC +.global lbl_803E7A18 +lbl_803E7A18: + .incbin "baserom.dol", 0x3E4A18, 0x58 +.global lbl_803E7A70 +lbl_803E7A70: + .incbin "baserom.dol", 0x3E4A70, 0x70 +.global lbl_803E7AE0 +lbl_803E7AE0: + .incbin "baserom.dol", 0x3E4AE0, 0x2E0 +.global lbl_803E7DC0 +lbl_803E7DC0: + .incbin "baserom.dol", 0x3E4DC0, 0x60 +.global lbl_803E7E20 +lbl_803E7E20: + .incbin "baserom.dol", 0x3E4E20, 0xB0 +.global lbl_803E7ED0 +lbl_803E7ED0: + .incbin "baserom.dol", 0x3E4ED0, 0x88 +.global lbl_803E7F58 +lbl_803E7F58: + .incbin "baserom.dol", 0x3E4F58, 0x84 +.global lbl_803E7FDC +lbl_803E7FDC: + .incbin "baserom.dol", 0x3E4FDC, 0x74 +.global lbl_803E8050 +lbl_803E8050: + .incbin "baserom.dol", 0x3E5050, 0x70 +.global lbl_803E80C0 +lbl_803E80C0: + .incbin "baserom.dol", 0x3E50C0, 0x90 +.global lbl_803E8150 +lbl_803E8150: + .incbin "baserom.dol", 0x3E5150, 0x28 +.global lbl_803E8178 +lbl_803E8178: + .incbin "baserom.dol", 0x3E5178, 0x28 +.global lbl_803E81A0 +lbl_803E81A0: + .incbin "baserom.dol", 0x3E51A0, 0x28 +.global lbl_803E81C8 +lbl_803E81C8: + .incbin "baserom.dol", 0x3E51C8, 0xC +.global lbl_803E81D4 +lbl_803E81D4: + .incbin "baserom.dol", 0x3E51D4, 0xC +.global lbl_803E81E0 +lbl_803E81E0: + .incbin "baserom.dol", 0x3E51E0, 0xC +.global lbl_803E81EC +lbl_803E81EC: + .incbin "baserom.dol", 0x3E51EC, 0xC +.global lbl_803E81F8 +lbl_803E81F8: + .incbin "baserom.dol", 0x3E51F8, 0xC +.global lbl_803E8204 +lbl_803E8204: + .incbin "baserom.dol", 0x3E5204, 0xC +.global lbl_803E8210 +lbl_803E8210: + .incbin "baserom.dol", 0x3E5210, 0xC +.global lbl_803E821C +lbl_803E821C: + .incbin "baserom.dol", 0x3E521C, 0xC +.global lbl_803E8228 +lbl_803E8228: + .incbin "baserom.dol", 0x3E5228, 0xC +.global lbl_803E8234 +lbl_803E8234: + .incbin "baserom.dol", 0x3E5234, 0xC +.global lbl_803E8240 +lbl_803E8240: + .incbin "baserom.dol", 0x3E5240, 0x2CC +.global lbl_803E850C +lbl_803E850C: + .incbin "baserom.dol", 0x3E550C, 0x4C +.global lbl_803E8558 +lbl_803E8558: + .incbin "baserom.dol", 0x3E5558, 0x20 +.global lbl_803E8578 +lbl_803E8578: + .incbin "baserom.dol", 0x3E5578, 0x70 +.global lbl_803E85E8 +lbl_803E85E8: + .incbin "baserom.dol", 0x3E55E8, 0x88 +.global lbl_803E8670 +lbl_803E8670: + .incbin "baserom.dol", 0x3E5670, 0x78 +.global lbl_803E86E8 +lbl_803E86E8: + .incbin "baserom.dol", 0x3E56E8, 0x20 +.global lbl_803E8708 +lbl_803E8708: + .incbin "baserom.dol", 0x3E5708, 0xC +.global lbl_803E8714 +lbl_803E8714: + .incbin "baserom.dol", 0x3E5714, 0xC +.global lbl_803E8720 +lbl_803E8720: + .incbin "baserom.dol", 0x3E5720, 0xB8 +.global lbl_803E87D8 +lbl_803E87D8: + .incbin "baserom.dol", 0x3E57D8, 0x54 +.global lbl_803E882C +lbl_803E882C: + .incbin "baserom.dol", 0x3E582C, 0x38 +.global lbl_803E8864 +lbl_803E8864: + .incbin "baserom.dol", 0x3E5864, 0x44 +.global lbl_803E88A8 +lbl_803E88A8: + .incbin "baserom.dol", 0x3E58A8, 0x2D0 +.global lbl_803E8B78 +lbl_803E8B78: + .incbin "baserom.dol", 0x3E5B78, 0x54 +.global lbl_803E8BCC +lbl_803E8BCC: + .incbin "baserom.dol", 0x3E5BCC, 0x4C +.global lbl_803E8C18 +lbl_803E8C18: + .incbin "baserom.dol", 0x3E5C18, 0x28 +.global lbl_803E8C40 +lbl_803E8C40: + .incbin "baserom.dol", 0x3E5C40, 0x70 +.global lbl_803E8CB0 +lbl_803E8CB0: + .incbin "baserom.dol", 0x3E5CB0, 0x88 +.global lbl_803E8D38 +lbl_803E8D38: + .incbin "baserom.dol", 0x3E5D38, 0x34 +.global lbl_803E8D6C +lbl_803E8D6C: + .incbin "baserom.dol", 0x3E5D6C, 0x34 +.global lbl_803E8DA0 +lbl_803E8DA0: + .incbin "baserom.dol", 0x3E5DA0, 0xC +.global lbl_803E8DAC +lbl_803E8DAC: + .incbin "baserom.dol", 0x3E5DAC, 0xC +.global lbl_803E8DB8 +lbl_803E8DB8: + .incbin "baserom.dol", 0x3E5DB8, 0x44 +.global lbl_803E8DFC +lbl_803E8DFC: + .incbin "baserom.dol", 0x3E5DFC, 0x44 +.global lbl_803E8E40 +lbl_803E8E40: + .incbin "baserom.dol", 0x3E5E40, 0xC +.global lbl_803E8E4C +lbl_803E8E4C: + .incbin "baserom.dol", 0x3E5E4C, 0x2CC +.global lbl_803E9118 +lbl_803E9118: + .incbin "baserom.dol", 0x3E6118, 0x80 +.global lbl_803E9198 +lbl_803E9198: + .incbin "baserom.dol", 0x3E6198, 0xC +.global lbl_803E91A4 +lbl_803E91A4: + .incbin "baserom.dol", 0x3E61A4, 0xC +.global lbl_803E91B0 +lbl_803E91B0: + .incbin "baserom.dol", 0x3E61B0, 0xC +.global lbl_803E91BC +lbl_803E91BC: + .incbin "baserom.dol", 0x3E61BC, 0xC +.global lbl_803E91C8 +lbl_803E91C8: + .incbin "baserom.dol", 0x3E61C8, 0xC +.global lbl_803E91D4 +lbl_803E91D4: + .incbin "baserom.dol", 0x3E61D4, 0xC +.global lbl_803E91E0 +lbl_803E91E0: + .incbin "baserom.dol", 0x3E61E0, 0xC +.global lbl_803E91EC +lbl_803E91EC: + .incbin "baserom.dol", 0x3E61EC, 0xC +.global lbl_803E91F8 +lbl_803E91F8: + .incbin "baserom.dol", 0x3E61F8, 0xC +.global lbl_803E9204 +lbl_803E9204: + .incbin "baserom.dol", 0x3E6204, 0xC +.global lbl_803E9210 +lbl_803E9210: + .incbin "baserom.dol", 0x3E6210, 0xC +.global lbl_803E921C +lbl_803E921C: + .incbin "baserom.dol", 0x3E621C, 0xC +.global lbl_803E9228 +lbl_803E9228: + .incbin "baserom.dol", 0x3E6228, 0xC +.global lbl_803E9234 +lbl_803E9234: + .incbin "baserom.dol", 0x3E6234, 0xC +.global lbl_803E9240 +lbl_803E9240: + .incbin "baserom.dol", 0x3E6240, 0xC +.global lbl_803E924C +lbl_803E924C: + .incbin "baserom.dol", 0x3E624C, 0xC +.global lbl_803E9258 +lbl_803E9258: + .incbin "baserom.dol", 0x3E6258, 0x2CC +.global lbl_803E9524 +lbl_803E9524: + .incbin "baserom.dol", 0x3E6524, 0x80 +.global lbl_803E95A4 +lbl_803E95A4: + .incbin "baserom.dol", 0x3E65A4, 0xAC +.global lbl_803E9650 +lbl_803E9650: + .incbin "baserom.dol", 0x3E6650, 0x38 +.global lbl_803E9688 +lbl_803E9688: + .incbin "baserom.dol", 0x3E6688, 0x38 +.global lbl_803E96C0 +lbl_803E96C0: + .incbin "baserom.dol", 0x3E66C0, 0x2D0 +.global lbl_803E9990 +lbl_803E9990: + .incbin "baserom.dol", 0x3E6990, 0x70 +.global lbl_803E9A00 +lbl_803E9A00: + .incbin "baserom.dol", 0x3E6A00, 0x10 +.global lbl_803E9A10 +lbl_803E9A10: + .incbin "baserom.dol", 0x3E6A10, 0xC +.global lbl_803E9A1C +lbl_803E9A1C: + .incbin "baserom.dol", 0x3E6A1C, 0xC +.global lbl_803E9A28 +lbl_803E9A28: + .incbin "baserom.dol", 0x3E6A28, 0xC +.global lbl_803E9A34 +lbl_803E9A34: + .incbin "baserom.dol", 0x3E6A34, 0xC +.global lbl_803E9A40 +lbl_803E9A40: + .incbin "baserom.dol", 0x3E6A40, 0x2D0 +.global lbl_803E9D10 +lbl_803E9D10: + .incbin "baserom.dol", 0x3E6D10, 0x70 +.global lbl_803E9D80 +lbl_803E9D80: + .incbin "baserom.dol", 0x3E6D80, 0x78 +.global lbl_803E9DF8 +lbl_803E9DF8: + .incbin "baserom.dol", 0x3E6DF8, 0xC +.global lbl_803E9E04 +lbl_803E9E04: + .incbin "baserom.dol", 0x3E6E04, 0xC +.global lbl_803E9E10 +lbl_803E9E10: + .incbin "baserom.dol", 0x3E6E10, 0x2D0 +.global lbl_803EA0E0 +lbl_803EA0E0: + .incbin "baserom.dol", 0x3E70E0, 0x10 +.global lbl_803EA0F0 +lbl_803EA0F0: + .incbin "baserom.dol", 0x3E70F0, 0x2D0 +.global lbl_803EA3C0 +lbl_803EA3C0: + .incbin "baserom.dol", 0x3E73C0, 0x1C +.global lbl_803EA3DC +lbl_803EA3DC: + .incbin "baserom.dol", 0x3E73DC, 0x34 +.global lbl_803EA410 +lbl_803EA410: + .incbin "baserom.dol", 0x3E7410, 0x380 +.global lbl_803EA790 +lbl_803EA790: + .incbin "baserom.dol", 0x3E7790, 0x10 +.global lbl_803EA7A0 +lbl_803EA7A0: + .incbin "baserom.dol", 0x3E77A0, 0xC +.global lbl_803EA7AC +lbl_803EA7AC: + .incbin "baserom.dol", 0x3E77AC, 0xC +.global lbl_803EA7B8 +lbl_803EA7B8: + .incbin "baserom.dol", 0x3E77B8, 0xC +.global lbl_803EA7C4 +lbl_803EA7C4: + .incbin "baserom.dol", 0x3E77C4, 0x2CC +.global lbl_803EAA90 +lbl_803EAA90: + .incbin "baserom.dol", 0x3E7A90, 0x18 +.global lbl_803EAAA8 +lbl_803EAAA8: + .incbin "baserom.dol", 0x3E7AA8, 0x1CC +.global lbl_803EAC74 +lbl_803EAC74: + .incbin "baserom.dol", 0x3E7C74, 0x50 +.global lbl_803EACC4 +lbl_803EACC4: + .incbin "baserom.dol", 0x3E7CC4, 0xC +.global lbl_803EACD0 +lbl_803EACD0: + .incbin "baserom.dol", 0x3E7CD0, 0xC +.global lbl_803EACDC +lbl_803EACDC: + .incbin "baserom.dol", 0x3E7CDC, 0xC +.global lbl_803EACE8 +lbl_803EACE8: + .incbin "baserom.dol", 0x3E7CE8, 0xC +.global lbl_803EACF4 +lbl_803EACF4: + .incbin "baserom.dol", 0x3E7CF4, 0xC +.global lbl_803EAD00 +lbl_803EAD00: + .incbin "baserom.dol", 0x3E7D00, 0xC +.global lbl_803EAD0C +lbl_803EAD0C: + .incbin "baserom.dol", 0x3E7D0C, 0xC +.global lbl_803EAD18 +lbl_803EAD18: + .incbin "baserom.dol", 0x3E7D18, 0xC +.global lbl_803EAD24 +lbl_803EAD24: + .incbin "baserom.dol", 0x3E7D24, 0xC +.global lbl_803EAD30 +lbl_803EAD30: + .incbin "baserom.dol", 0x3E7D30, 0xC +.global lbl_803EAD3C +lbl_803EAD3C: + .incbin "baserom.dol", 0x3E7D3C, 0xC +.global lbl_803EAD48 +lbl_803EAD48: + .incbin "baserom.dol", 0x3E7D48, 0xC +.global lbl_803EAD54 +lbl_803EAD54: + .incbin "baserom.dol", 0x3E7D54, 0x2CC +.global lbl_803EB020 +lbl_803EB020: + .incbin "baserom.dol", 0x3E8020, 0xDC +.global lbl_803EB0FC +lbl_803EB0FC: + .incbin "baserom.dol", 0x3E80FC, 0x84 +.global lbl_803EB180 +lbl_803EB180: + .incbin "baserom.dol", 0x3E8180, 0x70 +.global lbl_803EB1F0 +lbl_803EB1F0: + .incbin "baserom.dol", 0x3E81F0, 0xC +.global lbl_803EB1FC +lbl_803EB1FC: + .incbin "baserom.dol", 0x3E81FC, 0xC +.global lbl_803EB208 +lbl_803EB208: + .incbin "baserom.dol", 0x3E8208, 0xC +.global lbl_803EB214 +lbl_803EB214: + .incbin "baserom.dol", 0x3E8214, 0xC +.global lbl_803EB220 +lbl_803EB220: + .incbin "baserom.dol", 0x3E8220, 0xC +.global lbl_803EB22C +lbl_803EB22C: + .incbin "baserom.dol", 0x3E822C, 0xC +.global lbl_803EB238 +lbl_803EB238: + .incbin "baserom.dol", 0x3E8238, 0xC +.global lbl_803EB244 +lbl_803EB244: + .incbin "baserom.dol", 0x3E8244, 0x2CC +.global lbl_803EB510 +lbl_803EB510: + .incbin "baserom.dol", 0x3E8510, 0x7C +.global lbl_803EB58C +lbl_803EB58C: + .incbin "baserom.dol", 0x3E858C, 0xAC +.global lbl_803EB638 +lbl_803EB638: + .incbin "baserom.dol", 0x3E8638, 0x20 +.global lbl_803EB658 +lbl_803EB658: + .incbin "baserom.dol", 0x3E8658, 0x70 +.global lbl_803EB6C8 +lbl_803EB6C8: + .incbin "baserom.dol", 0x3E86C8, 0x6C +.global lbl_803EB734 +lbl_803EB734: + .incbin "baserom.dol", 0x3E8734, 0x20 +.global lbl_803EB754 +lbl_803EB754: + .incbin "baserom.dol", 0x3E8754, 0x68 +.global lbl_803EB7BC +lbl_803EB7BC: + .incbin "baserom.dol", 0x3E87BC, 0xAC +.global lbl_803EB868 +lbl_803EB868: + .incbin "baserom.dol", 0x3E8868, 0x2E0 +.global lbl_803EBB48 +lbl_803EBB48: + .incbin "baserom.dol", 0x3E8B48, 0x7C +.global lbl_803EBBC4 +lbl_803EBBC4: + .incbin "baserom.dol", 0x3E8BC4, 0x8C +.global lbl_803EBC50 +lbl_803EBC50: + .incbin "baserom.dol", 0x3E8C50, 0x10 +.global lbl_803EBC60 +lbl_803EBC60: + .incbin "baserom.dol", 0x3E8C60, 0x10 +.global lbl_803EBC70 +lbl_803EBC70: + .incbin "baserom.dol", 0x3E8C70, 0x2CC +.global lbl_803EBF3C +lbl_803EBF3C: + .incbin "baserom.dol", 0x3E8F3C, 0x7C +.global lbl_803EBFB8 +lbl_803EBFB8: + .incbin "baserom.dol", 0x3E8FB8, 0x1C +.global lbl_803EBFD4 +lbl_803EBFD4: + .incbin "baserom.dol", 0x3E8FD4, 0x2C +.global lbl_803EC000 +lbl_803EC000: + .incbin "baserom.dol", 0x3E9000, 0x10 +.global lbl_803EC010 +lbl_803EC010: + .incbin "baserom.dol", 0x3E9010, 0x20 +.global lbl_803EC030 +lbl_803EC030: + .incbin "baserom.dol", 0x3E9030, 0x70 +.global lbl_803EC0A0 +lbl_803EC0A0: + .incbin "baserom.dol", 0x3E90A0, 0x2D0 +.global lbl_803EC370 +lbl_803EC370: + .incbin "baserom.dol", 0x3E9370, 0x20 +.global lbl_803EC390 +lbl_803EC390: + .incbin "baserom.dol", 0x3E9390, 0x78 +.global lbl_803EC408 +lbl_803EC408: + .incbin "baserom.dol", 0x3E9408, 0x20 +.global lbl_803EC428 +lbl_803EC428: + .incbin "baserom.dol", 0x3E9428, 0x10 +.global lbl_803EC438 +lbl_803EC438: + .incbin "baserom.dol", 0x3E9438, 0x10 +.global lbl_803EC448 +lbl_803EC448: + .incbin "baserom.dol", 0x3E9448, 0x28 +.global lbl_803EC470 +lbl_803EC470: + .incbin "baserom.dol", 0x3E9470, 0x28 +.global lbl_803EC498 +lbl_803EC498: + .incbin "baserom.dol", 0x3E9498, 0x10 +.global lbl_803EC4A8 +lbl_803EC4A8: + .incbin "baserom.dol", 0x3E94A8, 0x20 +.global lbl_803EC4C8 +lbl_803EC4C8: + .incbin "baserom.dol", 0x3E94C8, 0x20 +.global lbl_803EC4E8 +lbl_803EC4E8: + .incbin "baserom.dol", 0x3E94E8, 0x20 +.global lbl_803EC508 +lbl_803EC508: + .incbin "baserom.dol", 0x3E9508, 0x10 +.global lbl_803EC518 +lbl_803EC518: + .incbin "baserom.dol", 0x3E9518, 0x10 +.global lbl_803EC528 +lbl_803EC528: + .incbin "baserom.dol", 0x3E9528, 0x10 +.global lbl_803EC538 +lbl_803EC538: + .incbin "baserom.dol", 0x3E9538, 0x10 +.global lbl_803EC548 +lbl_803EC548: + .incbin "baserom.dol", 0x3E9548, 0xC +.global lbl_803EC554 +lbl_803EC554: + .incbin "baserom.dol", 0x3E9554, 0x14 +.global lbl_803EC568 +lbl_803EC568: + .incbin "baserom.dol", 0x3E9568, 0x1C +.global lbl_803EC584 +lbl_803EC584: + .incbin "baserom.dol", 0x3E9584, 0x10 +.global lbl_803EC594 +lbl_803EC594: + .incbin "baserom.dol", 0x3E9594, 0x14 +.global lbl_803EC5A8 +lbl_803EC5A8: + .incbin "baserom.dol", 0x3E95A8, 0xC +.global lbl_803EC5B4 +lbl_803EC5B4: + .incbin "baserom.dol", 0x3E95B4, 0x14 +.global lbl_803EC5C8 +lbl_803EC5C8: + .incbin "baserom.dol", 0x3E95C8, 0x10 +.global lbl_803EC5D8 +lbl_803EC5D8: + .incbin "baserom.dol", 0x3E95D8, 0x120 +.global lbl_803EC6F8 +lbl_803EC6F8: + .incbin "baserom.dol", 0x3E96F8, 0x40 +.global lbl_803EC738 +lbl_803EC738: + .incbin "baserom.dol", 0x3E9738, 0x40 +.global lbl_803EC778 +lbl_803EC778: + .incbin "baserom.dol", 0x3E9778, 0x40 +.global lbl_803EC7B8 +lbl_803EC7B8: + .incbin "baserom.dol", 0x3E97B8, 0x10 +.global lbl_803EC7C8 +lbl_803EC7C8: + .incbin "baserom.dol", 0x3E97C8, 0x40 +.global lbl_803EC808 +lbl_803EC808: + .incbin "baserom.dol", 0x3E9808, 0x40 +.global lbl_803EC848 +lbl_803EC848: + .incbin "baserom.dol", 0x3E9848, 0x40 +.global lbl_803EC888 +lbl_803EC888: + .incbin "baserom.dol", 0x3E9888, 0x40 +.global lbl_803EC8C8 +lbl_803EC8C8: + .incbin "baserom.dol", 0x3E98C8, 0x18 +.global lbl_803EC8E0 +lbl_803EC8E0: + .incbin "baserom.dol", 0x3E98E0, 0x50 +.global lbl_803EC930 +lbl_803EC930: + .incbin "baserom.dol", 0x3E9930, 0x40 +.global lbl_803EC970 +lbl_803EC970: + .incbin "baserom.dol", 0x3E9970, 0x48 +.global lbl_803EC9B8 +lbl_803EC9B8: + .incbin "baserom.dol", 0x3E99B8, 0x58 +.global lbl_803ECA10 +lbl_803ECA10: + .incbin "baserom.dol", 0x3E9A10, 0x40 +.global lbl_803ECA50 +lbl_803ECA50: + .incbin "baserom.dol", 0x3E9A50, 0x40 +.global lbl_803ECA90 +lbl_803ECA90: + .incbin "baserom.dol", 0x3E9A90, 0x40 +.global lbl_803ECAD0 +lbl_803ECAD0: + .incbin "baserom.dol", 0x3E9AD0, 0x28 +.global lbl_803ECAF8 +lbl_803ECAF8: + .incbin "baserom.dol", 0x3E9AF8, 0x28 +.global lbl_803ECB20 +lbl_803ECB20: + .incbin "baserom.dol", 0x3E9B20, 0xB0 +.global lbl_803ECBD0 +lbl_803ECBD0: + .incbin "baserom.dol", 0x3E9BD0, 0x10 +.global lbl_803ECBE0 +lbl_803ECBE0: + .incbin "baserom.dol", 0x3E9BE0, 0x78 +.global lbl_803ECC58 +lbl_803ECC58: + .incbin "baserom.dol", 0x3E9C58, 0x78 +.global lbl_803ECCD0 +lbl_803ECCD0: + .incbin "baserom.dol", 0x3E9CD0, 0x20 +.global lbl_803ECCF0 +lbl_803ECCF0: + .incbin "baserom.dol", 0x3E9CF0, 0x20 +.global lbl_803ECD10 +lbl_803ECD10: + .incbin "baserom.dol", 0x3E9D10, 0x20 +.global lbl_803ECD30 +lbl_803ECD30: + .incbin "baserom.dol", 0x3E9D30, 0x20 +.global lbl_803ECD50 +lbl_803ECD50: + .incbin "baserom.dol", 0x3E9D50, 0x20 +.global lbl_803ECD70 +lbl_803ECD70: + .incbin "baserom.dol", 0x3E9D70, 0x20 +.global lbl_803ECD90 +lbl_803ECD90: + .incbin "baserom.dol", 0x3E9D90, 0x18 +.global lbl_803ECDA8 +lbl_803ECDA8: + .incbin "baserom.dol", 0x3E9DA8, 0x18 +.global lbl_803ECDC0 +lbl_803ECDC0: + .incbin "baserom.dol", 0x3E9DC0, 0x18 +.global lbl_803ECDD8 +lbl_803ECDD8: + .incbin "baserom.dol", 0x3E9DD8, 0x18 +.global lbl_803ECDF0 +lbl_803ECDF0: + .incbin "baserom.dol", 0x3E9DF0, 0x20 +.global lbl_803ECE10 +lbl_803ECE10: + .incbin "baserom.dol", 0x3E9E10, 0x64 +.global lbl_803ECE74 +lbl_803ECE74: + .incbin "baserom.dol", 0x3E9E74, 0xC +.global lbl_803ECE80 +lbl_803ECE80: + .incbin "baserom.dol", 0x3E9E80, 0x64 +.global lbl_803ECEE4 +lbl_803ECEE4: + .incbin "baserom.dol", 0x3E9EE4, 0x64 +.global lbl_803ECF48 +lbl_803ECF48: + .incbin "baserom.dol", 0x3E9F48, 0x10 +.global lbl_803ECF58 +lbl_803ECF58: + .incbin "baserom.dol", 0x3E9F58, 0x68 +.global lbl_803ECFC0 +lbl_803ECFC0: + .incbin "baserom.dol", 0x3E9FC0, 0x24 +.global lbl_803ECFE4 +lbl_803ECFE4: + .incbin "baserom.dol", 0x3E9FE4, 0x24 +.global lbl_803ED008 +lbl_803ED008: + .incbin "baserom.dol", 0x3EA008, 0x60 +.global lbl_803ED068 +lbl_803ED068: + .incbin "baserom.dol", 0x3EA068, 0x70 +.global lbl_803ED0D8 +lbl_803ED0D8: + .incbin "baserom.dol", 0x3EA0D8, 0x80 +.global lbl_803ED158 +lbl_803ED158: + .incbin "baserom.dol", 0x3EA158, 0x78 +.global lbl_803ED1D0 +lbl_803ED1D0: + .incbin "baserom.dol", 0x3EA1D0, 0x70 +.global lbl_803ED240 +lbl_803ED240: + .incbin "baserom.dol", 0x3EA240, 0x70 +.global lbl_803ED2B0 +lbl_803ED2B0: + .incbin "baserom.dol", 0x3EA2B0, 0x70 +.global lbl_803ED320 +lbl_803ED320: + .incbin "baserom.dol", 0x3EA320, 0x80 +.global lbl_803ED3A0 +lbl_803ED3A0: + .incbin "baserom.dol", 0x3EA3A0, 0x80 +.global lbl_803ED420 +lbl_803ED420: + .incbin "baserom.dol", 0x3EA420, 0x10 +.global lbl_803ED430 +lbl_803ED430: + .incbin "baserom.dol", 0x3EA430, 0x64 +.global lbl_803ED494 +lbl_803ED494: + .incbin "baserom.dol", 0x3EA494, 0x24 +.global lbl_803ED4B8 +lbl_803ED4B8: + .incbin "baserom.dol", 0x3EA4B8, 0xC +.global lbl_803ED4C4 +lbl_803ED4C4: + .incbin "baserom.dol", 0x3EA4C4, 0xC +.global lbl_803ED4D0 +lbl_803ED4D0: + .incbin "baserom.dol", 0x3EA4D0, 0x1C +.global lbl_803ED4EC +lbl_803ED4EC: + .incbin "baserom.dol", 0x3EA4EC, 0x1C +.global lbl_803ED508 +lbl_803ED508: + .incbin "baserom.dol", 0x3EA508, 0x60 +.global lbl_803ED568 +lbl_803ED568: + .incbin "baserom.dol", 0x3EA568, 0x10 +.global lbl_803ED578 +lbl_803ED578: + .incbin "baserom.dol", 0x3EA578, 0x1C +.global lbl_803ED594 +lbl_803ED594: + .incbin "baserom.dol", 0x3EA594, 0x1C +.global lbl_803ED5B0 +lbl_803ED5B0: + .incbin "baserom.dol", 0x3EA5B0, 0x20 +.global lbl_803ED5D0 +lbl_803ED5D0: + .incbin "baserom.dol", 0x3EA5D0, 0x20 +.global lbl_803ED5F0 +lbl_803ED5F0: + .incbin "baserom.dol", 0x3EA5F0, 0x20 +.global lbl_803ED610 +lbl_803ED610: + .incbin "baserom.dol", 0x3EA610, 0x20 +.global lbl_803ED630 +lbl_803ED630: + .incbin "baserom.dol", 0x3EA630, 0x1C +.global lbl_803ED64C +lbl_803ED64C: + .incbin "baserom.dol", 0x3EA64C, 0x2C +.global lbl_803ED678 +lbl_803ED678: + .incbin "baserom.dol", 0x3EA678, 0x20 +.global lbl_803ED698 +lbl_803ED698: + .incbin "baserom.dol", 0x3EA698, 0x20 +.global lbl_803ED6B8 +lbl_803ED6B8: + .incbin "baserom.dol", 0x3EA6B8, 0x20 +.global lbl_803ED6D8 +lbl_803ED6D8: + .incbin "baserom.dol", 0x3EA6D8, 0x20 +.global lbl_803ED6F8 +lbl_803ED6F8: + .incbin "baserom.dol", 0x3EA6F8, 0x20 +.global lbl_803ED718 +lbl_803ED718: + .incbin "baserom.dol", 0x3EA718, 0x190 +.global lbl_803ED8A8 +lbl_803ED8A8: + .incbin "baserom.dol", 0x3EA8A8, 0x20 +.global lbl_803ED8C8 +lbl_803ED8C8: + .incbin "baserom.dol", 0x3EA8C8, 0x1C +.global lbl_803ED8E4 +lbl_803ED8E4: + .incbin "baserom.dol", 0x3EA8E4, 0x2C +.global lbl_803ED910 +lbl_803ED910: + .incbin "baserom.dol", 0x3EA910, 0x18 +.global lbl_803ED928 +lbl_803ED928: + .incbin "baserom.dol", 0x3EA928, 0x20 +.global lbl_803ED948 +lbl_803ED948: + .incbin "baserom.dol", 0x3EA948, 0x20 +.global lbl_803ED968 +lbl_803ED968: + .incbin "baserom.dol", 0x3EA968, 0x2C +.global lbl_803ED994 +lbl_803ED994: + .incbin "baserom.dol", 0x3EA994, 0x2C +.global lbl_803ED9C0 +lbl_803ED9C0: + .incbin "baserom.dol", 0x3EA9C0, 0x40 +.global lbl_803EDA00 +lbl_803EDA00: + .incbin "baserom.dol", 0x3EAA00, 0x10 +.global lbl_803EDA10 +lbl_803EDA10: + .incbin "baserom.dol", 0x3EAA10, 0x10 +.global lbl_803EDA20 +lbl_803EDA20: + .incbin "baserom.dol", 0x3EAA20, 0x10 +.global lbl_803EDA30 +lbl_803EDA30: + .incbin "baserom.dol", 0x3EAA30, 0x10 +.global lbl_803EDA40 +lbl_803EDA40: + .incbin "baserom.dol", 0x3EAA40, 0x10 +.global lbl_803EDA50 +lbl_803EDA50: + .incbin "baserom.dol", 0x3EAA50, 0x10 +.global lbl_803EDA60 +lbl_803EDA60: + .incbin "baserom.dol", 0x3EAA60, 0x10 +.global lbl_803EDA70 +lbl_803EDA70: + .incbin "baserom.dol", 0x3EAA70, 0x10 +.global lbl_803EDA80 +lbl_803EDA80: + .incbin "baserom.dol", 0x3EAA80, 0x78 +.global lbl_803EDAF8 +lbl_803EDAF8: + .incbin "baserom.dol", 0x3EAAF8, 0x10 +.global lbl_803EDB08 +lbl_803EDB08: + .incbin "baserom.dol", 0x3EAB08, 0x10 +.global lbl_803EDB18 +lbl_803EDB18: + .incbin "baserom.dol", 0x3EAB18, 0x10 +.global lbl_803EDB28 +lbl_803EDB28: + .incbin "baserom.dol", 0x3EAB28, 0x10 +.global lbl_803EDB38 +lbl_803EDB38: + .incbin "baserom.dol", 0x3EAB38, 0x10 +.global lbl_803EDB48 +lbl_803EDB48: + .incbin "baserom.dol", 0x3EAB48, 0x10 +.global lbl_803EDB58 +lbl_803EDB58: + .incbin "baserom.dol", 0x3EAB58, 0x10 +.global lbl_803EDB68 +lbl_803EDB68: + .incbin "baserom.dol", 0x3EAB68, 0x10 +.global lbl_803EDB78 +lbl_803EDB78: + .incbin "baserom.dol", 0x3EAB78, 0x10 +.global lbl_803EDB88 +lbl_803EDB88: + .incbin "baserom.dol", 0x3EAB88, 0x10 +.global lbl_803EDB98 +lbl_803EDB98: + .incbin "baserom.dol", 0x3EAB98, 0x10 +.global lbl_803EDBA8 +lbl_803EDBA8: + .incbin "baserom.dol", 0x3EABA8, 0x10 +.global lbl_803EDBB8 +lbl_803EDBB8: + .incbin "baserom.dol", 0x3EABB8, 0x10 +.global lbl_803EDBC8 +lbl_803EDBC8: + .incbin "baserom.dol", 0x3EABC8, 0x10 +.global lbl_803EDBD8 +lbl_803EDBD8: + .incbin "baserom.dol", 0x3EABD8, 0x10 +.global lbl_803EDBE8 +lbl_803EDBE8: + .incbin "baserom.dol", 0x3EABE8, 0x10 +.global lbl_803EDBF8 +lbl_803EDBF8: + .incbin "baserom.dol", 0x3EABF8, 0x10 +.global lbl_803EDC08 +lbl_803EDC08: + .incbin "baserom.dol", 0x3EAC08, 0x10 +.global lbl_803EDC18 +lbl_803EDC18: + .incbin "baserom.dol", 0x3EAC18, 0x10 +.global lbl_803EDC28 +lbl_803EDC28: + .incbin "baserom.dol", 0x3EAC28, 0x10 +.global lbl_803EDC38 +lbl_803EDC38: + .incbin "baserom.dol", 0x3EAC38, 0x10 +.global lbl_803EDC48 +lbl_803EDC48: + .incbin "baserom.dol", 0x3EAC48, 0x10 +.global lbl_803EDC58 +lbl_803EDC58: + .incbin "baserom.dol", 0x3EAC58, 0x10 +.global lbl_803EDC68 +lbl_803EDC68: + .incbin "baserom.dol", 0x3EAC68, 0x10 +.global lbl_803EDC78 +lbl_803EDC78: + .incbin "baserom.dol", 0x3EAC78, 0x10 +.global lbl_803EDC88 +lbl_803EDC88: + .incbin "baserom.dol", 0x3EAC88, 0x10 +.global lbl_803EDC98 +lbl_803EDC98: + .incbin "baserom.dol", 0x3EAC98, 0x10 +.global lbl_803EDCA8 +lbl_803EDCA8: + .incbin "baserom.dol", 0x3EACA8, 0x10 +.global lbl_803EDCB8 +lbl_803EDCB8: + .incbin "baserom.dol", 0x3EACB8, 0x10 +.global lbl_803EDCC8 +lbl_803EDCC8: + .incbin "baserom.dol", 0x3EACC8, 0x10 +.global lbl_803EDCD8 +lbl_803EDCD8: + .incbin "baserom.dol", 0x3EACD8, 0x10 +.global lbl_803EDCE8 +lbl_803EDCE8: + .incbin "baserom.dol", 0x3EACE8, 0x10 +.global lbl_803EDCF8 +lbl_803EDCF8: + .incbin "baserom.dol", 0x3EACF8, 0x10 +.global lbl_803EDD08 +lbl_803EDD08: + .incbin "baserom.dol", 0x3EAD08, 0x78 +.global lbl_803EDD80 +lbl_803EDD80: + .incbin "baserom.dol", 0x3EAD80, 0x78 +.global lbl_803EDDF8 +lbl_803EDDF8: + .incbin "baserom.dol", 0x3EADF8, 0x10 +.global lbl_803EDE08 +lbl_803EDE08: + .incbin "baserom.dol", 0x3EAE08, 0x14 +.global lbl_803EDE1C +lbl_803EDE1C: + .incbin "baserom.dol", 0x3EAE1C, 0x14 +.global lbl_803EDE30 +lbl_803EDE30: + .incbin "baserom.dol", 0x3EAE30, 0x14 +.global lbl_803EDE44 +lbl_803EDE44: + .incbin "baserom.dol", 0x3EAE44, 0x14 +.global lbl_803EDE58 +lbl_803EDE58: + .incbin "baserom.dol", 0x3EAE58, 0x14 +.global lbl_803EDE6C +lbl_803EDE6C: + .incbin "baserom.dol", 0x3EAE6C, 0x14 +.global lbl_803EDE80 +lbl_803EDE80: + .incbin "baserom.dol", 0x3EAE80, 0x14 +.global lbl_803EDE94 +lbl_803EDE94: + .incbin "baserom.dol", 0x3EAE94, 0x14 +.global lbl_803EDEA8 +lbl_803EDEA8: + .incbin "baserom.dol", 0x3EAEA8, 0x14 +.global lbl_803EDEBC +lbl_803EDEBC: + .incbin "baserom.dol", 0x3EAEBC, 0x14 +.global lbl_803EDED0 +lbl_803EDED0: + .incbin "baserom.dol", 0x3EAED0, 0x14 +.global lbl_803EDEE4 +lbl_803EDEE4: + .incbin "baserom.dol", 0x3EAEE4, 0x14 +.global lbl_803EDEF8 +lbl_803EDEF8: + .incbin "baserom.dol", 0x3EAEF8, 0x14 +.global lbl_803EDF0C +lbl_803EDF0C: + .incbin "baserom.dol", 0x3EAF0C, 0x14 +.global lbl_803EDF20 +lbl_803EDF20: + .incbin "baserom.dol", 0x3EAF20, 0x14 +.global lbl_803EDF34 +lbl_803EDF34: + .incbin "baserom.dol", 0x3EAF34, 0x14 +.global lbl_803EDF48 +lbl_803EDF48: + .incbin "baserom.dol", 0x3EAF48, 0x14 +.global lbl_803EDF5C +lbl_803EDF5C: + .incbin "baserom.dol", 0x3EAF5C, 0x14 +.global lbl_803EDF70 +lbl_803EDF70: + .incbin "baserom.dol", 0x3EAF70, 0x14 +.global lbl_803EDF84 +lbl_803EDF84: + .incbin "baserom.dol", 0x3EAF84, 0x14 +.global lbl_803EDF98 +lbl_803EDF98: + .incbin "baserom.dol", 0x3EAF98, 0x14 +.global lbl_803EDFAC +lbl_803EDFAC: + .incbin "baserom.dol", 0x3EAFAC, 0x14 +.global lbl_803EDFC0 +lbl_803EDFC0: + .incbin "baserom.dol", 0x3EAFC0, 0x14 +.global lbl_803EDFD4 +lbl_803EDFD4: + .incbin "baserom.dol", 0x3EAFD4, 0x14 +.global lbl_803EDFE8 +lbl_803EDFE8: + .incbin "baserom.dol", 0x3EAFE8, 0x14 +.global lbl_803EDFFC +lbl_803EDFFC: + .incbin "baserom.dol", 0x3EAFFC, 0x14 +.global lbl_803EE010 +lbl_803EE010: + .incbin "baserom.dol", 0x3EB010, 0x14 +.global lbl_803EE024 +lbl_803EE024: + .incbin "baserom.dol", 0x3EB024, 0x14 +.global lbl_803EE038 +lbl_803EE038: + .incbin "baserom.dol", 0x3EB038, 0x14 +.global lbl_803EE04C +lbl_803EE04C: + .incbin "baserom.dol", 0x3EB04C, 0x14 +.global lbl_803EE060 +lbl_803EE060: + .incbin "baserom.dol", 0x3EB060, 0x14 +.global lbl_803EE074 +lbl_803EE074: + .incbin "baserom.dol", 0x3EB074, 0x14 +.global lbl_803EE088 +lbl_803EE088: + .incbin "baserom.dol", 0x3EB088, 0x14 +.global lbl_803EE09C +lbl_803EE09C: + .incbin "baserom.dol", 0x3EB09C, 0x14 +.global lbl_803EE0B0 +lbl_803EE0B0: + .incbin "baserom.dol", 0x3EB0B0, 0x14 +.global lbl_803EE0C4 +lbl_803EE0C4: + .incbin "baserom.dol", 0x3EB0C4, 0x14 +.global lbl_803EE0D8 +lbl_803EE0D8: + .incbin "baserom.dol", 0x3EB0D8, 0x14 +.global lbl_803EE0EC +lbl_803EE0EC: + .incbin "baserom.dol", 0x3EB0EC, 0x14 +.global lbl_803EE100 +lbl_803EE100: + .incbin "baserom.dol", 0x3EB100, 0x18 +.global lbl_803EE118 +lbl_803EE118: + .incbin "baserom.dol", 0x3EB118, 0x1C +.global lbl_803EE134 +lbl_803EE134: + .incbin "baserom.dol", 0x3EB134, 0x1C +.global lbl_803EE150 +lbl_803EE150: + .incbin "baserom.dol", 0x3EB150, 0x14 +.global lbl_803EE164 +lbl_803EE164: + .incbin "baserom.dol", 0x3EB164, 0x14 +.global lbl_803EE178 +lbl_803EE178: + .incbin "baserom.dol", 0x3EB178, 0x14 +.global lbl_803EE18C +lbl_803EE18C: + .incbin "baserom.dol", 0x3EB18C, 0x14 +.global lbl_803EE1A0 +lbl_803EE1A0: + .incbin "baserom.dol", 0x3EB1A0, 0x14 +.global lbl_803EE1B4 +lbl_803EE1B4: + .incbin "baserom.dol", 0x3EB1B4, 0x14 +.global lbl_803EE1C8 +lbl_803EE1C8: + .incbin "baserom.dol", 0x3EB1C8, 0x14 +.global lbl_803EE1DC +lbl_803EE1DC: + .incbin "baserom.dol", 0x3EB1DC, 0x14 +.global lbl_803EE1F0 +lbl_803EE1F0: + .incbin "baserom.dol", 0x3EB1F0, 0x14 +.global lbl_803EE204 +lbl_803EE204: + .incbin "baserom.dol", 0x3EB204, 0x14 +.global lbl_803EE218 +lbl_803EE218: + .incbin "baserom.dol", 0x3EB218, 0x14 +.global lbl_803EE22C +lbl_803EE22C: + .incbin "baserom.dol", 0x3EB22C, 0x14 +.global lbl_803EE240 +lbl_803EE240: + .incbin "baserom.dol", 0x3EB240, 0x14 +.global lbl_803EE254 +lbl_803EE254: + .incbin "baserom.dol", 0x3EB254, 0x14 +.global lbl_803EE268 +lbl_803EE268: + .incbin "baserom.dol", 0x3EB268, 0x14 +.global lbl_803EE27C +lbl_803EE27C: + .incbin "baserom.dol", 0x3EB27C, 0x14 +.global lbl_803EE290 +lbl_803EE290: + .incbin "baserom.dol", 0x3EB290, 0x14 +.global lbl_803EE2A4 +lbl_803EE2A4: + .incbin "baserom.dol", 0x3EB2A4, 0x14 +.global lbl_803EE2B8 +lbl_803EE2B8: + .incbin "baserom.dol", 0x3EB2B8, 0x14 +.global lbl_803EE2CC +lbl_803EE2CC: + .incbin "baserom.dol", 0x3EB2CC, 0x14 +.global lbl_803EE2E0 +lbl_803EE2E0: + .incbin "baserom.dol", 0x3EB2E0, 0x18 +.global lbl_803EE2F8 +lbl_803EE2F8: + .incbin "baserom.dol", 0x3EB2F8, 0x20 +.global lbl_803EE318 +lbl_803EE318: + .incbin "baserom.dol", 0x3EB318, 0x20 +.global lbl_803EE338 +lbl_803EE338: + .incbin "baserom.dol", 0x3EB338, 0x30 +.global lbl_803EE368 +lbl_803EE368: + .incbin "baserom.dol", 0x3EB368, 0x20 +.global lbl_803EE388 +lbl_803EE388: + .incbin "baserom.dol", 0x3EB388, 0x10 +.global lbl_803EE398 +lbl_803EE398: + .incbin "baserom.dol", 0x3EB398, 0x10 +.global lbl_803EE3A8 +lbl_803EE3A8: + .incbin "baserom.dol", 0x3EB3A8, 0x10 +.global lbl_803EE3B8 +lbl_803EE3B8: + .incbin "baserom.dol", 0x3EB3B8, 0x10 +.global lbl_803EE3C8 +lbl_803EE3C8: + .incbin "baserom.dol", 0x3EB3C8, 0x10 +.global lbl_803EE3D8 +lbl_803EE3D8: + .incbin "baserom.dol", 0x3EB3D8, 0xC +.global lbl_803EE3E4 +lbl_803EE3E4: + .incbin "baserom.dol", 0x3EB3E4, 0x2C +.global lbl_803EE410 +lbl_803EE410: + .incbin "baserom.dol", 0x3EB410, 0x30 +.global lbl_803EE440 +lbl_803EE440: + .incbin "baserom.dol", 0x3EB440, 0x28 +.global lbl_803EE468 +lbl_803EE468: + .incbin "baserom.dol", 0x3EB468, 0x28 +.global lbl_803EE490 +lbl_803EE490: + .incbin "baserom.dol", 0x3EB490, 0x38 +.global lbl_803EE4C8 +lbl_803EE4C8: + .incbin "baserom.dol", 0x3EB4C8, 0x1000 +.global lbl_803EF4C8 +lbl_803EF4C8: + .incbin "baserom.dol", 0x3EC4C8, 0x100 +.global lbl_803EF5C8 +lbl_803EF5C8: + .incbin "baserom.dol", 0x3EC5C8, 0x48 +.global lbl_803EF610 +lbl_803EF610: + .incbin "baserom.dol", 0x3EC610, 0x30 +.global lbl_803EF640 +lbl_803EF640: + .incbin "baserom.dol", 0x3EC640, 0x20 +.global lbl_803EF660 +lbl_803EF660: + .incbin "baserom.dol", 0x3EC660, 0x10 +.global lbl_803EF670 +lbl_803EF670: + .incbin "baserom.dol", 0x3EC670, 0x10 +.global lbl_803EF680 +lbl_803EF680: + .incbin "baserom.dol", 0x3EC680, 0x20 +.global lbl_803EF6A0 +lbl_803EF6A0: + .incbin "baserom.dol", 0x3EC6A0, 0x18 +.global lbl_803EF6B8 +lbl_803EF6B8: + .incbin "baserom.dol", 0x3EC6B8, 0x20 +.global lbl_803EF6D8 +lbl_803EF6D8: + .incbin "baserom.dol", 0x3EC6D8, 0x40 +.global lbl_803EF718 +lbl_803EF718: + .incbin "baserom.dol", 0x3EC718, 0x10 +.global lbl_803EF728 +lbl_803EF728: + .incbin "baserom.dol", 0x3EC728, 0x10 +.global lbl_803EF738 +lbl_803EF738: + .incbin "baserom.dol", 0x3EC738, 0x10 +.global lbl_803EF748 +lbl_803EF748: + .incbin "baserom.dol", 0x3EC748, 0x10 +.global lbl_803EF758 +lbl_803EF758: + .incbin "baserom.dol", 0x3EC758, 0x10 +.global lbl_803EF768 +lbl_803EF768: + .incbin "baserom.dol", 0x3EC768, 0x10 +.global lbl_803EF778 +lbl_803EF778: + .incbin "baserom.dol", 0x3EC778, 0x10 +.global lbl_803EF788 +lbl_803EF788: + .incbin "baserom.dol", 0x3EC788, 0x10 +.global lbl_803EF798 +lbl_803EF798: + .incbin "baserom.dol", 0x3EC798, 0x20 +.global lbl_803EF7B8 +lbl_803EF7B8: + .incbin "baserom.dol", 0x3EC7B8, 0x78 +.global lbl_803EF830 +lbl_803EF830: + .incbin "baserom.dol", 0x3EC830, 0x10 +.global lbl_803EF840 +lbl_803EF840: + .incbin "baserom.dol", 0x3EC840, 0x178 +.global lbl_803EF9B8 +lbl_803EF9B8: + .incbin "baserom.dol", 0x3EC9B8, 0x18 +.global lbl_803EF9D0 +lbl_803EF9D0: + .incbin "baserom.dol", 0x3EC9D0, 0x80 +.global lbl_803EFA50 +lbl_803EFA50: + .incbin "baserom.dol", 0x3ECA50, 0x140 +.global lbl_803EFB90 +lbl_803EFB90: + .incbin "baserom.dol", 0x3ECB90, 0xC8 +.global lbl_803EFC58 +lbl_803EFC58: + .incbin "baserom.dol", 0x3ECC58, 0x38 +.global lbl_803EFC90 +lbl_803EFC90: + .incbin "baserom.dol", 0x3ECC90, 0x338 +.global lbl_803EFFC8 +lbl_803EFFC8: + .incbin "baserom.dol", 0x3ECFC8, 0xC +.global lbl_803EFFD4 +lbl_803EFFD4: + .incbin "baserom.dol", 0x3ECFD4, 0x30 +.global lbl_803F0004 +lbl_803F0004: + .incbin "baserom.dol", 0x3ED004, 0x4 +.global lbl_803F0008 +lbl_803F0008: + .incbin "baserom.dol", 0x3ED008, 0x90 +.global lbl_803F0098 +lbl_803F0098: + .incbin "baserom.dol", 0x3ED098, 0x34 +.global lbl_803F00CC +lbl_803F00CC: + .incbin "baserom.dol", 0x3ED0CC, 0x34 +.global lbl_803F0100 +lbl_803F0100: + .incbin "baserom.dol", 0x3ED100, 0x478 +.global lbl_803F0578 +lbl_803F0578: + .incbin "baserom.dol", 0x3ED578, 0xB4 +.global lbl_803F062C +lbl_803F062C: + .incbin "baserom.dol", 0x3ED62C, 0xD0 +.global lbl_803F06FC +lbl_803F06FC: + .incbin "baserom.dol", 0x3ED6FC, 0x1C +.global lbl_803F0718 +lbl_803F0718: + .incbin "baserom.dol", 0x3ED718, 0x68 +.global lbl_803F0780 +lbl_803F0780: + .incbin "baserom.dol", 0x3ED780, 0x68 +.global lbl_803F07E8 +lbl_803F07E8: + .incbin "baserom.dol", 0x3ED7E8, 0x44 +.global lbl_803F082C +lbl_803F082C: + .incbin "baserom.dol", 0x3ED82C, 0x44 +.global lbl_803F0870 +lbl_803F0870: + .incbin "baserom.dol", 0x3ED870, 0x1C +.global lbl_803F088C +lbl_803F088C: + .incbin "baserom.dol", 0x3ED88C, 0x54 +.global lbl_803F08E0 +lbl_803F08E0: + .incbin "baserom.dol", 0x3ED8E0, 0x3C +.global lbl_803F091C +lbl_803F091C: + .incbin "baserom.dol", 0x3ED91C, 0x3C +.global lbl_803F0958 +lbl_803F0958: + .incbin "baserom.dol", 0x3ED958, 0x3C +.global lbl_803F0994 +lbl_803F0994: + .incbin "baserom.dol", 0x3ED994, 0x3C +.global lbl_803F09D0 +lbl_803F09D0: + .incbin "baserom.dol", 0x3ED9D0, 0x20 +.global lbl_803F09F0 +lbl_803F09F0: + .incbin "baserom.dol", 0x3ED9F0, 0xF4 +.global lbl_803F0AE4 +lbl_803F0AE4: + .incbin "baserom.dol", 0x3EDAE4, 0xF4 +.global lbl_803F0BD8 +lbl_803F0BD8: + .incbin "baserom.dol", 0x3EDBD8, 0x40 +.global lbl_803F0C18 +lbl_803F0C18: + .incbin "baserom.dol", 0x3EDC18, 0x50 +.global lbl_803F0C68 +lbl_803F0C68: + .incbin "baserom.dol", 0x3EDC68, 0x28 +.global lbl_803F0C90 +lbl_803F0C90: + .incbin "baserom.dol", 0x3EDC90, 0x20 +.global lbl_803F0CB0 +lbl_803F0CB0: + .incbin "baserom.dol", 0x3EDCB0, 0x5C +.global lbl_803F0D0C +lbl_803F0D0C: + .incbin "baserom.dol", 0x3EDD0C, 0x94 +.global lbl_803F0DA0 +lbl_803F0DA0: + .incbin "baserom.dol", 0x3EDDA0, 0x208 +.global lbl_803F0FA8 +lbl_803F0FA8: + .incbin "baserom.dol", 0x3EDFA8, 0x80 +.global lbl_803F1028 +lbl_803F1028: + .incbin "baserom.dol", 0x3EE028, 0x230 +.global lbl_803F1258 +lbl_803F1258: + .incbin "baserom.dol", 0x3EE258, 0x1B4 +.global lbl_803F140C +lbl_803F140C: + .incbin "baserom.dol", 0x3EE40C, 0x24 +.global lbl_803F1430 +lbl_803F1430: + .incbin "baserom.dol", 0x3EE430, 0x2DC +.global lbl_803F170C +lbl_803F170C: + .incbin "baserom.dol", 0x3EE70C, 0x44 +.global lbl_803F1750 +lbl_803F1750: + .incbin "baserom.dol", 0x3EE750, 0x180 +.global lbl_803F18D0 +lbl_803F18D0: + .incbin "baserom.dol", 0x3EE8D0, 0x990 +.global lbl_803F2260 +lbl_803F2260: + .incbin "baserom.dol", 0x3EF260, 0x30 +.global lbl_803F2290 +lbl_803F2290: + .incbin "baserom.dol", 0x3EF290, 0x28 +.global lbl_803F22B8 +lbl_803F22B8: + .incbin "baserom.dol", 0x3EF2B8, 0x28 +.global lbl_803F22E0 +lbl_803F22E0: + .incbin "baserom.dol", 0x3EF2E0, 0x10 +.global lbl_803F22F0 +lbl_803F22F0: + .incbin "baserom.dol", 0x3EF2F0, 0x30 +.global lbl_803F2320 +lbl_803F2320: + .incbin "baserom.dol", 0x3EF320, 0x78 +.global lbl_803F2398 +lbl_803F2398: + .incbin "baserom.dol", 0x3EF398, 0x10 +.global lbl_803F23A8 +lbl_803F23A8: + .incbin "baserom.dol", 0x3EF3A8, 0x1F4 +.global lbl_803F259C +lbl_803F259C: + .incbin "baserom.dol", 0x3EF59C, 0x1C0 +.global lbl_803F275C +lbl_803F275C: + .incbin "baserom.dol", 0x3EF75C, 0x1C +.global lbl_803F2778 +lbl_803F2778: + .incbin "baserom.dol", 0x3EF778, 0x140 +.global lbl_803F28B8 +lbl_803F28B8: + .incbin "baserom.dol", 0x3EF8B8, 0x40 +.global lbl_803F28F8 +lbl_803F28F8: + .incbin "baserom.dol", 0x3EF8F8, 0x128 +.global lbl_803F2A20 +lbl_803F2A20: + .incbin "baserom.dol", 0x3EFA20, 0x100 +.global lbl_803F2B20 +lbl_803F2B20: + .incbin "baserom.dol", 0x3EFB20, 0x100 +.global lbl_803F2C20 +lbl_803F2C20: + .incbin "baserom.dol", 0x3EFC20, 0x100 +.global lbl_803F2D20 +lbl_803F2D20: + .incbin "baserom.dol", 0x3EFD20, 0x38 +.global lbl_803F2D58 +lbl_803F2D58: + .incbin "baserom.dol", 0x3EFD58, 0x84 +.global lbl_803F2DDC +lbl_803F2DDC: + .incbin "baserom.dol", 0x3EFDDC, 0x84 +.global lbl_803F2E60 +lbl_803F2E60: + .incbin "baserom.dol", 0x3EFE60, 0xE0 +.global lbl_803F2F40 +lbl_803F2F40: + .incbin "baserom.dol", 0x3EFF40, 0x48 +.global lbl_803F2F88 +lbl_803F2F88: + .incbin "baserom.dol", 0x3EFF88, 0x50 +.global lbl_803F2FD8 +lbl_803F2FD8: + .incbin "baserom.dol", 0x3EFFD8, 0x1C +.global lbl_803F2FF4 +lbl_803F2FF4: + .incbin "baserom.dol", 0x3EFFF4, 0x204 +.global lbl_803F31F8 +lbl_803F31F8: + .incbin "baserom.dol", 0x3F01F8, 0x20 +.global lbl_803F3218 +lbl_803F3218: + .incbin "baserom.dol", 0x3F0218, 0x10 +.global lbl_803F3228 +lbl_803F3228: + .incbin "baserom.dol", 0x3F0228, 0x20 +.global lbl_803F3248 +lbl_803F3248: + .incbin "baserom.dol", 0x3F0248, 0x10 +.global lbl_803F3258 +lbl_803F3258: + .incbin "baserom.dol", 0x3F0258, 0x1C8 +.global lbl_803F3420 +lbl_803F3420: + .incbin "baserom.dol", 0x3F0420, 0x200 +.global lbl_803F3620 +lbl_803F3620: + .incbin "baserom.dol", 0x3F0620, 0x200 +.global lbl_803F3820 +lbl_803F3820: + .incbin "baserom.dol", 0x3F0820, 0x184 +.global lbl_803F39A4 +lbl_803F39A4: + .incbin "baserom.dol", 0x3F09A4, 0x400 +.global lbl_803F3DA4 +lbl_803F3DA4: + .incbin "baserom.dol", 0x3F0DA4, 0x204 +.global lbl_803F3FA8 +lbl_803F3FA8: + .incbin "baserom.dol", 0x3F0FA8, 0x18 +.global lbl_803F3FC0 +lbl_803F3FC0: + .incbin "baserom.dol", 0x3F0FC0, 0x228 +.global lbl_803F41E8 +lbl_803F41E8: + .incbin "baserom.dol", 0x3F11E8, 0x10 +.global lbl_803F41F8 +lbl_803F41F8: + .incbin "baserom.dol", 0x3F11F8, 0x10 +.global lbl_803F4208 +lbl_803F4208: + .incbin "baserom.dol", 0x3F1208, 0x24 +.global lbl_803F422C +lbl_803F422C: + .incbin "baserom.dol", 0x3F122C, 0x24 +.global lbl_803F4250 +lbl_803F4250: + .incbin "baserom.dol", 0x3F1250, 0x28 +.global lbl_803F4278 +lbl_803F4278: + .incbin "baserom.dol", 0x3F1278, 0x808 +.global lbl_803F4A80 +lbl_803F4A80: + .incbin "baserom.dol", 0x3F1A80, 0x19E0 +.global lbl_803F6460 +lbl_803F6460: + .incbin "baserom.dol", 0x3F3460, 0x10 +.global lbl_803F6470 +lbl_803F6470: + .incbin "baserom.dol", 0x3F3470, 0x20 +.global lbl_803F6490 +lbl_803F6490: + .incbin "baserom.dol", 0x3F3490, 0x848 +.global lbl_803F6CD8 +lbl_803F6CD8: + .incbin "baserom.dol", 0x3F3CD8, 0x28 +.global lbl_803F6D00 +lbl_803F6D00: + .incbin "baserom.dol", 0x3F3D00, 0x160 +.global lbl_803F6E60 +lbl_803F6E60: + .incbin "baserom.dol", 0x3F3E60, 0x20 +.global lbl_803F6E80 +lbl_803F6E80: + .incbin "baserom.dol", 0x3F3E80, 0x20 +.global lbl_803F6EA0 +lbl_803F6EA0: + .incbin "baserom.dol", 0x3F3EA0, 0x44 +.global lbl_803F6EE4 +lbl_803F6EE4: + .incbin "baserom.dol", 0x3F3EE4, 0x14 +.global lbl_803F6EF8 +lbl_803F6EF8: + .incbin "baserom.dol", 0x3F3EF8, 0xC0 +.global lbl_803F6FB8 +lbl_803F6FB8: + .incbin "baserom.dol", 0x3F3FB8, 0x1A8 +.global lbl_803F7160 +lbl_803F7160: + .incbin "baserom.dol", 0x3F4160, 0x10 +.global lbl_803F7170 +lbl_803F7170: + .incbin "baserom.dol", 0x3F4170, 0x30 +.global lbl_803F71A0 +lbl_803F71A0: + .incbin "baserom.dol", 0x3F41A0, 0x380 +.global lbl_803F7520 +lbl_803F7520: + .incbin "baserom.dol", 0x3F4520, 0xC +.global lbl_803F752C +lbl_803F752C: + .incbin "baserom.dol", 0x3F452C, 0x1A diff --git a/asm/dtors.s b/asm/dtors.s new file mode 100644 index 00000000..5a2d0122 --- /dev/null +++ b/asm/dtors.s @@ -0,0 +1,6 @@ +.include "macros.inc" + +.section .dtors, "wa" # 0x803CB380 - 0x803CB3A0 +.global lbl_803CB380 +lbl_803CB380: + .incbin "baserom.dol", 0x3C8380, 0x10 diff --git a/asm/extab.s b/asm/extab.s new file mode 100644 index 00000000..249c1aa0 --- /dev/null +++ b/asm/extab.s @@ -0,0 +1,6 @@ +.include "macros.inc" + +.section extab_, "wa" # 0x800035A0 - 0x800035E0 +.global lbl_extab +lbl_extab: + .incbin "baserom.dol", 0x3C8120, 0x28 diff --git a/asm/extabindex.s b/asm/extabindex.s new file mode 100644 index 00000000..507e611c --- /dev/null +++ b/asm/extabindex.s @@ -0,0 +1,8 @@ +.include "macros.inc" + +.section extabindex_, "wa" # 0x800035E0 - 0x80003640 +lbl_extabindex: + .incbin "baserom.dol", 0x3C8160, 0x24 +.global lbl_80003604 +lbl_80003604: + .incbin "baserom.dol", 0x3C8184, 0x20 diff --git a/asm/os/__ppc_eabi_init.s b/asm/os/__ppc_eabi_init.s new file mode 100644 index 00000000..ad81ee64 --- /dev/null +++ b/asm/os/__ppc_eabi_init.s @@ -0,0 +1,31 @@ +.include "macros.inc" + +.section .init, "ax" # 0x80003100 - 0x80005620 + +.global __init_hardware +__init_hardware: +/* 80003354 00000354 7C 00 00 A6 */ mfmsr r0 +/* 80003358 00000358 60 00 20 00 */ ori r0, r0, 0x2000 +/* 8000335C 0000035C 7C 00 01 24 */ mtmsr r0 +/* 80003360 00000360 7F E8 02 A6 */ mflr r31 +/* 80003364 00000364 48 0B 19 49 */ bl __OSPSInit +/* 80003368 00000368 48 0B 32 8D */ bl __OSCacheInit +/* 8000336C 0000036C 7F E8 03 A6 */ mtlr r31 +/* 80003370 00000370 4E 80 00 20 */ blr + +.global __flush_cache +__flush_cache: +/* 80003374 00000374 3C A0 FF FF */ lis r5, 0xFFFFFFF1@h +/* 80003378 00000378 60 A5 FF F1 */ ori r5, r5, 0xFFFFFFF1@l +/* 8000337C 0000037C 7C A5 18 38 */ and r5, r5, r3 +/* 80003380 00000380 7C 65 18 50 */ subf r3, r5, r3 +/* 80003384 00000384 7C 84 1A 14 */ add r4, r4, r3 +lbl_80003388: +/* 80003388 00000388 7C 00 28 6C */ dcbst 0, r5 +/* 8000338C 0000038C 7C 00 04 AC */ sync 0 +/* 80003390 00000390 7C 00 2F AC */ icbi 0, r5 +/* 80003394 00000394 30 A5 00 08 */ addic r5, r5, 8 +/* 80003398 00000398 34 84 FF F8 */ addic. r4, r4, -8 +/* 8000339C 0000039C 40 80 FF EC */ bge lbl_80003388 +/* 800033A0 000003A0 4C 00 01 2C */ isync +/* 800033A4 000003A4 4E 80 00 20 */ blr diff --git a/asm/rodata.s b/asm/rodata.s new file mode 100644 index 00000000..75df7b35 --- /dev/null +++ b/asm/rodata.s @@ -0,0 +1,1782 @@ +.include "macros.inc" + +.section .rodata, "a" # 0x803CB3A0 - 0x803D8D60 +.global lbl_803CB3A0 +lbl_803CB3A0: + .incbin "baserom.dol", 0x3C83A0, 0x650 +.global lbl_803CB9F0 +lbl_803CB9F0: + .incbin "baserom.dol", 0x3C89F0, 0x45C +.global lbl_803CBE4C +lbl_803CBE4C: + .incbin "baserom.dol", 0x3C8E4C, 0x28 +.global lbl_803CBE74 +lbl_803CBE74: + .incbin "baserom.dol", 0x3C8E74, 0x1B4 +.global lbl_803CC028 +lbl_803CC028: + .incbin "baserom.dol", 0x3C9028, 0x8 +.global lbl_803CC030 +lbl_803CC030: + .incbin "baserom.dol", 0x3C9030, 0x3F0 +.global lbl_803CC420 +lbl_803CC420: + .incbin "baserom.dol", 0x3C9420, 0x18 +.global lbl_803CC438 +lbl_803CC438: + .incbin "baserom.dol", 0x3C9438, 0x30 +.global lbl_803CC468 +lbl_803CC468: + .incbin "baserom.dol", 0x3C9468, 0x30 +.global lbl_803CC498 +lbl_803CC498: + .incbin "baserom.dol", 0x3C9498, 0x30 +.global lbl_803CC4C8 +lbl_803CC4C8: + .incbin "baserom.dol", 0x3C94C8, 0x30 +.global lbl_803CC4F8 +lbl_803CC4F8: + .incbin "baserom.dol", 0x3C94F8, 0x48 +.global lbl_803CC540 +lbl_803CC540: + .incbin "baserom.dol", 0x3C9540, 0x84 +.global lbl_803CC5C4 +lbl_803CC5C4: + .incbin "baserom.dol", 0x3C95C4, 0xC +.global lbl_803CC5D0 +lbl_803CC5D0: + .incbin "baserom.dol", 0x3C95D0, 0xC +.global lbl_803CC5DC +lbl_803CC5DC: + .incbin "baserom.dol", 0x3C95DC, 0xC +.global lbl_803CC5E8 +lbl_803CC5E8: + .incbin "baserom.dol", 0x3C95E8, 0xC +.global lbl_803CC5F4 +lbl_803CC5F4: + .incbin "baserom.dol", 0x3C95F4, 0x28 +.global lbl_803CC61C +lbl_803CC61C: + .incbin "baserom.dol", 0x3C961C, 0x28 +.global lbl_803CC644 +lbl_803CC644: + .incbin "baserom.dol", 0x3C9644, 0x45C +.global lbl_803CCAA0 +lbl_803CCAA0: + .incbin "baserom.dol", 0x3C9AA0, 0x8 +.global lbl_803CCAA8 +lbl_803CCAA8: + .incbin "baserom.dol", 0x3C9AA8, 0x10 +.global lbl_803CCAB8 +lbl_803CCAB8: + .incbin "baserom.dol", 0x3C9AB8, 0x60 +.global lbl_803CCB18 +lbl_803CCB18: + .incbin "baserom.dol", 0x3C9B18, 0x20 +.global lbl_803CCB38 +lbl_803CCB38: + .incbin "baserom.dol", 0x3C9B38, 0x18 +.global lbl_803CCB50 +lbl_803CCB50: + .incbin "baserom.dol", 0x3C9B50, 0x180 +.global lbl_803CCCD0 +lbl_803CCCD0: + .incbin "baserom.dol", 0x3C9CD0, 0xC +.global lbl_803CCCDC +lbl_803CCCDC: + .incbin "baserom.dol", 0x3C9CDC, 0x44 +.global lbl_803CCD20 +lbl_803CCD20: + .incbin "baserom.dol", 0x3C9D20, 0x58 +.global lbl_803CCD78 +lbl_803CCD78: + .incbin "baserom.dol", 0x3C9D78, 0x8 +.global lbl_803CCD80 +lbl_803CCD80: + .incbin "baserom.dol", 0x3C9D80, 0x8 +.global lbl_803CCD88 +lbl_803CCD88: + .incbin "baserom.dol", 0x3C9D88, 0x98 +.global lbl_803CCE20 +lbl_803CCE20: + .incbin "baserom.dol", 0x3C9E20, 0x18 +.global lbl_803CCE38 +lbl_803CCE38: + .incbin "baserom.dol", 0x3C9E38, 0xC +.global lbl_803CCE44 +lbl_803CCE44: + .incbin "baserom.dol", 0x3C9E44, 0x10 +.global lbl_803CCE54 +lbl_803CCE54: + .incbin "baserom.dol", 0x3C9E54, 0x10 +.global lbl_803CCE64 +lbl_803CCE64: + .incbin "baserom.dol", 0x3C9E64, 0x10 +.global lbl_803CCE74 +lbl_803CCE74: + .incbin "baserom.dol", 0x3C9E74, 0x10 +.global lbl_803CCE84 +lbl_803CCE84: + .incbin "baserom.dol", 0x3C9E84, 0x14 +.global lbl_803CCE98 +lbl_803CCE98: + .incbin "baserom.dol", 0x3C9E98, 0x18 +.global lbl_803CCEB0 +lbl_803CCEB0: + .incbin "baserom.dol", 0x3C9EB0, 0x30 +.global lbl_803CCEE0 +lbl_803CCEE0: + .incbin "baserom.dol", 0x3C9EE0, 0x38 +.global lbl_803CCF18 +lbl_803CCF18: + .incbin "baserom.dol", 0x3C9F18, 0x8 +.global lbl_803CCF20 +lbl_803CCF20: + .incbin "baserom.dol", 0x3C9F20, 0x8 +.global lbl_803CCF28 +lbl_803CCF28: + .incbin "baserom.dol", 0x3C9F28, 0x40 +.global lbl_803CCF68 +lbl_803CCF68: + .incbin "baserom.dol", 0x3C9F68, 0x8 +.global lbl_803CCF70 +lbl_803CCF70: + .incbin "baserom.dol", 0x3C9F70, 0x8 +.global lbl_803CCF78 +lbl_803CCF78: + .incbin "baserom.dol", 0x3C9F78, 0x18 +.global lbl_803CCF90 +lbl_803CCF90: + .incbin "baserom.dol", 0x3C9F90, 0x1C +.global lbl_803CCFAC +lbl_803CCFAC: + .incbin "baserom.dol", 0x3C9FAC, 0xC +.global lbl_803CCFB8 +lbl_803CCFB8: + .incbin "baserom.dol", 0x3C9FB8, 0x10 +.global lbl_803CCFC8 +lbl_803CCFC8: + .incbin "baserom.dol", 0x3C9FC8, 0x5C +.global lbl_803CD024 +lbl_803CD024: + .incbin "baserom.dol", 0x3CA024, 0x9C +.global lbl_803CD0C0 +lbl_803CD0C0: + .incbin "baserom.dol", 0x3CA0C0, 0x190 +.global lbl_803CD250 +lbl_803CD250: + .incbin "baserom.dol", 0x3CA250, 0x38 +.global lbl_803CD288 +lbl_803CD288: + .incbin "baserom.dol", 0x3CA288, 0x8 +.global lbl_803CD290 +lbl_803CD290: + .incbin "baserom.dol", 0x3CA290, 0x14 +.global lbl_803CD2A4 +lbl_803CD2A4: + .incbin "baserom.dol", 0x3CA2A4, 0x14 +.global lbl_803CD2B8 +lbl_803CD2B8: + .incbin "baserom.dol", 0x3CA2B8, 0x10 +.global lbl_803CD2C8 +lbl_803CD2C8: + .incbin "baserom.dol", 0x3CA2C8, 0x10 +.global lbl_803CD2D8 +lbl_803CD2D8: + .incbin "baserom.dol", 0x3CA2D8, 0x310 +.global lbl_803CD5E8 +lbl_803CD5E8: + .incbin "baserom.dol", 0x3CA5E8, 0x10 +.global lbl_803CD5F8 +lbl_803CD5F8: + .incbin "baserom.dol", 0x3CA5F8, 0x8 +.global lbl_803CD600 +lbl_803CD600: + .incbin "baserom.dol", 0x3CA600, 0x28 +.global lbl_803CD628 +lbl_803CD628: + .incbin "baserom.dol", 0x3CA628, 0x8 +.global lbl_803CD630 +lbl_803CD630: + .incbin "baserom.dol", 0x3CA630, 0x10 +.global lbl_803CD640 +lbl_803CD640: + .incbin "baserom.dol", 0x3CA640, 0x2C +.global lbl_803CD66C +lbl_803CD66C: + .incbin "baserom.dol", 0x3CA66C, 0xC +.global lbl_803CD678 +lbl_803CD678: + .incbin "baserom.dol", 0x3CA678, 0x18 +.global lbl_803CD690 +lbl_803CD690: + .incbin "baserom.dol", 0x3CA690, 0x18 +.global lbl_803CD6A8 +lbl_803CD6A8: + .incbin "baserom.dol", 0x3CA6A8, 0x18 +.global lbl_803CD6C0 +lbl_803CD6C0: + .incbin "baserom.dol", 0x3CA6C0, 0xA4 +.global lbl_803CD764 +lbl_803CD764: + .incbin "baserom.dol", 0x3CA764, 0x14 +.global lbl_803CD778 +lbl_803CD778: + .incbin "baserom.dol", 0x3CA778, 0x14 +.global lbl_803CD78C +lbl_803CD78C: + .incbin "baserom.dol", 0x3CA78C, 0x34 +.global lbl_803CD7C0 +lbl_803CD7C0: + .incbin "baserom.dol", 0x3CA7C0, 0x18 +.global lbl_803CD7D8 +lbl_803CD7D8: + .incbin "baserom.dol", 0x3CA7D8, 0x14 +.global lbl_803CD7EC +lbl_803CD7EC: + .incbin "baserom.dol", 0x3CA7EC, 0x10 +.global lbl_803CD7FC +lbl_803CD7FC: + .incbin "baserom.dol", 0x3CA7FC, 0x10 +.global lbl_803CD80C +lbl_803CD80C: + .incbin "baserom.dol", 0x3CA80C, 0x154 +.global lbl_803CD960 +lbl_803CD960: + .incbin "baserom.dol", 0x3CA960, 0x8 +.global lbl_803CD968 +lbl_803CD968: + .incbin "baserom.dol", 0x3CA968, 0x508 +.global lbl_803CDE70 +lbl_803CDE70: + .incbin "baserom.dol", 0x3CAE70, 0x8 +.global lbl_803CDE78 +lbl_803CDE78: + .incbin "baserom.dol", 0x3CAE78, 0x8 +.global lbl_803CDE80 +lbl_803CDE80: + .incbin "baserom.dol", 0x3CAE80, 0x8 +.global lbl_803CDE88 +lbl_803CDE88: + .incbin "baserom.dol", 0x3CAE88, 0x18 +.global lbl_803CDEA0 +lbl_803CDEA0: + .incbin "baserom.dol", 0x3CAEA0, 0x20 +.global lbl_803CDEC0 +lbl_803CDEC0: + .incbin "baserom.dol", 0x3CAEC0, 0x14 +.global lbl_803CDED4 +lbl_803CDED4: + .incbin "baserom.dol", 0x3CAED4, 0x14 +.global lbl_803CDEE8 +lbl_803CDEE8: + .incbin "baserom.dol", 0x3CAEE8, 0x110 +.global lbl_803CDFF8 +lbl_803CDFF8: + .incbin "baserom.dol", 0x3CAFF8, 0x10 +.global lbl_803CE008 +lbl_803CE008: + .incbin "baserom.dol", 0x3CB008, 0x10 +.global lbl_803CE018 +lbl_803CE018: + .incbin "baserom.dol", 0x3CB018, 0x8 +.global lbl_803CE020 +lbl_803CE020: + .incbin "baserom.dol", 0x3CB020, 0x5C +.global lbl_803CE07C +lbl_803CE07C: + .incbin "baserom.dol", 0x3CB07C, 0x25C +.global lbl_803CE2D8 +lbl_803CE2D8: + .incbin "baserom.dol", 0x3CB2D8, 0x20 +.global lbl_803CE2F8 +lbl_803CE2F8: + .incbin "baserom.dol", 0x3CB2F8, 0x40 +.global lbl_803CE338 +lbl_803CE338: + .incbin "baserom.dol", 0x3CB338, 0x74 +.global lbl_803CE3AC +lbl_803CE3AC: + .incbin "baserom.dol", 0x3CB3AC, 0x17C +.global lbl_803CE528 +lbl_803CE528: + .incbin "baserom.dol", 0x3CB528, 0x8 +.global lbl_803CE530 +lbl_803CE530: + .incbin "baserom.dol", 0x3CB530, 0x18 +.global lbl_803CE548 +lbl_803CE548: + .incbin "baserom.dol", 0x3CB548, 0x20 +.global lbl_803CE568 +lbl_803CE568: + .incbin "baserom.dol", 0x3CB568, 0x30 +.global lbl_803CE598 +lbl_803CE598: + .incbin "baserom.dol", 0x3CB598, 0x28 +.global lbl_803CE5C0 +lbl_803CE5C0: + .incbin "baserom.dol", 0x3CB5C0, 0x8 +.global lbl_803CE5C8 +lbl_803CE5C8: + .incbin "baserom.dol", 0x3CB5C8, 0x28 +.global lbl_803CE5F0 +lbl_803CE5F0: + .incbin "baserom.dol", 0x3CB5F0, 0x60 +.global lbl_803CE650 +lbl_803CE650: + .incbin "baserom.dol", 0x3CB650, 0x58 +.global lbl_803CE6A8 +lbl_803CE6A8: + .incbin "baserom.dol", 0x3CB6A8, 0x90 +.global lbl_803CE738 +lbl_803CE738: + .incbin "baserom.dol", 0x3CB738, 0x1D8 +.global lbl_803CE910 +lbl_803CE910: + .incbin "baserom.dol", 0x3CB910, 0xC0 +.global lbl_803CE9D0 +lbl_803CE9D0: + .incbin "baserom.dol", 0x3CB9D0, 0x40 +.global lbl_803CEA10 +lbl_803CEA10: + .incbin "baserom.dol", 0x3CBA10, 0x80 +.global lbl_803CEA90 +lbl_803CEA90: + .incbin "baserom.dol", 0x3CBA90, 0x20 +.global lbl_803CEAB0 +lbl_803CEAB0: + .incbin "baserom.dol", 0x3CBAB0, 0x20 +.global lbl_803CEAD0 +lbl_803CEAD0: + .incbin "baserom.dol", 0x3CBAD0, 0x1C +.global lbl_803CEAEC +lbl_803CEAEC: + .incbin "baserom.dol", 0x3CBAEC, 0x1C +.global lbl_803CEB08 +lbl_803CEB08: + .incbin "baserom.dol", 0x3CBB08, 0x70 +.global lbl_803CEB78 +lbl_803CEB78: + .incbin "baserom.dol", 0x3CBB78, 0x1C +.global lbl_803CEB94 +lbl_803CEB94: + .incbin "baserom.dol", 0x3CBB94, 0x30 +.global lbl_803CEBC4 +lbl_803CEBC4: + .incbin "baserom.dol", 0x3CBBC4, 0x30 +.global lbl_803CEBF4 +lbl_803CEBF4: + .incbin "baserom.dol", 0x3CBBF4, 0x204 +.global lbl_803CEDF8 +lbl_803CEDF8: + .incbin "baserom.dol", 0x3CBDF8, 0x8 +.global lbl_803CEE00 +lbl_803CEE00: + .incbin "baserom.dol", 0x3CBE00, 0x20 +.global lbl_803CEE20 +lbl_803CEE20: + .incbin "baserom.dol", 0x3CBE20, 0x18 +.global lbl_803CEE38 +lbl_803CEE38: + .incbin "baserom.dol", 0x3CBE38, 0x8 +.global lbl_803CEE40 +lbl_803CEE40: + .incbin "baserom.dol", 0x3CBE40, 0x10 +.global lbl_803CEE50 +lbl_803CEE50: + .incbin "baserom.dol", 0x3CBE50, 0x8 +.global lbl_803CEE58 +lbl_803CEE58: + .incbin "baserom.dol", 0x3CBE58, 0x38 +.global lbl_803CEE90 +lbl_803CEE90: + .incbin "baserom.dol", 0x3CBE90, 0x34 +.global lbl_803CEEC4 +lbl_803CEEC4: + .incbin "baserom.dol", 0x3CBEC4, 0x314 +.global lbl_803CF1D8 +lbl_803CF1D8: + .incbin "baserom.dol", 0x3CC1D8, 0x20 +.global lbl_803CF1F8 +lbl_803CF1F8: + .incbin "baserom.dol", 0x3CC1F8, 0x8 +.global lbl_803CF200 +lbl_803CF200: + .incbin "baserom.dol", 0x3CC200, 0x10 +.global lbl_803CF210 +lbl_803CF210: + .incbin "baserom.dol", 0x3CC210, 0xE0 +.global lbl_803CF2F0 +lbl_803CF2F0: + .incbin "baserom.dol", 0x3CC2F0, 0x28 +.global lbl_803CF318 +lbl_803CF318: + .incbin "baserom.dol", 0x3CC318, 0x8 +.global lbl_803CF320 +lbl_803CF320: + .incbin "baserom.dol", 0x3CC320, 0x20 +.global lbl_803CF340 +lbl_803CF340: + .incbin "baserom.dol", 0x3CC340, 0x20 +.global lbl_803CF360 +lbl_803CF360: + .incbin "baserom.dol", 0x3CC360, 0xD8 +.global lbl_803CF438 +lbl_803CF438: + .incbin "baserom.dol", 0x3CC438, 0xB38 +.global lbl_803CFF70 +lbl_803CFF70: + .incbin "baserom.dol", 0x3CCF70, 0x94 +.global lbl_803D0004 +lbl_803D0004: + .incbin "baserom.dol", 0x3CD004, 0x4 +.global lbl_803D0008 +lbl_803D0008: + .incbin "baserom.dol", 0x3CD008, 0x30 +.global lbl_803D0038 +lbl_803D0038: + .incbin "baserom.dol", 0x3CD038, 0x10 +.global lbl_803D0048 +lbl_803D0048: + .incbin "baserom.dol", 0x3CD048, 0x8 +.global lbl_803D0050 +lbl_803D0050: + .incbin "baserom.dol", 0x3CD050, 0x8 +.global lbl_803D0058 +lbl_803D0058: + .incbin "baserom.dol", 0x3CD058, 0x8 +.global lbl_803D0060 +lbl_803D0060: + .incbin "baserom.dol", 0x3CD060, 0x10 +.global lbl_803D0070 +lbl_803D0070: + .incbin "baserom.dol", 0x3CD070, 0x8 +.global lbl_803D0078 +lbl_803D0078: + .incbin "baserom.dol", 0x3CD078, 0x20 +.global lbl_803D0098 +lbl_803D0098: + .incbin "baserom.dol", 0x3CD098, 0x8 +.global lbl_803D00A0 +lbl_803D00A0: + .incbin "baserom.dol", 0x3CD0A0, 0xD0 +.global lbl_803D0170 +lbl_803D0170: + .incbin "baserom.dol", 0x3CD170, 0x30 +.global lbl_803D01A0 +lbl_803D01A0: + .incbin "baserom.dol", 0x3CD1A0, 0x18 +.global lbl_803D01B8 +lbl_803D01B8: + .incbin "baserom.dol", 0x3CD1B8, 0x18 +.global lbl_803D01D0 +lbl_803D01D0: + .incbin "baserom.dol", 0x3CD1D0, 0x20 +.global lbl_803D01F0 +lbl_803D01F0: + .incbin "baserom.dol", 0x3CD1F0, 0x8 +.global lbl_803D01F8 +lbl_803D01F8: + .incbin "baserom.dol", 0x3CD1F8, 0x38 +.global lbl_803D0230 +lbl_803D0230: + .incbin "baserom.dol", 0x3CD230, 0x100 +.global lbl_803D0330 +lbl_803D0330: + .incbin "baserom.dol", 0x3CD330, 0x10 +.global lbl_803D0340 +lbl_803D0340: + .incbin "baserom.dol", 0x3CD340, 0x18 +.global lbl_803D0358 +lbl_803D0358: + .incbin "baserom.dol", 0x3CD358, 0x38 +.global lbl_803D0390 +lbl_803D0390: + .incbin "baserom.dol", 0x3CD390, 0x8 +.global lbl_803D0398 +lbl_803D0398: + .incbin "baserom.dol", 0x3CD398, 0x90 +.global lbl_803D0428 +lbl_803D0428: + .incbin "baserom.dol", 0x3CD428, 0x8 +.global lbl_803D0430 +lbl_803D0430: + .incbin "baserom.dol", 0x3CD430, 0x10 +.global lbl_803D0440 +lbl_803D0440: + .incbin "baserom.dol", 0x3CD440, 0x50 +.global lbl_803D0490 +lbl_803D0490: + .incbin "baserom.dol", 0x3CD490, 0x48 +.global lbl_803D04D8 +lbl_803D04D8: + .incbin "baserom.dol", 0x3CD4D8, 0x44 +.global lbl_803D051C +lbl_803D051C: + .incbin "baserom.dol", 0x3CD51C, 0x14 +.global lbl_803D0530 +lbl_803D0530: + .incbin "baserom.dol", 0x3CD530, 0x20 +.global lbl_803D0550 +lbl_803D0550: + .incbin "baserom.dol", 0x3CD550, 0xD0 +.global lbl_803D0620 +lbl_803D0620: + .incbin "baserom.dol", 0x3CD620, 0x10 +.global lbl_803D0630 +lbl_803D0630: + .incbin "baserom.dol", 0x3CD630, 0x20 +.global lbl_803D0650 +lbl_803D0650: + .incbin "baserom.dol", 0x3CD650, 0x18 +.global lbl_803D0668 +lbl_803D0668: + .incbin "baserom.dol", 0x3CD668, 0x28 +.global lbl_803D0690 +lbl_803D0690: + .incbin "baserom.dol", 0x3CD690, 0x40 +.global lbl_803D06D0 +lbl_803D06D0: + .incbin "baserom.dol", 0x3CD6D0, 0x104 +.global lbl_803D07D4 +lbl_803D07D4: + .incbin "baserom.dol", 0x3CD7D4, 0x10 +.global lbl_803D07E4 +lbl_803D07E4: + .incbin "baserom.dol", 0x3CD7E4, 0x114 +.global lbl_803D08F8 +lbl_803D08F8: + .incbin "baserom.dol", 0x3CD8F8, 0x48 +.global lbl_803D0940 +lbl_803D0940: + .incbin "baserom.dol", 0x3CD940, 0x8 +.global lbl_803D0948 +lbl_803D0948: + .incbin "baserom.dol", 0x3CD948, 0x8C +.global lbl_803D09D4 +lbl_803D09D4: + .incbin "baserom.dol", 0x3CD9D4, 0x1C +.global lbl_803D09F0 +lbl_803D09F0: + .incbin "baserom.dol", 0x3CD9F0, 0x40 +.global lbl_803D0A30 +lbl_803D0A30: + .incbin "baserom.dol", 0x3CDA30, 0x18 +.global lbl_803D0A48 +lbl_803D0A48: + .incbin "baserom.dol", 0x3CDA48, 0x16C +.global lbl_803D0BB4 +lbl_803D0BB4: + .incbin "baserom.dol", 0x3CDBB4, 0x24 +.global lbl_803D0BD8 +lbl_803D0BD8: + .incbin "baserom.dol", 0x3CDBD8, 0x50 +.global lbl_803D0C28 +lbl_803D0C28: + .incbin "baserom.dol", 0x3CDC28, 0xE0 +.global lbl_803D0D08 +lbl_803D0D08: + .incbin "baserom.dol", 0x3CDD08, 0x28 +.global lbl_803D0D30 +lbl_803D0D30: + .incbin "baserom.dol", 0x3CDD30, 0x8 +.global lbl_803D0D38 +lbl_803D0D38: + .incbin "baserom.dol", 0x3CDD38, 0x18 +.global lbl_803D0D50 +lbl_803D0D50: + .incbin "baserom.dol", 0x3CDD50, 0x10 +.global lbl_803D0D60 +lbl_803D0D60: + .incbin "baserom.dol", 0x3CDD60, 0xA4 +.global lbl_803D0E04 +lbl_803D0E04: + .incbin "baserom.dol", 0x3CDE04, 0x28 +.global lbl_803D0E2C +lbl_803D0E2C: + .incbin "baserom.dol", 0x3CDE2C, 0xC +.global lbl_803D0E38 +lbl_803D0E38: + .incbin "baserom.dol", 0x3CDE38, 0x20 +.global lbl_803D0E58 +lbl_803D0E58: + .incbin "baserom.dol", 0x3CDE58, 0xB8 +.global lbl_803D0F10 +lbl_803D0F10: + .incbin "baserom.dol", 0x3CDF10, 0x28 +.global lbl_803D0F38 +lbl_803D0F38: + .incbin "baserom.dol", 0x3CDF38, 0x28 +.global lbl_803D0F60 +lbl_803D0F60: + .incbin "baserom.dol", 0x3CDF60, 0x184 +.global lbl_803D10E4 +lbl_803D10E4: + .incbin "baserom.dol", 0x3CE0E4, 0x12C +.global lbl_803D1210 +lbl_803D1210: + .incbin "baserom.dol", 0x3CE210, 0x20 +.global lbl_803D1230 +lbl_803D1230: + .incbin "baserom.dol", 0x3CE230, 0xC8 +.global lbl_803D12F8 +lbl_803D12F8: + .incbin "baserom.dol", 0x3CE2F8, 0x8 +.global lbl_803D1300 +lbl_803D1300: + .incbin "baserom.dol", 0x3CE300, 0x60 +.global lbl_803D1360 +lbl_803D1360: + .incbin "baserom.dol", 0x3CE360, 0x78 +.global lbl_803D13D8 +lbl_803D13D8: + .incbin "baserom.dol", 0x3CE3D8, 0xC0 +.global lbl_803D1498 +lbl_803D1498: + .incbin "baserom.dol", 0x3CE498, 0x8 +.global lbl_803D14A0 +lbl_803D14A0: + .incbin "baserom.dol", 0x3CE4A0, 0x18 +.global lbl_803D14B8 +lbl_803D14B8: + .incbin "baserom.dol", 0x3CE4B8, 0x28 +.global lbl_803D14E0 +lbl_803D14E0: + .incbin "baserom.dol", 0x3CE4E0, 0x88 +.global lbl_803D1568 +lbl_803D1568: + .incbin "baserom.dol", 0x3CE568, 0x14 +.global lbl_803D157C +lbl_803D157C: + .incbin "baserom.dol", 0x3CE57C, 0x14 +.global lbl_803D1590 +lbl_803D1590: + .incbin "baserom.dol", 0x3CE590, 0xA0 +.global lbl_803D1630 +lbl_803D1630: + .incbin "baserom.dol", 0x3CE630, 0x8 +.global lbl_803D1638 +lbl_803D1638: + .incbin "baserom.dol", 0x3CE638, 0x8 +.global lbl_803D1640 +lbl_803D1640: + .incbin "baserom.dol", 0x3CE640, 0x18 +.global lbl_803D1658 +lbl_803D1658: + .incbin "baserom.dol", 0x3CE658, 0xC +.global lbl_803D1664 +lbl_803D1664: + .incbin "baserom.dol", 0x3CE664, 0x14 +.global lbl_803D1678 +lbl_803D1678: + .incbin "baserom.dol", 0x3CE678, 0xD8 +.global lbl_803D1750 +lbl_803D1750: + .incbin "baserom.dol", 0x3CE750, 0x28 +.global lbl_803D1778 +lbl_803D1778: + .incbin "baserom.dol", 0x3CE778, 0x28 +.global lbl_803D17A0 +lbl_803D17A0: + .incbin "baserom.dol", 0x3CE7A0, 0x14 +.global lbl_803D17B4 +lbl_803D17B4: + .incbin "baserom.dol", 0x3CE7B4, 0x14 +.global lbl_803D17C8 +lbl_803D17C8: + .incbin "baserom.dol", 0x3CE7C8, 0x14 +.global lbl_803D17DC +lbl_803D17DC: + .incbin "baserom.dol", 0x3CE7DC, 0x20 +.global lbl_803D17FC +lbl_803D17FC: + .incbin "baserom.dol", 0x3CE7FC, 0x2C +.global lbl_803D1828 +lbl_803D1828: + .incbin "baserom.dol", 0x3CE828, 0x1C8 +.global lbl_803D19F0 +lbl_803D19F0: + .incbin "baserom.dol", 0x3CE9F0, 0x8 +.global lbl_803D19F8 +lbl_803D19F8: + .incbin "baserom.dol", 0x3CE9F8, 0x10 +.global lbl_803D1A08 +lbl_803D1A08: + .incbin "baserom.dol", 0x3CEA08, 0x18 +.global lbl_803D1A20 +lbl_803D1A20: + .incbin "baserom.dol", 0x3CEA20, 0x58 +.global lbl_803D1A78 +lbl_803D1A78: + .incbin "baserom.dol", 0x3CEA78, 0x8 +.global lbl_803D1A80 +lbl_803D1A80: + .incbin "baserom.dol", 0x3CEA80, 0x20 +.global lbl_803D1AA0 +lbl_803D1AA0: + .incbin "baserom.dol", 0x3CEAA0, 0x8 +.global lbl_803D1AA8 +lbl_803D1AA8: + .incbin "baserom.dol", 0x3CEAA8, 0x10 +.global lbl_803D1AB8 +lbl_803D1AB8: + .incbin "baserom.dol", 0x3CEAB8, 0x10 +.global lbl_803D1AC8 +lbl_803D1AC8: + .incbin "baserom.dol", 0x3CEAC8, 0x10 +.global lbl_803D1AD8 +lbl_803D1AD8: + .incbin "baserom.dol", 0x3CEAD8, 0x88 +.global lbl_803D1B60 +lbl_803D1B60: + .incbin "baserom.dol", 0x3CEB60, 0x10 +.global lbl_803D1B70 +lbl_803D1B70: + .incbin "baserom.dol", 0x3CEB70, 0x18 +.global lbl_803D1B88 +lbl_803D1B88: + .incbin "baserom.dol", 0x3CEB88, 0x8 +.global lbl_803D1B90 +lbl_803D1B90: + .incbin "baserom.dol", 0x3CEB90, 0x10 +.global lbl_803D1BA0 +lbl_803D1BA0: + .incbin "baserom.dol", 0x3CEBA0, 0x1C +.global lbl_803D1BBC +lbl_803D1BBC: + .incbin "baserom.dol", 0x3CEBBC, 0x1C +.global lbl_803D1BD8 +lbl_803D1BD8: + .incbin "baserom.dol", 0x3CEBD8, 0xE0 +.global lbl_803D1CB8 +lbl_803D1CB8: + .incbin "baserom.dol", 0x3CECB8, 0x1E0 +.global lbl_803D1E98 +lbl_803D1E98: + .incbin "baserom.dol", 0x3CEE98, 0x18 +.global lbl_803D1EB0 +lbl_803D1EB0: + .incbin "baserom.dol", 0x3CEEB0, 0x70 +.global lbl_803D1F20 +lbl_803D1F20: + .incbin "baserom.dol", 0x3CEF20, 0x10 +.global lbl_803D1F30 +lbl_803D1F30: + .incbin "baserom.dol", 0x3CEF30, 0x18 +.global lbl_803D1F48 +lbl_803D1F48: + .incbin "baserom.dol", 0x3CEF48, 0xB8 +.global lbl_803D2000 +lbl_803D2000: + .incbin "baserom.dol", 0x3CF000, 0x18 +.global lbl_803D2018 +lbl_803D2018: + .incbin "baserom.dol", 0x3CF018, 0x20 +.global lbl_803D2038 +lbl_803D2038: + .incbin "baserom.dol", 0x3CF038, 0x18 +.global lbl_803D2050 +lbl_803D2050: + .incbin "baserom.dol", 0x3CF050, 0x20 +.global lbl_803D2070 +lbl_803D2070: + .incbin "baserom.dol", 0x3CF070, 0x3D0 +.global lbl_803D2440 +lbl_803D2440: + .incbin "baserom.dol", 0x3CF440, 0x3C +.global lbl_803D247C +lbl_803D247C: + .incbin "baserom.dol", 0x3CF47C, 0x104 +.global lbl_803D2580 +lbl_803D2580: + .incbin "baserom.dol", 0x3CF580, 0x8 +.global lbl_803D2588 +lbl_803D2588: + .incbin "baserom.dol", 0x3CF588, 0x8 +.global lbl_803D2590 +lbl_803D2590: + .incbin "baserom.dol", 0x3CF590, 0x124 +.global lbl_803D26B4 +lbl_803D26B4: + .incbin "baserom.dol", 0x3CF6B4, 0x3C +.global lbl_803D26F0 +lbl_803D26F0: + .incbin "baserom.dol", 0x3CF6F0, 0x28 +.global lbl_803D2718 +lbl_803D2718: + .incbin "baserom.dol", 0x3CF718, 0x8 +.global lbl_803D2720 +lbl_803D2720: + .incbin "baserom.dol", 0x3CF720, 0x18 +.global lbl_803D2738 +lbl_803D2738: + .incbin "baserom.dol", 0x3CF738, 0x18 +.global lbl_803D2750 +lbl_803D2750: + .incbin "baserom.dol", 0x3CF750, 0x18 +.global lbl_803D2768 +lbl_803D2768: + .incbin "baserom.dol", 0x3CF768, 0x10 +.global lbl_803D2778 +lbl_803D2778: + .incbin "baserom.dol", 0x3CF778, 0x18 +.global lbl_803D2790 +lbl_803D2790: + .incbin "baserom.dol", 0x3CF790, 0x20 +.global lbl_803D27B0 +lbl_803D27B0: + .incbin "baserom.dol", 0x3CF7B0, 0x18 +.global lbl_803D27C8 +lbl_803D27C8: + .incbin "baserom.dol", 0x3CF7C8, 0x18 +.global lbl_803D27E0 +lbl_803D27E0: + .incbin "baserom.dol", 0x3CF7E0, 0x20 +.global lbl_803D2800 +lbl_803D2800: + .incbin "baserom.dol", 0x3CF800, 0x18 +.global lbl_803D2818 +lbl_803D2818: + .incbin "baserom.dol", 0x3CF818, 0x78 +.global lbl_803D2890 +lbl_803D2890: + .incbin "baserom.dol", 0x3CF890, 0x78 +.global lbl_803D2908 +lbl_803D2908: + .incbin "baserom.dol", 0x3CF908, 0x6E8 +.global lbl_803D2FF0 +lbl_803D2FF0: + .incbin "baserom.dol", 0x3CFFF0, 0x48 +.global lbl_803D3038 +lbl_803D3038: + .incbin "baserom.dol", 0x3D0038, 0x170 +.global lbl_803D31A8 +lbl_803D31A8: + .incbin "baserom.dol", 0x3D01A8, 0x28 +.global lbl_803D31D0 +lbl_803D31D0: + .incbin "baserom.dol", 0x3D01D0, 0x78 +.global lbl_803D3248 +lbl_803D3248: + .incbin "baserom.dol", 0x3D0248, 0x30 +.global lbl_803D3278 +lbl_803D3278: + .incbin "baserom.dol", 0x3D0278, 0x30 +.global lbl_803D32A8 +lbl_803D32A8: + .incbin "baserom.dol", 0x3D02A8, 0x68 +.global lbl_803D3310 +lbl_803D3310: + .incbin "baserom.dol", 0x3D0310, 0xF8 +.global lbl_803D3408 +lbl_803D3408: + .incbin "baserom.dol", 0x3D0408, 0x8 +.global lbl_803D3410 +lbl_803D3410: + .incbin "baserom.dol", 0x3D0410, 0x58 +.global lbl_803D3468 +lbl_803D3468: + .incbin "baserom.dol", 0x3D0468, 0x28 +.global lbl_803D3490 +lbl_803D3490: + .incbin "baserom.dol", 0x3D0490, 0x10 +.global lbl_803D34A0 +lbl_803D34A0: + .incbin "baserom.dol", 0x3D04A0, 0xE40 +.global lbl_803D42E0 +lbl_803D42E0: + .incbin "baserom.dol", 0x3D12E0, 0x8 +.global lbl_803D42E8 +lbl_803D42E8: + .incbin "baserom.dol", 0x3D12E8, 0x28 +.global lbl_803D4310 +lbl_803D4310: + .incbin "baserom.dol", 0x3D1310, 0x70 +.global lbl_803D4380 +lbl_803D4380: + .incbin "baserom.dol", 0x3D1380, 0x8 +.global lbl_803D4388 +lbl_803D4388: + .incbin "baserom.dol", 0x3D1388, 0x18 +.global lbl_803D43A0 +lbl_803D43A0: + .incbin "baserom.dol", 0x3D13A0, 0x28 +.global lbl_803D43C8 +lbl_803D43C8: + .incbin "baserom.dol", 0x3D13C8, 0x14 +.global lbl_803D43DC +lbl_803D43DC: + .incbin "baserom.dol", 0x3D13DC, 0x14 +.global lbl_803D43F0 +lbl_803D43F0: + .incbin "baserom.dol", 0x3D13F0, 0x1C4 +.global lbl_803D45B4 +lbl_803D45B4: + .incbin "baserom.dol", 0x3D15B4, 0x17C +.global lbl_803D4730 +lbl_803D4730: + .incbin "baserom.dol", 0x3D1730, 0x30 +.global lbl_803D4760 +lbl_803D4760: + .incbin "baserom.dol", 0x3D1760, 0x8 +.global lbl_803D4768 +lbl_803D4768: + .incbin "baserom.dol", 0x3D1768, 0x18 +.global lbl_803D4780 +lbl_803D4780: + .incbin "baserom.dol", 0x3D1780, 0x18 +.global lbl_803D4798 +lbl_803D4798: + .incbin "baserom.dol", 0x3D1798, 0x10 +.global lbl_803D47A8 +lbl_803D47A8: + .incbin "baserom.dol", 0x3D17A8, 0x24 +.global lbl_803D47CC +lbl_803D47CC: + .incbin "baserom.dol", 0x3D17CC, 0x2C4 +.global lbl_803D4A90 +lbl_803D4A90: + .incbin "baserom.dol", 0x3D1A90, 0xC0 +.global lbl_803D4B50 +lbl_803D4B50: + .incbin "baserom.dol", 0x3D1B50, 0x28 +.global lbl_803D4B78 +lbl_803D4B78: + .incbin "baserom.dol", 0x3D1B78, 0x20 +.global lbl_803D4B98 +lbl_803D4B98: + .incbin "baserom.dol", 0x3D1B98, 0x30 +.global lbl_803D4BC8 +lbl_803D4BC8: + .incbin "baserom.dol", 0x3D1BC8, 0x50 +.global lbl_803D4C18 +lbl_803D4C18: + .incbin "baserom.dol", 0x3D1C18, 0xB4 +.global lbl_803D4CCC +lbl_803D4CCC: + .incbin "baserom.dol", 0x3D1CCC, 0x90 +.global lbl_803D4D5C +lbl_803D4D5C: + .incbin "baserom.dol", 0x3D1D5C, 0x3A4 +.global lbl_803D5100 +lbl_803D5100: + .incbin "baserom.dol", 0x3D2100, 0x130 +.global lbl_803D5230 +lbl_803D5230: + .incbin "baserom.dol", 0x3D2230, 0x10 +.global lbl_803D5240 +lbl_803D5240: + .incbin "baserom.dol", 0x3D2240, 0x38 +.global lbl_803D5278 +lbl_803D5278: + .incbin "baserom.dol", 0x3D2278, 0x20 +.global lbl_803D5298 +lbl_803D5298: + .incbin "baserom.dol", 0x3D2298, 0x18 +.global lbl_803D52B0 +lbl_803D52B0: + .incbin "baserom.dol", 0x3D22B0, 0x30 +.global lbl_803D52E0 +lbl_803D52E0: + .incbin "baserom.dol", 0x3D22E0, 0xE0 +.global lbl_803D53C0 +lbl_803D53C0: + .incbin "baserom.dol", 0x3D23C0, 0x20 +.global lbl_803D53E0 +lbl_803D53E0: + .incbin "baserom.dol", 0x3D23E0, 0x18 +.global lbl_803D53F8 +lbl_803D53F8: + .incbin "baserom.dol", 0x3D23F8, 0x18 +.global lbl_803D5410 +lbl_803D5410: + .incbin "baserom.dol", 0x3D2410, 0x8 +.global lbl_803D5418 +lbl_803D5418: + .incbin "baserom.dol", 0x3D2418, 0x8 +.global lbl_803D5420 +lbl_803D5420: + .incbin "baserom.dol", 0x3D2420, 0x8 +.global lbl_803D5428 +lbl_803D5428: + .incbin "baserom.dol", 0x3D2428, 0xC +.global lbl_803D5434 +lbl_803D5434: + .incbin "baserom.dol", 0x3D2434, 0x10 +.global lbl_803D5444 +lbl_803D5444: + .incbin "baserom.dol", 0x3D2444, 0x10 +.global lbl_803D5454 +lbl_803D5454: + .incbin "baserom.dol", 0x3D2454, 0x18 +.global lbl_803D546C +lbl_803D546C: + .incbin "baserom.dol", 0x3D246C, 0xC +.global lbl_803D5478 +lbl_803D5478: + .incbin "baserom.dol", 0x3D2478, 0x50 +.global lbl_803D54C8 +lbl_803D54C8: + .incbin "baserom.dol", 0x3D24C8, 0xA8 +.global lbl_803D5570 +lbl_803D5570: + .incbin "baserom.dol", 0x3D2570, 0xA8 +.global lbl_803D5618 +lbl_803D5618: + .incbin "baserom.dol", 0x3D2618, 0x250 +.global lbl_803D5868 +lbl_803D5868: + .incbin "baserom.dol", 0x3D2868, 0x18 +.global lbl_803D5880 +lbl_803D5880: + .incbin "baserom.dol", 0x3D2880, 0x10 +.global lbl_803D5890 +lbl_803D5890: + .incbin "baserom.dol", 0x3D2890, 0xC +.global lbl_803D589C +lbl_803D589C: + .incbin "baserom.dol", 0x3D289C, 0x3C +.global lbl_803D58D8 +lbl_803D58D8: + .incbin "baserom.dol", 0x3D28D8, 0x30 +.global lbl_803D5908 +lbl_803D5908: + .incbin "baserom.dol", 0x3D2908, 0x60 +.global lbl_803D5968 +lbl_803D5968: + .incbin "baserom.dol", 0x3D2968, 0x18 +.global lbl_803D5980 +lbl_803D5980: + .incbin "baserom.dol", 0x3D2980, 0x18 +.global lbl_803D5998 +lbl_803D5998: + .incbin "baserom.dol", 0x3D2998, 0xDC +.global lbl_803D5A74 +lbl_803D5A74: + .incbin "baserom.dol", 0x3D2A74, 0x104 +.global lbl_803D5B78 +lbl_803D5B78: + .incbin "baserom.dol", 0x3D2B78, 0x8 +.global lbl_803D5B80 +lbl_803D5B80: + .incbin "baserom.dol", 0x3D2B80, 0xC +.global lbl_803D5B8C +lbl_803D5B8C: + .incbin "baserom.dol", 0x3D2B8C, 0x18 +.global lbl_803D5BA4 +lbl_803D5BA4: + .incbin "baserom.dol", 0x3D2BA4, 0xC +.global lbl_803D5BB0 +lbl_803D5BB0: + .incbin "baserom.dol", 0x3D2BB0, 0x20 +.global lbl_803D5BD0 +lbl_803D5BD0: + .incbin "baserom.dol", 0x3D2BD0, 0x30 +.global lbl_803D5C00 +lbl_803D5C00: + .incbin "baserom.dol", 0x3D2C00, 0x30 +.global lbl_803D5C30 +lbl_803D5C30: + .incbin "baserom.dol", 0x3D2C30, 0x8 +.global lbl_803D5C38 +lbl_803D5C38: + .incbin "baserom.dol", 0x3D2C38, 0x10 +.global lbl_803D5C48 +lbl_803D5C48: + .incbin "baserom.dol", 0x3D2C48, 0x108 +.global lbl_803D5D50 +lbl_803D5D50: + .incbin "baserom.dol", 0x3D2D50, 0x30 +.global lbl_803D5D80 +lbl_803D5D80: + .incbin "baserom.dol", 0x3D2D80, 0x30 +.global lbl_803D5DB0 +lbl_803D5DB0: + .incbin "baserom.dol", 0x3D2DB0, 0xA0 +.global lbl_803D5E50 +lbl_803D5E50: + .incbin "baserom.dol", 0x3D2E50, 0x30 +.global lbl_803D5E80 +lbl_803D5E80: + .incbin "baserom.dol", 0x3D2E80, 0x18 +.global lbl_803D5E98 +lbl_803D5E98: + .incbin "baserom.dol", 0x3D2E98, 0x18 +.global lbl_803D5EB0 +lbl_803D5EB0: + .incbin "baserom.dol", 0x3D2EB0, 0x8 +.global lbl_803D5EB8 +lbl_803D5EB8: + .incbin "baserom.dol", 0x3D2EB8, 0x30 +.global lbl_803D5EE8 +lbl_803D5EE8: + .incbin "baserom.dol", 0x3D2EE8, 0x8 +.global lbl_803D5EF0 +lbl_803D5EF0: + .incbin "baserom.dol", 0x3D2EF0, 0x118 +.global lbl_803D6008 +lbl_803D6008: + .incbin "baserom.dol", 0x3D3008, 0x10 +.global lbl_803D6018 +lbl_803D6018: + .incbin "baserom.dol", 0x3D3018, 0x8 +.global lbl_803D6020 +lbl_803D6020: + .incbin "baserom.dol", 0x3D3020, 0x18 +.global lbl_803D6038 +lbl_803D6038: + .incbin "baserom.dol", 0x3D3038, 0xB0 +.global lbl_803D60E8 +lbl_803D60E8: + .incbin "baserom.dol", 0x3D30E8, 0x8 +.global lbl_803D60F0 +lbl_803D60F0: + .incbin "baserom.dol", 0x3D30F0, 0x20 +.global lbl_803D6110 +lbl_803D6110: + .incbin "baserom.dol", 0x3D3110, 0x8 +.global lbl_803D6118 +lbl_803D6118: + .incbin "baserom.dol", 0x3D3118, 0x20 +.global lbl_803D6138 +lbl_803D6138: + .incbin "baserom.dol", 0x3D3138, 0x50 +.global lbl_803D6188 +lbl_803D6188: + .incbin "baserom.dol", 0x3D3188, 0x8 +.global lbl_803D6190 +lbl_803D6190: + .incbin "baserom.dol", 0x3D3190, 0x8 +.global lbl_803D6198 +lbl_803D6198: + .incbin "baserom.dol", 0x3D3198, 0x80 +.global lbl_803D6218 +lbl_803D6218: + .incbin "baserom.dol", 0x3D3218, 0x178 +.global lbl_803D6390 +lbl_803D6390: + .incbin "baserom.dol", 0x3D3390, 0x178 +.global lbl_803D6508 +lbl_803D6508: + .incbin "baserom.dol", 0x3D3508, 0x38 +.global lbl_803D6540 +lbl_803D6540: + .incbin "baserom.dol", 0x3D3540, 0x8 +.global lbl_803D6548 +lbl_803D6548: + .incbin "baserom.dol", 0x3D3548, 0x8 +.global lbl_803D6550 +lbl_803D6550: + .incbin "baserom.dol", 0x3D3550, 0x20 +.global lbl_803D6570 +lbl_803D6570: + .incbin "baserom.dol", 0x3D3570, 0x10 +.global lbl_803D6580 +lbl_803D6580: + .incbin "baserom.dol", 0x3D3580, 0x20 +.global lbl_803D65A0 +lbl_803D65A0: + .incbin "baserom.dol", 0x3D35A0, 0x18 +.global lbl_803D65B8 +lbl_803D65B8: + .incbin "baserom.dol", 0x3D35B8, 0x44 +.global lbl_803D65FC +lbl_803D65FC: + .incbin "baserom.dol", 0x3D35FC, 0x18 +.global lbl_803D6614 +lbl_803D6614: + .incbin "baserom.dol", 0x3D3614, 0x10 +.global lbl_803D6624 +lbl_803D6624: + .incbin "baserom.dol", 0x3D3624, 0x18 +.global lbl_803D663C +lbl_803D663C: + .incbin "baserom.dol", 0x3D363C, 0x18 +.global lbl_803D6654 +lbl_803D6654: + .incbin "baserom.dol", 0x3D3654, 0xB0 +.global lbl_803D6704 +lbl_803D6704: + .incbin "baserom.dol", 0x3D3704, 0x30 +.global lbl_803D6734 +lbl_803D6734: + .incbin "baserom.dol", 0x3D3734, 0x30 +.global lbl_803D6764 +lbl_803D6764: + .incbin "baserom.dol", 0x3D3764, 0x30 +.global lbl_803D6794 +lbl_803D6794: + .incbin "baserom.dol", 0x3D3794, 0x20 +.global lbl_803D67B4 +lbl_803D67B4: + .incbin "baserom.dol", 0x3D37B4, 0x40 +.global lbl_803D67F4 +lbl_803D67F4: + .incbin "baserom.dol", 0x3D37F4, 0x20 +.global lbl_803D6814 +lbl_803D6814: + .incbin "baserom.dol", 0x3D3814, 0x18 +.global lbl_803D682C +lbl_803D682C: + .incbin "baserom.dol", 0x3D382C, 0x30 +.global lbl_803D685C +lbl_803D685C: + .incbin "baserom.dol", 0x3D385C, 0x1C +.global lbl_803D6878 +lbl_803D6878: + .incbin "baserom.dol", 0x3D3878, 0x8 +.global lbl_803D6880 +lbl_803D6880: + .incbin "baserom.dol", 0x3D3880, 0x8 +.global lbl_803D6888 +lbl_803D6888: + .incbin "baserom.dol", 0x3D3888, 0x8 +.global lbl_803D6890 +lbl_803D6890: + .incbin "baserom.dol", 0x3D3890, 0x8 +.global lbl_803D6898 +lbl_803D6898: + .incbin "baserom.dol", 0x3D3898, 0x8 +.global lbl_803D68A0 +lbl_803D68A0: + .incbin "baserom.dol", 0x3D38A0, 0x8 +.global lbl_803D68A8 +lbl_803D68A8: + .incbin "baserom.dol", 0x3D38A8, 0x8 +.global lbl_803D68B0 +lbl_803D68B0: + .incbin "baserom.dol", 0x3D38B0, 0x8 +.global lbl_803D68B8 +lbl_803D68B8: + .incbin "baserom.dol", 0x3D38B8, 0x8 +.global lbl_803D68C0 +lbl_803D68C0: + .incbin "baserom.dol", 0x3D38C0, 0x8 +.global lbl_803D68C8 +lbl_803D68C8: + .incbin "baserom.dol", 0x3D38C8, 0x8 +.global lbl_803D68D0 +lbl_803D68D0: + .incbin "baserom.dol", 0x3D38D0, 0x8 +.global lbl_803D68D8 +lbl_803D68D8: + .incbin "baserom.dol", 0x3D38D8, 0x8 +.global lbl_803D68E0 +lbl_803D68E0: + .incbin "baserom.dol", 0x3D38E0, 0x18 +.global lbl_803D68F8 +lbl_803D68F8: + .incbin "baserom.dol", 0x3D38F8, 0x50 +.global lbl_803D6948 +lbl_803D6948: + .incbin "baserom.dol", 0x3D3948, 0x68 +.global lbl_803D69B0 +lbl_803D69B0: + .incbin "baserom.dol", 0x3D39B0, 0x18 +.global lbl_803D69C8 +lbl_803D69C8: + .incbin "baserom.dol", 0x3D39C8, 0x18 +.global lbl_803D69E0 +lbl_803D69E0: + .incbin "baserom.dol", 0x3D39E0, 0x8 +.global lbl_803D69E8 +lbl_803D69E8: + .incbin "baserom.dol", 0x3D39E8, 0x18 +.global lbl_803D6A00 +lbl_803D6A00: + .incbin "baserom.dol", 0x3D3A00, 0x20 +.global lbl_803D6A20 +lbl_803D6A20: + .incbin "baserom.dol", 0x3D3A20, 0x28 +.global lbl_803D6A48 +lbl_803D6A48: + .incbin "baserom.dol", 0x3D3A48, 0x8 +.global lbl_803D6A50 +lbl_803D6A50: + .incbin "baserom.dol", 0x3D3A50, 0xC +.global lbl_803D6A5C +lbl_803D6A5C: + .incbin "baserom.dol", 0x3D3A5C, 0x1C +.global lbl_803D6A78 +lbl_803D6A78: + .incbin "baserom.dol", 0x3D3A78, 0x18 +.global lbl_803D6A90 +lbl_803D6A90: + .incbin "baserom.dol", 0x3D3A90, 0x18 +.global lbl_803D6AA8 +lbl_803D6AA8: + .incbin "baserom.dol", 0x3D3AA8, 0x10 +.global lbl_803D6AB8 +lbl_803D6AB8: + .incbin "baserom.dol", 0x3D3AB8, 0x270 +.global lbl_803D6D28 +lbl_803D6D28: + .incbin "baserom.dol", 0x3D3D28, 0x8 +.global lbl_803D6D30 +lbl_803D6D30: + .incbin "baserom.dol", 0x3D3D30, 0x8 +.global lbl_803D6D38 +lbl_803D6D38: + .incbin "baserom.dol", 0x3D3D38, 0x8 +.global lbl_803D6D40 +lbl_803D6D40: + .incbin "baserom.dol", 0x3D3D40, 0x8 +.global lbl_803D6D48 +lbl_803D6D48: + .incbin "baserom.dol", 0x3D3D48, 0x8 +.global lbl_803D6D50 +lbl_803D6D50: + .incbin "baserom.dol", 0x3D3D50, 0x8 +.global lbl_803D6D58 +lbl_803D6D58: + .incbin "baserom.dol", 0x3D3D58, 0x8 +.global lbl_803D6D60 +lbl_803D6D60: + .incbin "baserom.dol", 0x3D3D60, 0x8 +.global lbl_803D6D68 +lbl_803D6D68: + .incbin "baserom.dol", 0x3D3D68, 0x8 +.global lbl_803D6D70 +lbl_803D6D70: + .incbin "baserom.dol", 0x3D3D70, 0x8 +.global lbl_803D6D78 +lbl_803D6D78: + .incbin "baserom.dol", 0x3D3D78, 0x8 +.global lbl_803D6D80 +lbl_803D6D80: + .incbin "baserom.dol", 0x3D3D80, 0x8 +.global lbl_803D6D88 +lbl_803D6D88: + .incbin "baserom.dol", 0x3D3D88, 0x8 +.global lbl_803D6D90 +lbl_803D6D90: + .incbin "baserom.dol", 0x3D3D90, 0x8 +.global lbl_803D6D98 +lbl_803D6D98: + .incbin "baserom.dol", 0x3D3D98, 0x8 +.global lbl_803D6DA0 +lbl_803D6DA0: + .incbin "baserom.dol", 0x3D3DA0, 0x8 +.global lbl_803D6DA8 +lbl_803D6DA8: + .incbin "baserom.dol", 0x3D3DA8, 0x8 +.global lbl_803D6DB0 +lbl_803D6DB0: + .incbin "baserom.dol", 0x3D3DB0, 0x8 +.global lbl_803D6DB8 +lbl_803D6DB8: + .incbin "baserom.dol", 0x3D3DB8, 0x10 +.global lbl_803D6DC8 +lbl_803D6DC8: + .incbin "baserom.dol", 0x3D3DC8, 0x8 +.global lbl_803D6DD0 +lbl_803D6DD0: + .incbin "baserom.dol", 0x3D3DD0, 0x8 +.global lbl_803D6DD8 +lbl_803D6DD8: + .incbin "baserom.dol", 0x3D3DD8, 0x8 +.global lbl_803D6DE0 +lbl_803D6DE0: + .incbin "baserom.dol", 0x3D3DE0, 0x8 +.global lbl_803D6DE8 +lbl_803D6DE8: + .incbin "baserom.dol", 0x3D3DE8, 0x8 +.global lbl_803D6DF0 +lbl_803D6DF0: + .incbin "baserom.dol", 0x3D3DF0, 0x8 +.global lbl_803D6DF8 +lbl_803D6DF8: + .incbin "baserom.dol", 0x3D3DF8, 0x8 +.global lbl_803D6E00 +lbl_803D6E00: + .incbin "baserom.dol", 0x3D3E00, 0x8 +.global lbl_803D6E08 +lbl_803D6E08: + .incbin "baserom.dol", 0x3D3E08, 0x8 +.global lbl_803D6E10 +lbl_803D6E10: + .incbin "baserom.dol", 0x3D3E10, 0x10 +.global lbl_803D6E20 +lbl_803D6E20: + .incbin "baserom.dol", 0x3D3E20, 0x8 +.global lbl_803D6E28 +lbl_803D6E28: + .incbin "baserom.dol", 0x3D3E28, 0x8 +.global lbl_803D6E30 +lbl_803D6E30: + .incbin "baserom.dol", 0x3D3E30, 0x8 +.global lbl_803D6E38 +lbl_803D6E38: + .incbin "baserom.dol", 0x3D3E38, 0x8 +.global lbl_803D6E40 +lbl_803D6E40: + .incbin "baserom.dol", 0x3D3E40, 0x8 +.global lbl_803D6E48 +lbl_803D6E48: + .incbin "baserom.dol", 0x3D3E48, 0x8 +.global lbl_803D6E50 +lbl_803D6E50: + .incbin "baserom.dol", 0x3D3E50, 0x8 +.global lbl_803D6E58 +lbl_803D6E58: + .incbin "baserom.dol", 0x3D3E58, 0x8 +.global lbl_803D6E60 +lbl_803D6E60: + .incbin "baserom.dol", 0x3D3E60, 0x8 +.global lbl_803D6E68 +lbl_803D6E68: + .incbin "baserom.dol", 0x3D3E68, 0x18 +.global lbl_803D6E80 +lbl_803D6E80: + .incbin "baserom.dol", 0x3D3E80, 0x8 +.global lbl_803D6E88 +lbl_803D6E88: + .incbin "baserom.dol", 0x3D3E88, 0x8 +.global lbl_803D6E90 +lbl_803D6E90: + .incbin "baserom.dol", 0x3D3E90, 0x8 +.global lbl_803D6E98 +lbl_803D6E98: + .incbin "baserom.dol", 0x3D3E98, 0x8 +.global lbl_803D6EA0 +lbl_803D6EA0: + .incbin "baserom.dol", 0x3D3EA0, 0x28 +.global lbl_803D6EC8 +lbl_803D6EC8: + .incbin "baserom.dol", 0x3D3EC8, 0x1F8 +.global lbl_803D70C0 +lbl_803D70C0: + .incbin "baserom.dol", 0x3D40C0, 0x2C8 +.global lbl_803D7388 +lbl_803D7388: + .incbin "baserom.dol", 0x3D4388, 0x10 +.global lbl_803D7398 +lbl_803D7398: + .incbin "baserom.dol", 0x3D4398, 0x8 +.global lbl_803D73A0 +lbl_803D73A0: + .incbin "baserom.dol", 0x3D43A0, 0x18 +.global lbl_803D73B8 +lbl_803D73B8: + .incbin "baserom.dol", 0x3D43B8, 0x10 +.global lbl_803D73C8 +lbl_803D73C8: + .incbin "baserom.dol", 0x3D43C8, 0x20 +.global lbl_803D73E8 +lbl_803D73E8: + .incbin "baserom.dol", 0x3D43E8, 0x8 +.global lbl_803D73F0 +lbl_803D73F0: + .incbin "baserom.dol", 0x3D43F0, 0x10 +.global lbl_803D7400 +lbl_803D7400: + .incbin "baserom.dol", 0x3D4400, 0x8 +.global lbl_803D7408 +lbl_803D7408: + .incbin "baserom.dol", 0x3D4408, 0x400 +.global lbl_803D7808 +lbl_803D7808: + .incbin "baserom.dol", 0x3D4808, 0x18 +.global lbl_803D7820 +lbl_803D7820: + .incbin "baserom.dol", 0x3D4820, 0x20 +.global lbl_803D7840 +lbl_803D7840: + .incbin "baserom.dol", 0x3D4840, 0x8 +.global lbl_803D7848 +lbl_803D7848: + .incbin "baserom.dol", 0x3D4848, 0x20 +.global lbl_803D7868 +lbl_803D7868: + .incbin "baserom.dol", 0x3D4868, 0x20 +.global lbl_803D7888 +lbl_803D7888: + .incbin "baserom.dol", 0x3D4888, 0x18 +.global lbl_803D78A0 +lbl_803D78A0: + .incbin "baserom.dol", 0x3D48A0, 0x30 +.global lbl_803D78D0 +lbl_803D78D0: + .incbin "baserom.dol", 0x3D48D0, 0x20 +.global lbl_803D78F0 +lbl_803D78F0: + .incbin "baserom.dol", 0x3D48F0, 0x20 +.global lbl_803D7910 +lbl_803D7910: + .incbin "baserom.dol", 0x3D4910, 0x8 +.global lbl_803D7918 +lbl_803D7918: + .incbin "baserom.dol", 0x3D4918, 0x8 +.global lbl_803D7920 +lbl_803D7920: + .incbin "baserom.dol", 0x3D4920, 0x8 +.global lbl_803D7928 +lbl_803D7928: + .incbin "baserom.dol", 0x3D4928, 0x20 +.global lbl_803D7948 +lbl_803D7948: + .incbin "baserom.dol", 0x3D4948, 0x20 +.global lbl_803D7968 +lbl_803D7968: + .incbin "baserom.dol", 0x3D4968, 0x8 +.global lbl_803D7970 +lbl_803D7970: + .incbin "baserom.dol", 0x3D4970, 0x8 +.global lbl_803D7978 +lbl_803D7978: + .incbin "baserom.dol", 0x3D4978, 0x8 +.global lbl_803D7980 +lbl_803D7980: + .incbin "baserom.dol", 0x3D4980, 0x8 +.global lbl_803D7988 +lbl_803D7988: + .incbin "baserom.dol", 0x3D4988, 0x98 +.global lbl_803D7A20 +lbl_803D7A20: + .incbin "baserom.dol", 0x3D4A20, 0x8 +.global lbl_803D7A28 +lbl_803D7A28: + .incbin "baserom.dol", 0x3D4A28, 0x10 +.global lbl_803D7A38 +lbl_803D7A38: + .incbin "baserom.dol", 0x3D4A38, 0x10 +.global lbl_803D7A48 +lbl_803D7A48: + .incbin "baserom.dol", 0x3D4A48, 0x8 +.global lbl_803D7A50 +lbl_803D7A50: + .incbin "baserom.dol", 0x3D4A50, 0x18 +.global lbl_803D7A68 +lbl_803D7A68: + .incbin "baserom.dol", 0x3D4A68, 0x8 +.global lbl_803D7A70 +lbl_803D7A70: + .incbin "baserom.dol", 0x3D4A70, 0x8 +.global lbl_803D7A78 +lbl_803D7A78: + .incbin "baserom.dol", 0x3D4A78, 0x10 +.global lbl_803D7A88 +lbl_803D7A88: + .incbin "baserom.dol", 0x3D4A88, 0x10 +.global lbl_803D7A98 +lbl_803D7A98: + .incbin "baserom.dol", 0x3D4A98, 0x8 +.global lbl_803D7AA0 +lbl_803D7AA0: + .incbin "baserom.dol", 0x3D4AA0, 0x8 +.global lbl_803D7AA8 +lbl_803D7AA8: + .incbin "baserom.dol", 0x3D4AA8, 0x4C +.global lbl_803D7AF4 +lbl_803D7AF4: + .incbin "baserom.dol", 0x3D4AF4, 0x74 +.global lbl_803D7B68 +lbl_803D7B68: + .incbin "baserom.dol", 0x3D4B68, 0x38 +.global lbl_803D7BA0 +lbl_803D7BA0: + .incbin "baserom.dol", 0x3D4BA0, 0x38 +.global lbl_803D7BD8 +lbl_803D7BD8: + .incbin "baserom.dol", 0x3D4BD8, 0x78 +.global lbl_803D7C50 +lbl_803D7C50: + .incbin "baserom.dol", 0x3D4C50, 0x218 +.global lbl_803D7E68 +lbl_803D7E68: + .incbin "baserom.dol", 0x3D4E68, 0xE8 +.global lbl_803D7F50 +lbl_803D7F50: + .incbin "baserom.dol", 0x3D4F50, 0x8 +.global lbl_803D7F58 +lbl_803D7F58: + .incbin "baserom.dol", 0x3D4F58, 0xF0 +.global lbl_803D8048 +lbl_803D8048: + .incbin "baserom.dol", 0x3D5048, 0x30 +.global lbl_803D8078 +lbl_803D8078: + .incbin "baserom.dol", 0x3D5078, 0x30 +.global lbl_803D80A8 +lbl_803D80A8: + .incbin "baserom.dol", 0x3D50A8, 0x60 +.global lbl_803D8108 +lbl_803D8108: + .incbin "baserom.dol", 0x3D5108, 0x8 +.global lbl_803D8110 +lbl_803D8110: + .incbin "baserom.dol", 0x3D5110, 0x100 +.global lbl_803D8210 +lbl_803D8210: + .incbin "baserom.dol", 0x3D5210, 0x10 +.global lbl_803D8220 +lbl_803D8220: + .incbin "baserom.dol", 0x3D5220, 0x8 +.global lbl_803D8228 +lbl_803D8228: + .incbin "baserom.dol", 0x3D5228, 0x8 +.global lbl_803D8230 +lbl_803D8230: + .incbin "baserom.dol", 0x3D5230, 0x10 +.global lbl_803D8240 +lbl_803D8240: + .incbin "baserom.dol", 0x3D5240, 0x8 +.global lbl_803D8248 +lbl_803D8248: + .incbin "baserom.dol", 0x3D5248, 0xB0 +.global lbl_803D82F8 +lbl_803D82F8: + .incbin "baserom.dol", 0x3D52F8, 0x8 +.global lbl_803D8300 +lbl_803D8300: + .incbin "baserom.dol", 0x3D5300, 0x8 +.global lbl_803D8308 +lbl_803D8308: + .incbin "baserom.dol", 0x3D5308, 0x8 +.global lbl_803D8310 +lbl_803D8310: + .incbin "baserom.dol", 0x3D5310, 0x10 +.global lbl_803D8320 +lbl_803D8320: + .incbin "baserom.dol", 0x3D5320, 0x8 +.global lbl_803D8328 +lbl_803D8328: + .incbin "baserom.dol", 0x3D5328, 0x8 +.global lbl_803D8330 +lbl_803D8330: + .incbin "baserom.dol", 0x3D5330, 0x8 +.global lbl_803D8338 +lbl_803D8338: + .incbin "baserom.dol", 0x3D5338, 0x8 +.global lbl_803D8340 +lbl_803D8340: + .incbin "baserom.dol", 0x3D5340, 0x8 +.global lbl_803D8348 +lbl_803D8348: + .incbin "baserom.dol", 0x3D5348, 0x8 +.global lbl_803D8350 +lbl_803D8350: + .incbin "baserom.dol", 0x3D5350, 0x18 +.global lbl_803D8368 +lbl_803D8368: + .incbin "baserom.dol", 0x3D5368, 0x18 +.global lbl_803D8380 +lbl_803D8380: + .incbin "baserom.dol", 0x3D5380, 0x58 +.global lbl_803D83D8 +lbl_803D83D8: + .incbin "baserom.dol", 0x3D53D8, 0x8 +.global lbl_803D83E0 +lbl_803D83E0: + .incbin "baserom.dol", 0x3D53E0, 0x8 +.global lbl_803D83E8 +lbl_803D83E8: + .incbin "baserom.dol", 0x3D53E8, 0x10 +.global lbl_803D83F8 +lbl_803D83F8: + .incbin "baserom.dol", 0x3D53F8, 0x8 +.global lbl_803D8400 +lbl_803D8400: + .incbin "baserom.dol", 0x3D5400, 0x8 +.global lbl_803D8408 +lbl_803D8408: + .incbin "baserom.dol", 0x3D5408, 0x8 +.global lbl_803D8410 +lbl_803D8410: + .incbin "baserom.dol", 0x3D5410, 0x8 +.global lbl_803D8418 +lbl_803D8418: + .incbin "baserom.dol", 0x3D5418, 0xC8 +.global lbl_803D84E0 +lbl_803D84E0: + .incbin "baserom.dol", 0x3D54E0, 0x58 +.global lbl_803D8538 +lbl_803D8538: + .incbin "baserom.dol", 0x3D5538, 0x8 +.global lbl_803D8540 +lbl_803D8540: + .incbin "baserom.dol", 0x3D5540, 0x8 +.global lbl_803D8548 +lbl_803D8548: + .incbin "baserom.dol", 0x3D5548, 0x10 +.global lbl_803D8558 +lbl_803D8558: + .incbin "baserom.dol", 0x3D5558, 0x8 +.global lbl_803D8560 +lbl_803D8560: + .incbin "baserom.dol", 0x3D5560, 0x8 +.global lbl_803D8568 +lbl_803D8568: + .incbin "baserom.dol", 0x3D5568, 0x8 +.global lbl_803D8570 +lbl_803D8570: + .incbin "baserom.dol", 0x3D5570, 0x18 +.global lbl_803D8588 +lbl_803D8588: + .incbin "baserom.dol", 0x3D5588, 0x10 +.global lbl_803D8598 +lbl_803D8598: + .incbin "baserom.dol", 0x3D5598, 0x10 +.global lbl_803D85A8 +lbl_803D85A8: + .incbin "baserom.dol", 0x3D55A8, 0x18 +.global lbl_803D85C0 +lbl_803D85C0: + .incbin "baserom.dol", 0x3D55C0, 0x18 +.global lbl_803D85D8 +lbl_803D85D8: + .incbin "baserom.dol", 0x3D55D8, 0xE8 +.global lbl_803D86C0 +lbl_803D86C0: + .incbin "baserom.dol", 0x3D56C0, 0x28 +.global lbl_803D86E8 +lbl_803D86E8: + .incbin "baserom.dol", 0x3D56E8, 0x2C +.global lbl_803D8714 +lbl_803D8714: + .incbin "baserom.dol", 0x3D5714, 0xC +.global lbl_803D8720 +lbl_803D8720: + .incbin "baserom.dol", 0x3D5720, 0x30 +.global lbl_803D8750 +lbl_803D8750: + .incbin "baserom.dol", 0x3D5750, 0x10 +.global lbl_803D8760 +lbl_803D8760: + .incbin "baserom.dol", 0x3D5760, 0x30 +.global lbl_803D8790 +lbl_803D8790: + .incbin "baserom.dol", 0x3D5790, 0x108 +.global lbl_803D8898 +lbl_803D8898: + .incbin "baserom.dol", 0x3D5898, 0x80 +.global lbl_803D8918 +lbl_803D8918: + .incbin "baserom.dol", 0x3D5918, 0x10 +.global lbl_803D8928 +lbl_803D8928: + .incbin "baserom.dol", 0x3D5928, 0x40 +.global lbl_803D8968 +lbl_803D8968: + .incbin "baserom.dol", 0x3D5968, 0x68 +.global lbl_803D89D0 +lbl_803D89D0: + .incbin "baserom.dol", 0x3D59D0, 0x98 +.global lbl_803D8A68 +lbl_803D8A68: + .incbin "baserom.dol", 0x3D5A68, 0x40 +.global lbl_803D8AA8 +lbl_803D8AA8: + .incbin "baserom.dol", 0x3D5AA8, 0x18 +.global lbl_803D8AC0 +lbl_803D8AC0: + .incbin "baserom.dol", 0x3D5AC0, 0x88 +.global lbl_803D8B48 +lbl_803D8B48: + .incbin "baserom.dol", 0x3D5B48, 0x88 +.global lbl_803D8BD0 +lbl_803D8BD0: + .incbin "baserom.dol", 0x3D5BD0, 0x100 +.global lbl_803D8CD0 +lbl_803D8CD0: + .incbin "baserom.dol", 0x3D5CD0, 0x90 diff --git a/asm/sbss.s b/asm/sbss.s new file mode 100644 index 00000000..0a554937 --- /dev/null +++ b/asm/sbss.s @@ -0,0 +1,2859 @@ +.include "macros.inc" + +.section .sbss, "wa" # 0x805A8C20 - 0x805A9D1F +.global lbl_805A8C20 +lbl_805A8C20: + .skip 0x4 +.global lbl_805A8C24 +lbl_805A8C24: + .skip 0x4 +.global lbl_805A8C28 +lbl_805A8C28: + .skip 0x4 +.global lbl_805A8C2C +lbl_805A8C2C: + .skip 0x4 +.global lbl_805A8C30 +lbl_805A8C30: + .skip 0x4 +.global lbl_805A8C34 +lbl_805A8C34: + .skip 0x4 +.global lbl_805A8C38 +lbl_805A8C38: + .skip 0x4 +.global lbl_805A8C3C +lbl_805A8C3C: + .skip 0x4 +.global lbl_805A8C40 +lbl_805A8C40: + .skip 0x4 +.global lbl_805A8C44 +lbl_805A8C44: + .skip 0x4 +.global lbl_805A8C48 +lbl_805A8C48: + .skip 0x4 +.global lbl_805A8C4C +lbl_805A8C4C: + .skip 0x4 +.global lbl_805A8C50 +lbl_805A8C50: + .skip 0x4 +.global lbl_805A8C54 +lbl_805A8C54: + .skip 0x4 +.global lbl_805A8C58 +lbl_805A8C58: + .skip 0x4 +.global lbl_805A8C5C +lbl_805A8C5C: + .skip 0x8 +.global lbl_805A8C64 +lbl_805A8C64: + .skip 0x4 +.global lbl_805A8C68 +lbl_805A8C68: + .skip 0x4 +.global lbl_805A8C6C +lbl_805A8C6C: + .skip 0x4 +.global lbl_805A8C70 +lbl_805A8C70: + .skip 0x4 +.global lbl_805A8C74 +lbl_805A8C74: + .skip 0x4 +.global lbl_805A8C78 +lbl_805A8C78: + .skip 0x4 +.global lbl_805A8C7C +lbl_805A8C7C: + .skip 0x4 +.global lbl_805A8C80 +lbl_805A8C80: + .skip 0x1 +.global lbl_805A8C81 +lbl_805A8C81: + .skip 0x3 +.global lbl_805A8C84 +lbl_805A8C84: + .skip 0x4 +.global lbl_805A8C88 +lbl_805A8C88: + .skip 0x4 +.global lbl_805A8C8C +lbl_805A8C8C: + .skip 0x4 +.global lbl_805A8C90 +lbl_805A8C90: + .skip 0x4 +.global lbl_805A8C94 +lbl_805A8C94: + .skip 0x4 +.global lbl_805A8C98 +lbl_805A8C98: + .skip 0x4 +.global lbl_805A8C9C +lbl_805A8C9C: + .skip 0x4 +.global lbl_805A8CA0 +lbl_805A8CA0: + .skip 0x4 +.global lbl_805A8CA4 +lbl_805A8CA4: + .skip 0x4 +.global lbl_805A8CA8 +lbl_805A8CA8: + .skip 0x8 +.global lbl_805A8CB0 +lbl_805A8CB0: + .skip 0x8 +.global lbl_805A8CB8 +lbl_805A8CB8: + .skip 0x8 +.global lbl_805A8CC0 +lbl_805A8CC0: + .skip 0x4 +.global lbl_805A8CC4 +lbl_805A8CC4: + .skip 0x4 +.global lbl_805A8CC8 +lbl_805A8CC8: + .skip 0x4 +.global lbl_805A8CCC +lbl_805A8CCC: + .skip 0x4 +.global lbl_805A8CD0 +lbl_805A8CD0: + .skip 0x4 +.global lbl_805A8CD4 +lbl_805A8CD4: + .skip 0x4 +.global lbl_805A8CD8 +lbl_805A8CD8: + .skip 0x4 +.global lbl_805A8CDC +lbl_805A8CDC: + .skip 0x4 +.global lbl_805A8CE0 +lbl_805A8CE0: + .skip 0x4 +.global lbl_805A8CE4 +lbl_805A8CE4: + .skip 0x4 +.global lbl_805A8CE8 +lbl_805A8CE8: + .skip 0x4 +.global lbl_805A8CEC +lbl_805A8CEC: + .skip 0x4 +.global lbl_805A8CF0 +lbl_805A8CF0: + .skip 0x4 +.global lbl_805A8CF4 +lbl_805A8CF4: + .skip 0x4 +.global lbl_805A8CF8 +lbl_805A8CF8: + .skip 0x4 +.global lbl_805A8CFC +lbl_805A8CFC: + .skip 0x4 +.global lbl_805A8D00 +lbl_805A8D00: + .skip 0x4 +.global lbl_805A8D04 +lbl_805A8D04: + .skip 0x4 +.global lbl_805A8D08 +lbl_805A8D08: + .skip 0x4 +.global lbl_805A8D0C +lbl_805A8D0C: + .skip 0x4 +.global lbl_805A8D10 +lbl_805A8D10: + .skip 0x4 +.global lbl_805A8D14 +lbl_805A8D14: + .skip 0x4 +.global lbl_805A8D18 +lbl_805A8D18: + .skip 0x4 +.global lbl_805A8D1C +lbl_805A8D1C: + .skip 0x4 +.global lbl_805A8D20 +lbl_805A8D20: + .skip 0x4 +.global lbl_805A8D24 +lbl_805A8D24: + .skip 0x4 +.global lbl_805A8D28 +lbl_805A8D28: + .skip 0x4 +.global lbl_805A8D2C +lbl_805A8D2C: + .skip 0x4 +.global lbl_805A8D30 +lbl_805A8D30: + .skip 0x4 +.global lbl_805A8D34 +lbl_805A8D34: + .skip 0x4 +.global lbl_805A8D38 +lbl_805A8D38: + .skip 0x4 +.global lbl_805A8D3C +lbl_805A8D3C: + .skip 0x4 +.global lbl_805A8D40 +lbl_805A8D40: + .skip 0x4 +.global lbl_805A8D44 +lbl_805A8D44: + .skip 0x4 +.global lbl_805A8D48 +lbl_805A8D48: + .skip 0x4 +.global lbl_805A8D4C +lbl_805A8D4C: + .skip 0x4 +.global lbl_805A8D50 +lbl_805A8D50: + .skip 0x4 +.global lbl_805A8D54 +lbl_805A8D54: + .skip 0x4 +.global lbl_805A8D58 +lbl_805A8D58: + .skip 0x4 +.global lbl_805A8D5C +lbl_805A8D5C: + .skip 0x4 +.global lbl_805A8D60 +lbl_805A8D60: + .skip 0x4 +.global lbl_805A8D64 +lbl_805A8D64: + .skip 0x4 +.global lbl_805A8D68 +lbl_805A8D68: + .skip 0x8 +.global lbl_805A8D70 +lbl_805A8D70: + .skip 0x4 +.global lbl_805A8D74 +lbl_805A8D74: + .skip 0x4 +.global lbl_805A8D78 +lbl_805A8D78: + .skip 0x4 +.global lbl_805A8D7C +lbl_805A8D7C: + .skip 0x4 +.global lbl_805A8D80 +lbl_805A8D80: + .skip 0x4 +.global lbl_805A8D84 +lbl_805A8D84: + .skip 0x8 +.global lbl_805A8D8C +lbl_805A8D8C: + .skip 0xC +.global lbl_805A8D98 +lbl_805A8D98: + .skip 0x4 +.global lbl_805A8D9C +lbl_805A8D9C: + .skip 0x4 +.global lbl_805A8DA0 +lbl_805A8DA0: + .skip 0x1 +.global lbl_805A8DA1 +lbl_805A8DA1: + .skip 0x7 +.global lbl_805A8DA8 +lbl_805A8DA8: + .skip 0x4 +.global lbl_805A8DAC +lbl_805A8DAC: + .skip 0x4 +.global lbl_805A8DB0 +lbl_805A8DB0: + .skip 0x8 +.global lbl_805A8DB8 +lbl_805A8DB8: + .skip 0x4 +.global lbl_805A8DBC +lbl_805A8DBC: + .skip 0x4 +.global lbl_805A8DC0 +lbl_805A8DC0: + .skip 0x4 +.global lbl_805A8DC4 +lbl_805A8DC4: + .skip 0x1 +.global lbl_805A8DC5 +lbl_805A8DC5: + .skip 0x3 +.global lbl_805A8DC8 +lbl_805A8DC8: + .skip 0x4 +.global lbl_805A8DCC +lbl_805A8DCC: + .skip 0x4 +.global lbl_805A8DD0 +lbl_805A8DD0: + .skip 0x4 +.global lbl_805A8DD4 +lbl_805A8DD4: + .skip 0x4 +.global lbl_805A8DD8 +lbl_805A8DD8: + .skip 0x4 +.global lbl_805A8DDC +lbl_805A8DDC: + .skip 0x4 +.global lbl_805A8DE0 +lbl_805A8DE0: + .skip 0x4 +.global lbl_805A8DE4 +lbl_805A8DE4: + .skip 0x4 +.global lbl_805A8DE8 +lbl_805A8DE8: + .skip 0x8 +.global lbl_805A8DF0 +lbl_805A8DF0: + .skip 0x4 +.global lbl_805A8DF4 +lbl_805A8DF4: + .skip 0x4 +.global lbl_805A8DF8 +lbl_805A8DF8: + .skip 0x4 +.global lbl_805A8DFC +lbl_805A8DFC: + .skip 0x4 +.global lbl_805A8E00 +lbl_805A8E00: + .skip 0x4 +.global lbl_805A8E04 +lbl_805A8E04: + .skip 0xC +.global lbl_805A8E10 +lbl_805A8E10: + .skip 0x4 +.global lbl_805A8E14 +lbl_805A8E14: + .skip 0x4 +.global lbl_805A8E18 +lbl_805A8E18: + .skip 0x8 +.global lbl_805A8E20 +lbl_805A8E20: + .skip 0x4 +.global lbl_805A8E24 +lbl_805A8E24: + .skip 0x4 +.global lbl_805A8E28 +lbl_805A8E28: + .skip 0x4 +.global lbl_805A8E2C +lbl_805A8E2C: + .skip 0x4 +.global lbl_805A8E30 +lbl_805A8E30: + .skip 0x8 +.global lbl_805A8E38 +lbl_805A8E38: + .skip 0x4 +.global lbl_805A8E3C +lbl_805A8E3C: + .skip 0x4 +.global lbl_805A8E40 +lbl_805A8E40: + .skip 0x4 +.global lbl_805A8E44 +lbl_805A8E44: + .skip 0x4 +.global lbl_805A8E48 +lbl_805A8E48: + .skip 0x4 +.global lbl_805A8E4C +lbl_805A8E4C: + .skip 0x4 +.global lbl_805A8E50 +lbl_805A8E50: + .skip 0x4 +.global lbl_805A8E54 +lbl_805A8E54: + .skip 0x4 +.global lbl_805A8E58 +lbl_805A8E58: + .skip 0x4 +.global lbl_805A8E5C +lbl_805A8E5C: + .skip 0x4 +.global lbl_805A8E60 +lbl_805A8E60: + .skip 0x8 +.global lbl_805A8E68 +lbl_805A8E68: + .skip 0x4 +.global lbl_805A8E6C +lbl_805A8E6C: + .skip 0x4 +.global lbl_805A8E70 +lbl_805A8E70: + .skip 0x4 +.global lbl_805A8E74 +lbl_805A8E74: + .skip 0x4 +.global lbl_805A8E78 +lbl_805A8E78: + .skip 0x4 +.global lbl_805A8E7C +lbl_805A8E7C: + .skip 0x4 +.global lbl_805A8E80 +lbl_805A8E80: + .skip 0x4 +.global lbl_805A8E84 +lbl_805A8E84: + .skip 0x4 +.global lbl_805A8E88 +lbl_805A8E88: + .skip 0x8 +.global lbl_805A8E90 +lbl_805A8E90: + .skip 0x4 +.global lbl_805A8E94 +lbl_805A8E94: + .skip 0x4 +.global lbl_805A8E98 +lbl_805A8E98: + .skip 0x4 +.global lbl_805A8E9C +lbl_805A8E9C: + .skip 0x4 +.global lbl_805A8EA0 +lbl_805A8EA0: + .skip 0x1 +.global lbl_805A8EA1 +lbl_805A8EA1: + .skip 0x7 +.global lbl_805A8EA8 +lbl_805A8EA8: + .skip 0x4 +.global lbl_805A8EAC +lbl_805A8EAC: + .skip 0x4 +.global lbl_805A8EB0 +lbl_805A8EB0: + .skip 0x8 +.global lbl_805A8EB8 +lbl_805A8EB8: + .skip 0x8 +.global lbl_805A8EC0 +lbl_805A8EC0: + .skip 0x8 +.global lbl_805A8EC8 +lbl_805A8EC8: + .skip 0x4 +.global lbl_805A8ECC +lbl_805A8ECC: + .skip 0x4 +.global lbl_805A8ED0 +lbl_805A8ED0: + .skip 0x4 +.global lbl_805A8ED4 +lbl_805A8ED4: + .skip 0x4 +.global lbl_805A8ED8 +lbl_805A8ED8: + .skip 0x8 +.global lbl_805A8EE0 +lbl_805A8EE0: + .skip 0x8 +.global lbl_805A8EE8 +lbl_805A8EE8: + .skip 0x4 +.global lbl_805A8EEC +lbl_805A8EEC: + .skip 0x4 +.global lbl_805A8EF0 +lbl_805A8EF0: + .skip 0x4 +.global lbl_805A8EF4 +lbl_805A8EF4: + .skip 0x4 +.global lbl_805A8EF8 +lbl_805A8EF8: + .skip 0x4 +.global lbl_805A8EFC +lbl_805A8EFC: + .skip 0x4 +.global lbl_805A8F00 +lbl_805A8F00: + .skip 0x8 +.global lbl_805A8F08 +lbl_805A8F08: + .skip 0x8 +.global lbl_805A8F10 +lbl_805A8F10: + .skip 0x4 +.global lbl_805A8F14 +lbl_805A8F14: + .skip 0x4 +.global lbl_805A8F18 +lbl_805A8F18: + .skip 0x4 +.global lbl_805A8F1C +lbl_805A8F1C: + .skip 0x4 +.global lbl_805A8F20 +lbl_805A8F20: + .skip 0x4 +.global lbl_805A8F24 +lbl_805A8F24: + .skip 0x4 +.global lbl_805A8F28 +lbl_805A8F28: + .skip 0x4 +.global lbl_805A8F2C +lbl_805A8F2C: + .skip 0x4 +.global lbl_805A8F30 +lbl_805A8F30: + .skip 0x4 +.global lbl_805A8F34 +lbl_805A8F34: + .skip 0x4 +.global lbl_805A8F38 +lbl_805A8F38: + .skip 0x8 +.global lbl_805A8F40 +lbl_805A8F40: + .skip 0x4 +.global lbl_805A8F44 +lbl_805A8F44: + .skip 0x4 +.global lbl_805A8F48 +lbl_805A8F48: + .skip 0x4 +.global lbl_805A8F4C +lbl_805A8F4C: + .skip 0x4 +.global lbl_805A8F50 +lbl_805A8F50: + .skip 0x4 +.global lbl_805A8F54 +lbl_805A8F54: + .skip 0x4 +.global lbl_805A8F58 +lbl_805A8F58: + .skip 0x4 +.global lbl_805A8F5C +lbl_805A8F5C: + .skip 0x4 +.global lbl_805A8F60 +lbl_805A8F60: + .skip 0x4 +.global lbl_805A8F64 +lbl_805A8F64: + .skip 0x4 +.global lbl_805A8F68 +lbl_805A8F68: + .skip 0x4 +.global lbl_805A8F6C +lbl_805A8F6C: + .skip 0x4 +.global lbl_805A8F70 +lbl_805A8F70: + .skip 0x4 +.global lbl_805A8F74 +lbl_805A8F74: + .skip 0x4 +.global lbl_805A8F78 +lbl_805A8F78: + .skip 0x8 +.global lbl_805A8F80 +lbl_805A8F80: + .skip 0x8 +.global lbl_805A8F88 +lbl_805A8F88: + .skip 0x4 +.global lbl_805A8F8C +lbl_805A8F8C: + .skip 0x4 +.global lbl_805A8F90 +lbl_805A8F90: + .skip 0x4 +.global lbl_805A8F94 +lbl_805A8F94: + .skip 0x4 +.global lbl_805A8F98 +lbl_805A8F98: + .skip 0x4 +.global lbl_805A8F9C +lbl_805A8F9C: + .skip 0x4 +.global lbl_805A8FA0 +lbl_805A8FA0: + .skip 0x8 +.global lbl_805A8FA8 +lbl_805A8FA8: + .skip 0x8 +.global lbl_805A8FB0 +lbl_805A8FB0: + .skip 0x4 +.global lbl_805A8FB4 +lbl_805A8FB4: + .skip 0x4 +.global lbl_805A8FB8 +lbl_805A8FB8: + .skip 0x4 +.global lbl_805A8FBC +lbl_805A8FBC: + .skip 0x4 +.global lbl_805A8FC0 +lbl_805A8FC0: + .skip 0x4 +.global lbl_805A8FC4 +lbl_805A8FC4: + .skip 0x4 +.global lbl_805A8FC8 +lbl_805A8FC8: + .skip 0x1 +.global lbl_805A8FC9 +lbl_805A8FC9: + .skip 0x1 +.global lbl_805A8FCA +lbl_805A8FCA: + .skip 0x6 +.global lbl_805A8FD0 +lbl_805A8FD0: + .skip 0x4 +.global lbl_805A8FD4 +lbl_805A8FD4: + .skip 0x4 +.global lbl_805A8FD8 +lbl_805A8FD8: + .skip 0x8 +.global lbl_805A8FE0 +lbl_805A8FE0: + .skip 0x1 +.global lbl_805A8FE1 +lbl_805A8FE1: + .skip 0x1 +.global lbl_805A8FE2 +lbl_805A8FE2: + .skip 0x1 +.global lbl_805A8FE3 +lbl_805A8FE3: + .skip 0x1 +.global lbl_805A8FE4 +lbl_805A8FE4: + .skip 0x4 +.global lbl_805A8FE8 +lbl_805A8FE8: + .skip 0x4 +.global lbl_805A8FEC +lbl_805A8FEC: + .skip 0x4 +.global lbl_805A8FF0 +lbl_805A8FF0: + .skip 0x4 +.global lbl_805A8FF4 +lbl_805A8FF4: + .skip 0x4 +.global lbl_805A8FF8 +lbl_805A8FF8: + .skip 0x8 +.global lbl_805A9000 +lbl_805A9000: + .skip 0x4 +.global lbl_805A9004 +lbl_805A9004: + .skip 0x4 +.global lbl_805A9008 +lbl_805A9008: + .skip 0x4 +.global lbl_805A900C +lbl_805A900C: + .skip 0x4 +.global lbl_805A9010 +lbl_805A9010: + .skip 0x4 +.global lbl_805A9014 +lbl_805A9014: + .skip 0x4 +.global lbl_805A9018 +lbl_805A9018: + .skip 0x4 +.global lbl_805A901C +lbl_805A901C: + .skip 0x4 +.global lbl_805A9020 +lbl_805A9020: + .skip 0x8 +.global lbl_805A9028 +lbl_805A9028: + .skip 0x4 +.global lbl_805A902C +lbl_805A902C: + .skip 0x4 +.global lbl_805A9030 +lbl_805A9030: + .skip 0x4 +.global lbl_805A9034 +lbl_805A9034: + .skip 0x4 +.global lbl_805A9038 +lbl_805A9038: + .skip 0x4 +.global lbl_805A903C +lbl_805A903C: + .skip 0x4 +.global lbl_805A9040 +lbl_805A9040: + .skip 0x1 +.global lbl_805A9041 +lbl_805A9041: + .skip 0x7 +.global lbl_805A9048 +lbl_805A9048: + .skip 0x8 +.global lbl_805A9050 +lbl_805A9050: + .skip 0x4 +.global lbl_805A9054 +lbl_805A9054: + .skip 0x4 +.global lbl_805A9058 +lbl_805A9058: + .skip 0x4 +.global lbl_805A905C +lbl_805A905C: + .skip 0x4 +.global lbl_805A9060 +lbl_805A9060: + .skip 0x8 +.global lbl_805A9068 +lbl_805A9068: + .skip 0x4 +.global lbl_805A906C +lbl_805A906C: + .skip 0x4 +.global lbl_805A9070 +lbl_805A9070: + .skip 0x8 +.global lbl_805A9078 +lbl_805A9078: + .skip 0x8 +.global lbl_805A9080 +lbl_805A9080: + .skip 0x4 +.global lbl_805A9084 +lbl_805A9084: + .skip 0x4 +.global lbl_805A9088 +lbl_805A9088: + .skip 0x4 +.global lbl_805A908C +lbl_805A908C: + .skip 0x4 +.global lbl_805A9090 +lbl_805A9090: + .skip 0x4 +.global lbl_805A9094 +lbl_805A9094: + .skip 0x4 +.global lbl_805A9098 +lbl_805A9098: + .skip 0x4 +.global lbl_805A909C +lbl_805A909C: + .skip 0x4 +.global lbl_805A90A0 +lbl_805A90A0: + .skip 0x8 +.global lbl_805A90A8 +lbl_805A90A8: + .skip 0x4 +.global lbl_805A90AC +lbl_805A90AC: + .skip 0x4 +.global lbl_805A90B0 +lbl_805A90B0: + .skip 0x4 +.global lbl_805A90B4 +lbl_805A90B4: + .skip 0x4 +.global lbl_805A90B8 +lbl_805A90B8: + .skip 0x4 +.global lbl_805A90BC +lbl_805A90BC: + .skip 0x4 +.global lbl_805A90C0 +lbl_805A90C0: + .skip 0x4 +.global lbl_805A90C4 +lbl_805A90C4: + .skip 0x4 +.global lbl_805A90C8 +lbl_805A90C8: + .skip 0x4 +.global lbl_805A90CC +lbl_805A90CC: + .skip 0x4 +.global lbl_805A90D0 +lbl_805A90D0: + .skip 0x4 +.global lbl_805A90D4 +lbl_805A90D4: + .skip 0x4 +.global lbl_805A90D8 +lbl_805A90D8: + .skip 0x8 +.global lbl_805A90E0 +lbl_805A90E0: + .skip 0x4 +.global lbl_805A90E4 +lbl_805A90E4: + .skip 0x4 +.global lbl_805A90E8 +lbl_805A90E8: + .skip 0x4 +.global lbl_805A90EC +lbl_805A90EC: + .skip 0x4 +.global lbl_805A90F0 +lbl_805A90F0: + .skip 0x1 +.global lbl_805A90F1 +lbl_805A90F1: + .skip 0x7 +.global lbl_805A90F8 +lbl_805A90F8: + .skip 0x4 +.global lbl_805A90FC +lbl_805A90FC: + .skip 0x4 +.global lbl_805A9100 +lbl_805A9100: + .skip 0x4 +.global lbl_805A9104 +lbl_805A9104: + .skip 0x4 +.global lbl_805A9108 +lbl_805A9108: + .skip 0x8 +.global lbl_805A9110 +lbl_805A9110: + .skip 0x8 +.global lbl_805A9118 +lbl_805A9118: + .skip 0x8 +.global lbl_805A9120 +lbl_805A9120: + .skip 0x8 +.global lbl_805A9128 +lbl_805A9128: + .skip 0x4 +.global lbl_805A912C +lbl_805A912C: + .skip 0x4 +.global lbl_805A9130 +lbl_805A9130: + .skip 0x4 +.global lbl_805A9134 +lbl_805A9134: + .skip 0x4 +.global lbl_805A9138 +lbl_805A9138: + .skip 0x4 +.global lbl_805A913C +lbl_805A913C: + .skip 0x4 +.global lbl_805A9140 +lbl_805A9140: + .skip 0x4 +.global lbl_805A9144 +lbl_805A9144: + .skip 0x4 +.global lbl_805A9148 +lbl_805A9148: + .skip 0x8 +.global lbl_805A9150 +lbl_805A9150: + .skip 0x4 +.global lbl_805A9154 +lbl_805A9154: + .skip 0x4 +.global lbl_805A9158 +lbl_805A9158: + .skip 0x4 +.global lbl_805A915C +lbl_805A915C: + .skip 0x4 +.global lbl_805A9160 +lbl_805A9160: + .skip 0x8 +.global lbl_805A9168 +lbl_805A9168: + .skip 0x8 +.global lbl_805A9170 +lbl_805A9170: + .skip 0x4 +.global lbl_805A9174 +lbl_805A9174: + .skip 0x4 +.global lbl_805A9178 +lbl_805A9178: + .skip 0x8 +.global lbl_805A9180 +lbl_805A9180: + .skip 0x4 +.global lbl_805A9184 +lbl_805A9184: + .skip 0x4 +.global lbl_805A9188 +lbl_805A9188: + .skip 0x4 +.global lbl_805A918C +lbl_805A918C: + .skip 0x4 +.global lbl_805A9190 +lbl_805A9190: + .skip 0x8 +.global lbl_805A9198 +lbl_805A9198: + .skip 0x8 +.global lbl_805A91A0 +lbl_805A91A0: + .skip 0x8 +.global lbl_805A91A8 +lbl_805A91A8: + .skip 0x4 +.global lbl_805A91AC +lbl_805A91AC: + .skip 0x4 +.global lbl_805A91B0 +lbl_805A91B0: + .skip 0x4 +.global lbl_805A91B4 +lbl_805A91B4: + .skip 0x8 +.global lbl_805A91BC +lbl_805A91BC: + .skip 0x8 +.global lbl_805A91C4 +lbl_805A91C4: + .skip 0x8 +.global lbl_805A91CC +lbl_805A91CC: + .skip 0x4 +.global lbl_805A91D0 +lbl_805A91D0: + .skip 0x4 +.global lbl_805A91D4 +lbl_805A91D4: + .skip 0x8 +.global lbl_805A91DC +lbl_805A91DC: + .skip 0x4 +.global lbl_805A91E0 +lbl_805A91E0: + .skip 0x4 +.global lbl_805A91E4 +lbl_805A91E4: + .skip 0x4 +.global lbl_805A91E8 +lbl_805A91E8: + .skip 0x1 +.global lbl_805A91E9 +lbl_805A91E9: + .skip 0x3 +.global lbl_805A91EC +lbl_805A91EC: + .skip 0x4 +.global lbl_805A91F0 +lbl_805A91F0: + .skip 0x4 +.global lbl_805A91F4 +lbl_805A91F4: + .skip 0x4 +.global lbl_805A91F8 +lbl_805A91F8: + .skip 0x8 +.global lbl_805A9200 +lbl_805A9200: + .skip 0x8 +.global lbl_805A9208 +lbl_805A9208: + .skip 0x4 +.global lbl_805A920C +lbl_805A920C: + .skip 0x4 +.global lbl_805A9210 +lbl_805A9210: + .skip 0x4 +.global lbl_805A9214 +lbl_805A9214: + .skip 0x1 +.global lbl_805A9215 +lbl_805A9215: + .skip 0x1 +.global lbl_805A9216 +lbl_805A9216: + .skip 0x1 +.global lbl_805A9217 +lbl_805A9217: + .skip 0x1 +.global lbl_805A9218 +lbl_805A9218: + .skip 0x4 +.global lbl_805A921C +lbl_805A921C: + .skip 0x4 +.global lbl_805A9220 +lbl_805A9220: + .skip 0x4 +.global lbl_805A9224 +lbl_805A9224: + .skip 0x4 +.global lbl_805A9228 +lbl_805A9228: + .skip 0x4 +.global lbl_805A922C +lbl_805A922C: + .skip 0x4 +.global lbl_805A9230 +lbl_805A9230: + .skip 0x4 +.global lbl_805A9234 +lbl_805A9234: + .skip 0x4 +.global lbl_805A9238 +lbl_805A9238: + .skip 0x4 +.global lbl_805A923C +lbl_805A923C: + .skip 0x4 +.global lbl_805A9240 +lbl_805A9240: + .skip 0x8 +.global lbl_805A9248 +lbl_805A9248: + .skip 0x4 +.global lbl_805A924C +lbl_805A924C: + .skip 0x4 +.global lbl_805A9250 +lbl_805A9250: + .skip 0x4 +.global lbl_805A9254 +lbl_805A9254: + .skip 0x4 +.global lbl_805A9258 +lbl_805A9258: + .skip 0x4 +.global lbl_805A925C +lbl_805A925C: + .skip 0x4 +.global lbl_805A9260 +lbl_805A9260: + .skip 0x4 +.global lbl_805A9264 +lbl_805A9264: + .skip 0x4 +.global lbl_805A9268 +lbl_805A9268: + .skip 0x8 +.global lbl_805A9270 +lbl_805A9270: + .skip 0x4 +.global lbl_805A9274 +lbl_805A9274: + .skip 0x4 +.global lbl_805A9278 +lbl_805A9278: + .skip 0x4 +.global lbl_805A927C +lbl_805A927C: + .skip 0x4 +.global lbl_805A9280 +lbl_805A9280: + .skip 0x4 +.global lbl_805A9284 +lbl_805A9284: + .skip 0x4 +.global lbl_805A9288 +lbl_805A9288: + .skip 0x4 +.global lbl_805A928C +lbl_805A928C: + .skip 0x4 +.global lbl_805A9290 +lbl_805A9290: + .skip 0x4 +.global lbl_805A9294 +lbl_805A9294: + .skip 0x4 +.global lbl_805A9298 +lbl_805A9298: + .skip 0x4 +.global lbl_805A929C +lbl_805A929C: + .skip 0x4 +.global lbl_805A92A0 +lbl_805A92A0: + .skip 0x4 +.global lbl_805A92A4 +lbl_805A92A4: + .skip 0x4 +.global lbl_805A92A8 +lbl_805A92A8: + .skip 0x4 +.global lbl_805A92AC +lbl_805A92AC: + .skip 0x4 +.global lbl_805A92B0 +lbl_805A92B0: + .skip 0x4 +.global lbl_805A92B4 +lbl_805A92B4: + .skip 0x4 +.global lbl_805A92B8 +lbl_805A92B8: + .skip 0x8 +.global lbl_805A92C0 +lbl_805A92C0: + .skip 0x4 +.global lbl_805A92C4 +lbl_805A92C4: + .skip 0x4 +.global lbl_805A92C8 +lbl_805A92C8: + .skip 0x4 +.global lbl_805A92CC +lbl_805A92CC: + .skip 0x4 +.global lbl_805A92D0 +lbl_805A92D0: + .skip 0x8 +.global lbl_805A92D8 +lbl_805A92D8: + .skip 0x8 +.global lbl_805A92E0 +lbl_805A92E0: + .skip 0x4 +.global lbl_805A92E4 +lbl_805A92E4: + .skip 0x4 +.global lbl_805A92E8 +lbl_805A92E8: + .skip 0x4 +.global lbl_805A92EC +lbl_805A92EC: + .skip 0x4 +.global lbl_805A92F0 +lbl_805A92F0: + .skip 0x4 +.global lbl_805A92F4 +lbl_805A92F4: + .skip 0x4 +.global lbl_805A92F8 +lbl_805A92F8: + .skip 0x4 +.global lbl_805A92FC +lbl_805A92FC: + .skip 0x4 +.global lbl_805A9300 +lbl_805A9300: + .skip 0x4 +.global lbl_805A9304 +lbl_805A9304: + .skip 0x4 +.global lbl_805A9308 +lbl_805A9308: + .skip 0x4 +.global lbl_805A930C +lbl_805A930C: + .skip 0x4 +.global lbl_805A9310 +lbl_805A9310: + .skip 0x8 +.global lbl_805A9318 +lbl_805A9318: + .skip 0x8 +.global lbl_805A9320 +lbl_805A9320: + .skip 0x4 +.global lbl_805A9324 +lbl_805A9324: + .skip 0x4 +.global lbl_805A9328 +lbl_805A9328: + .skip 0x4 +.global lbl_805A932C +lbl_805A932C: + .skip 0x4 +.global lbl_805A9330 +lbl_805A9330: + .skip 0x8 +.global lbl_805A9338 +lbl_805A9338: + .skip 0x4 +.global lbl_805A933C +lbl_805A933C: + .skip 0x4 +.global lbl_805A9340 +lbl_805A9340: + .skip 0x1 +.global lbl_805A9341 +lbl_805A9341: + .skip 0x1 +.global lbl_805A9342 +lbl_805A9342: + .skip 0x2 +.global lbl_805A9344 +lbl_805A9344: + .skip 0x4 +.global lbl_805A9348 +lbl_805A9348: + .skip 0x4 +.global lbl_805A934C +lbl_805A934C: + .skip 0x4 +.global lbl_805A9350 +lbl_805A9350: + .skip 0x8 +.global lbl_805A9358 +lbl_805A9358: + .skip 0x4 +.global lbl_805A935C +lbl_805A935C: + .skip 0x4 +.global lbl_805A9360 +lbl_805A9360: + .skip 0x8 +.global lbl_805A9368 +lbl_805A9368: + .skip 0x8 +.global lbl_805A9370 +lbl_805A9370: + .skip 0x4 +.global lbl_805A9374 +lbl_805A9374: + .skip 0x4 +.global lbl_805A9378 +lbl_805A9378: + .skip 0x8 +.global lbl_805A9380 +lbl_805A9380: + .skip 0x4 +.global lbl_805A9384 +lbl_805A9384: + .skip 0x4 +.global lbl_805A9388 +lbl_805A9388: + .skip 0x4 +.global lbl_805A938C +lbl_805A938C: + .skip 0x4 +.global lbl_805A9390 +lbl_805A9390: + .skip 0x4 +.global lbl_805A9394 +lbl_805A9394: + .skip 0x4 +.global lbl_805A9398 +lbl_805A9398: + .skip 0x4 +.global lbl_805A939C +lbl_805A939C: + .skip 0x4 +.global lbl_805A93A0 +lbl_805A93A0: + .skip 0x4 +.global lbl_805A93A4 +lbl_805A93A4: + .skip 0x4 +.global lbl_805A93A8 +lbl_805A93A8: + .skip 0x4 +.global lbl_805A93AC +lbl_805A93AC: + .skip 0x4 +.global lbl_805A93B0 +lbl_805A93B0: + .skip 0x4 +.global lbl_805A93B4 +lbl_805A93B4: + .skip 0x4 +.global lbl_805A93B8 +lbl_805A93B8: + .skip 0x4 +.global lbl_805A93BC +lbl_805A93BC: + .skip 0x4 +.global lbl_805A93C0 +lbl_805A93C0: + .skip 0x4 +.global lbl_805A93C4 +lbl_805A93C4: + .skip 0x4 +.global lbl_805A93C8 +lbl_805A93C8: + .skip 0x4 +.global lbl_805A93CC +lbl_805A93CC: + .skip 0x4 +.global lbl_805A93D0 +lbl_805A93D0: + .skip 0x4 +.global lbl_805A93D4 +lbl_805A93D4: + .skip 0x1 +.global lbl_805A93D5 +lbl_805A93D5: + .skip 0x1 +.global lbl_805A93D6 +lbl_805A93D6: + .skip 0x1 +.global lbl_805A93D7 +lbl_805A93D7: + .skip 0x1 +.global lbl_805A93D8 +lbl_805A93D8: + .skip 0x4 +.global lbl_805A93DC +lbl_805A93DC: + .skip 0x4 +.global lbl_805A93E0 +lbl_805A93E0: + .skip 0x4 +.global lbl_805A93E4 +lbl_805A93E4: + .skip 0x4 +.global lbl_805A93E8 +lbl_805A93E8: + .skip 0x4 +.global lbl_805A93EC +lbl_805A93EC: + .skip 0x4 +.global lbl_805A93F0 +lbl_805A93F0: + .skip 0x4 +.global lbl_805A93F4 +lbl_805A93F4: + .skip 0x4 +.global lbl_805A93F8 +lbl_805A93F8: + .skip 0x4 +.global lbl_805A93FC +lbl_805A93FC: + .skip 0x4 +.global lbl_805A9400 +lbl_805A9400: + .skip 0x4 +.global lbl_805A9404 +lbl_805A9404: + .skip 0x4 +.global lbl_805A9408 +lbl_805A9408: + .skip 0x4 +.global lbl_805A940C +lbl_805A940C: + .skip 0x4 +.global lbl_805A9410 +lbl_805A9410: + .skip 0x4 +.global lbl_805A9414 +lbl_805A9414: + .skip 0x4 +.global lbl_805A9418 +lbl_805A9418: + .skip 0x4 +.global lbl_805A941C +lbl_805A941C: + .skip 0x4 +.global lbl_805A9420 +lbl_805A9420: + .skip 0x8 +.global lbl_805A9428 +lbl_805A9428: + .skip 0x8 +.global lbl_805A9430 +lbl_805A9430: + .skip 0x4 +.global lbl_805A9434 +lbl_805A9434: + .skip 0x4 +.global lbl_805A9438 +lbl_805A9438: + .skip 0x8 +.global lbl_805A9440 +lbl_805A9440: + .skip 0x8 +.global lbl_805A9448 +lbl_805A9448: + .skip 0x4 +.global lbl_805A944C +lbl_805A944C: + .skip 0x4 +.global lbl_805A9450 +lbl_805A9450: + .skip 0x4 +.global lbl_805A9454 +lbl_805A9454: + .skip 0x4 +.global lbl_805A9458 +lbl_805A9458: + .skip 0x8 +.global lbl_805A9460 +lbl_805A9460: + .skip 0x4 +.global lbl_805A9464 +lbl_805A9464: + .skip 0x4 +.global lbl_805A9468 +lbl_805A9468: + .skip 0x8 +.global lbl_805A9470 +lbl_805A9470: + .skip 0x4 +.global lbl_805A9474 +lbl_805A9474: + .skip 0x4 +.global lbl_805A9478 +lbl_805A9478: + .skip 0x1 +.global lbl_805A9479 +lbl_805A9479: + .skip 0x1 +.global lbl_805A947A +lbl_805A947A: + .skip 0x1 +.global lbl_805A947B +lbl_805A947B: + .skip 0x1 +.global lbl_805A947C +lbl_805A947C: + .skip 0x4 +.global lbl_805A9480 +lbl_805A9480: + .skip 0x4 +.global lbl_805A9484 +lbl_805A9484: + .skip 0x1 +.global lbl_805A9485 +lbl_805A9485: + .skip 0x3 +.global lbl_805A9488 +lbl_805A9488: + .skip 0x4 +.global lbl_805A948C +lbl_805A948C: + .skip 0x4 +.global lbl_805A9490 +lbl_805A9490: + .skip 0x4 +.global lbl_805A9494 +lbl_805A9494: + .skip 0x4 +.global lbl_805A9498 +lbl_805A9498: + .skip 0x4 +.global lbl_805A949C +lbl_805A949C: + .skip 0x4 +.global lbl_805A94A0 +lbl_805A94A0: + .skip 0x4 +.global lbl_805A94A4 +lbl_805A94A4: + .skip 0x4 +.global lbl_805A94A8 +lbl_805A94A8: + .skip 0x4 +.global lbl_805A94AC +lbl_805A94AC: + .skip 0x4 +.global lbl_805A94B0 +lbl_805A94B0: + .skip 0x4 +.global lbl_805A94B4 +lbl_805A94B4: + .skip 0x4 +.global lbl_805A94B8 +lbl_805A94B8: + .skip 0x8 +.global lbl_805A94C0 +lbl_805A94C0: + .skip 0x4 +.global lbl_805A94C4 +lbl_805A94C4: + .skip 0x4 +.global lbl_805A94C8 +lbl_805A94C8: + .skip 0x4 +.global lbl_805A94CC +lbl_805A94CC: + .skip 0x4 +.global lbl_805A94D0 +lbl_805A94D0: + .skip 0x4 +.global lbl_805A94D4 +lbl_805A94D4: + .skip 0x1 +.global lbl_805A94D5 +lbl_805A94D5: + .skip 0x3 +.global lbl_805A94D8 +lbl_805A94D8: + .skip 0x2 +.global lbl_805A94DA +lbl_805A94DA: + .skip 0x2 +.global lbl_805A94DC +lbl_805A94DC: + .skip 0x2 +.global lbl_805A94DE +lbl_805A94DE: + .skip 0x2 +.global lbl_805A94E0 +lbl_805A94E0: + .skip 0x1 +.global lbl_805A94E1 +lbl_805A94E1: + .skip 0x1 +.global lbl_805A94E2 +lbl_805A94E2: + .skip 0x1 +.global lbl_805A94E3 +lbl_805A94E3: + .skip 0x5 +.global lbl_805A94E8 +lbl_805A94E8: + .skip 0x8 +.global lbl_805A94F0 +lbl_805A94F0: + .skip 0x2 +.global lbl_805A94F2 +lbl_805A94F2: + .skip 0x2 +.global lbl_805A94F4 +lbl_805A94F4: + .skip 0x4 +.global lbl_805A94F8 +lbl_805A94F8: + .skip 0x4 +.global lbl_805A94FC +lbl_805A94FC: + .skip 0x4 +.global lbl_805A9500 +lbl_805A9500: + .skip 0x8 +.global lbl_805A9508 +lbl_805A9508: + .skip 0x8 +.global lbl_805A9510 +lbl_805A9510: + .skip 0x8 +.global lbl_805A9518 +lbl_805A9518: + .skip 0x8 +.global lbl_805A9520 +lbl_805A9520: + .skip 0x4 +.global lbl_805A9524 +lbl_805A9524: + .skip 0x4 +.global lbl_805A9528 +lbl_805A9528: + .skip 0x4 +.global lbl_805A952C +lbl_805A952C: + .skip 0x4 +.global lbl_805A9530 +lbl_805A9530: + .skip 0x4 +.global lbl_805A9534 +lbl_805A9534: + .skip 0x4 +.global lbl_805A9538 +lbl_805A9538: + .skip 0x8 +.global lbl_805A9540 +lbl_805A9540: + .skip 0x4 +.global lbl_805A9544 +lbl_805A9544: + .skip 0x4 +.global lbl_805A9548 +lbl_805A9548: + .skip 0x4 +.global lbl_805A954C +lbl_805A954C: + .skip 0x4 +.global lbl_805A9550 +lbl_805A9550: + .skip 0x4 +.global lbl_805A9554 +lbl_805A9554: + .skip 0x4 +.global lbl_805A9558 +lbl_805A9558: + .skip 0x1 +.global lbl_805A9559 +lbl_805A9559: + .skip 0x1 +.global lbl_805A955A +lbl_805A955A: + .skip 0x2 +.global lbl_805A955C +lbl_805A955C: + .skip 0x4 +.global lbl_805A9560 +lbl_805A9560: + .skip 0x1 +.global lbl_805A9561 +lbl_805A9561: + .skip 0x7 +.global lbl_805A9568 +lbl_805A9568: + .skip 0x4 +.global lbl_805A956C +lbl_805A956C: + .skip 0x4 +.global lbl_805A9570 +lbl_805A9570: + .skip 0x4 +.global lbl_805A9574 +lbl_805A9574: + .skip 0x4 +.global lbl_805A9578 +lbl_805A9578: + .skip 0x4 +.global lbl_805A957C +lbl_805A957C: + .skip 0x4 +.global lbl_805A9580 +lbl_805A9580: + .skip 0x4 +.global lbl_805A9584 +lbl_805A9584: + .skip 0x4 +.global lbl_805A9588 +lbl_805A9588: + .skip 0x8 +.global lbl_805A9590 +lbl_805A9590: + .skip 0x1 +.global lbl_805A9591 +lbl_805A9591: + .skip 0x1 +.global lbl_805A9592 +lbl_805A9592: + .skip 0x1 +.global lbl_805A9593 +lbl_805A9593: + .skip 0x1 +.global lbl_805A9594 +lbl_805A9594: + .skip 0x4 +.global lbl_805A9598 +lbl_805A9598: + .skip 0x4 +.global lbl_805A959C +lbl_805A959C: + .skip 0x4 +.global lbl_805A95A0 +lbl_805A95A0: + .skip 0x4 +.global lbl_805A95A4 +lbl_805A95A4: + .skip 0x4 +.global lbl_805A95A8 +lbl_805A95A8: + .skip 0x4 +.global lbl_805A95AC +lbl_805A95AC: + .skip 0x4 +.global lbl_805A95B0 +lbl_805A95B0: + .skip 0x4 +.global lbl_805A95B4 +lbl_805A95B4: + .skip 0x4 +.global lbl_805A95B8 +lbl_805A95B8: + .skip 0x4 +.global lbl_805A95BC +lbl_805A95BC: + .skip 0x4 +.global lbl_805A95C0 +lbl_805A95C0: + .skip 0x1 +.global lbl_805A95C1 +lbl_805A95C1: + .skip 0x7 +.global lbl_805A95C8 +lbl_805A95C8: + .skip 0x1 +.global lbl_805A95C9 +lbl_805A95C9: + .skip 0x7 +.global lbl_805A95D0 +lbl_805A95D0: + .skip 0x8 +.global lbl_805A95D8 +lbl_805A95D8: + .skip 0x8 +.global lbl_805A95E0 +lbl_805A95E0: + .skip 0x4 +.global lbl_805A95E4 +lbl_805A95E4: + .skip 0x4 +.global lbl_805A95E8 +lbl_805A95E8: + .skip 0x1 +.global lbl_805A95E9 +lbl_805A95E9: + .skip 0x1 +.global lbl_805A95EA +lbl_805A95EA: + .skip 0x6 +.global lbl_805A95F0 +lbl_805A95F0: + .skip 0x4 +.global lbl_805A95F4 +lbl_805A95F4: + .skip 0x4 +.global lbl_805A95F8 +lbl_805A95F8: + .skip 0x4 +.global lbl_805A95FC +lbl_805A95FC: + .skip 0x4 +.global lbl_805A9600 +lbl_805A9600: + .skip 0x1 +.global lbl_805A9601 +lbl_805A9601: + .skip 0x7 +.global lbl_805A9608 +lbl_805A9608: + .skip 0x4 +.global lbl_805A960C +lbl_805A960C: + .skip 0x4 +.global lbl_805A9610 +lbl_805A9610: + .skip 0x4 +.global lbl_805A9614 +lbl_805A9614: + .skip 0x4 +.global lbl_805A9618 +lbl_805A9618: + .skip 0x4 +.global lbl_805A961C +lbl_805A961C: + .skip 0x4 +.global lbl_805A9620 +lbl_805A9620: + .skip 0x4 +.global lbl_805A9624 +lbl_805A9624: + .skip 0x4 +.global lbl_805A9628 +lbl_805A9628: + .skip 0x4 +.global lbl_805A962C +lbl_805A962C: + .skip 0x4 +.global lbl_805A9630 +lbl_805A9630: + .skip 0x4 +.global lbl_805A9634 +lbl_805A9634: + .skip 0x4 +.global lbl_805A9638 +lbl_805A9638: + .skip 0x4 +.global lbl_805A963C +lbl_805A963C: + .skip 0x4 +.global lbl_805A9640 +lbl_805A9640: + .skip 0x4 +.global lbl_805A9644 +lbl_805A9644: + .skip 0x4 +.global lbl_805A9648 +lbl_805A9648: + .skip 0x8 +.global lbl_805A9650 +lbl_805A9650: + .skip 0x4 +.global lbl_805A9654 +lbl_805A9654: + .skip 0x4 +.global lbl_805A9658 +lbl_805A9658: + .skip 0x8 +.global lbl_805A9660 +lbl_805A9660: + .skip 0x4 +.global lbl_805A9664 +lbl_805A9664: + .skip 0x4 +.global lbl_805A9668 +lbl_805A9668: + .skip 0x4 +.global lbl_805A966C +lbl_805A966C: + .skip 0x4 +.global lbl_805A9670 +lbl_805A9670: + .skip 0x1 +.global lbl_805A9671 +lbl_805A9671: + .skip 0x7 +.global lbl_805A9678 +lbl_805A9678: + .skip 0x8 +.global lbl_805A9680 +lbl_805A9680: + .skip 0x4 +.global lbl_805A9684 +lbl_805A9684: + .skip 0x4 +.global lbl_805A9688 +lbl_805A9688: + .skip 0x8 +.global lbl_805A9690 +lbl_805A9690: + .skip 0x4 +.global lbl_805A9694 +lbl_805A9694: + .skip 0x4 +.global lbl_805A9698 +lbl_805A9698: + .skip 0x4 +.global lbl_805A969C +lbl_805A969C: + .skip 0x4 +.global lbl_805A96A0 +lbl_805A96A0: + .skip 0x8 +.global lbl_805A96A8 +lbl_805A96A8: + .skip 0x4 +.global lbl_805A96AC +lbl_805A96AC: + .skip 0x4 +.global lbl_805A96B0 +lbl_805A96B0: + .skip 0x8 +.global lbl_805A96B8 +lbl_805A96B8: + .skip 0x4 +.global lbl_805A96BC +lbl_805A96BC: + .skip 0x4 +.global lbl_805A96C0 +lbl_805A96C0: + .skip 0x4 +.global lbl_805A96C4 +lbl_805A96C4: + .skip 0x4 +.global lbl_805A96C8 +lbl_805A96C8: + .skip 0x4 +.global lbl_805A96CC +lbl_805A96CC: + .skip 0x4 +.global lbl_805A96D0 +lbl_805A96D0: + .skip 0x4 +.global lbl_805A96D4 +lbl_805A96D4: + .skip 0x4 +.global lbl_805A96D8 +lbl_805A96D8: + .skip 0x4 +.global lbl_805A96DC +lbl_805A96DC: + .skip 0x4 +.global lbl_805A96E0 +lbl_805A96E0: + .skip 0x4 +.global lbl_805A96E4 +lbl_805A96E4: + .skip 0x4 +.global lbl_805A96E8 +lbl_805A96E8: + .skip 0x4 +.global lbl_805A96EC +lbl_805A96EC: + .skip 0x4 +.global lbl_805A96F0 +lbl_805A96F0: + .skip 0x4 +.global lbl_805A96F4 +lbl_805A96F4: + .skip 0x4 +.global lbl_805A96F8 +lbl_805A96F8: + .skip 0x4 +.global lbl_805A96FC +lbl_805A96FC: + .skip 0x4 +.global lbl_805A9700 +lbl_805A9700: + .skip 0x4 +.global lbl_805A9704 +lbl_805A9704: + .skip 0x4 +.global lbl_805A9708 +lbl_805A9708: + .skip 0x4 +.global lbl_805A970C +lbl_805A970C: + .skip 0x4 +.global lbl_805A9710 +lbl_805A9710: + .skip 0x4 +.global lbl_805A9714 +lbl_805A9714: + .skip 0x4 +.global lbl_805A9718 +lbl_805A9718: + .skip 0x4 +.global lbl_805A971C +lbl_805A971C: + .skip 0x4 +.global lbl_805A9720 +lbl_805A9720: + .skip 0x4 +.global lbl_805A9724 +lbl_805A9724: + .skip 0x4 +.global lbl_805A9728 +lbl_805A9728: + .skip 0x4 +.global lbl_805A972C +lbl_805A972C: + .skip 0x4 +.global lbl_805A9730 +lbl_805A9730: + .skip 0x4 +.global lbl_805A9734 +lbl_805A9734: + .skip 0x4 +.global lbl_805A9738 +lbl_805A9738: + .skip 0x4 +.global lbl_805A973C +lbl_805A973C: + .skip 0x4 +.global lbl_805A9740 +lbl_805A9740: + .skip 0x4 +.global lbl_805A9744 +lbl_805A9744: + .skip 0x4 +.global lbl_805A9748 +lbl_805A9748: + .skip 0x8 +.global lbl_805A9750 +lbl_805A9750: + .skip 0x4 +.global lbl_805A9754 +lbl_805A9754: + .skip 0x4 +.global lbl_805A9758 +lbl_805A9758: + .skip 0x4 +.global lbl_805A975C +lbl_805A975C: + .skip 0x4 +.global lbl_805A9760 +lbl_805A9760: + .skip 0x4 +.global lbl_805A9764 +lbl_805A9764: + .skip 0x4 +.global lbl_805A9768 +lbl_805A9768: + .skip 0x4 +.global lbl_805A976C +lbl_805A976C: + .skip 0x4 +.global lbl_805A9770 +lbl_805A9770: + .skip 0x4 +.global lbl_805A9774 +lbl_805A9774: + .skip 0x4 +.global lbl_805A9778 +lbl_805A9778: + .skip 0x4 +.global lbl_805A977C +lbl_805A977C: + .skip 0x4 +.global lbl_805A9780 +lbl_805A9780: + .skip 0x4 +.global lbl_805A9784 +lbl_805A9784: + .skip 0x4 +.global lbl_805A9788 +lbl_805A9788: + .skip 0x4 +.global lbl_805A978C +lbl_805A978C: + .skip 0x4 +.global lbl_805A9790 +lbl_805A9790: + .skip 0x8 +.global lbl_805A9798 +lbl_805A9798: + .skip 0x4 +.global lbl_805A979C +lbl_805A979C: + .skip 0x4 +.global lbl_805A97A0 +lbl_805A97A0: + .skip 0x4 +.global lbl_805A97A4 +lbl_805A97A4: + .skip 0x4 +.global lbl_805A97A8 +lbl_805A97A8: + .skip 0x4 +.global lbl_805A97AC +lbl_805A97AC: + .skip 0x4 +.global lbl_805A97B0 +lbl_805A97B0: + .skip 0x4 +.global lbl_805A97B4 +lbl_805A97B4: + .skip 0x4 +.global lbl_805A97B8 +lbl_805A97B8: + .skip 0x4 +.global lbl_805A97BC +lbl_805A97BC: + .skip 0x4 +.global lbl_805A97C0 +lbl_805A97C0: + .skip 0x4 +.global lbl_805A97C4 +lbl_805A97C4: + .skip 0x4 +.global lbl_805A97C8 +lbl_805A97C8: + .skip 0x8 +.global lbl_805A97D0 +lbl_805A97D0: + .skip 0x4 +.global lbl_805A97D4 +lbl_805A97D4: + .skip 0x4 +.global lbl_805A97D8 +lbl_805A97D8: + .skip 0x4 +.global lbl_805A97DC +lbl_805A97DC: + .skip 0x4 +.global lbl_805A97E0 +lbl_805A97E0: + .skip 0x4 +.global lbl_805A97E4 +lbl_805A97E4: + .skip 0x4 +.global lbl_805A97E8 +lbl_805A97E8: + .skip 0x4 +.global lbl_805A97EC +lbl_805A97EC: + .skip 0x4 +.global lbl_805A97F0 +lbl_805A97F0: + .skip 0x4 +.global lbl_805A97F4 +lbl_805A97F4: + .skip 0x4 +.global lbl_805A97F8 +lbl_805A97F8: + .skip 0x4 +.global lbl_805A97FC +lbl_805A97FC: + .skip 0x4 +.global lbl_805A9800 +lbl_805A9800: + .skip 0x4 +.global lbl_805A9804 +lbl_805A9804: + .skip 0x4 +.global lbl_805A9808 +lbl_805A9808: + .skip 0x4 +.global lbl_805A980C +lbl_805A980C: + .skip 0x4 +.global lbl_805A9810 +lbl_805A9810: + .skip 0x4 +.global lbl_805A9814 +lbl_805A9814: + .skip 0x4 +.global lbl_805A9818 +lbl_805A9818: + .skip 0x8 +.global lbl_805A9820 +lbl_805A9820: + .skip 0x8 +.global lbl_805A9828 +lbl_805A9828: + .skip 0x4 +.global lbl_805A982C +lbl_805A982C: + .skip 0x4 +.global lbl_805A9830 +lbl_805A9830: + .skip 0x8 +.global lbl_805A9838 +lbl_805A9838: + .skip 0x4 +.global lbl_805A983C +lbl_805A983C: + .skip 0x4 +.global lbl_805A9840 +lbl_805A9840: + .skip 0x4 +.global lbl_805A9844 +lbl_805A9844: + .skip 0x4 +.global lbl_805A9848 +lbl_805A9848: + .skip 0x4 +.global lbl_805A984C +lbl_805A984C: + .skip 0x4 +.global lbl_805A9850 +lbl_805A9850: + .skip 0x4 +.global lbl_805A9854 +lbl_805A9854: + .skip 0x4 +.global lbl_805A9858 +lbl_805A9858: + .skip 0x4 +.global lbl_805A985C +lbl_805A985C: + .skip 0x4 +.global lbl_805A9860 +lbl_805A9860: + .skip 0x4 +.global lbl_805A9864 +lbl_805A9864: + .skip 0x4 +.global lbl_805A9868 +lbl_805A9868: + .skip 0x4 +.global lbl_805A986C +lbl_805A986C: + .skip 0x4 +.global lbl_805A9870 +lbl_805A9870: + .skip 0x4 +.global lbl_805A9874 +lbl_805A9874: + .skip 0xC +.global lbl_805A9880 +lbl_805A9880: + .skip 0x4 +.global lbl_805A9884 +lbl_805A9884: + .skip 0x4 +.global lbl_805A9888 +lbl_805A9888: + .skip 0x4 +.global lbl_805A988C +lbl_805A988C: + .skip 0x4 +.global lbl_805A9890 +lbl_805A9890: + .skip 0x4 +.global lbl_805A9894 +lbl_805A9894: + .skip 0x4 +.global lbl_805A9898 +lbl_805A9898: + .skip 0x4 +.global lbl_805A989C +lbl_805A989C: + .skip 0x4 +.global lbl_805A98A0 +lbl_805A98A0: + .skip 0x8 +.global lbl_805A98A8 +lbl_805A98A8: + .skip 0x4 +.global lbl_805A98AC +lbl_805A98AC: + .skip 0x4 +.global lbl_805A98B0 +lbl_805A98B0: + .skip 0x8 +.global lbl_805A98B8 +lbl_805A98B8: + .skip 0x8 +.global lbl_805A98C0 +lbl_805A98C0: + .skip 0x4 +.global lbl_805A98C4 +lbl_805A98C4: + .skip 0x4 +.global lbl_805A98C8 +lbl_805A98C8: + .skip 0x4 +.global lbl_805A98CC +lbl_805A98CC: + .skip 0x4 +.global lbl_805A98D0 +lbl_805A98D0: + .skip 0x4 +.global lbl_805A98D4 +lbl_805A98D4: + .skip 0x4 +.global lbl_805A98D8 +lbl_805A98D8: + .skip 0x8 +.global lbl_805A98E0 +lbl_805A98E0: + .skip 0x4 +.global lbl_805A98E4 +lbl_805A98E4: + .skip 0x4 +.global lbl_805A98E8 +lbl_805A98E8: + .skip 0x4 +.global lbl_805A98EC +lbl_805A98EC: + .skip 0x4 +.global lbl_805A98F0 +lbl_805A98F0: + .skip 0x8 +.global lbl_805A98F8 +lbl_805A98F8: + .skip 0x8 +.global lbl_805A9900 +lbl_805A9900: + .skip 0x4 +.global lbl_805A9904 +lbl_805A9904: + .skip 0x4 +.global lbl_805A9908 +lbl_805A9908: + .skip 0x8 +.global lbl_805A9910 +lbl_805A9910: + .skip 0x4 +.global lbl_805A9914 +lbl_805A9914: + .skip 0x4 +.global lbl_805A9918 +lbl_805A9918: + .skip 0x4 +.global lbl_805A991C +lbl_805A991C: + .skip 0x4 +.global lbl_805A9920 +lbl_805A9920: + .skip 0x4 +.global lbl_805A9924 +lbl_805A9924: + .skip 0x4 +.global lbl_805A9928 +lbl_805A9928: + .skip 0x8 +.global lbl_805A9930 +lbl_805A9930: + .skip 0x4 +.global lbl_805A9934 +lbl_805A9934: + .skip 0x4 +.global lbl_805A9938 +lbl_805A9938: + .skip 0x4 +.global lbl_805A993C +lbl_805A993C: + .skip 0x4 +.global lbl_805A9940 +lbl_805A9940: + .skip 0x4 +.global lbl_805A9944 +lbl_805A9944: + .skip 0x4 +.global lbl_805A9948 +lbl_805A9948: + .skip 0x4 +.global lbl_805A994C +lbl_805A994C: + .skip 0x4 +.global lbl_805A9950 +lbl_805A9950: + .skip 0x4 +.global lbl_805A9954 +lbl_805A9954: + .skip 0x4 +.global lbl_805A9958 +lbl_805A9958: + .skip 0x4 +.global lbl_805A995C +lbl_805A995C: + .skip 0x4 +.global lbl_805A9960 +lbl_805A9960: + .skip 0x4 +.global lbl_805A9964 +lbl_805A9964: + .skip 0x8 +.global lbl_805A996C +lbl_805A996C: + .skip 0x4 +.global lbl_805A9970 +lbl_805A9970: + .skip 0x4 +.global lbl_805A9974 +lbl_805A9974: + .skip 0x4 +.global lbl_805A9978 +lbl_805A9978: + .skip 0x2 +.global lbl_805A997A +lbl_805A997A: + .skip 0x2 +.global lbl_805A997C +lbl_805A997C: + .skip 0x4 +.global lbl_805A9980 +lbl_805A9980: + .skip 0x4 +.global lbl_805A9984 +lbl_805A9984: + .skip 0x4 +.global lbl_805A9988 +lbl_805A9988: + .skip 0x8 +.global lbl_805A9990 +lbl_805A9990: + .skip 0x4 +.global lbl_805A9994 +lbl_805A9994: + .skip 0x4 +.global lbl_805A9998 +lbl_805A9998: + .skip 0x4 +.global lbl_805A999C +lbl_805A999C: + .skip 0x4 +.global lbl_805A99A0 +lbl_805A99A0: + .skip 0x4 +.global lbl_805A99A4 +lbl_805A99A4: + .skip 0x4 +.global lbl_805A99A8 +lbl_805A99A8: + .skip 0x4 +.global lbl_805A99AC +lbl_805A99AC: + .skip 0x4 +.global lbl_805A99B0 +lbl_805A99B0: + .skip 0x8 +.global lbl_805A99B8 +lbl_805A99B8: + .skip 0x4 +.global lbl_805A99BC +lbl_805A99BC: + .skip 0x4 +.global lbl_805A99C0 +lbl_805A99C0: + .skip 0x4 +.global lbl_805A99C4 +lbl_805A99C4: + .skip 0x4 +.global lbl_805A99C8 +lbl_805A99C8: + .skip 0x8 +.global lbl_805A99D0 +lbl_805A99D0: + .skip 0x8 +.global lbl_805A99D8 +lbl_805A99D8: + .skip 0x8 +.global lbl_805A99E0 +lbl_805A99E0: + .skip 0x8 +.global lbl_805A99E8 +lbl_805A99E8: + .skip 0x4 +.global lbl_805A99EC +lbl_805A99EC: + .skip 0x4 +.global lbl_805A99F0 +lbl_805A99F0: + .skip 0x4 +.global lbl_805A99F4 +lbl_805A99F4: + .skip 0x4 +.global lbl_805A99F8 +lbl_805A99F8: + .skip 0x4 +.global lbl_805A99FC +lbl_805A99FC: + .skip 0x4 +.global lbl_805A9A00 +lbl_805A9A00: + .skip 0x4 +.global lbl_805A9A04 +lbl_805A9A04: + .skip 0x4 +.global lbl_805A9A08 +lbl_805A9A08: + .skip 0x1 +.global lbl_805A9A09 +lbl_805A9A09: + .skip 0x3 +.global lbl_805A9A0C +lbl_805A9A0C: + .skip 0x8 +.global lbl_805A9A14 +lbl_805A9A14: + .skip 0x8 +.global lbl_805A9A1C +lbl_805A9A1C: + .skip 0x8 +.global lbl_805A9A24 +lbl_805A9A24: + .skip 0x8 +.global lbl_805A9A2C +lbl_805A9A2C: + .skip 0x4 +.global lbl_805A9A30 +lbl_805A9A30: + .skip 0x4 +.global lbl_805A9A34 +lbl_805A9A34: + .skip 0x4 +.global lbl_805A9A38 +lbl_805A9A38: + .skip 0x4 +.global lbl_805A9A3C +lbl_805A9A3C: + .skip 0x4 +.global lbl_805A9A40 +lbl_805A9A40: + .skip 0x8 +.global lbl_805A9A48 +lbl_805A9A48: + .skip 0x4 +.global lbl_805A9A4C +lbl_805A9A4C: + .skip 0x4 +.global lbl_805A9A50 +lbl_805A9A50: + .skip 0x4 +.global lbl_805A9A54 +lbl_805A9A54: + .skip 0x1 +.global lbl_805A9A55 +lbl_805A9A55: + .skip 0x3 +.global lbl_805A9A58 +lbl_805A9A58: + .skip 0x4 +.global lbl_805A9A5C +lbl_805A9A5C: + .skip 0x4 +.global lbl_805A9A60 +lbl_805A9A60: + .skip 0x8 +.global lbl_805A9A68 +lbl_805A9A68: + .skip 0x4 +.global lbl_805A9A6C +lbl_805A9A6C: + .skip 0x8 +.global lbl_805A9A74 +lbl_805A9A74: + .skip 0x4 +.global lbl_805A9A78 +lbl_805A9A78: + .skip 0x4 +.global lbl_805A9A7C +lbl_805A9A7C: + .skip 0x4 +.global lbl_805A9A80 +lbl_805A9A80: + .skip 0x8 +.global lbl_805A9A88 +lbl_805A9A88: + .skip 0x4 +.global lbl_805A9A8C +lbl_805A9A8C: + .skip 0x4 +.global lbl_805A9A90 +lbl_805A9A90: + .skip 0x2 +.global lbl_805A9A92 +lbl_805A9A92: + .skip 0x2 +.global lbl_805A9A94 +lbl_805A9A94: + .skip 0x2 +.global lbl_805A9A96 +lbl_805A9A96: + .skip 0x2 +.global lbl_805A9A98 +lbl_805A9A98: + .skip 0x2 +.global lbl_805A9A9A +lbl_805A9A9A: + .skip 0x6 +.global lbl_805A9AA0 +lbl_805A9AA0: + .skip 0x8 +.global lbl_805A9AA8 +lbl_805A9AA8: + .skip 0x4 +.global lbl_805A9AAC +lbl_805A9AAC: + .skip 0x4 +.global lbl_805A9AB0 +lbl_805A9AB0: + .skip 0x4 +.global lbl_805A9AB4 +lbl_805A9AB4: + .skip 0x4 +.global lbl_805A9AB8 +lbl_805A9AB8: + .skip 0x8 +.global lbl_805A9AC0 +lbl_805A9AC0: + .skip 0x4 +.global lbl_805A9AC4 +lbl_805A9AC4: + .skip 0x4 +.global lbl_805A9AC8 +lbl_805A9AC8: + .skip 0x4 +.global lbl_805A9ACC +lbl_805A9ACC: + .skip 0x2 +.global lbl_805A9ACE +lbl_805A9ACE: + .skip 0x1 +.global lbl_805A9ACF +lbl_805A9ACF: + .skip 0x1 +.global lbl_805A9AD0 +lbl_805A9AD0: + .skip 0x1 +.global lbl_805A9AD1 +lbl_805A9AD1: + .skip 0x7 +.global lbl_805A9AD8 +lbl_805A9AD8: + .skip 0x8 +.global lbl_805A9AE0 +lbl_805A9AE0: + .skip 0x4 +.global lbl_805A9AE4 +lbl_805A9AE4: + .skip 0x4 +.global lbl_805A9AE8 +lbl_805A9AE8: + .skip 0x4 +.global lbl_805A9AEC +lbl_805A9AEC: + .skip 0x4 +.global lbl_805A9AF0 +lbl_805A9AF0: + .skip 0x4 +.global lbl_805A9AF4 +lbl_805A9AF4: + .skip 0x4 +.global lbl_805A9AF8 +lbl_805A9AF8: + .skip 0x4 +.global lbl_805A9AFC +lbl_805A9AFC: + .skip 0x4 +.global lbl_805A9B00 +lbl_805A9B00: + .skip 0x4 +.global lbl_805A9B04 +lbl_805A9B04: + .skip 0x4 +.global lbl_805A9B08 +lbl_805A9B08: + .skip 0x4 +.global lbl_805A9B0C +lbl_805A9B0C: + .skip 0x4 +.global lbl_805A9B10 +lbl_805A9B10: + .skip 0x4 +.global lbl_805A9B14 +lbl_805A9B14: + .skip 0x4 +.global lbl_805A9B18 +lbl_805A9B18: + .skip 0x8 +.global lbl_805A9B20 +lbl_805A9B20: + .skip 0x1 +.global lbl_805A9B21 +lbl_805A9B21: + .skip 0x1 +.global lbl_805A9B22 +lbl_805A9B22: + .skip 0x1 +.global lbl_805A9B23 +lbl_805A9B23: + .skip 0x1 +.global lbl_805A9B24 +lbl_805A9B24: + .skip 0x1 +.global lbl_805A9B25 +lbl_805A9B25: + .skip 0x3 +.global lbl_805A9B28 +lbl_805A9B28: + .skip 0x4 +.global lbl_805A9B2C +lbl_805A9B2C: + .skip 0x4 +.global lbl_805A9B30 +lbl_805A9B30: + .skip 0x4 +.global lbl_805A9B34 +lbl_805A9B34: + .skip 0x4 +.global lbl_805A9B38 +lbl_805A9B38: + .skip 0x4 +.global lbl_805A9B3C +lbl_805A9B3C: + .skip 0x4 +.global lbl_805A9B40 +lbl_805A9B40: + .skip 0x4 +.global lbl_805A9B44 +lbl_805A9B44: + .skip 0x4 +.global lbl_805A9B48 +lbl_805A9B48: + .skip 0x4 +.global lbl_805A9B4C +lbl_805A9B4C: + .skip 0x1 +.global lbl_805A9B4D +lbl_805A9B4D: + .skip 0x1 +.global lbl_805A9B4E +lbl_805A9B4E: + .skip 0x1 +.global lbl_805A9B4F +lbl_805A9B4F: + .skip 0x1 +.global lbl_805A9B50 +lbl_805A9B50: + .skip 0x4 +.global lbl_805A9B54 +lbl_805A9B54: + .skip 0x4 +.global lbl_805A9B58 +lbl_805A9B58: + .skip 0x4 +.global lbl_805A9B5C +lbl_805A9B5C: + .skip 0x4 +.global lbl_805A9B60 +lbl_805A9B60: + .skip 0x4 +.global lbl_805A9B64 +lbl_805A9B64: + .skip 0x4 +.global lbl_805A9B68 +lbl_805A9B68: + .skip 0x4 +.global lbl_805A9B6C +lbl_805A9B6C: + .skip 0x4 +.global lbl_805A9B70 +lbl_805A9B70: + .skip 0x4 +.global lbl_805A9B74 +lbl_805A9B74: + .skip 0x4 +.global lbl_805A9B78 +lbl_805A9B78: + .skip 0x4 +.global lbl_805A9B7C +lbl_805A9B7C: + .skip 0x4 +.global lbl_805A9B80 +lbl_805A9B80: + .skip 0x4 +.global lbl_805A9B84 +lbl_805A9B84: + .skip 0x4 +.global lbl_805A9B88 +lbl_805A9B88: + .skip 0x4 +.global lbl_805A9B8C +lbl_805A9B8C: + .skip 0x4 +.global lbl_805A9B90 +lbl_805A9B90: + .skip 0x4 +.global lbl_805A9B94 +lbl_805A9B94: + .skip 0x4 +.global lbl_805A9B98 +lbl_805A9B98: + .skip 0x4 +.global lbl_805A9B9C +lbl_805A9B9C: + .skip 0x4 +.global lbl_805A9BA0 +lbl_805A9BA0: + .skip 0x4 +.global lbl_805A9BA4 +lbl_805A9BA4: + .skip 0x4 +.global lbl_805A9BA8 +lbl_805A9BA8: + .skip 0x4 +.global lbl_805A9BAC +lbl_805A9BAC: + .skip 0x4 +.global lbl_805A9BB0 +lbl_805A9BB0: + .skip 0x4 +.global lbl_805A9BB4 +lbl_805A9BB4: + .skip 0x4 +.global lbl_805A9BB8 +lbl_805A9BB8: + .skip 0x1 +.global lbl_805A9BB9 +lbl_805A9BB9: + .skip 0x3 +.global lbl_805A9BBC +lbl_805A9BBC: + .skip 0x4 +.global lbl_805A9BC0 +lbl_805A9BC0: + .skip 0x4 +.global lbl_805A9BC4 +lbl_805A9BC4: + .skip 0x4 +.global lbl_805A9BC8 +lbl_805A9BC8: + .skip 0x8 +.global lbl_805A9BD0 +lbl_805A9BD0: + .skip 0x4 +.global lbl_805A9BD4 +lbl_805A9BD4: + .skip 0x4 +.global lbl_805A9BD8 +lbl_805A9BD8: + .skip 0x8 +.global lbl_805A9BE0 +lbl_805A9BE0: + .skip 0x8 +.global lbl_805A9BE8 +lbl_805A9BE8: + .skip 0x4 +.global lbl_805A9BEC +lbl_805A9BEC: + .skip 0x4 +.global lbl_805A9BF0 +lbl_805A9BF0: + .skip 0x4 +.global lbl_805A9BF4 +lbl_805A9BF4: + .skip 0xC +.global lbl_805A9C00 +lbl_805A9C00: + .skip 0x20 +.global lbl_805A9C20 +lbl_805A9C20: + .skip 0x20 +.global lbl_805A9C40 +lbl_805A9C40: + .skip 0x20 +.global lbl_805A9C60 +lbl_805A9C60: + .skip 0x20 +.global lbl_805A9C80 +lbl_805A9C80: + .skip 0x20 +.global lbl_805A9CA0 +lbl_805A9CA0: + .skip 0x4 +.global lbl_805A9CA4 +lbl_805A9CA4: + .skip 0x4 +.global lbl_805A9CA8 +lbl_805A9CA8: + .skip 0x4 +.global lbl_805A9CAC +lbl_805A9CAC: + .skip 0x14 +.global lbl_805A9CC0 +lbl_805A9CC0: + .skip 0x20 +.global lbl_805A9CE0 +lbl_805A9CE0: + .skip 0x20 +.global lbl_805A9D00 +lbl_805A9D00: + .skip 0x4 +.global lbl_805A9D04 +lbl_805A9D04: + .skip 0x4 +.global lbl_805A9D08 +lbl_805A9D08: + .skip 0x4 +.global lbl_805A9D0C +lbl_805A9D0C: + .skip 0x4 +.global lbl_805A9D10 +lbl_805A9D10: + .skip 0x4 +.global lbl_805A9D14 +lbl_805A9D14: + .skip 0x4 +.global lbl_805A9D18 +lbl_805A9D18: + .skip 0x4 diff --git a/asm/sbss2.s b/asm/sbss2.s new file mode 100644 index 00000000..25fb270e --- /dev/null +++ b/asm/sbss2.s @@ -0,0 +1,69 @@ +.include "macros.inc" + +.section .sbss2, "", @nobits # 0x805AF460 - 0x805AF4C7 +.global lbl_805AF460 +lbl_805AF460: + .skip 0x8 +.global lbl_805AF468 +lbl_805AF468: + .skip 0x4 +.global lbl_805AF46C +lbl_805AF46C: + .skip 0x4 +.global lbl_805AF470 +lbl_805AF470: + .skip 0x4 +.global lbl_805AF474 +lbl_805AF474: + .skip 0x4 +.global lbl_805AF478 +lbl_805AF478: + .skip 0x4 +.global lbl_805AF47C +lbl_805AF47C: + .skip 0x4 +.global lbl_805AF480 +lbl_805AF480: + .skip 0x8 +.global lbl_805AF488 +lbl_805AF488: + .skip 0x4 +.global lbl_805AF48C +lbl_805AF48C: + .skip 0x4 +.global lbl_805AF490 +lbl_805AF490: + .skip 0x4 +.global lbl_805AF494 +lbl_805AF494: + .skip 0x4 +.global lbl_805AF498 +lbl_805AF498: + .skip 0x8 +.global lbl_805AF4A0 +lbl_805AF4A0: + .skip 0x8 +.global lbl_805AF4A8 +lbl_805AF4A8: + .skip 0x4 +.global lbl_805AF4AC +lbl_805AF4AC: + .skip 0x4 +.global lbl_805AF4B0 +lbl_805AF4B0: + .skip 0x4 +.global lbl_805AF4B4 +lbl_805AF4B4: + .skip 0x4 +.global lbl_805AF4B8 +lbl_805AF4B8: + .skip 0x4 +.global lbl_805AF4BC +lbl_805AF4BC: + .skip 0x4 +.global lbl_805AF4C0 +lbl_805AF4C0: + .skip 0x4 +.global lbl_805AF4C4 +lbl_805AF4C4: + .skip 0x4 diff --git a/asm/sdata.s b/asm/sdata.s new file mode 100644 index 00000000..5025f6f7 --- /dev/null +++ b/asm/sdata.s @@ -0,0 +1,5808 @@ +.include "macros.inc" + +.section .sdata, "wa" # 0x805A6BC0 - 0x805A8C1C +.global lbl_805A6BC0 +lbl_805A6BC0: + .incbin "baserom.dol", 0x3F4560, 0x4 +.global lbl_805A6BC4 +lbl_805A6BC4: + .incbin "baserom.dol", 0x3F4564, 0x4 +.global lbl_805A6BC8 +lbl_805A6BC8: + .incbin "baserom.dol", 0x3F4568, 0x4 +.global lbl_805A6BCC +lbl_805A6BCC: + .incbin "baserom.dol", 0x3F456C, 0x4 +.global lbl_805A6BD0 +lbl_805A6BD0: + .incbin "baserom.dol", 0x3F4570, 0x4 +.global lbl_805A6BD4 +lbl_805A6BD4: + .incbin "baserom.dol", 0x3F4574, 0x4 +.global lbl_805A6BD8 +lbl_805A6BD8: + .incbin "baserom.dol", 0x3F4578, 0x4 +.global lbl_805A6BDC +lbl_805A6BDC: + .incbin "baserom.dol", 0x3F457C, 0x4 +.global lbl_805A6BE0 +lbl_805A6BE0: + .incbin "baserom.dol", 0x3F4580, 0x4 +.global lbl_805A6BE4 +lbl_805A6BE4: + .incbin "baserom.dol", 0x3F4584, 0x4 +.global lbl_805A6BE8 +lbl_805A6BE8: + .incbin "baserom.dol", 0x3F4588, 0x8 +.global lbl_805A6BF0 +lbl_805A6BF0: + .incbin "baserom.dol", 0x3F4590, 0x8 +.global lbl_805A6BF8 +lbl_805A6BF8: + .incbin "baserom.dol", 0x3F4598, 0x4 +.global lbl_805A6BFC +lbl_805A6BFC: + .incbin "baserom.dol", 0x3F459C, 0x4 +.global lbl_805A6C00 +lbl_805A6C00: + .incbin "baserom.dol", 0x3F45A0, 0x4 +.global lbl_805A6C04 +lbl_805A6C04: + .incbin "baserom.dol", 0x3F45A4, 0x4 +.global lbl_805A6C08 +lbl_805A6C08: + .incbin "baserom.dol", 0x3F45A8, 0x4 +.global lbl_805A6C0C +lbl_805A6C0C: + .incbin "baserom.dol", 0x3F45AC, 0x4 +.global lbl_805A6C10 +lbl_805A6C10: + .incbin "baserom.dol", 0x3F45B0, 0x4 +.global lbl_805A6C14 +lbl_805A6C14: + .incbin "baserom.dol", 0x3F45B4, 0x4 +.global lbl_805A6C18 +lbl_805A6C18: + .incbin "baserom.dol", 0x3F45B8, 0x4 +.global lbl_805A6C1C +lbl_805A6C1C: + .incbin "baserom.dol", 0x3F45BC, 0x4 +.global lbl_805A6C20 +lbl_805A6C20: + .incbin "baserom.dol", 0x3F45C0, 0x4 +.global lbl_805A6C24 +lbl_805A6C24: + .incbin "baserom.dol", 0x3F45C4, 0x4 +.global lbl_805A6C28 +lbl_805A6C28: + .incbin "baserom.dol", 0x3F45C8, 0x4 +.global lbl_805A6C2C +lbl_805A6C2C: + .incbin "baserom.dol", 0x3F45CC, 0x4 +.global lbl_805A6C30 +lbl_805A6C30: + .incbin "baserom.dol", 0x3F45D0, 0x4 +.global lbl_805A6C34 +lbl_805A6C34: + .incbin "baserom.dol", 0x3F45D4, 0x4 +.global lbl_805A6C38 +lbl_805A6C38: + .incbin "baserom.dol", 0x3F45D8, 0x4 +.global lbl_805A6C3C +lbl_805A6C3C: + .incbin "baserom.dol", 0x3F45DC, 0x4 +.global lbl_805A6C40 +lbl_805A6C40: + .incbin "baserom.dol", 0x3F45E0, 0x4 +.global lbl_805A6C44 +lbl_805A6C44: + .incbin "baserom.dol", 0x3F45E4, 0x4 +.global lbl_805A6C48 +lbl_805A6C48: + .incbin "baserom.dol", 0x3F45E8, 0x4 +.global lbl_805A6C4C +lbl_805A6C4C: + .incbin "baserom.dol", 0x3F45EC, 0x4 +.global lbl_805A6C50 +lbl_805A6C50: + .incbin "baserom.dol", 0x3F45F0, 0x4 +.global lbl_805A6C54 +lbl_805A6C54: + .incbin "baserom.dol", 0x3F45F4, 0x4 +.global lbl_805A6C58 +lbl_805A6C58: + .incbin "baserom.dol", 0x3F45F8, 0x4 +.global lbl_805A6C5C +lbl_805A6C5C: + .incbin "baserom.dol", 0x3F45FC, 0x4 +.global lbl_805A6C60 +lbl_805A6C60: + .incbin "baserom.dol", 0x3F4600, 0x4 +.global lbl_805A6C64 +lbl_805A6C64: + .incbin "baserom.dol", 0x3F4604, 0x4 +.global lbl_805A6C68 +lbl_805A6C68: + .incbin "baserom.dol", 0x3F4608, 0x4 +.global lbl_805A6C6C +lbl_805A6C6C: + .incbin "baserom.dol", 0x3F460C, 0x4 +.global lbl_805A6C70 +lbl_805A6C70: + .incbin "baserom.dol", 0x3F4610, 0x4 +.global lbl_805A6C74 +lbl_805A6C74: + .incbin "baserom.dol", 0x3F4614, 0x4 +.global lbl_805A6C78 +lbl_805A6C78: + .incbin "baserom.dol", 0x3F4618, 0x4 +.global lbl_805A6C7C +lbl_805A6C7C: + .incbin "baserom.dol", 0x3F461C, 0x4 +.global lbl_805A6C80 +lbl_805A6C80: + .incbin "baserom.dol", 0x3F4620, 0x4 +.global lbl_805A6C84 +lbl_805A6C84: + .incbin "baserom.dol", 0x3F4624, 0x4 +.global lbl_805A6C88 +lbl_805A6C88: + .incbin "baserom.dol", 0x3F4628, 0x4 +.global lbl_805A6C8C +lbl_805A6C8C: + .incbin "baserom.dol", 0x3F462C, 0x4 +.global lbl_805A6C90 +lbl_805A6C90: + .incbin "baserom.dol", 0x3F4630, 0x4 +.global lbl_805A6C94 +lbl_805A6C94: + .incbin "baserom.dol", 0x3F4634, 0x4 +.global lbl_805A6C98 +lbl_805A6C98: + .incbin "baserom.dol", 0x3F4638, 0x4 +.global lbl_805A6C9C +lbl_805A6C9C: + .incbin "baserom.dol", 0x3F463C, 0x4 +.global lbl_805A6CA0 +lbl_805A6CA0: + .incbin "baserom.dol", 0x3F4640, 0x4 +.global lbl_805A6CA4 +lbl_805A6CA4: + .incbin "baserom.dol", 0x3F4644, 0x4 +.global lbl_805A6CA8 +lbl_805A6CA8: + .incbin "baserom.dol", 0x3F4648, 0x4 +.global lbl_805A6CAC +lbl_805A6CAC: + .incbin "baserom.dol", 0x3F464C, 0x4 +.global lbl_805A6CB0 +lbl_805A6CB0: + .incbin "baserom.dol", 0x3F4650, 0x4 +.global lbl_805A6CB4 +lbl_805A6CB4: + .incbin "baserom.dol", 0x3F4654, 0x4 +.global lbl_805A6CB8 +lbl_805A6CB8: + .incbin "baserom.dol", 0x3F4658, 0x4 +.global lbl_805A6CBC +lbl_805A6CBC: + .incbin "baserom.dol", 0x3F465C, 0x4 +.global lbl_805A6CC0 +lbl_805A6CC0: + .incbin "baserom.dol", 0x3F4660, 0x4 +.global lbl_805A6CC4 +lbl_805A6CC4: + .incbin "baserom.dol", 0x3F4664, 0x4 +.global lbl_805A6CC8 +lbl_805A6CC8: + .incbin "baserom.dol", 0x3F4668, 0x4 +.global lbl_805A6CCC +lbl_805A6CCC: + .incbin "baserom.dol", 0x3F466C, 0x4 +.global lbl_805A6CD0 +lbl_805A6CD0: + .incbin "baserom.dol", 0x3F4670, 0x4 +.global lbl_805A6CD4 +lbl_805A6CD4: + .incbin "baserom.dol", 0x3F4674, 0x4 +.global lbl_805A6CD8 +lbl_805A6CD8: + .incbin "baserom.dol", 0x3F4678, 0x4 +.global lbl_805A6CDC +lbl_805A6CDC: + .incbin "baserom.dol", 0x3F467C, 0x4 +.global lbl_805A6CE0 +lbl_805A6CE0: + .incbin "baserom.dol", 0x3F4680, 0x4 +.global lbl_805A6CE4 +lbl_805A6CE4: + .incbin "baserom.dol", 0x3F4684, 0x4 +.global lbl_805A6CE8 +lbl_805A6CE8: + .incbin "baserom.dol", 0x3F4688, 0x4 +.global lbl_805A6CEC +lbl_805A6CEC: + .incbin "baserom.dol", 0x3F468C, 0x4 +.global lbl_805A6CF0 +lbl_805A6CF0: + .incbin "baserom.dol", 0x3F4690, 0x4 +.global lbl_805A6CF4 +lbl_805A6CF4: + .incbin "baserom.dol", 0x3F4694, 0x4 +.global lbl_805A6CF8 +lbl_805A6CF8: + .incbin "baserom.dol", 0x3F4698, 0x4 +.global lbl_805A6CFC +lbl_805A6CFC: + .incbin "baserom.dol", 0x3F469C, 0x4 +.global lbl_805A6D00 +lbl_805A6D00: + .incbin "baserom.dol", 0x3F46A0, 0x4 +.global lbl_805A6D04 +lbl_805A6D04: + .incbin "baserom.dol", 0x3F46A4, 0x4 +.global lbl_805A6D08 +lbl_805A6D08: + .incbin "baserom.dol", 0x3F46A8, 0x4 +.global lbl_805A6D0C +lbl_805A6D0C: + .incbin "baserom.dol", 0x3F46AC, 0x14 +.global lbl_805A6D20 +lbl_805A6D20: + .incbin "baserom.dol", 0x3F46C0, 0x4 +.global lbl_805A6D24 +lbl_805A6D24: + .incbin "baserom.dol", 0x3F46C4, 0x4 +.global lbl_805A6D28 +lbl_805A6D28: + .incbin "baserom.dol", 0x3F46C8, 0x4 +.global lbl_805A6D2C +lbl_805A6D2C: + .incbin "baserom.dol", 0x3F46CC, 0x4 +.global lbl_805A6D30 +lbl_805A6D30: + .incbin "baserom.dol", 0x3F46D0, 0x4 +.global lbl_805A6D34 +lbl_805A6D34: + .incbin "baserom.dol", 0x3F46D4, 0x4 +.global lbl_805A6D38 +lbl_805A6D38: + .incbin "baserom.dol", 0x3F46D8, 0x4 +.global lbl_805A6D3C +lbl_805A6D3C: + .incbin "baserom.dol", 0x3F46DC, 0x4 +.global lbl_805A6D40 +lbl_805A6D40: + .incbin "baserom.dol", 0x3F46E0, 0x4 +.global lbl_805A6D44 +lbl_805A6D44: + .incbin "baserom.dol", 0x3F46E4, 0x4 +.global lbl_805A6D48 +lbl_805A6D48: + .incbin "baserom.dol", 0x3F46E8, 0x4 +.global lbl_805A6D4C +lbl_805A6D4C: + .incbin "baserom.dol", 0x3F46EC, 0x4 +.global lbl_805A6D50 +lbl_805A6D50: + .incbin "baserom.dol", 0x3F46F0, 0x8 +.global lbl_805A6D58 +lbl_805A6D58: + .incbin "baserom.dol", 0x3F46F8, 0x4 +.global lbl_805A6D5C +lbl_805A6D5C: + .incbin "baserom.dol", 0x3F46FC, 0x4 +.global lbl_805A6D60 +lbl_805A6D60: + .incbin "baserom.dol", 0x3F4700, 0x4 +.global lbl_805A6D64 +lbl_805A6D64: + .incbin "baserom.dol", 0x3F4704, 0x4 +.global lbl_805A6D68 +lbl_805A6D68: + .incbin "baserom.dol", 0x3F4708, 0x4 +.global lbl_805A6D6C +lbl_805A6D6C: + .incbin "baserom.dol", 0x3F470C, 0x4 +.global lbl_805A6D70 +lbl_805A6D70: + .incbin "baserom.dol", 0x3F4710, 0x4 +.global lbl_805A6D74 +lbl_805A6D74: + .incbin "baserom.dol", 0x3F4714, 0x4 +.global lbl_805A6D78 +lbl_805A6D78: + .incbin "baserom.dol", 0x3F4718, 0x4 +.global lbl_805A6D7C +lbl_805A6D7C: + .incbin "baserom.dol", 0x3F471C, 0x4 +.global lbl_805A6D80 +lbl_805A6D80: + .incbin "baserom.dol", 0x3F4720, 0x4 +.global lbl_805A6D84 +lbl_805A6D84: + .incbin "baserom.dol", 0x3F4724, 0x4 +.global lbl_805A6D88 +lbl_805A6D88: + .incbin "baserom.dol", 0x3F4728, 0x4 +.global lbl_805A6D8C +lbl_805A6D8C: + .incbin "baserom.dol", 0x3F472C, 0x4 +.global lbl_805A6D90 +lbl_805A6D90: + .incbin "baserom.dol", 0x3F4730, 0x4 +.global lbl_805A6D94 +lbl_805A6D94: + .incbin "baserom.dol", 0x3F4734, 0x4 +.global lbl_805A6D98 +lbl_805A6D98: + .incbin "baserom.dol", 0x3F4738, 0x4 +.global lbl_805A6D9C +lbl_805A6D9C: + .incbin "baserom.dol", 0x3F473C, 0x4 +.global lbl_805A6DA0 +lbl_805A6DA0: + .incbin "baserom.dol", 0x3F4740, 0x4 +.global lbl_805A6DA4 +lbl_805A6DA4: + .incbin "baserom.dol", 0x3F4744, 0x4 +.global lbl_805A6DA8 +lbl_805A6DA8: + .incbin "baserom.dol", 0x3F4748, 0x4 +.global lbl_805A6DAC +lbl_805A6DAC: + .incbin "baserom.dol", 0x3F474C, 0x4 +.global lbl_805A6DB0 +lbl_805A6DB0: + .incbin "baserom.dol", 0x3F4750, 0x8 +.global lbl_805A6DB8 +lbl_805A6DB8: + .incbin "baserom.dol", 0x3F4758, 0x4 +.global lbl_805A6DBC +lbl_805A6DBC: + .incbin "baserom.dol", 0x3F475C, 0x4 +.global lbl_805A6DC0 +lbl_805A6DC0: + .incbin "baserom.dol", 0x3F4760, 0x4 +.global lbl_805A6DC4 +lbl_805A6DC4: + .incbin "baserom.dol", 0x3F4764, 0x4 +.global lbl_805A6DC8 +lbl_805A6DC8: + .incbin "baserom.dol", 0x3F4768, 0x4 +.global lbl_805A6DCC +lbl_805A6DCC: + .incbin "baserom.dol", 0x3F476C, 0x4 +.global lbl_805A6DD0 +lbl_805A6DD0: + .incbin "baserom.dol", 0x3F4770, 0x4 +.global lbl_805A6DD4 +lbl_805A6DD4: + .incbin "baserom.dol", 0x3F4774, 0x4 +.global lbl_805A6DD8 +lbl_805A6DD8: + .incbin "baserom.dol", 0x3F4778, 0x4 +.global lbl_805A6DDC +lbl_805A6DDC: + .incbin "baserom.dol", 0x3F477C, 0x4 +.global lbl_805A6DE0 +lbl_805A6DE0: + .incbin "baserom.dol", 0x3F4780, 0x4 +.global lbl_805A6DE4 +lbl_805A6DE4: + .incbin "baserom.dol", 0x3F4784, 0x4 +.global lbl_805A6DE8 +lbl_805A6DE8: + .incbin "baserom.dol", 0x3F4788, 0x4 +.global lbl_805A6DEC +lbl_805A6DEC: + .incbin "baserom.dol", 0x3F478C, 0x4 +.global lbl_805A6DF0 +lbl_805A6DF0: + .incbin "baserom.dol", 0x3F4790, 0x8 +.global lbl_805A6DF8 +lbl_805A6DF8: + .incbin "baserom.dol", 0x3F4798, 0x8 +.global lbl_805A6E00 +lbl_805A6E00: + .incbin "baserom.dol", 0x3F47A0, 0x8 +.global lbl_805A6E08 +lbl_805A6E08: + .incbin "baserom.dol", 0x3F47A8, 0x4 +.global lbl_805A6E0C +lbl_805A6E0C: + .incbin "baserom.dol", 0x3F47AC, 0x4 +.global lbl_805A6E10 +lbl_805A6E10: + .incbin "baserom.dol", 0x3F47B0, 0x4 +.global lbl_805A6E14 +lbl_805A6E14: + .incbin "baserom.dol", 0x3F47B4, 0x4 +.global lbl_805A6E18 +lbl_805A6E18: + .incbin "baserom.dol", 0x3F47B8, 0x8 +.global lbl_805A6E20 +lbl_805A6E20: + .incbin "baserom.dol", 0x3F47C0, 0x4 +.global lbl_805A6E24 +lbl_805A6E24: + .incbin "baserom.dol", 0x3F47C4, 0x4 +.global lbl_805A6E28 +lbl_805A6E28: + .incbin "baserom.dol", 0x3F47C8, 0x4 +.global lbl_805A6E2C +lbl_805A6E2C: + .incbin "baserom.dol", 0x3F47CC, 0x4 +.global lbl_805A6E30 +lbl_805A6E30: + .incbin "baserom.dol", 0x3F47D0, 0x4 +.global lbl_805A6E34 +lbl_805A6E34: + .incbin "baserom.dol", 0x3F47D4, 0x4 +.global lbl_805A6E38 +lbl_805A6E38: + .incbin "baserom.dol", 0x3F47D8, 0x4 +.global lbl_805A6E3C +lbl_805A6E3C: + .incbin "baserom.dol", 0x3F47DC, 0x4 +.global lbl_805A6E40 +lbl_805A6E40: + .incbin "baserom.dol", 0x3F47E0, 0x4 +.global lbl_805A6E44 +lbl_805A6E44: + .incbin "baserom.dol", 0x3F47E4, 0x4 +.global lbl_805A6E48 +lbl_805A6E48: + .incbin "baserom.dol", 0x3F47E8, 0x4 +.global lbl_805A6E4C +lbl_805A6E4C: + .incbin "baserom.dol", 0x3F47EC, 0x4 +.global lbl_805A6E50 +lbl_805A6E50: + .incbin "baserom.dol", 0x3F47F0, 0x4 +.global lbl_805A6E54 +lbl_805A6E54: + .incbin "baserom.dol", 0x3F47F4, 0x4 +.global lbl_805A6E58 +lbl_805A6E58: + .incbin "baserom.dol", 0x3F47F8, 0x4 +.global lbl_805A6E5C +lbl_805A6E5C: + .incbin "baserom.dol", 0x3F47FC, 0x1 +.global lbl_805A6E5D +lbl_805A6E5D: + .incbin "baserom.dol", 0x3F47FD, 0x1 +.global lbl_805A6E5E +lbl_805A6E5E: + .incbin "baserom.dol", 0x3F47FE, 0x1 +.global lbl_805A6E5F +lbl_805A6E5F: + .incbin "baserom.dol", 0x3F47FF, 0x1 +.global lbl_805A6E60 +lbl_805A6E60: + .incbin "baserom.dol", 0x3F4800, 0x4 +.global lbl_805A6E64 +lbl_805A6E64: + .incbin "baserom.dol", 0x3F4804, 0x4 +.global lbl_805A6E68 +lbl_805A6E68: + .incbin "baserom.dol", 0x3F4808, 0x4 +.global lbl_805A6E6C +lbl_805A6E6C: + .incbin "baserom.dol", 0x3F480C, 0x4 +.global lbl_805A6E70 +lbl_805A6E70: + .incbin "baserom.dol", 0x3F4810, 0x4 +.global lbl_805A6E74 +lbl_805A6E74: + .incbin "baserom.dol", 0x3F4814, 0x4 +.global lbl_805A6E78 +lbl_805A6E78: + .incbin "baserom.dol", 0x3F4818, 0x8 +.global lbl_805A6E80 +lbl_805A6E80: + .incbin "baserom.dol", 0x3F4820, 0x4 +.global lbl_805A6E84 +lbl_805A6E84: + .incbin "baserom.dol", 0x3F4824, 0x4 +.global lbl_805A6E88 +lbl_805A6E88: + .incbin "baserom.dol", 0x3F4828, 0x4 +.global lbl_805A6E8C +lbl_805A6E8C: + .incbin "baserom.dol", 0x3F482C, 0x4 +.global lbl_805A6E90 +lbl_805A6E90: + .incbin "baserom.dol", 0x3F4830, 0x4 +.global lbl_805A6E94 +lbl_805A6E94: + .incbin "baserom.dol", 0x3F4834, 0x4 +.global lbl_805A6E98 +lbl_805A6E98: + .incbin "baserom.dol", 0x3F4838, 0x4 +.global lbl_805A6E9C +lbl_805A6E9C: + .incbin "baserom.dol", 0x3F483C, 0x4 +.global lbl_805A6EA0 +lbl_805A6EA0: + .incbin "baserom.dol", 0x3F4840, 0x4 +.global lbl_805A6EA4 +lbl_805A6EA4: + .incbin "baserom.dol", 0x3F4844, 0x4 +.global lbl_805A6EA8 +lbl_805A6EA8: + .incbin "baserom.dol", 0x3F4848, 0x8 +.global lbl_805A6EB0 +lbl_805A6EB0: + .incbin "baserom.dol", 0x3F4850, 0x4 +.global lbl_805A6EB4 +lbl_805A6EB4: + .incbin "baserom.dol", 0x3F4854, 0x4 +.global lbl_805A6EB8 +lbl_805A6EB8: + .incbin "baserom.dol", 0x3F4858, 0x4 +.global lbl_805A6EBC +lbl_805A6EBC: + .incbin "baserom.dol", 0x3F485C, 0x4 +.global lbl_805A6EC0 +lbl_805A6EC0: + .incbin "baserom.dol", 0x3F4860, 0x4 +.global lbl_805A6EC4 +lbl_805A6EC4: + .incbin "baserom.dol", 0x3F4864, 0x4 +.global lbl_805A6EC8 +lbl_805A6EC8: + .incbin "baserom.dol", 0x3F4868, 0x4 +.global lbl_805A6ECC +lbl_805A6ECC: + .incbin "baserom.dol", 0x3F486C, 0x4 +.global lbl_805A6ED0 +lbl_805A6ED0: + .incbin "baserom.dol", 0x3F4870, 0x4 +.global lbl_805A6ED4 +lbl_805A6ED4: + .incbin "baserom.dol", 0x3F4874, 0x4 +.global lbl_805A6ED8 +lbl_805A6ED8: + .incbin "baserom.dol", 0x3F4878, 0x4 +.global lbl_805A6EDC +lbl_805A6EDC: + .incbin "baserom.dol", 0x3F487C, 0x4 +.global lbl_805A6EE0 +lbl_805A6EE0: + .incbin "baserom.dol", 0x3F4880, 0x4 +.global lbl_805A6EE4 +lbl_805A6EE4: + .incbin "baserom.dol", 0x3F4884, 0x4 +.global lbl_805A6EE8 +lbl_805A6EE8: + .incbin "baserom.dol", 0x3F4888, 0x4 +.global lbl_805A6EEC +lbl_805A6EEC: + .incbin "baserom.dol", 0x3F488C, 0x4 +.global lbl_805A6EF0 +lbl_805A6EF0: + .incbin "baserom.dol", 0x3F4890, 0x4 +.global lbl_805A6EF4 +lbl_805A6EF4: + .incbin "baserom.dol", 0x3F4894, 0x4 +.global lbl_805A6EF8 +lbl_805A6EF8: + .incbin "baserom.dol", 0x3F4898, 0x4 +.global lbl_805A6EFC +lbl_805A6EFC: + .incbin "baserom.dol", 0x3F489C, 0x4 +.global lbl_805A6F00 +lbl_805A6F00: + .incbin "baserom.dol", 0x3F48A0, 0x4 +.global lbl_805A6F04 +lbl_805A6F04: + .incbin "baserom.dol", 0x3F48A4, 0x4 +.global lbl_805A6F08 +lbl_805A6F08: + .incbin "baserom.dol", 0x3F48A8, 0x4 +.global lbl_805A6F0C +lbl_805A6F0C: + .incbin "baserom.dol", 0x3F48AC, 0x4 +.global lbl_805A6F10 +lbl_805A6F10: + .incbin "baserom.dol", 0x3F48B0, 0x4 +.global lbl_805A6F14 +lbl_805A6F14: + .incbin "baserom.dol", 0x3F48B4, 0x4 +.global lbl_805A6F18 +lbl_805A6F18: + .incbin "baserom.dol", 0x3F48B8, 0x4 +.global lbl_805A6F1C +lbl_805A6F1C: + .incbin "baserom.dol", 0x3F48BC, 0x4 +.global lbl_805A6F20 +lbl_805A6F20: + .incbin "baserom.dol", 0x3F48C0, 0x4 +.global lbl_805A6F24 +lbl_805A6F24: + .incbin "baserom.dol", 0x3F48C4, 0x4 +.global lbl_805A6F28 +lbl_805A6F28: + .incbin "baserom.dol", 0x3F48C8, 0x4 +.global lbl_805A6F2C +lbl_805A6F2C: + .incbin "baserom.dol", 0x3F48CC, 0x4 +.global lbl_805A6F30 +lbl_805A6F30: + .incbin "baserom.dol", 0x3F48D0, 0x4 +.global lbl_805A6F34 +lbl_805A6F34: + .incbin "baserom.dol", 0x3F48D4, 0x4 +.global lbl_805A6F38 +lbl_805A6F38: + .incbin "baserom.dol", 0x3F48D8, 0x4 +.global lbl_805A6F3C +lbl_805A6F3C: + .incbin "baserom.dol", 0x3F48DC, 0x4 +.global lbl_805A6F40 +lbl_805A6F40: + .incbin "baserom.dol", 0x3F48E0, 0x4 +.global lbl_805A6F44 +lbl_805A6F44: + .incbin "baserom.dol", 0x3F48E4, 0x4 +.global lbl_805A6F48 +lbl_805A6F48: + .incbin "baserom.dol", 0x3F48E8, 0x4 +.global lbl_805A6F4C +lbl_805A6F4C: + .incbin "baserom.dol", 0x3F48EC, 0x4 +.global lbl_805A6F50 +lbl_805A6F50: + .incbin "baserom.dol", 0x3F48F0, 0x8 +.global lbl_805A6F58 +lbl_805A6F58: + .incbin "baserom.dol", 0x3F48F8, 0x8 +.global lbl_805A6F60 +lbl_805A6F60: + .incbin "baserom.dol", 0x3F4900, 0x4 +.global lbl_805A6F64 +lbl_805A6F64: + .incbin "baserom.dol", 0x3F4904, 0x4 +.global lbl_805A6F68 +lbl_805A6F68: + .incbin "baserom.dol", 0x3F4908, 0x4 +.global lbl_805A6F6C +lbl_805A6F6C: + .incbin "baserom.dol", 0x3F490C, 0x4 +.global lbl_805A6F70 +lbl_805A6F70: + .incbin "baserom.dol", 0x3F4910, 0x4 +.global lbl_805A6F74 +lbl_805A6F74: + .incbin "baserom.dol", 0x3F4914, 0x4 +.global lbl_805A6F78 +lbl_805A6F78: + .incbin "baserom.dol", 0x3F4918, 0x4 +.global lbl_805A6F7C +lbl_805A6F7C: + .incbin "baserom.dol", 0x3F491C, 0x4 +.global lbl_805A6F80 +lbl_805A6F80: + .incbin "baserom.dol", 0x3F4920, 0x4 +.global lbl_805A6F84 +lbl_805A6F84: + .incbin "baserom.dol", 0x3F4924, 0x4 +.global lbl_805A6F88 +lbl_805A6F88: + .incbin "baserom.dol", 0x3F4928, 0x4 +.global lbl_805A6F8C +lbl_805A6F8C: + .incbin "baserom.dol", 0x3F492C, 0x4 +.global lbl_805A6F90 +lbl_805A6F90: + .incbin "baserom.dol", 0x3F4930, 0x4 +.global lbl_805A6F94 +lbl_805A6F94: + .incbin "baserom.dol", 0x3F4934, 0x4 +.global lbl_805A6F98 +lbl_805A6F98: + .incbin "baserom.dol", 0x3F4938, 0x8 +.global lbl_805A6FA0 +lbl_805A6FA0: + .incbin "baserom.dol", 0x3F4940, 0x4 +.global lbl_805A6FA4 +lbl_805A6FA4: + .incbin "baserom.dol", 0x3F4944, 0x4 +.global lbl_805A6FA8 +lbl_805A6FA8: + .incbin "baserom.dol", 0x3F4948, 0x4 +.global lbl_805A6FAC +lbl_805A6FAC: + .incbin "baserom.dol", 0x3F494C, 0x4 +.global lbl_805A6FB0 +lbl_805A6FB0: + .incbin "baserom.dol", 0x3F4950, 0x4 +.global lbl_805A6FB4 +lbl_805A6FB4: + .incbin "baserom.dol", 0x3F4954, 0x4 +.global lbl_805A6FB8 +lbl_805A6FB8: + .incbin "baserom.dol", 0x3F4958, 0x4 +.global lbl_805A6FBC +lbl_805A6FBC: + .incbin "baserom.dol", 0x3F495C, 0x4 +.global lbl_805A6FC0 +lbl_805A6FC0: + .incbin "baserom.dol", 0x3F4960, 0x4 +.global lbl_805A6FC4 +lbl_805A6FC4: + .incbin "baserom.dol", 0x3F4964, 0x4 +.global lbl_805A6FC8 +lbl_805A6FC8: + .incbin "baserom.dol", 0x3F4968, 0x4 +.global lbl_805A6FCC +lbl_805A6FCC: + .incbin "baserom.dol", 0x3F496C, 0x4 +.global lbl_805A6FD0 +lbl_805A6FD0: + .incbin "baserom.dol", 0x3F4970, 0x4 +.global lbl_805A6FD4 +lbl_805A6FD4: + .incbin "baserom.dol", 0x3F4974, 0x4 +.global lbl_805A6FD8 +lbl_805A6FD8: + .incbin "baserom.dol", 0x3F4978, 0x4 +.global lbl_805A6FDC +lbl_805A6FDC: + .incbin "baserom.dol", 0x3F497C, 0x4 +.global lbl_805A6FE0 +lbl_805A6FE0: + .incbin "baserom.dol", 0x3F4980, 0x4 +.global lbl_805A6FE4 +lbl_805A6FE4: + .incbin "baserom.dol", 0x3F4984, 0x4 +.global lbl_805A6FE8 +lbl_805A6FE8: + .incbin "baserom.dol", 0x3F4988, 0x4 +.global lbl_805A6FEC +lbl_805A6FEC: + .incbin "baserom.dol", 0x3F498C, 0x4 +.global lbl_805A6FF0 +lbl_805A6FF0: + .incbin "baserom.dol", 0x3F4990, 0x4 +.global lbl_805A6FF4 +lbl_805A6FF4: + .incbin "baserom.dol", 0x3F4994, 0x4 +.global lbl_805A6FF8 +lbl_805A6FF8: + .incbin "baserom.dol", 0x3F4998, 0x4 +.global lbl_805A6FFC +lbl_805A6FFC: + .incbin "baserom.dol", 0x3F499C, 0x4 +.global lbl_805A7000 +lbl_805A7000: + .incbin "baserom.dol", 0x3F49A0, 0x4 +.global lbl_805A7004 +lbl_805A7004: + .incbin "baserom.dol", 0x3F49A4, 0x4 +.global lbl_805A7008 +lbl_805A7008: + .incbin "baserom.dol", 0x3F49A8, 0x8 +.global lbl_805A7010 +lbl_805A7010: + .incbin "baserom.dol", 0x3F49B0, 0x8 +.global lbl_805A7018 +lbl_805A7018: + .incbin "baserom.dol", 0x3F49B8, 0x4 +.global lbl_805A701C +lbl_805A701C: + .incbin "baserom.dol", 0x3F49BC, 0x4 +.global lbl_805A7020 +lbl_805A7020: + .incbin "baserom.dol", 0x3F49C0, 0x4 +.global lbl_805A7024 +lbl_805A7024: + .incbin "baserom.dol", 0x3F49C4, 0x4 +.global lbl_805A7028 +lbl_805A7028: + .incbin "baserom.dol", 0x3F49C8, 0x4 +.global lbl_805A702C +lbl_805A702C: + .incbin "baserom.dol", 0x3F49CC, 0x4 +.global lbl_805A7030 +lbl_805A7030: + .incbin "baserom.dol", 0x3F49D0, 0x4 +.global lbl_805A7034 +lbl_805A7034: + .incbin "baserom.dol", 0x3F49D4, 0x4 +.global lbl_805A7038 +lbl_805A7038: + .incbin "baserom.dol", 0x3F49D8, 0x4 +.global lbl_805A703C +lbl_805A703C: + .incbin "baserom.dol", 0x3F49DC, 0x4 +.global lbl_805A7040 +lbl_805A7040: + .incbin "baserom.dol", 0x3F49E0, 0x4 +.global lbl_805A7044 +lbl_805A7044: + .incbin "baserom.dol", 0x3F49E4, 0x4 +.global lbl_805A7048 +lbl_805A7048: + .incbin "baserom.dol", 0x3F49E8, 0x4 +.global lbl_805A704C +lbl_805A704C: + .incbin "baserom.dol", 0x3F49EC, 0x4 +.global lbl_805A7050 +lbl_805A7050: + .incbin "baserom.dol", 0x3F49F0, 0x4 +.global lbl_805A7054 +lbl_805A7054: + .incbin "baserom.dol", 0x3F49F4, 0x4 +.global lbl_805A7058 +lbl_805A7058: + .incbin "baserom.dol", 0x3F49F8, 0x4 +.global lbl_805A705C +lbl_805A705C: + .incbin "baserom.dol", 0x3F49FC, 0x4 +.global lbl_805A7060 +lbl_805A7060: + .incbin "baserom.dol", 0x3F4A00, 0x4 +.global lbl_805A7064 +lbl_805A7064: + .incbin "baserom.dol", 0x3F4A04, 0x4 +.global lbl_805A7068 +lbl_805A7068: + .incbin "baserom.dol", 0x3F4A08, 0x4 +.global lbl_805A706C +lbl_805A706C: + .incbin "baserom.dol", 0x3F4A0C, 0x4 +.global lbl_805A7070 +lbl_805A7070: + .incbin "baserom.dol", 0x3F4A10, 0x4 +.global lbl_805A7074 +lbl_805A7074: + .incbin "baserom.dol", 0x3F4A14, 0x4 +.global lbl_805A7078 +lbl_805A7078: + .incbin "baserom.dol", 0x3F4A18, 0x4 +.global lbl_805A707C +lbl_805A707C: + .incbin "baserom.dol", 0x3F4A1C, 0x4 +.global lbl_805A7080 +lbl_805A7080: + .incbin "baserom.dol", 0x3F4A20, 0x4 +.global lbl_805A7084 +lbl_805A7084: + .incbin "baserom.dol", 0x3F4A24, 0x4 +.global lbl_805A7088 +lbl_805A7088: + .incbin "baserom.dol", 0x3F4A28, 0x4 +.global lbl_805A708C +lbl_805A708C: + .incbin "baserom.dol", 0x3F4A2C, 0x4 +.global lbl_805A7090 +lbl_805A7090: + .incbin "baserom.dol", 0x3F4A30, 0x4 +.global lbl_805A7094 +lbl_805A7094: + .incbin "baserom.dol", 0x3F4A34, 0x4 +.global lbl_805A7098 +lbl_805A7098: + .incbin "baserom.dol", 0x3F4A38, 0x4 +.global lbl_805A709C +lbl_805A709C: + .incbin "baserom.dol", 0x3F4A3C, 0x4 +.global lbl_805A70A0 +lbl_805A70A0: + .incbin "baserom.dol", 0x3F4A40, 0x4 +.global lbl_805A70A4 +lbl_805A70A4: + .incbin "baserom.dol", 0x3F4A44, 0x4 +.global lbl_805A70A8 +lbl_805A70A8: + .incbin "baserom.dol", 0x3F4A48, 0x4 +.global lbl_805A70AC +lbl_805A70AC: + .incbin "baserom.dol", 0x3F4A4C, 0x4 +.global lbl_805A70B0 +lbl_805A70B0: + .incbin "baserom.dol", 0x3F4A50, 0x4 +.global lbl_805A70B4 +lbl_805A70B4: + .incbin "baserom.dol", 0x3F4A54, 0x4 +.global lbl_805A70B8 +lbl_805A70B8: + .incbin "baserom.dol", 0x3F4A58, 0x4 +.global lbl_805A70BC +lbl_805A70BC: + .incbin "baserom.dol", 0x3F4A5C, 0x4 +.global lbl_805A70C0 +lbl_805A70C0: + .incbin "baserom.dol", 0x3F4A60, 0x4 +.global lbl_805A70C4 +lbl_805A70C4: + .incbin "baserom.dol", 0x3F4A64, 0x4 +.global lbl_805A70C8 +lbl_805A70C8: + .incbin "baserom.dol", 0x3F4A68, 0x4 +.global lbl_805A70CC +lbl_805A70CC: + .incbin "baserom.dol", 0x3F4A6C, 0x4 +.global lbl_805A70D0 +lbl_805A70D0: + .incbin "baserom.dol", 0x3F4A70, 0x4 +.global lbl_805A70D4 +lbl_805A70D4: + .incbin "baserom.dol", 0x3F4A74, 0x4 +.global lbl_805A70D8 +lbl_805A70D8: + .incbin "baserom.dol", 0x3F4A78, 0x4 +.global lbl_805A70DC +lbl_805A70DC: + .incbin "baserom.dol", 0x3F4A7C, 0x4 +.global lbl_805A70E0 +lbl_805A70E0: + .incbin "baserom.dol", 0x3F4A80, 0x4 +.global lbl_805A70E4 +lbl_805A70E4: + .incbin "baserom.dol", 0x3F4A84, 0x4 +.global lbl_805A70E8 +lbl_805A70E8: + .incbin "baserom.dol", 0x3F4A88, 0x4 +.global lbl_805A70EC +lbl_805A70EC: + .incbin "baserom.dol", 0x3F4A8C, 0x4 +.global lbl_805A70F0 +lbl_805A70F0: + .incbin "baserom.dol", 0x3F4A90, 0x4 +.global lbl_805A70F4 +lbl_805A70F4: + .incbin "baserom.dol", 0x3F4A94, 0x4 +.global lbl_805A70F8 +lbl_805A70F8: + .incbin "baserom.dol", 0x3F4A98, 0x4 +.global lbl_805A70FC +lbl_805A70FC: + .incbin "baserom.dol", 0x3F4A9C, 0x4 +.global lbl_805A7100 +lbl_805A7100: + .incbin "baserom.dol", 0x3F4AA0, 0x4 +.global lbl_805A7104 +lbl_805A7104: + .incbin "baserom.dol", 0x3F4AA4, 0x4 +.global lbl_805A7108 +lbl_805A7108: + .incbin "baserom.dol", 0x3F4AA8, 0x4 +.global lbl_805A710C +lbl_805A710C: + .incbin "baserom.dol", 0x3F4AAC, 0x4 +.global lbl_805A7110 +lbl_805A7110: + .incbin "baserom.dol", 0x3F4AB0, 0x4 +.global lbl_805A7114 +lbl_805A7114: + .incbin "baserom.dol", 0x3F4AB4, 0x4 +.global lbl_805A7118 +lbl_805A7118: + .incbin "baserom.dol", 0x3F4AB8, 0x8 +.global lbl_805A7120 +lbl_805A7120: + .incbin "baserom.dol", 0x3F4AC0, 0x4 +.global lbl_805A7124 +lbl_805A7124: + .incbin "baserom.dol", 0x3F4AC4, 0x4 +.global lbl_805A7128 +lbl_805A7128: + .incbin "baserom.dol", 0x3F4AC8, 0x4 +.global lbl_805A712C +lbl_805A712C: + .incbin "baserom.dol", 0x3F4ACC, 0x4 +.global lbl_805A7130 +lbl_805A7130: + .incbin "baserom.dol", 0x3F4AD0, 0x4 +.global lbl_805A7134 +lbl_805A7134: + .incbin "baserom.dol", 0x3F4AD4, 0x4 +.global lbl_805A7138 +lbl_805A7138: + .incbin "baserom.dol", 0x3F4AD8, 0x4 +.global lbl_805A713C +lbl_805A713C: + .incbin "baserom.dol", 0x3F4ADC, 0x4 +.global lbl_805A7140 +lbl_805A7140: + .incbin "baserom.dol", 0x3F4AE0, 0x4 +.global lbl_805A7144 +lbl_805A7144: + .incbin "baserom.dol", 0x3F4AE4, 0x4 +.global lbl_805A7148 +lbl_805A7148: + .incbin "baserom.dol", 0x3F4AE8, 0x4 +.global lbl_805A714C +lbl_805A714C: + .incbin "baserom.dol", 0x3F4AEC, 0x4 +.global lbl_805A7150 +lbl_805A7150: + .incbin "baserom.dol", 0x3F4AF0, 0x4 +.global lbl_805A7154 +lbl_805A7154: + .incbin "baserom.dol", 0x3F4AF4, 0x4 +.global lbl_805A7158 +lbl_805A7158: + .incbin "baserom.dol", 0x3F4AF8, 0x8 +.global lbl_805A7160 +lbl_805A7160: + .incbin "baserom.dol", 0x3F4B00, 0x4 +.global lbl_805A7164 +lbl_805A7164: + .incbin "baserom.dol", 0x3F4B04, 0x4 +.global lbl_805A7168 +lbl_805A7168: + .incbin "baserom.dol", 0x3F4B08, 0x4 +.global lbl_805A716C +lbl_805A716C: + .incbin "baserom.dol", 0x3F4B0C, 0x4 +.global lbl_805A7170 +lbl_805A7170: + .incbin "baserom.dol", 0x3F4B10, 0x4 +.global lbl_805A7174 +lbl_805A7174: + .incbin "baserom.dol", 0x3F4B14, 0x4 +.global lbl_805A7178 +lbl_805A7178: + .incbin "baserom.dol", 0x3F4B18, 0x4 +.global lbl_805A717C +lbl_805A717C: + .incbin "baserom.dol", 0x3F4B1C, 0x4 +.global lbl_805A7180 +lbl_805A7180: + .incbin "baserom.dol", 0x3F4B20, 0x4 +.global lbl_805A7184 +lbl_805A7184: + .incbin "baserom.dol", 0x3F4B24, 0x4 +.global lbl_805A7188 +lbl_805A7188: + .incbin "baserom.dol", 0x3F4B28, 0x4 +.global lbl_805A718C +lbl_805A718C: + .incbin "baserom.dol", 0x3F4B2C, 0x4 +.global lbl_805A7190 +lbl_805A7190: + .incbin "baserom.dol", 0x3F4B30, 0x4 +.global lbl_805A7194 +lbl_805A7194: + .incbin "baserom.dol", 0x3F4B34, 0x4 +.global lbl_805A7198 +lbl_805A7198: + .incbin "baserom.dol", 0x3F4B38, 0x4 +.global lbl_805A719C +lbl_805A719C: + .incbin "baserom.dol", 0x3F4B3C, 0x4 +.global lbl_805A71A0 +lbl_805A71A0: + .incbin "baserom.dol", 0x3F4B40, 0x4 +.global lbl_805A71A4 +lbl_805A71A4: + .incbin "baserom.dol", 0x3F4B44, 0x4 +.global lbl_805A71A8 +lbl_805A71A8: + .incbin "baserom.dol", 0x3F4B48, 0x4 +.global lbl_805A71AC +lbl_805A71AC: + .incbin "baserom.dol", 0x3F4B4C, 0x4 +.global lbl_805A71B0 +lbl_805A71B0: + .incbin "baserom.dol", 0x3F4B50, 0x4 +.global lbl_805A71B4 +lbl_805A71B4: + .incbin "baserom.dol", 0x3F4B54, 0x4 +.global lbl_805A71B8 +lbl_805A71B8: + .incbin "baserom.dol", 0x3F4B58, 0x4 +.global lbl_805A71BC +lbl_805A71BC: + .incbin "baserom.dol", 0x3F4B5C, 0x4 +.global lbl_805A71C0 +lbl_805A71C0: + .incbin "baserom.dol", 0x3F4B60, 0x4 +.global lbl_805A71C4 +lbl_805A71C4: + .incbin "baserom.dol", 0x3F4B64, 0x4 +.global lbl_805A71C8 +lbl_805A71C8: + .incbin "baserom.dol", 0x3F4B68, 0x8 +.global lbl_805A71D0 +lbl_805A71D0: + .incbin "baserom.dol", 0x3F4B70, 0x4 +.global lbl_805A71D4 +lbl_805A71D4: + .incbin "baserom.dol", 0x3F4B74, 0x4 +.global lbl_805A71D8 +lbl_805A71D8: + .incbin "baserom.dol", 0x3F4B78, 0x8 +.global lbl_805A71E0 +lbl_805A71E0: + .incbin "baserom.dol", 0x3F4B80, 0x4 +.global lbl_805A71E4 +lbl_805A71E4: + .incbin "baserom.dol", 0x3F4B84, 0x4 +.global lbl_805A71E8 +lbl_805A71E8: + .incbin "baserom.dol", 0x3F4B88, 0x8 +.global lbl_805A71F0 +lbl_805A71F0: + .incbin "baserom.dol", 0x3F4B90, 0x4 +.global lbl_805A71F4 +lbl_805A71F4: + .incbin "baserom.dol", 0x3F4B94, 0x4 +.global lbl_805A71F8 +lbl_805A71F8: + .incbin "baserom.dol", 0x3F4B98, 0x4 +.global lbl_805A71FC +lbl_805A71FC: + .incbin "baserom.dol", 0x3F4B9C, 0x4 +.global lbl_805A7200 +lbl_805A7200: + .incbin "baserom.dol", 0x3F4BA0, 0x4 +.global lbl_805A7204 +lbl_805A7204: + .incbin "baserom.dol", 0x3F4BA4, 0x4 +.global lbl_805A7208 +lbl_805A7208: + .incbin "baserom.dol", 0x3F4BA8, 0x4 +.global lbl_805A720C +lbl_805A720C: + .incbin "baserom.dol", 0x3F4BAC, 0x4 +.global lbl_805A7210 +lbl_805A7210: + .incbin "baserom.dol", 0x3F4BB0, 0x8 +.global lbl_805A7218 +lbl_805A7218: + .incbin "baserom.dol", 0x3F4BB8, 0x8 +.global lbl_805A7220 +lbl_805A7220: + .incbin "baserom.dol", 0x3F4BC0, 0x1 +.global lbl_805A7221 +lbl_805A7221: + .incbin "baserom.dol", 0x3F4BC1, 0x1 +.global lbl_805A7222 +lbl_805A7222: + .incbin "baserom.dol", 0x3F4BC2, 0x1 +.global lbl_805A7223 +lbl_805A7223: + .incbin "baserom.dol", 0x3F4BC3, 0x1 +.global lbl_805A7224 +lbl_805A7224: + .incbin "baserom.dol", 0x3F4BC4, 0x1 +.global lbl_805A7225 +lbl_805A7225: + .incbin "baserom.dol", 0x3F4BC5, 0x1 +.global lbl_805A7226 +lbl_805A7226: + .incbin "baserom.dol", 0x3F4BC6, 0x1 +.global lbl_805A7227 +lbl_805A7227: + .incbin "baserom.dol", 0x3F4BC7, 0x1 +.global lbl_805A7228 +lbl_805A7228: + .incbin "baserom.dol", 0x3F4BC8, 0x1 +.global lbl_805A7229 +lbl_805A7229: + .incbin "baserom.dol", 0x3F4BC9, 0x1 +.global lbl_805A722A +lbl_805A722A: + .incbin "baserom.dol", 0x3F4BCA, 0x1 +.global lbl_805A722B +lbl_805A722B: + .incbin "baserom.dol", 0x3F4BCB, 0x5 +.global lbl_805A7230 +lbl_805A7230: + .incbin "baserom.dol", 0x3F4BD0, 0x4 +.global lbl_805A7234 +lbl_805A7234: + .incbin "baserom.dol", 0x3F4BD4, 0x4 +.global lbl_805A7238 +lbl_805A7238: + .incbin "baserom.dol", 0x3F4BD8, 0x4 +.global lbl_805A723C +lbl_805A723C: + .incbin "baserom.dol", 0x3F4BDC, 0x4 +.global lbl_805A7240 +lbl_805A7240: + .incbin "baserom.dol", 0x3F4BE0, 0x4 +.global lbl_805A7244 +lbl_805A7244: + .incbin "baserom.dol", 0x3F4BE4, 0x4 +.global lbl_805A7248 +lbl_805A7248: + .incbin "baserom.dol", 0x3F4BE8, 0x4 +.global lbl_805A724C +lbl_805A724C: + .incbin "baserom.dol", 0x3F4BEC, 0x4 +.global lbl_805A7250 +lbl_805A7250: + .incbin "baserom.dol", 0x3F4BF0, 0x4 +.global lbl_805A7254 +lbl_805A7254: + .incbin "baserom.dol", 0x3F4BF4, 0x4 +.global lbl_805A7258 +lbl_805A7258: + .incbin "baserom.dol", 0x3F4BF8, 0x4 +.global lbl_805A725C +lbl_805A725C: + .incbin "baserom.dol", 0x3F4BFC, 0x4 +.global lbl_805A7260 +lbl_805A7260: + .incbin "baserom.dol", 0x3F4C00, 0x4 +.global lbl_805A7264 +lbl_805A7264: + .incbin "baserom.dol", 0x3F4C04, 0x4 +.global lbl_805A7268 +lbl_805A7268: + .incbin "baserom.dol", 0x3F4C08, 0x4 +.global lbl_805A726C +lbl_805A726C: + .incbin "baserom.dol", 0x3F4C0C, 0x4 +.global lbl_805A7270 +lbl_805A7270: + .incbin "baserom.dol", 0x3F4C10, 0x4 +.global lbl_805A7274 +lbl_805A7274: + .incbin "baserom.dol", 0x3F4C14, 0x4 +.global lbl_805A7278 +lbl_805A7278: + .incbin "baserom.dol", 0x3F4C18, 0x4 +.global lbl_805A727C +lbl_805A727C: + .incbin "baserom.dol", 0x3F4C1C, 0x1 +.global lbl_805A727D +lbl_805A727D: + .incbin "baserom.dol", 0x3F4C1D, 0x1 +.global lbl_805A727E +lbl_805A727E: + .incbin "baserom.dol", 0x3F4C1E, 0x2 +.global lbl_805A7280 +lbl_805A7280: + .incbin "baserom.dol", 0x3F4C20, 0x4 +.global lbl_805A7284 +lbl_805A7284: + .incbin "baserom.dol", 0x3F4C24, 0x4 +.global lbl_805A7288 +lbl_805A7288: + .incbin "baserom.dol", 0x3F4C28, 0x4 +.global lbl_805A728C +lbl_805A728C: + .incbin "baserom.dol", 0x3F4C2C, 0x4 +.global lbl_805A7290 +lbl_805A7290: + .incbin "baserom.dol", 0x3F4C30, 0x4 +.global lbl_805A7294 +lbl_805A7294: + .incbin "baserom.dol", 0x3F4C34, 0x4 +.global lbl_805A7298 +lbl_805A7298: + .incbin "baserom.dol", 0x3F4C38, 0x8 +.global lbl_805A72A0 +lbl_805A72A0: + .incbin "baserom.dol", 0x3F4C40, 0x4 +.global lbl_805A72A4 +lbl_805A72A4: + .incbin "baserom.dol", 0x3F4C44, 0x4 +.global lbl_805A72A8 +lbl_805A72A8: + .incbin "baserom.dol", 0x3F4C48, 0x4 +.global lbl_805A72AC +lbl_805A72AC: + .incbin "baserom.dol", 0x3F4C4C, 0x4 +.global lbl_805A72B0 +lbl_805A72B0: + .incbin "baserom.dol", 0x3F4C50, 0x4 +.global lbl_805A72B4 +lbl_805A72B4: + .incbin "baserom.dol", 0x3F4C54, 0x4 +.global lbl_805A72B8 +lbl_805A72B8: + .incbin "baserom.dol", 0x3F4C58, 0x4 +.global lbl_805A72BC +lbl_805A72BC: + .incbin "baserom.dol", 0x3F4C5C, 0x4 +.global lbl_805A72C0 +lbl_805A72C0: + .incbin "baserom.dol", 0x3F4C60, 0x8 +.global lbl_805A72C8 +lbl_805A72C8: + .incbin "baserom.dol", 0x3F4C68, 0x4 +.global lbl_805A72CC +lbl_805A72CC: + .incbin "baserom.dol", 0x3F4C6C, 0x4 +.global lbl_805A72D0 +lbl_805A72D0: + .incbin "baserom.dol", 0x3F4C70, 0x4 +.global lbl_805A72D4 +lbl_805A72D4: + .incbin "baserom.dol", 0x3F4C74, 0x4 +.global lbl_805A72D8 +lbl_805A72D8: + .incbin "baserom.dol", 0x3F4C78, 0x4 +.global lbl_805A72DC +lbl_805A72DC: + .incbin "baserom.dol", 0x3F4C7C, 0x4 +.global lbl_805A72E0 +lbl_805A72E0: + .incbin "baserom.dol", 0x3F4C80, 0x4 +.global lbl_805A72E4 +lbl_805A72E4: + .incbin "baserom.dol", 0x3F4C84, 0x4 +.global lbl_805A72E8 +lbl_805A72E8: + .incbin "baserom.dol", 0x3F4C88, 0x4 +.global lbl_805A72EC +lbl_805A72EC: + .incbin "baserom.dol", 0x3F4C8C, 0x4 +.global lbl_805A72F0 +lbl_805A72F0: + .incbin "baserom.dol", 0x3F4C90, 0x4 +.global lbl_805A72F4 +lbl_805A72F4: + .incbin "baserom.dol", 0x3F4C94, 0x4 +.global lbl_805A72F8 +lbl_805A72F8: + .incbin "baserom.dol", 0x3F4C98, 0x4 +.global lbl_805A72FC +lbl_805A72FC: + .incbin "baserom.dol", 0x3F4C9C, 0x4 +.global lbl_805A7300 +lbl_805A7300: + .incbin "baserom.dol", 0x3F4CA0, 0x4 +.global lbl_805A7304 +lbl_805A7304: + .incbin "baserom.dol", 0x3F4CA4, 0x4 +.global lbl_805A7308 +lbl_805A7308: + .incbin "baserom.dol", 0x3F4CA8, 0x4 +.global lbl_805A730C +lbl_805A730C: + .incbin "baserom.dol", 0x3F4CAC, 0x4 +.global lbl_805A7310 +lbl_805A7310: + .incbin "baserom.dol", 0x3F4CB0, 0x4 +.global lbl_805A7314 +lbl_805A7314: + .incbin "baserom.dol", 0x3F4CB4, 0x4 +.global lbl_805A7318 +lbl_805A7318: + .incbin "baserom.dol", 0x3F4CB8, 0x4 +.global lbl_805A731C +lbl_805A731C: + .incbin "baserom.dol", 0x3F4CBC, 0x4 +.global lbl_805A7320 +lbl_805A7320: + .incbin "baserom.dol", 0x3F4CC0, 0x8 +.global lbl_805A7328 +lbl_805A7328: + .incbin "baserom.dol", 0x3F4CC8, 0x1 +.global lbl_805A7329 +lbl_805A7329: + .incbin "baserom.dol", 0x3F4CC9, 0x7 +.global lbl_805A7330 +lbl_805A7330: + .incbin "baserom.dol", 0x3F4CD0, 0x4 +.global lbl_805A7334 +lbl_805A7334: + .incbin "baserom.dol", 0x3F4CD4, 0x4 +.global lbl_805A7338 +lbl_805A7338: + .incbin "baserom.dol", 0x3F4CD8, 0x4 +.global lbl_805A733C +lbl_805A733C: + .incbin "baserom.dol", 0x3F4CDC, 0x4 +.global lbl_805A7340 +lbl_805A7340: + .incbin "baserom.dol", 0x3F4CE0, 0x4 +.global lbl_805A7344 +lbl_805A7344: + .incbin "baserom.dol", 0x3F4CE4, 0x4 +.global lbl_805A7348 +lbl_805A7348: + .incbin "baserom.dol", 0x3F4CE8, 0x4 +.global lbl_805A734C +lbl_805A734C: + .incbin "baserom.dol", 0x3F4CEC, 0x4 +.global lbl_805A7350 +lbl_805A7350: + .incbin "baserom.dol", 0x3F4CF0, 0x4 +.global lbl_805A7354 +lbl_805A7354: + .incbin "baserom.dol", 0x3F4CF4, 0x4 +.global lbl_805A7358 +lbl_805A7358: + .incbin "baserom.dol", 0x3F4CF8, 0x8 +.global lbl_805A7360 +lbl_805A7360: + .incbin "baserom.dol", 0x3F4D00, 0x8 +.global lbl_805A7368 +lbl_805A7368: + .incbin "baserom.dol", 0x3F4D08, 0x4 +.global lbl_805A736C +lbl_805A736C: + .incbin "baserom.dol", 0x3F4D0C, 0x4 +.global lbl_805A7370 +lbl_805A7370: + .incbin "baserom.dol", 0x3F4D10, 0x4 +.global lbl_805A7374 +lbl_805A7374: + .incbin "baserom.dol", 0x3F4D14, 0x4 +.global lbl_805A7378 +lbl_805A7378: + .incbin "baserom.dol", 0x3F4D18, 0x4 +.global lbl_805A737C +lbl_805A737C: + .incbin "baserom.dol", 0x3F4D1C, 0x4 +.global lbl_805A7380 +lbl_805A7380: + .incbin "baserom.dol", 0x3F4D20, 0x4 +.global lbl_805A7384 +lbl_805A7384: + .incbin "baserom.dol", 0x3F4D24, 0x4 +.global lbl_805A7388 +lbl_805A7388: + .incbin "baserom.dol", 0x3F4D28, 0x4 +.global lbl_805A738C +lbl_805A738C: + .incbin "baserom.dol", 0x3F4D2C, 0x4 +.global lbl_805A7390 +lbl_805A7390: + .incbin "baserom.dol", 0x3F4D30, 0x4 +.global lbl_805A7394 +lbl_805A7394: + .incbin "baserom.dol", 0x3F4D34, 0x4 +.global lbl_805A7398 +lbl_805A7398: + .incbin "baserom.dol", 0x3F4D38, 0x4 +.global lbl_805A739C +lbl_805A739C: + .incbin "baserom.dol", 0x3F4D3C, 0x4 +.global lbl_805A73A0 +lbl_805A73A0: + .incbin "baserom.dol", 0x3F4D40, 0x4 +.global lbl_805A73A4 +lbl_805A73A4: + .incbin "baserom.dol", 0x3F4D44, 0x4 +.global lbl_805A73A8 +lbl_805A73A8: + .incbin "baserom.dol", 0x3F4D48, 0x4 +.global lbl_805A73AC +lbl_805A73AC: + .incbin "baserom.dol", 0x3F4D4C, 0x4 +.global lbl_805A73B0 +lbl_805A73B0: + .incbin "baserom.dol", 0x3F4D50, 0x4 +.global lbl_805A73B4 +lbl_805A73B4: + .incbin "baserom.dol", 0x3F4D54, 0x4 +.global lbl_805A73B8 +lbl_805A73B8: + .incbin "baserom.dol", 0x3F4D58, 0x4 +.global lbl_805A73BC +lbl_805A73BC: + .incbin "baserom.dol", 0x3F4D5C, 0x4 +.global lbl_805A73C0 +lbl_805A73C0: + .incbin "baserom.dol", 0x3F4D60, 0x4 +.global lbl_805A73C4 +lbl_805A73C4: + .incbin "baserom.dol", 0x3F4D64, 0x4 +.global lbl_805A73C8 +lbl_805A73C8: + .incbin "baserom.dol", 0x3F4D68, 0x4 +.global lbl_805A73CC +lbl_805A73CC: + .incbin "baserom.dol", 0x3F4D6C, 0x4 +.global lbl_805A73D0 +lbl_805A73D0: + .incbin "baserom.dol", 0x3F4D70, 0x4 +.global lbl_805A73D4 +lbl_805A73D4: + .incbin "baserom.dol", 0x3F4D74, 0x4 +.global lbl_805A73D8 +lbl_805A73D8: + .incbin "baserom.dol", 0x3F4D78, 0x4 +.global lbl_805A73DC +lbl_805A73DC: + .incbin "baserom.dol", 0x3F4D7C, 0x4 +.global lbl_805A73E0 +lbl_805A73E0: + .incbin "baserom.dol", 0x3F4D80, 0x8 +.global lbl_805A73E8 +lbl_805A73E8: + .incbin "baserom.dol", 0x3F4D88, 0x4 +.global lbl_805A73EC +lbl_805A73EC: + .incbin "baserom.dol", 0x3F4D8C, 0x4 +.global lbl_805A73F0 +lbl_805A73F0: + .incbin "baserom.dol", 0x3F4D90, 0x4 +.global lbl_805A73F4 +lbl_805A73F4: + .incbin "baserom.dol", 0x3F4D94, 0x4 +.global lbl_805A73F8 +lbl_805A73F8: + .incbin "baserom.dol", 0x3F4D98, 0x4 +.global lbl_805A73FC +lbl_805A73FC: + .incbin "baserom.dol", 0x3F4D9C, 0x4 +.global lbl_805A7400 +lbl_805A7400: + .incbin "baserom.dol", 0x3F4DA0, 0x4 +.global lbl_805A7404 +lbl_805A7404: + .incbin "baserom.dol", 0x3F4DA4, 0x4 +.global lbl_805A7408 +lbl_805A7408: + .incbin "baserom.dol", 0x3F4DA8, 0x4 +.global lbl_805A740C +lbl_805A740C: + .incbin "baserom.dol", 0x3F4DAC, 0x4 +.global lbl_805A7410 +lbl_805A7410: + .incbin "baserom.dol", 0x3F4DB0, 0x4 +.global lbl_805A7414 +lbl_805A7414: + .incbin "baserom.dol", 0x3F4DB4, 0x4 +.global lbl_805A7418 +lbl_805A7418: + .incbin "baserom.dol", 0x3F4DB8, 0x4 +.global lbl_805A741C +lbl_805A741C: + .incbin "baserom.dol", 0x3F4DBC, 0x4 +.global lbl_805A7420 +lbl_805A7420: + .incbin "baserom.dol", 0x3F4DC0, 0x4 +.global lbl_805A7424 +lbl_805A7424: + .incbin "baserom.dol", 0x3F4DC4, 0x4 +.global lbl_805A7428 +lbl_805A7428: + .incbin "baserom.dol", 0x3F4DC8, 0x4 +.global lbl_805A742C +lbl_805A742C: + .incbin "baserom.dol", 0x3F4DCC, 0x4 +.global lbl_805A7430 +lbl_805A7430: + .incbin "baserom.dol", 0x3F4DD0, 0x4 +.global lbl_805A7434 +lbl_805A7434: + .incbin "baserom.dol", 0x3F4DD4, 0x4 +.global lbl_805A7438 +lbl_805A7438: + .incbin "baserom.dol", 0x3F4DD8, 0x4 +.global lbl_805A743C +lbl_805A743C: + .incbin "baserom.dol", 0x3F4DDC, 0x4 +.global lbl_805A7440 +lbl_805A7440: + .incbin "baserom.dol", 0x3F4DE0, 0x4 +.global lbl_805A7444 +lbl_805A7444: + .incbin "baserom.dol", 0x3F4DE4, 0x4 +.global lbl_805A7448 +lbl_805A7448: + .incbin "baserom.dol", 0x3F4DE8, 0x4 +.global lbl_805A744C +lbl_805A744C: + .incbin "baserom.dol", 0x3F4DEC, 0x4 +.global lbl_805A7450 +lbl_805A7450: + .incbin "baserom.dol", 0x3F4DF0, 0x4 +.global lbl_805A7454 +lbl_805A7454: + .incbin "baserom.dol", 0x3F4DF4, 0x4 +.global lbl_805A7458 +lbl_805A7458: + .incbin "baserom.dol", 0x3F4DF8, 0x4 +.global lbl_805A745C +lbl_805A745C: + .incbin "baserom.dol", 0x3F4DFC, 0x4 +.global lbl_805A7460 +lbl_805A7460: + .incbin "baserom.dol", 0x3F4E00, 0x4 +.global lbl_805A7464 +lbl_805A7464: + .incbin "baserom.dol", 0x3F4E04, 0x4 +.global lbl_805A7468 +lbl_805A7468: + .incbin "baserom.dol", 0x3F4E08, 0x4 +.global lbl_805A746C +lbl_805A746C: + .incbin "baserom.dol", 0x3F4E0C, 0x4 +.global lbl_805A7470 +lbl_805A7470: + .incbin "baserom.dol", 0x3F4E10, 0x4 +.global lbl_805A7474 +lbl_805A7474: + .incbin "baserom.dol", 0x3F4E14, 0x4 +.global lbl_805A7478 +lbl_805A7478: + .incbin "baserom.dol", 0x3F4E18, 0x4 +.global lbl_805A747C +lbl_805A747C: + .incbin "baserom.dol", 0x3F4E1C, 0x4 +.global lbl_805A7480 +lbl_805A7480: + .incbin "baserom.dol", 0x3F4E20, 0x4 +.global lbl_805A7484 +lbl_805A7484: + .incbin "baserom.dol", 0x3F4E24, 0x4 +.global lbl_805A7488 +lbl_805A7488: + .incbin "baserom.dol", 0x3F4E28, 0x4 +.global lbl_805A748C +lbl_805A748C: + .incbin "baserom.dol", 0x3F4E2C, 0x4 +.global lbl_805A7490 +lbl_805A7490: + .incbin "baserom.dol", 0x3F4E30, 0x4 +.global lbl_805A7494 +lbl_805A7494: + .incbin "baserom.dol", 0x3F4E34, 0x4 +.global lbl_805A7498 +lbl_805A7498: + .incbin "baserom.dol", 0x3F4E38, 0x4 +.global lbl_805A749C +lbl_805A749C: + .incbin "baserom.dol", 0x3F4E3C, 0x4 +.global lbl_805A74A0 +lbl_805A74A0: + .incbin "baserom.dol", 0x3F4E40, 0x4 +.global lbl_805A74A4 +lbl_805A74A4: + .incbin "baserom.dol", 0x3F4E44, 0x4 +.global lbl_805A74A8 +lbl_805A74A8: + .incbin "baserom.dol", 0x3F4E48, 0x8 +.global lbl_805A74B0 +lbl_805A74B0: + .incbin "baserom.dol", 0x3F4E50, 0x4 +.global lbl_805A74B4 +lbl_805A74B4: + .incbin "baserom.dol", 0x3F4E54, 0x4 +.global lbl_805A74B8 +lbl_805A74B8: + .incbin "baserom.dol", 0x3F4E58, 0x4 +.global lbl_805A74BC +lbl_805A74BC: + .incbin "baserom.dol", 0x3F4E5C, 0x4 +.global lbl_805A74C0 +lbl_805A74C0: + .incbin "baserom.dol", 0x3F4E60, 0x4 +.global lbl_805A74C4 +lbl_805A74C4: + .incbin "baserom.dol", 0x3F4E64, 0x4 +.global lbl_805A74C8 +lbl_805A74C8: + .incbin "baserom.dol", 0x3F4E68, 0x4 +.global lbl_805A74CC +lbl_805A74CC: + .incbin "baserom.dol", 0x3F4E6C, 0x4 +.global lbl_805A74D0 +lbl_805A74D0: + .incbin "baserom.dol", 0x3F4E70, 0x8 +.global lbl_805A74D8 +lbl_805A74D8: + .incbin "baserom.dol", 0x3F4E78, 0x4 +.global lbl_805A74DC +lbl_805A74DC: + .incbin "baserom.dol", 0x3F4E7C, 0x4 +.global lbl_805A74E0 +lbl_805A74E0: + .incbin "baserom.dol", 0x3F4E80, 0x4 +.global lbl_805A74E4 +lbl_805A74E4: + .incbin "baserom.dol", 0x3F4E84, 0x4 +.global lbl_805A74E8 +lbl_805A74E8: + .incbin "baserom.dol", 0x3F4E88, 0x4 +.global lbl_805A74EC +lbl_805A74EC: + .incbin "baserom.dol", 0x3F4E8C, 0x4 +.global lbl_805A74F0 +lbl_805A74F0: + .incbin "baserom.dol", 0x3F4E90, 0x4 +.global lbl_805A74F4 +lbl_805A74F4: + .incbin "baserom.dol", 0x3F4E94, 0x4 +.global lbl_805A74F8 +lbl_805A74F8: + .incbin "baserom.dol", 0x3F4E98, 0x4 +.global lbl_805A74FC +lbl_805A74FC: + .incbin "baserom.dol", 0x3F4E9C, 0x4 +.global lbl_805A7500 +lbl_805A7500: + .incbin "baserom.dol", 0x3F4EA0, 0x4 +.global lbl_805A7504 +lbl_805A7504: + .incbin "baserom.dol", 0x3F4EA4, 0x4 +.global lbl_805A7508 +lbl_805A7508: + .incbin "baserom.dol", 0x3F4EA8, 0x4 +.global lbl_805A750C +lbl_805A750C: + .incbin "baserom.dol", 0x3F4EAC, 0x4 +.global lbl_805A7510 +lbl_805A7510: + .incbin "baserom.dol", 0x3F4EB0, 0x4 +.global lbl_805A7514 +lbl_805A7514: + .incbin "baserom.dol", 0x3F4EB4, 0x4 +.global lbl_805A7518 +lbl_805A7518: + .incbin "baserom.dol", 0x3F4EB8, 0x4 +.global lbl_805A751C +lbl_805A751C: + .incbin "baserom.dol", 0x3F4EBC, 0x4 +.global lbl_805A7520 +lbl_805A7520: + .incbin "baserom.dol", 0x3F4EC0, 0x4 +.global lbl_805A7524 +lbl_805A7524: + .incbin "baserom.dol", 0x3F4EC4, 0x4 +.global lbl_805A7528 +lbl_805A7528: + .incbin "baserom.dol", 0x3F4EC8, 0x4 +.global lbl_805A752C +lbl_805A752C: + .incbin "baserom.dol", 0x3F4ECC, 0x4 +.global lbl_805A7530 +lbl_805A7530: + .incbin "baserom.dol", 0x3F4ED0, 0x4 +.global lbl_805A7534 +lbl_805A7534: + .incbin "baserom.dol", 0x3F4ED4, 0x4 +.global lbl_805A7538 +lbl_805A7538: + .incbin "baserom.dol", 0x3F4ED8, 0x8 +.global lbl_805A7540 +lbl_805A7540: + .incbin "baserom.dol", 0x3F4EE0, 0x4 +.global lbl_805A7544 +lbl_805A7544: + .incbin "baserom.dol", 0x3F4EE4, 0x4 +.global lbl_805A7548 +lbl_805A7548: + .incbin "baserom.dol", 0x3F4EE8, 0x4 +.global lbl_805A754C +lbl_805A754C: + .incbin "baserom.dol", 0x3F4EEC, 0x4 +.global lbl_805A7550 +lbl_805A7550: + .incbin "baserom.dol", 0x3F4EF0, 0x4 +.global lbl_805A7554 +lbl_805A7554: + .incbin "baserom.dol", 0x3F4EF4, 0x4 +.global lbl_805A7558 +lbl_805A7558: + .incbin "baserom.dol", 0x3F4EF8, 0x8 +.global lbl_805A7560 +lbl_805A7560: + .incbin "baserom.dol", 0x3F4F00, 0x4 +.global lbl_805A7564 +lbl_805A7564: + .incbin "baserom.dol", 0x3F4F04, 0x4 +.global lbl_805A7568 +lbl_805A7568: + .incbin "baserom.dol", 0x3F4F08, 0x4 +.global lbl_805A756C +lbl_805A756C: + .incbin "baserom.dol", 0x3F4F0C, 0x4 +.global lbl_805A7570 +lbl_805A7570: + .incbin "baserom.dol", 0x3F4F10, 0x8 +.global lbl_805A7578 +lbl_805A7578: + .incbin "baserom.dol", 0x3F4F18, 0x4 +.global lbl_805A757C +lbl_805A757C: + .incbin "baserom.dol", 0x3F4F1C, 0x4 +.global lbl_805A7580 +lbl_805A7580: + .incbin "baserom.dol", 0x3F4F20, 0x4 +.global lbl_805A7584 +lbl_805A7584: + .incbin "baserom.dol", 0x3F4F24, 0x4 +.global lbl_805A7588 +lbl_805A7588: + .incbin "baserom.dol", 0x3F4F28, 0x4 +.global lbl_805A758C +lbl_805A758C: + .incbin "baserom.dol", 0x3F4F2C, 0x4 +.global lbl_805A7590 +lbl_805A7590: + .incbin "baserom.dol", 0x3F4F30, 0x4 +.global lbl_805A7594 +lbl_805A7594: + .incbin "baserom.dol", 0x3F4F34, 0x4 +.global lbl_805A7598 +lbl_805A7598: + .incbin "baserom.dol", 0x3F4F38, 0x4 +.global lbl_805A759C +lbl_805A759C: + .incbin "baserom.dol", 0x3F4F3C, 0x4 +.global lbl_805A75A0 +lbl_805A75A0: + .incbin "baserom.dol", 0x3F4F40, 0x4 +.global lbl_805A75A4 +lbl_805A75A4: + .incbin "baserom.dol", 0x3F4F44, 0x4 +.global lbl_805A75A8 +lbl_805A75A8: + .incbin "baserom.dol", 0x3F4F48, 0x4 +.global lbl_805A75AC +lbl_805A75AC: + .incbin "baserom.dol", 0x3F4F4C, 0x4 +.global lbl_805A75B0 +lbl_805A75B0: + .incbin "baserom.dol", 0x3F4F50, 0x4 +.global lbl_805A75B4 +lbl_805A75B4: + .incbin "baserom.dol", 0x3F4F54, 0x4 +.global lbl_805A75B8 +lbl_805A75B8: + .incbin "baserom.dol", 0x3F4F58, 0x4 +.global lbl_805A75BC +lbl_805A75BC: + .incbin "baserom.dol", 0x3F4F5C, 0x4 +.global lbl_805A75C0 +lbl_805A75C0: + .incbin "baserom.dol", 0x3F4F60, 0x8 +.global lbl_805A75C8 +lbl_805A75C8: + .incbin "baserom.dol", 0x3F4F68, 0x4 +.global lbl_805A75CC +lbl_805A75CC: + .incbin "baserom.dol", 0x3F4F6C, 0x4 +.global lbl_805A75D0 +lbl_805A75D0: + .incbin "baserom.dol", 0x3F4F70, 0x4 +.global lbl_805A75D4 +lbl_805A75D4: + .incbin "baserom.dol", 0x3F4F74, 0x4 +.global lbl_805A75D8 +lbl_805A75D8: + .incbin "baserom.dol", 0x3F4F78, 0x4 +.global lbl_805A75DC +lbl_805A75DC: + .incbin "baserom.dol", 0x3F4F7C, 0x4 +.global lbl_805A75E0 +lbl_805A75E0: + .incbin "baserom.dol", 0x3F4F80, 0x4 +.global lbl_805A75E4 +lbl_805A75E4: + .incbin "baserom.dol", 0x3F4F84, 0x4 +.global lbl_805A75E8 +lbl_805A75E8: + .incbin "baserom.dol", 0x3F4F88, 0x8 +.global lbl_805A75F0 +lbl_805A75F0: + .incbin "baserom.dol", 0x3F4F90, 0x4 +.global lbl_805A75F4 +lbl_805A75F4: + .incbin "baserom.dol", 0x3F4F94, 0x4 +.global lbl_805A75F8 +lbl_805A75F8: + .incbin "baserom.dol", 0x3F4F98, 0x4 +.global lbl_805A75FC +lbl_805A75FC: + .incbin "baserom.dol", 0x3F4F9C, 0x4 +.global lbl_805A7600 +lbl_805A7600: + .incbin "baserom.dol", 0x3F4FA0, 0x4 +.global lbl_805A7604 +lbl_805A7604: + .incbin "baserom.dol", 0x3F4FA4, 0x4 +.global lbl_805A7608 +lbl_805A7608: + .incbin "baserom.dol", 0x3F4FA8, 0x4 +.global lbl_805A760C +lbl_805A760C: + .incbin "baserom.dol", 0x3F4FAC, 0x4 +.global lbl_805A7610 +lbl_805A7610: + .incbin "baserom.dol", 0x3F4FB0, 0x4 +.global lbl_805A7614 +lbl_805A7614: + .incbin "baserom.dol", 0x3F4FB4, 0x4 +.global lbl_805A7618 +lbl_805A7618: + .incbin "baserom.dol", 0x3F4FB8, 0x4 +.global lbl_805A761C +lbl_805A761C: + .incbin "baserom.dol", 0x3F4FBC, 0x4 +.global lbl_805A7620 +lbl_805A7620: + .incbin "baserom.dol", 0x3F4FC0, 0x8 +.global lbl_805A7628 +lbl_805A7628: + .incbin "baserom.dol", 0x3F4FC8, 0x8 +.global lbl_805A7630 +lbl_805A7630: + .incbin "baserom.dol", 0x3F4FD0, 0x4 +.global lbl_805A7634 +lbl_805A7634: + .incbin "baserom.dol", 0x3F4FD4, 0x4 +.global lbl_805A7638 +lbl_805A7638: + .incbin "baserom.dol", 0x3F4FD8, 0x4 +.global lbl_805A763C +lbl_805A763C: + .incbin "baserom.dol", 0x3F4FDC, 0x4 +.global lbl_805A7640 +lbl_805A7640: + .incbin "baserom.dol", 0x3F4FE0, 0x4 +.global lbl_805A7644 +lbl_805A7644: + .incbin "baserom.dol", 0x3F4FE4, 0x4 +.global lbl_805A7648 +lbl_805A7648: + .incbin "baserom.dol", 0x3F4FE8, 0x8 +.global lbl_805A7650 +lbl_805A7650: + .incbin "baserom.dol", 0x3F4FF0, 0x4 +.global lbl_805A7654 +lbl_805A7654: + .incbin "baserom.dol", 0x3F4FF4, 0x1 +.global lbl_805A7655 +lbl_805A7655: + .incbin "baserom.dol", 0x3F4FF5, 0x3 +.global lbl_805A7658 +lbl_805A7658: + .incbin "baserom.dol", 0x3F4FF8, 0x4 +.global lbl_805A765C +lbl_805A765C: + .incbin "baserom.dol", 0x3F4FFC, 0x4 +.global lbl_805A7660 +lbl_805A7660: + .incbin "baserom.dol", 0x3F5000, 0x4 +.global lbl_805A7664 +lbl_805A7664: + .incbin "baserom.dol", 0x3F5004, 0x4 +.global lbl_805A7668 +lbl_805A7668: + .incbin "baserom.dol", 0x3F5008, 0x4 +.global lbl_805A766C +lbl_805A766C: + .incbin "baserom.dol", 0x3F500C, 0x4 +.global lbl_805A7670 +lbl_805A7670: + .incbin "baserom.dol", 0x3F5010, 0x4 +.global lbl_805A7674 +lbl_805A7674: + .incbin "baserom.dol", 0x3F5014, 0x4 +.global lbl_805A7678 +lbl_805A7678: + .incbin "baserom.dol", 0x3F5018, 0x4 +.global lbl_805A767C +lbl_805A767C: + .incbin "baserom.dol", 0x3F501C, 0x4 +.global lbl_805A7680 +lbl_805A7680: + .incbin "baserom.dol", 0x3F5020, 0x4 +.global lbl_805A7684 +lbl_805A7684: + .incbin "baserom.dol", 0x3F5024, 0x4 +.global lbl_805A7688 +lbl_805A7688: + .incbin "baserom.dol", 0x3F5028, 0x4 +.global lbl_805A768C +lbl_805A768C: + .incbin "baserom.dol", 0x3F502C, 0x4 +.global lbl_805A7690 +lbl_805A7690: + .incbin "baserom.dol", 0x3F5030, 0x4 +.global lbl_805A7694 +lbl_805A7694: + .incbin "baserom.dol", 0x3F5034, 0x4 +.global lbl_805A7698 +lbl_805A7698: + .incbin "baserom.dol", 0x3F5038, 0x4 +.global lbl_805A769C +lbl_805A769C: + .incbin "baserom.dol", 0x3F503C, 0x4 +.global lbl_805A76A0 +lbl_805A76A0: + .incbin "baserom.dol", 0x3F5040, 0x8 +.global lbl_805A76A8 +lbl_805A76A8: + .incbin "baserom.dol", 0x3F5048, 0x8 +.global lbl_805A76B0 +lbl_805A76B0: + .incbin "baserom.dol", 0x3F5050, 0x4 +.global lbl_805A76B4 +lbl_805A76B4: + .incbin "baserom.dol", 0x3F5054, 0x4 +.global lbl_805A76B8 +lbl_805A76B8: + .incbin "baserom.dol", 0x3F5058, 0x4 +.global lbl_805A76BC +lbl_805A76BC: + .incbin "baserom.dol", 0x3F505C, 0x4 +.global lbl_805A76C0 +lbl_805A76C0: + .incbin "baserom.dol", 0x3F5060, 0x8 +.global lbl_805A76C8 +lbl_805A76C8: + .incbin "baserom.dol", 0x3F5068, 0x4 +.global lbl_805A76CC +lbl_805A76CC: + .incbin "baserom.dol", 0x3F506C, 0x4 +.global lbl_805A76D0 +lbl_805A76D0: + .incbin "baserom.dol", 0x3F5070, 0x8 +.global lbl_805A76D8 +lbl_805A76D8: + .incbin "baserom.dol", 0x3F5078, 0x4 +.global lbl_805A76DC +lbl_805A76DC: + .incbin "baserom.dol", 0x3F507C, 0x4 +.global lbl_805A76E0 +lbl_805A76E0: + .incbin "baserom.dol", 0x3F5080, 0x8 +.global lbl_805A76E8 +lbl_805A76E8: + .incbin "baserom.dol", 0x3F5088, 0x8 +.global lbl_805A76F0 +lbl_805A76F0: + .incbin "baserom.dol", 0x3F5090, 0x4 +.global lbl_805A76F4 +lbl_805A76F4: + .incbin "baserom.dol", 0x3F5094, 0x4 +.global lbl_805A76F8 +lbl_805A76F8: + .incbin "baserom.dol", 0x3F5098, 0x4 +.global lbl_805A76FC +lbl_805A76FC: + .incbin "baserom.dol", 0x3F509C, 0x4 +.global lbl_805A7700 +lbl_805A7700: + .incbin "baserom.dol", 0x3F50A0, 0x4 +.global lbl_805A7704 +lbl_805A7704: + .incbin "baserom.dol", 0x3F50A4, 0x4 +.global lbl_805A7708 +lbl_805A7708: + .incbin "baserom.dol", 0x3F50A8, 0x4 +.global lbl_805A770C +lbl_805A770C: + .incbin "baserom.dol", 0x3F50AC, 0x1 +.global lbl_805A770D +lbl_805A770D: + .incbin "baserom.dol", 0x3F50AD, 0x1 +.global lbl_805A770E +lbl_805A770E: + .incbin "baserom.dol", 0x3F50AE, 0x2 +.global lbl_805A7710 +lbl_805A7710: + .incbin "baserom.dol", 0x3F50B0, 0x4 +.global lbl_805A7714 +lbl_805A7714: + .incbin "baserom.dol", 0x3F50B4, 0x4 +.global lbl_805A7718 +lbl_805A7718: + .incbin "baserom.dol", 0x3F50B8, 0x4 +.global lbl_805A771C +lbl_805A771C: + .incbin "baserom.dol", 0x3F50BC, 0x4 +.global lbl_805A7720 +lbl_805A7720: + .incbin "baserom.dol", 0x3F50C0, 0x4 +.global lbl_805A7724 +lbl_805A7724: + .incbin "baserom.dol", 0x3F50C4, 0x4 +.global lbl_805A7728 +lbl_805A7728: + .incbin "baserom.dol", 0x3F50C8, 0x4 +.global lbl_805A772C +lbl_805A772C: + .incbin "baserom.dol", 0x3F50CC, 0x4 +.global lbl_805A7730 +lbl_805A7730: + .incbin "baserom.dol", 0x3F50D0, 0x4 +.global lbl_805A7734 +lbl_805A7734: + .incbin "baserom.dol", 0x3F50D4, 0x4 +.global lbl_805A7738 +lbl_805A7738: + .incbin "baserom.dol", 0x3F50D8, 0x8 +.global lbl_805A7740 +lbl_805A7740: + .incbin "baserom.dol", 0x3F50E0, 0x8 +.global lbl_805A7748 +lbl_805A7748: + .incbin "baserom.dol", 0x3F50E8, 0x4 +.global lbl_805A774C +lbl_805A774C: + .incbin "baserom.dol", 0x3F50EC, 0x4 +.global lbl_805A7750 +lbl_805A7750: + .incbin "baserom.dol", 0x3F50F0, 0x8 +.global lbl_805A7758 +lbl_805A7758: + .incbin "baserom.dol", 0x3F50F8, 0x4 +.global lbl_805A775C +lbl_805A775C: + .incbin "baserom.dol", 0x3F50FC, 0x4 +.global lbl_805A7760 +lbl_805A7760: + .incbin "baserom.dol", 0x3F5100, 0x4 +.global lbl_805A7764 +lbl_805A7764: + .incbin "baserom.dol", 0x3F5104, 0x4 +.global lbl_805A7768 +lbl_805A7768: + .incbin "baserom.dol", 0x3F5108, 0x4 +.global lbl_805A776C +lbl_805A776C: + .incbin "baserom.dol", 0x3F510C, 0x4 +.global lbl_805A7770 +lbl_805A7770: + .incbin "baserom.dol", 0x3F5110, 0x4 +.global lbl_805A7774 +lbl_805A7774: + .incbin "baserom.dol", 0x3F5114, 0x4 +.global lbl_805A7778 +lbl_805A7778: + .incbin "baserom.dol", 0x3F5118, 0x8 +.global lbl_805A7780 +lbl_805A7780: + .incbin "baserom.dol", 0x3F5120, 0x4 +.global lbl_805A7784 +lbl_805A7784: + .incbin "baserom.dol", 0x3F5124, 0x4 +.global lbl_805A7788 +lbl_805A7788: + .incbin "baserom.dol", 0x3F5128, 0x4 +.global lbl_805A778C +lbl_805A778C: + .incbin "baserom.dol", 0x3F512C, 0x4 +.global lbl_805A7790 +lbl_805A7790: + .incbin "baserom.dol", 0x3F5130, 0x4 +.global lbl_805A7794 +lbl_805A7794: + .incbin "baserom.dol", 0x3F5134, 0x4 +.global lbl_805A7798 +lbl_805A7798: + .incbin "baserom.dol", 0x3F5138, 0x8 +.global lbl_805A77A0 +lbl_805A77A0: + .incbin "baserom.dol", 0x3F5140, 0x8 +.global lbl_805A77A8 +lbl_805A77A8: + .incbin "baserom.dol", 0x3F5148, 0x8 +.global lbl_805A77B0 +lbl_805A77B0: + .incbin "baserom.dol", 0x3F5150, 0x8 +.global lbl_805A77B8 +lbl_805A77B8: + .incbin "baserom.dol", 0x3F5158, 0x4 +.global lbl_805A77BC +lbl_805A77BC: + .incbin "baserom.dol", 0x3F515C, 0x4 +.global lbl_805A77C0 +lbl_805A77C0: + .incbin "baserom.dol", 0x3F5160, 0x4 +.global lbl_805A77C4 +lbl_805A77C4: + .incbin "baserom.dol", 0x3F5164, 0x4 +.global lbl_805A77C8 +lbl_805A77C8: + .incbin "baserom.dol", 0x3F5168, 0x4 +.global lbl_805A77CC +lbl_805A77CC: + .incbin "baserom.dol", 0x3F516C, 0x4 +.global lbl_805A77D0 +lbl_805A77D0: + .incbin "baserom.dol", 0x3F5170, 0x4 +.global lbl_805A77D4 +lbl_805A77D4: + .incbin "baserom.dol", 0x3F5174, 0x4 +.global lbl_805A77D8 +lbl_805A77D8: + .incbin "baserom.dol", 0x3F5178, 0x4 +.global lbl_805A77DC +lbl_805A77DC: + .incbin "baserom.dol", 0x3F517C, 0x4 +.global lbl_805A77E0 +lbl_805A77E0: + .incbin "baserom.dol", 0x3F5180, 0x4 +.global lbl_805A77E4 +lbl_805A77E4: + .incbin "baserom.dol", 0x3F5184, 0x4 +.global lbl_805A77E8 +lbl_805A77E8: + .incbin "baserom.dol", 0x3F5188, 0x4 +.global lbl_805A77EC +lbl_805A77EC: + .incbin "baserom.dol", 0x3F518C, 0x4 +.global lbl_805A77F0 +lbl_805A77F0: + .incbin "baserom.dol", 0x3F5190, 0x8 +.global lbl_805A77F8 +lbl_805A77F8: + .incbin "baserom.dol", 0x3F5198, 0x4 +.global lbl_805A77FC +lbl_805A77FC: + .incbin "baserom.dol", 0x3F519C, 0x4 +.global lbl_805A7800 +lbl_805A7800: + .incbin "baserom.dol", 0x3F51A0, 0x8 +.global lbl_805A7808 +lbl_805A7808: + .incbin "baserom.dol", 0x3F51A8, 0x4 +.global lbl_805A780C +lbl_805A780C: + .incbin "baserom.dol", 0x3F51AC, 0x4 +.global lbl_805A7810 +lbl_805A7810: + .incbin "baserom.dol", 0x3F51B0, 0x4 +.global lbl_805A7814 +lbl_805A7814: + .incbin "baserom.dol", 0x3F51B4, 0x4 +.global lbl_805A7818 +lbl_805A7818: + .incbin "baserom.dol", 0x3F51B8, 0x4 +.global lbl_805A781C +lbl_805A781C: + .incbin "baserom.dol", 0x3F51BC, 0x4 +.global lbl_805A7820 +lbl_805A7820: + .incbin "baserom.dol", 0x3F51C0, 0x4 +.global lbl_805A7824 +lbl_805A7824: + .incbin "baserom.dol", 0x3F51C4, 0x4 +.global lbl_805A7828 +lbl_805A7828: + .incbin "baserom.dol", 0x3F51C8, 0x4 +.global lbl_805A782C +lbl_805A782C: + .incbin "baserom.dol", 0x3F51CC, 0x4 +.global lbl_805A7830 +lbl_805A7830: + .incbin "baserom.dol", 0x3F51D0, 0x4 +.global lbl_805A7834 +lbl_805A7834: + .incbin "baserom.dol", 0x3F51D4, 0x4 +.global lbl_805A7838 +lbl_805A7838: + .incbin "baserom.dol", 0x3F51D8, 0x4 +.global lbl_805A783C +lbl_805A783C: + .incbin "baserom.dol", 0x3F51DC, 0x4 +.global lbl_805A7840 +lbl_805A7840: + .incbin "baserom.dol", 0x3F51E0, 0x4 +.global lbl_805A7844 +lbl_805A7844: + .incbin "baserom.dol", 0x3F51E4, 0x4 +.global lbl_805A7848 +lbl_805A7848: + .incbin "baserom.dol", 0x3F51E8, 0x8 +.global lbl_805A7850 +lbl_805A7850: + .incbin "baserom.dol", 0x3F51F0, 0x4 +.global lbl_805A7854 +lbl_805A7854: + .incbin "baserom.dol", 0x3F51F4, 0x4 +.global lbl_805A7858 +lbl_805A7858: + .incbin "baserom.dol", 0x3F51F8, 0x4 +.global lbl_805A785C +lbl_805A785C: + .incbin "baserom.dol", 0x3F51FC, 0x4 +.global lbl_805A7860 +lbl_805A7860: + .incbin "baserom.dol", 0x3F5200, 0x8 +.global lbl_805A7868 +lbl_805A7868: + .incbin "baserom.dol", 0x3F5208, 0x4 +.global lbl_805A786C +lbl_805A786C: + .incbin "baserom.dol", 0x3F520C, 0x4 +.global lbl_805A7870 +lbl_805A7870: + .incbin "baserom.dol", 0x3F5210, 0x8 +.global lbl_805A7878 +lbl_805A7878: + .incbin "baserom.dol", 0x3F5218, 0x4 +.global lbl_805A787C +lbl_805A787C: + .incbin "baserom.dol", 0x3F521C, 0x4 +.global lbl_805A7880 +lbl_805A7880: + .incbin "baserom.dol", 0x3F5220, 0x4 +.global lbl_805A7884 +lbl_805A7884: + .incbin "baserom.dol", 0x3F5224, 0x4 +.global lbl_805A7888 +lbl_805A7888: + .incbin "baserom.dol", 0x3F5228, 0x4 +.global lbl_805A788C +lbl_805A788C: + .incbin "baserom.dol", 0x3F522C, 0x4 +.global lbl_805A7890 +lbl_805A7890: + .incbin "baserom.dol", 0x3F5230, 0x4 +.global lbl_805A7894 +lbl_805A7894: + .incbin "baserom.dol", 0x3F5234, 0x4 +.global lbl_805A7898 +lbl_805A7898: + .incbin "baserom.dol", 0x3F5238, 0x4 +.global lbl_805A789C +lbl_805A789C: + .incbin "baserom.dol", 0x3F523C, 0x4 +.global lbl_805A78A0 +lbl_805A78A0: + .incbin "baserom.dol", 0x3F5240, 0x8 +.global lbl_805A78A8 +lbl_805A78A8: + .incbin "baserom.dol", 0x3F5248, 0x8 +.global lbl_805A78B0 +lbl_805A78B0: + .incbin "baserom.dol", 0x3F5250, 0x4 +.global lbl_805A78B4 +lbl_805A78B4: + .incbin "baserom.dol", 0x3F5254, 0x4 +.global lbl_805A78B8 +lbl_805A78B8: + .incbin "baserom.dol", 0x3F5258, 0x4 +.global lbl_805A78BC +lbl_805A78BC: + .incbin "baserom.dol", 0x3F525C, 0x4 +.global lbl_805A78C0 +lbl_805A78C0: + .incbin "baserom.dol", 0x3F5260, 0x4 +.global lbl_805A78C4 +lbl_805A78C4: + .incbin "baserom.dol", 0x3F5264, 0x4 +.global lbl_805A78C8 +lbl_805A78C8: + .incbin "baserom.dol", 0x3F5268, 0x4 +.global lbl_805A78CC +lbl_805A78CC: + .incbin "baserom.dol", 0x3F526C, 0x4 +.global lbl_805A78D0 +lbl_805A78D0: + .incbin "baserom.dol", 0x3F5270, 0x4 +.global lbl_805A78D4 +lbl_805A78D4: + .incbin "baserom.dol", 0x3F5274, 0x4 +.global lbl_805A78D8 +lbl_805A78D8: + .incbin "baserom.dol", 0x3F5278, 0x4 +.global lbl_805A78DC +lbl_805A78DC: + .incbin "baserom.dol", 0x3F527C, 0x4 +.global lbl_805A78E0 +lbl_805A78E0: + .incbin "baserom.dol", 0x3F5280, 0x4 +.global lbl_805A78E4 +lbl_805A78E4: + .incbin "baserom.dol", 0x3F5284, 0x4 +.global lbl_805A78E8 +lbl_805A78E8: + .incbin "baserom.dol", 0x3F5288, 0x4 +.global lbl_805A78EC +lbl_805A78EC: + .incbin "baserom.dol", 0x3F528C, 0x4 +.global lbl_805A78F0 +lbl_805A78F0: + .incbin "baserom.dol", 0x3F5290, 0x4 +.global lbl_805A78F4 +lbl_805A78F4: + .incbin "baserom.dol", 0x3F5294, 0x4 +.global lbl_805A78F8 +lbl_805A78F8: + .incbin "baserom.dol", 0x3F5298, 0x4 +.global lbl_805A78FC +lbl_805A78FC: + .incbin "baserom.dol", 0x3F529C, 0x4 +.global lbl_805A7900 +lbl_805A7900: + .incbin "baserom.dol", 0x3F52A0, 0x4 +.global lbl_805A7904 +lbl_805A7904: + .incbin "baserom.dol", 0x3F52A4, 0x4 +.global lbl_805A7908 +lbl_805A7908: + .incbin "baserom.dol", 0x3F52A8, 0x4 +.global lbl_805A790C +lbl_805A790C: + .incbin "baserom.dol", 0x3F52AC, 0x4 +.global lbl_805A7910 +lbl_805A7910: + .incbin "baserom.dol", 0x3F52B0, 0x4 +.global lbl_805A7914 +lbl_805A7914: + .incbin "baserom.dol", 0x3F52B4, 0x4 +.global lbl_805A7918 +lbl_805A7918: + .incbin "baserom.dol", 0x3F52B8, 0x4 +.global lbl_805A791C +lbl_805A791C: + .incbin "baserom.dol", 0x3F52BC, 0x4 +.global lbl_805A7920 +lbl_805A7920: + .incbin "baserom.dol", 0x3F52C0, 0x4 +.global lbl_805A7924 +lbl_805A7924: + .incbin "baserom.dol", 0x3F52C4, 0x4 +.global lbl_805A7928 +lbl_805A7928: + .incbin "baserom.dol", 0x3F52C8, 0x4 +.global lbl_805A792C +lbl_805A792C: + .incbin "baserom.dol", 0x3F52CC, 0x4 +.global lbl_805A7930 +lbl_805A7930: + .incbin "baserom.dol", 0x3F52D0, 0x4 +.global lbl_805A7934 +lbl_805A7934: + .incbin "baserom.dol", 0x3F52D4, 0x4 +.global lbl_805A7938 +lbl_805A7938: + .incbin "baserom.dol", 0x3F52D8, 0x4 +.global lbl_805A793C +lbl_805A793C: + .incbin "baserom.dol", 0x3F52DC, 0x4 +.global lbl_805A7940 +lbl_805A7940: + .incbin "baserom.dol", 0x3F52E0, 0x4 +.global lbl_805A7944 +lbl_805A7944: + .incbin "baserom.dol", 0x3F52E4, 0x4 +.global lbl_805A7948 +lbl_805A7948: + .incbin "baserom.dol", 0x3F52E8, 0x4 +.global lbl_805A794C +lbl_805A794C: + .incbin "baserom.dol", 0x3F52EC, 0x4 +.global lbl_805A7950 +lbl_805A7950: + .incbin "baserom.dol", 0x3F52F0, 0x4 +.global lbl_805A7954 +lbl_805A7954: + .incbin "baserom.dol", 0x3F52F4, 0x4 +.global lbl_805A7958 +lbl_805A7958: + .incbin "baserom.dol", 0x3F52F8, 0x4 +.global lbl_805A795C +lbl_805A795C: + .incbin "baserom.dol", 0x3F52FC, 0x4 +.global lbl_805A7960 +lbl_805A7960: + .incbin "baserom.dol", 0x3F5300, 0x4 +.global lbl_805A7964 +lbl_805A7964: + .incbin "baserom.dol", 0x3F5304, 0x1 +.global lbl_805A7965 +lbl_805A7965: + .incbin "baserom.dol", 0x3F5305, 0x3 +.global lbl_805A7968 +lbl_805A7968: + .incbin "baserom.dol", 0x3F5308, 0x4 +.global lbl_805A796C +lbl_805A796C: + .incbin "baserom.dol", 0x3F530C, 0x4 +.global lbl_805A7970 +lbl_805A7970: + .incbin "baserom.dol", 0x3F5310, 0x4 +.global lbl_805A7974 +lbl_805A7974: + .incbin "baserom.dol", 0x3F5314, 0x4 +.global lbl_805A7978 +lbl_805A7978: + .incbin "baserom.dol", 0x3F5318, 0x4 +.global lbl_805A797C +lbl_805A797C: + .incbin "baserom.dol", 0x3F531C, 0x4 +.global lbl_805A7980 +lbl_805A7980: + .incbin "baserom.dol", 0x3F5320, 0x4 +.global lbl_805A7984 +lbl_805A7984: + .incbin "baserom.dol", 0x3F5324, 0x4 +.global lbl_805A7988 +lbl_805A7988: + .incbin "baserom.dol", 0x3F5328, 0x4 +.global lbl_805A798C +lbl_805A798C: + .incbin "baserom.dol", 0x3F532C, 0x4 +.global lbl_805A7990 +lbl_805A7990: + .incbin "baserom.dol", 0x3F5330, 0x4 +.global lbl_805A7994 +lbl_805A7994: + .incbin "baserom.dol", 0x3F5334, 0x4 +.global lbl_805A7998 +lbl_805A7998: + .incbin "baserom.dol", 0x3F5338, 0x4 +.global lbl_805A799C +lbl_805A799C: + .incbin "baserom.dol", 0x3F533C, 0x4 +.global lbl_805A79A0 +lbl_805A79A0: + .incbin "baserom.dol", 0x3F5340, 0x4 +.global lbl_805A79A4 +lbl_805A79A4: + .incbin "baserom.dol", 0x3F5344, 0x4 +.global lbl_805A79A8 +lbl_805A79A8: + .incbin "baserom.dol", 0x3F5348, 0x4 +.global lbl_805A79AC +lbl_805A79AC: + .incbin "baserom.dol", 0x3F534C, 0x4 +.global lbl_805A79B0 +lbl_805A79B0: + .incbin "baserom.dol", 0x3F5350, 0x4 +.global lbl_805A79B4 +lbl_805A79B4: + .incbin "baserom.dol", 0x3F5354, 0x4 +.global lbl_805A79B8 +lbl_805A79B8: + .incbin "baserom.dol", 0x3F5358, 0x4 +.global lbl_805A79BC +lbl_805A79BC: + .incbin "baserom.dol", 0x3F535C, 0x4 +.global lbl_805A79C0 +lbl_805A79C0: + .incbin "baserom.dol", 0x3F5360, 0x4 +.global lbl_805A79C4 +lbl_805A79C4: + .incbin "baserom.dol", 0x3F5364, 0x4 +.global lbl_805A79C8 +lbl_805A79C8: + .incbin "baserom.dol", 0x3F5368, 0x4 +.global lbl_805A79CC +lbl_805A79CC: + .incbin "baserom.dol", 0x3F536C, 0x4 +.global lbl_805A79D0 +lbl_805A79D0: + .incbin "baserom.dol", 0x3F5370, 0x4 +.global lbl_805A79D4 +lbl_805A79D4: + .incbin "baserom.dol", 0x3F5374, 0x4 +.global lbl_805A79D8 +lbl_805A79D8: + .incbin "baserom.dol", 0x3F5378, 0x8 +.global lbl_805A79E0 +lbl_805A79E0: + .incbin "baserom.dol", 0x3F5380, 0x4 +.global lbl_805A79E4 +lbl_805A79E4: + .incbin "baserom.dol", 0x3F5384, 0x4 +.global lbl_805A79E8 +lbl_805A79E8: + .incbin "baserom.dol", 0x3F5388, 0x4 +.global lbl_805A79EC +lbl_805A79EC: + .incbin "baserom.dol", 0x3F538C, 0x4 +.global lbl_805A79F0 +lbl_805A79F0: + .incbin "baserom.dol", 0x3F5390, 0x4 +.global lbl_805A79F4 +lbl_805A79F4: + .incbin "baserom.dol", 0x3F5394, 0x4 +.global lbl_805A79F8 +lbl_805A79F8: + .incbin "baserom.dol", 0x3F5398, 0x4 +.global lbl_805A79FC +lbl_805A79FC: + .incbin "baserom.dol", 0x3F539C, 0x4 +.global lbl_805A7A00 +lbl_805A7A00: + .incbin "baserom.dol", 0x3F53A0, 0x8 +.global lbl_805A7A08 +lbl_805A7A08: + .incbin "baserom.dol", 0x3F53A8, 0x4 +.global lbl_805A7A0C +lbl_805A7A0C: + .incbin "baserom.dol", 0x3F53AC, 0x4 +.global lbl_805A7A10 +lbl_805A7A10: + .incbin "baserom.dol", 0x3F53B0, 0x4 +.global lbl_805A7A14 +lbl_805A7A14: + .incbin "baserom.dol", 0x3F53B4, 0x4 +.global lbl_805A7A18 +lbl_805A7A18: + .incbin "baserom.dol", 0x3F53B8, 0x4 +.global lbl_805A7A1C +lbl_805A7A1C: + .incbin "baserom.dol", 0x3F53BC, 0x4 +.global lbl_805A7A20 +lbl_805A7A20: + .incbin "baserom.dol", 0x3F53C0, 0x4 +.global lbl_805A7A24 +lbl_805A7A24: + .incbin "baserom.dol", 0x3F53C4, 0x4 +.global lbl_805A7A28 +lbl_805A7A28: + .incbin "baserom.dol", 0x3F53C8, 0x4 +.global lbl_805A7A2C +lbl_805A7A2C: + .incbin "baserom.dol", 0x3F53CC, 0x4 +.global lbl_805A7A30 +lbl_805A7A30: + .incbin "baserom.dol", 0x3F53D0, 0x4 +.global lbl_805A7A34 +lbl_805A7A34: + .incbin "baserom.dol", 0x3F53D4, 0x4 +.global lbl_805A7A38 +lbl_805A7A38: + .incbin "baserom.dol", 0x3F53D8, 0x4 +.global lbl_805A7A3C +lbl_805A7A3C: + .incbin "baserom.dol", 0x3F53DC, 0x4 +.global lbl_805A7A40 +lbl_805A7A40: + .incbin "baserom.dol", 0x3F53E0, 0x4 +.global lbl_805A7A44 +lbl_805A7A44: + .incbin "baserom.dol", 0x3F53E4, 0x4 +.global lbl_805A7A48 +lbl_805A7A48: + .incbin "baserom.dol", 0x3F53E8, 0x4 +.global lbl_805A7A4C +lbl_805A7A4C: + .incbin "baserom.dol", 0x3F53EC, 0x4 +.global lbl_805A7A50 +lbl_805A7A50: + .incbin "baserom.dol", 0x3F53F0, 0x4 +.global lbl_805A7A54 +lbl_805A7A54: + .incbin "baserom.dol", 0x3F53F4, 0x4 +.global lbl_805A7A58 +lbl_805A7A58: + .incbin "baserom.dol", 0x3F53F8, 0x4 +.global lbl_805A7A5C +lbl_805A7A5C: + .incbin "baserom.dol", 0x3F53FC, 0x4 +.global lbl_805A7A60 +lbl_805A7A60: + .incbin "baserom.dol", 0x3F5400, 0x8 +.global lbl_805A7A68 +lbl_805A7A68: + .incbin "baserom.dol", 0x3F5408, 0x4 +.global lbl_805A7A6C +lbl_805A7A6C: + .incbin "baserom.dol", 0x3F540C, 0x4 +.global lbl_805A7A70 +lbl_805A7A70: + .incbin "baserom.dol", 0x3F5410, 0x4 +.global lbl_805A7A74 +lbl_805A7A74: + .incbin "baserom.dol", 0x3F5414, 0x4 +.global lbl_805A7A78 +lbl_805A7A78: + .incbin "baserom.dol", 0x3F5418, 0x4 +.global lbl_805A7A7C +lbl_805A7A7C: + .incbin "baserom.dol", 0x3F541C, 0x4 +.global lbl_805A7A80 +lbl_805A7A80: + .incbin "baserom.dol", 0x3F5420, 0x8 +.global lbl_805A7A88 +lbl_805A7A88: + .incbin "baserom.dol", 0x3F5428, 0x8 +.global lbl_805A7A90 +lbl_805A7A90: + .incbin "baserom.dol", 0x3F5430, 0x8 +.global lbl_805A7A98 +lbl_805A7A98: + .incbin "baserom.dol", 0x3F5438, 0x8 +.global lbl_805A7AA0 +lbl_805A7AA0: + .incbin "baserom.dol", 0x3F5440, 0x4 +.global lbl_805A7AA4 +lbl_805A7AA4: + .incbin "baserom.dol", 0x3F5444, 0x4 +.global lbl_805A7AA8 +lbl_805A7AA8: + .incbin "baserom.dol", 0x3F5448, 0x8 +.global lbl_805A7AB0 +lbl_805A7AB0: + .incbin "baserom.dol", 0x3F5450, 0x8 +.global lbl_805A7AB8 +lbl_805A7AB8: + .incbin "baserom.dol", 0x3F5458, 0x4 +.global lbl_805A7ABC +lbl_805A7ABC: + .incbin "baserom.dol", 0x3F545C, 0x4 +.global lbl_805A7AC0 +lbl_805A7AC0: + .incbin "baserom.dol", 0x3F5460, 0x4 +.global lbl_805A7AC4 +lbl_805A7AC4: + .incbin "baserom.dol", 0x3F5464, 0x4 +.global lbl_805A7AC8 +lbl_805A7AC8: + .incbin "baserom.dol", 0x3F5468, 0x4 +.global lbl_805A7ACC +lbl_805A7ACC: + .incbin "baserom.dol", 0x3F546C, 0x4 +.global lbl_805A7AD0 +lbl_805A7AD0: + .incbin "baserom.dol", 0x3F5470, 0x8 +.global lbl_805A7AD8 +lbl_805A7AD8: + .incbin "baserom.dol", 0x3F5478, 0x4 +.global lbl_805A7ADC +lbl_805A7ADC: + .incbin "baserom.dol", 0x3F547C, 0x4 +.global lbl_805A7AE0 +lbl_805A7AE0: + .incbin "baserom.dol", 0x3F5480, 0x4 +.global lbl_805A7AE4 +lbl_805A7AE4: + .incbin "baserom.dol", 0x3F5484, 0x4 +.global lbl_805A7AE8 +lbl_805A7AE8: + .incbin "baserom.dol", 0x3F5488, 0x4 +.global lbl_805A7AEC +lbl_805A7AEC: + .incbin "baserom.dol", 0x3F548C, 0x4 +.global lbl_805A7AF0 +lbl_805A7AF0: + .incbin "baserom.dol", 0x3F5490, 0x4 +.global lbl_805A7AF4 +lbl_805A7AF4: + .incbin "baserom.dol", 0x3F5494, 0x4 +.global lbl_805A7AF8 +lbl_805A7AF8: + .incbin "baserom.dol", 0x3F5498, 0x4 +.global lbl_805A7AFC +lbl_805A7AFC: + .incbin "baserom.dol", 0x3F549C, 0x4 +.global lbl_805A7B00 +lbl_805A7B00: + .incbin "baserom.dol", 0x3F54A0, 0x4 +.global lbl_805A7B04 +lbl_805A7B04: + .incbin "baserom.dol", 0x3F54A4, 0x4 +.global lbl_805A7B08 +lbl_805A7B08: + .incbin "baserom.dol", 0x3F54A8, 0x4 +.global lbl_805A7B0C +lbl_805A7B0C: + .incbin "baserom.dol", 0x3F54AC, 0x4 +.global lbl_805A7B10 +lbl_805A7B10: + .incbin "baserom.dol", 0x3F54B0, 0x4 +.global lbl_805A7B14 +lbl_805A7B14: + .incbin "baserom.dol", 0x3F54B4, 0x4 +.global lbl_805A7B18 +lbl_805A7B18: + .incbin "baserom.dol", 0x3F54B8, 0x4 +.global lbl_805A7B1C +lbl_805A7B1C: + .incbin "baserom.dol", 0x3F54BC, 0x4 +.global lbl_805A7B20 +lbl_805A7B20: + .incbin "baserom.dol", 0x3F54C0, 0x4 +.global lbl_805A7B24 +lbl_805A7B24: + .incbin "baserom.dol", 0x3F54C4, 0x4 +.global lbl_805A7B28 +lbl_805A7B28: + .incbin "baserom.dol", 0x3F54C8, 0x8 +.global lbl_805A7B30 +lbl_805A7B30: + .incbin "baserom.dol", 0x3F54D0, 0x4 +.global lbl_805A7B34 +lbl_805A7B34: + .incbin "baserom.dol", 0x3F54D4, 0x4 +.global lbl_805A7B38 +lbl_805A7B38: + .incbin "baserom.dol", 0x3F54D8, 0x4 +.global lbl_805A7B3C +lbl_805A7B3C: + .incbin "baserom.dol", 0x3F54DC, 0x4 +.global lbl_805A7B40 +lbl_805A7B40: + .incbin "baserom.dol", 0x3F54E0, 0x4 +.global lbl_805A7B44 +lbl_805A7B44: + .incbin "baserom.dol", 0x3F54E4, 0x4 +.global lbl_805A7B48 +lbl_805A7B48: + .incbin "baserom.dol", 0x3F54E8, 0x4 +.global lbl_805A7B4C +lbl_805A7B4C: + .incbin "baserom.dol", 0x3F54EC, 0x4 +.global lbl_805A7B50 +lbl_805A7B50: + .incbin "baserom.dol", 0x3F54F0, 0x8 +.global lbl_805A7B58 +lbl_805A7B58: + .incbin "baserom.dol", 0x3F54F8, 0x4 +.global lbl_805A7B5C +lbl_805A7B5C: + .incbin "baserom.dol", 0x3F54FC, 0x4 +.global lbl_805A7B60 +lbl_805A7B60: + .incbin "baserom.dol", 0x3F5500, 0x8 +.global lbl_805A7B68 +lbl_805A7B68: + .incbin "baserom.dol", 0x3F5508, 0x4 +.global lbl_805A7B6C +lbl_805A7B6C: + .incbin "baserom.dol", 0x3F550C, 0x4 +.global lbl_805A7B70 +lbl_805A7B70: + .incbin "baserom.dol", 0x3F5510, 0x4 +.global lbl_805A7B74 +lbl_805A7B74: + .incbin "baserom.dol", 0x3F5514, 0x4 +.global lbl_805A7B78 +lbl_805A7B78: + .incbin "baserom.dol", 0x3F5518, 0x4 +.global lbl_805A7B7C +lbl_805A7B7C: + .incbin "baserom.dol", 0x3F551C, 0x4 +.global lbl_805A7B80 +lbl_805A7B80: + .incbin "baserom.dol", 0x3F5520, 0x4 +.global lbl_805A7B84 +lbl_805A7B84: + .incbin "baserom.dol", 0x3F5524, 0x4 +.global lbl_805A7B88 +lbl_805A7B88: + .incbin "baserom.dol", 0x3F5528, 0x4 +.global lbl_805A7B8C +lbl_805A7B8C: + .incbin "baserom.dol", 0x3F552C, 0x4 +.global lbl_805A7B90 +lbl_805A7B90: + .incbin "baserom.dol", 0x3F5530, 0x8 +.global lbl_805A7B98 +lbl_805A7B98: + .incbin "baserom.dol", 0x3F5538, 0x4 +.global lbl_805A7B9C +lbl_805A7B9C: + .incbin "baserom.dol", 0x3F553C, 0x4 +.global lbl_805A7BA0 +lbl_805A7BA0: + .incbin "baserom.dol", 0x3F5540, 0x4 +.global lbl_805A7BA4 +lbl_805A7BA4: + .incbin "baserom.dol", 0x3F5544, 0x4 +.global lbl_805A7BA8 +lbl_805A7BA8: + .incbin "baserom.dol", 0x3F5548, 0x8 +.global lbl_805A7BB0 +lbl_805A7BB0: + .incbin "baserom.dol", 0x3F5550, 0x8 +.global lbl_805A7BB8 +lbl_805A7BB8: + .incbin "baserom.dol", 0x3F5558, 0x4 +.global lbl_805A7BBC +lbl_805A7BBC: + .incbin "baserom.dol", 0x3F555C, 0x4 +.global lbl_805A7BC0 +lbl_805A7BC0: + .incbin "baserom.dol", 0x3F5560, 0x4 +.global lbl_805A7BC4 +lbl_805A7BC4: + .incbin "baserom.dol", 0x3F5564, 0x4 +.global lbl_805A7BC8 +lbl_805A7BC8: + .incbin "baserom.dol", 0x3F5568, 0x4 +.global lbl_805A7BCC +lbl_805A7BCC: + .incbin "baserom.dol", 0x3F556C, 0x4 +.global lbl_805A7BD0 +lbl_805A7BD0: + .incbin "baserom.dol", 0x3F5570, 0x4 +.global lbl_805A7BD4 +lbl_805A7BD4: + .incbin "baserom.dol", 0x3F5574, 0x4 +.global lbl_805A7BD8 +lbl_805A7BD8: + .incbin "baserom.dol", 0x3F5578, 0x4 +.global lbl_805A7BDC +lbl_805A7BDC: + .incbin "baserom.dol", 0x3F557C, 0x4 +.global lbl_805A7BE0 +lbl_805A7BE0: + .incbin "baserom.dol", 0x3F5580, 0x4 +.global lbl_805A7BE4 +lbl_805A7BE4: + .incbin "baserom.dol", 0x3F5584, 0x4 +.global lbl_805A7BE8 +lbl_805A7BE8: + .incbin "baserom.dol", 0x3F5588, 0x8 +.global lbl_805A7BF0 +lbl_805A7BF0: + .incbin "baserom.dol", 0x3F5590, 0x4 +.global lbl_805A7BF4 +lbl_805A7BF4: + .incbin "baserom.dol", 0x3F5594, 0x4 +.global lbl_805A7BF8 +lbl_805A7BF8: + .incbin "baserom.dol", 0x3F5598, 0x4 +.global lbl_805A7BFC +lbl_805A7BFC: + .incbin "baserom.dol", 0x3F559C, 0x4 +.global lbl_805A7C00 +lbl_805A7C00: + .incbin "baserom.dol", 0x3F55A0, 0x4 +.global lbl_805A7C04 +lbl_805A7C04: + .incbin "baserom.dol", 0x3F55A4, 0x4 +.global lbl_805A7C08 +lbl_805A7C08: + .incbin "baserom.dol", 0x3F55A8, 0x4 +.global lbl_805A7C0C +lbl_805A7C0C: + .incbin "baserom.dol", 0x3F55AC, 0x4 +.global lbl_805A7C10 +lbl_805A7C10: + .incbin "baserom.dol", 0x3F55B0, 0x4 +.global lbl_805A7C14 +lbl_805A7C14: + .incbin "baserom.dol", 0x3F55B4, 0x4 +.global lbl_805A7C18 +lbl_805A7C18: + .incbin "baserom.dol", 0x3F55B8, 0x4 +.global lbl_805A7C1C +lbl_805A7C1C: + .incbin "baserom.dol", 0x3F55BC, 0x4 +.global lbl_805A7C20 +lbl_805A7C20: + .incbin "baserom.dol", 0x3F55C0, 0x4 +.global lbl_805A7C24 +lbl_805A7C24: + .incbin "baserom.dol", 0x3F55C4, 0x4 +.global lbl_805A7C28 +lbl_805A7C28: + .incbin "baserom.dol", 0x3F55C8, 0x4 +.global lbl_805A7C2C +lbl_805A7C2C: + .incbin "baserom.dol", 0x3F55CC, 0x4 +.global lbl_805A7C30 +lbl_805A7C30: + .incbin "baserom.dol", 0x3F55D0, 0x8 +.global lbl_805A7C38 +lbl_805A7C38: + .incbin "baserom.dol", 0x3F55D8, 0x4 +.global lbl_805A7C3C +lbl_805A7C3C: + .incbin "baserom.dol", 0x3F55DC, 0x4 +.global lbl_805A7C40 +lbl_805A7C40: + .incbin "baserom.dol", 0x3F55E0, 0x4 +.global lbl_805A7C44 +lbl_805A7C44: + .incbin "baserom.dol", 0x3F55E4, 0x4 +.global lbl_805A7C48 +lbl_805A7C48: + .incbin "baserom.dol", 0x3F55E8, 0x4 +.global lbl_805A7C4C +lbl_805A7C4C: + .incbin "baserom.dol", 0x3F55EC, 0x4 +.global lbl_805A7C50 +lbl_805A7C50: + .incbin "baserom.dol", 0x3F55F0, 0x4 +.global lbl_805A7C54 +lbl_805A7C54: + .incbin "baserom.dol", 0x3F55F4, 0x4 +.global lbl_805A7C58 +lbl_805A7C58: + .incbin "baserom.dol", 0x3F55F8, 0x4 +.global lbl_805A7C5C +lbl_805A7C5C: + .incbin "baserom.dol", 0x3F55FC, 0x4 +.global lbl_805A7C60 +lbl_805A7C60: + .incbin "baserom.dol", 0x3F5600, 0x4 +.global lbl_805A7C64 +lbl_805A7C64: + .incbin "baserom.dol", 0x3F5604, 0x4 +.global lbl_805A7C68 +lbl_805A7C68: + .incbin "baserom.dol", 0x3F5608, 0x4 +.global lbl_805A7C6C +lbl_805A7C6C: + .incbin "baserom.dol", 0x3F560C, 0x4 +.global lbl_805A7C70 +lbl_805A7C70: + .incbin "baserom.dol", 0x3F5610, 0x4 +.global lbl_805A7C74 +lbl_805A7C74: + .incbin "baserom.dol", 0x3F5614, 0x4 +.global lbl_805A7C78 +lbl_805A7C78: + .incbin "baserom.dol", 0x3F5618, 0x4 +.global lbl_805A7C7C +lbl_805A7C7C: + .incbin "baserom.dol", 0x3F561C, 0x4 +.global lbl_805A7C80 +lbl_805A7C80: + .incbin "baserom.dol", 0x3F5620, 0x4 +.global lbl_805A7C84 +lbl_805A7C84: + .incbin "baserom.dol", 0x3F5624, 0x4 +.global lbl_805A7C88 +lbl_805A7C88: + .incbin "baserom.dol", 0x3F5628, 0x4 +.global lbl_805A7C8C +lbl_805A7C8C: + .incbin "baserom.dol", 0x3F562C, 0x4 +.global lbl_805A7C90 +lbl_805A7C90: + .incbin "baserom.dol", 0x3F5630, 0x4 +.global lbl_805A7C94 +lbl_805A7C94: + .incbin "baserom.dol", 0x3F5634, 0x4 +.global lbl_805A7C98 +lbl_805A7C98: + .incbin "baserom.dol", 0x3F5638, 0x4 +.global lbl_805A7C9C +lbl_805A7C9C: + .incbin "baserom.dol", 0x3F563C, 0x4 +.global lbl_805A7CA0 +lbl_805A7CA0: + .incbin "baserom.dol", 0x3F5640, 0x4 +.global lbl_805A7CA4 +lbl_805A7CA4: + .incbin "baserom.dol", 0x3F5644, 0x4 +.global lbl_805A7CA8 +lbl_805A7CA8: + .incbin "baserom.dol", 0x3F5648, 0x4 +.global lbl_805A7CAC +lbl_805A7CAC: + .incbin "baserom.dol", 0x3F564C, 0x4 +.global lbl_805A7CB0 +lbl_805A7CB0: + .incbin "baserom.dol", 0x3F5650, 0x4 +.global lbl_805A7CB4 +lbl_805A7CB4: + .incbin "baserom.dol", 0x3F5654, 0x4 +.global lbl_805A7CB8 +lbl_805A7CB8: + .incbin "baserom.dol", 0x3F5658, 0x8 +.global lbl_805A7CC0 +lbl_805A7CC0: + .incbin "baserom.dol", 0x3F5660, 0x4 +.global lbl_805A7CC4 +lbl_805A7CC4: + .incbin "baserom.dol", 0x3F5664, 0x4 +.global lbl_805A7CC8 +lbl_805A7CC8: + .incbin "baserom.dol", 0x3F5668, 0x4 +.global lbl_805A7CCC +lbl_805A7CCC: + .incbin "baserom.dol", 0x3F566C, 0x4 +.global lbl_805A7CD0 +lbl_805A7CD0: + .incbin "baserom.dol", 0x3F5670, 0x8 +.global lbl_805A7CD8 +lbl_805A7CD8: + .incbin "baserom.dol", 0x3F5678, 0x4 +.global lbl_805A7CDC +lbl_805A7CDC: + .incbin "baserom.dol", 0x3F567C, 0x4 +.global lbl_805A7CE0 +lbl_805A7CE0: + .incbin "baserom.dol", 0x3F5680, 0x8 +.global lbl_805A7CE8 +lbl_805A7CE8: + .incbin "baserom.dol", 0x3F5688, 0x4 +.global lbl_805A7CEC +lbl_805A7CEC: + .incbin "baserom.dol", 0x3F568C, 0x4 +.global lbl_805A7CF0 +lbl_805A7CF0: + .incbin "baserom.dol", 0x3F5690, 0x4 +.global lbl_805A7CF4 +lbl_805A7CF4: + .incbin "baserom.dol", 0x3F5694, 0x4 +.global lbl_805A7CF8 +lbl_805A7CF8: + .incbin "baserom.dol", 0x3F5698, 0x4 +.global lbl_805A7CFC +lbl_805A7CFC: + .incbin "baserom.dol", 0x3F569C, 0x4 +.global lbl_805A7D00 +lbl_805A7D00: + .incbin "baserom.dol", 0x3F56A0, 0x4 +.global lbl_805A7D04 +lbl_805A7D04: + .incbin "baserom.dol", 0x3F56A4, 0x4 +.global lbl_805A7D08 +lbl_805A7D08: + .incbin "baserom.dol", 0x3F56A8, 0x4 +.global lbl_805A7D0C +lbl_805A7D0C: + .incbin "baserom.dol", 0x3F56AC, 0x4 +.global lbl_805A7D10 +lbl_805A7D10: + .incbin "baserom.dol", 0x3F56B0, 0x4 +.global lbl_805A7D14 +lbl_805A7D14: + .incbin "baserom.dol", 0x3F56B4, 0x4 +.global lbl_805A7D18 +lbl_805A7D18: + .incbin "baserom.dol", 0x3F56B8, 0x4 +.global lbl_805A7D1C +lbl_805A7D1C: + .incbin "baserom.dol", 0x3F56BC, 0x4 +.global lbl_805A7D20 +lbl_805A7D20: + .incbin "baserom.dol", 0x3F56C0, 0x4 +.global lbl_805A7D24 +lbl_805A7D24: + .incbin "baserom.dol", 0x3F56C4, 0x4 +.global lbl_805A7D28 +lbl_805A7D28: + .incbin "baserom.dol", 0x3F56C8, 0x4 +.global lbl_805A7D2C +lbl_805A7D2C: + .incbin "baserom.dol", 0x3F56CC, 0x4 +.global lbl_805A7D30 +lbl_805A7D30: + .incbin "baserom.dol", 0x3F56D0, 0x4 +.global lbl_805A7D34 +lbl_805A7D34: + .incbin "baserom.dol", 0x3F56D4, 0x4 +.global lbl_805A7D38 +lbl_805A7D38: + .incbin "baserom.dol", 0x3F56D8, 0x4 +.global lbl_805A7D3C +lbl_805A7D3C: + .incbin "baserom.dol", 0x3F56DC, 0x1 +.global lbl_805A7D3D +lbl_805A7D3D: + .incbin "baserom.dol", 0x3F56DD, 0x3 +.global lbl_805A7D40 +lbl_805A7D40: + .incbin "baserom.dol", 0x3F56E0, 0x4 +.global lbl_805A7D44 +lbl_805A7D44: + .incbin "baserom.dol", 0x3F56E4, 0x4 +.global lbl_805A7D48 +lbl_805A7D48: + .incbin "baserom.dol", 0x3F56E8, 0x4 +.global lbl_805A7D4C +lbl_805A7D4C: + .incbin "baserom.dol", 0x3F56EC, 0x4 +.global lbl_805A7D50 +lbl_805A7D50: + .incbin "baserom.dol", 0x3F56F0, 0x4 +.global lbl_805A7D54 +lbl_805A7D54: + .incbin "baserom.dol", 0x3F56F4, 0x4 +.global lbl_805A7D58 +lbl_805A7D58: + .incbin "baserom.dol", 0x3F56F8, 0x1 +.global lbl_805A7D59 +lbl_805A7D59: + .incbin "baserom.dol", 0x3F56F9, 0x1 +.global lbl_805A7D5A +lbl_805A7D5A: + .incbin "baserom.dol", 0x3F56FA, 0x1 +.global lbl_805A7D5B +lbl_805A7D5B: + .incbin "baserom.dol", 0x3F56FB, 0x1 +.global lbl_805A7D5C +lbl_805A7D5C: + .incbin "baserom.dol", 0x3F56FC, 0x4 +.global lbl_805A7D60 +lbl_805A7D60: + .incbin "baserom.dol", 0x3F5700, 0x4 +.global lbl_805A7D64 +lbl_805A7D64: + .incbin "baserom.dol", 0x3F5704, 0x4 +.global lbl_805A7D68 +lbl_805A7D68: + .incbin "baserom.dol", 0x3F5708, 0x4 +.global lbl_805A7D6C +lbl_805A7D6C: + .incbin "baserom.dol", 0x3F570C, 0x1 +.global lbl_805A7D6D +lbl_805A7D6D: + .incbin "baserom.dol", 0x3F570D, 0x1 +.global lbl_805A7D6E +lbl_805A7D6E: + .incbin "baserom.dol", 0x3F570E, 0x2 +.global lbl_805A7D70 +lbl_805A7D70: + .incbin "baserom.dol", 0x3F5710, 0x8 +.global lbl_805A7D78 +lbl_805A7D78: + .incbin "baserom.dol", 0x3F5718, 0x8 +.global lbl_805A7D80 +lbl_805A7D80: + .incbin "baserom.dol", 0x3F5720, 0x8 +.global lbl_805A7D88 +lbl_805A7D88: + .incbin "baserom.dol", 0x3F5728, 0x4 +.global lbl_805A7D8C +lbl_805A7D8C: + .incbin "baserom.dol", 0x3F572C, 0x4 +.global lbl_805A7D90 +lbl_805A7D90: + .incbin "baserom.dol", 0x3F5730, 0x8 +.global lbl_805A7D98 +lbl_805A7D98: + .incbin "baserom.dol", 0x3F5738, 0x4 +.global lbl_805A7D9C +lbl_805A7D9C: + .incbin "baserom.dol", 0x3F573C, 0x4 +.global lbl_805A7DA0 +lbl_805A7DA0: + .incbin "baserom.dol", 0x3F5740, 0x4 +.global lbl_805A7DA4 +lbl_805A7DA4: + .incbin "baserom.dol", 0x3F5744, 0x4 +.global lbl_805A7DA8 +lbl_805A7DA8: + .incbin "baserom.dol", 0x3F5748, 0x4 +.global lbl_805A7DAC +lbl_805A7DAC: + .incbin "baserom.dol", 0x3F574C, 0x4 +.global lbl_805A7DB0 +lbl_805A7DB0: + .incbin "baserom.dol", 0x3F5750, 0x4 +.global lbl_805A7DB4 +lbl_805A7DB4: + .incbin "baserom.dol", 0x3F5754, 0x4 +.global lbl_805A7DB8 +lbl_805A7DB8: + .incbin "baserom.dol", 0x3F5758, 0x4 +.global lbl_805A7DBC +lbl_805A7DBC: + .incbin "baserom.dol", 0x3F575C, 0x4 +.global lbl_805A7DC0 +lbl_805A7DC0: + .incbin "baserom.dol", 0x3F5760, 0x4 +.global lbl_805A7DC4 +lbl_805A7DC4: + .incbin "baserom.dol", 0x3F5764, 0x4 +.global lbl_805A7DC8 +lbl_805A7DC8: + .incbin "baserom.dol", 0x3F5768, 0x4 +.global lbl_805A7DCC +lbl_805A7DCC: + .incbin "baserom.dol", 0x3F576C, 0x4 +.global lbl_805A7DD0 +lbl_805A7DD0: + .incbin "baserom.dol", 0x3F5770, 0x4 +.global lbl_805A7DD4 +lbl_805A7DD4: + .incbin "baserom.dol", 0x3F5774, 0x4 +.global lbl_805A7DD8 +lbl_805A7DD8: + .incbin "baserom.dol", 0x3F5778, 0x4 +.global lbl_805A7DDC +lbl_805A7DDC: + .incbin "baserom.dol", 0x3F577C, 0x4 +.global lbl_805A7DE0 +lbl_805A7DE0: + .incbin "baserom.dol", 0x3F5780, 0x4 +.global lbl_805A7DE4 +lbl_805A7DE4: + .incbin "baserom.dol", 0x3F5784, 0x4 +.global lbl_805A7DE8 +lbl_805A7DE8: + .incbin "baserom.dol", 0x3F5788, 0x4 +.global lbl_805A7DEC +lbl_805A7DEC: + .incbin "baserom.dol", 0x3F578C, 0x4 +.global lbl_805A7DF0 +lbl_805A7DF0: + .incbin "baserom.dol", 0x3F5790, 0x4 +.global lbl_805A7DF4 +lbl_805A7DF4: + .incbin "baserom.dol", 0x3F5794, 0x4 +.global lbl_805A7DF8 +lbl_805A7DF8: + .incbin "baserom.dol", 0x3F5798, 0x4 +.global lbl_805A7DFC +lbl_805A7DFC: + .incbin "baserom.dol", 0x3F579C, 0x4 +.global lbl_805A7E00 +lbl_805A7E00: + .incbin "baserom.dol", 0x3F57A0, 0x4 +.global lbl_805A7E04 +lbl_805A7E04: + .incbin "baserom.dol", 0x3F57A4, 0x4 +.global lbl_805A7E08 +lbl_805A7E08: + .incbin "baserom.dol", 0x3F57A8, 0x4 +.global lbl_805A7E0C +lbl_805A7E0C: + .incbin "baserom.dol", 0x3F57AC, 0x4 +.global lbl_805A7E10 +lbl_805A7E10: + .incbin "baserom.dol", 0x3F57B0, 0x4 +.global lbl_805A7E14 +lbl_805A7E14: + .incbin "baserom.dol", 0x3F57B4, 0x4 +.global lbl_805A7E18 +lbl_805A7E18: + .incbin "baserom.dol", 0x3F57B8, 0x4 +.global lbl_805A7E1C +lbl_805A7E1C: + .incbin "baserom.dol", 0x3F57BC, 0x4 +.global lbl_805A7E20 +lbl_805A7E20: + .incbin "baserom.dol", 0x3F57C0, 0x8 +.global lbl_805A7E28 +lbl_805A7E28: + .incbin "baserom.dol", 0x3F57C8, 0x8 +.global lbl_805A7E30 +lbl_805A7E30: + .incbin "baserom.dol", 0x3F57D0, 0x4 +.global lbl_805A7E34 +lbl_805A7E34: + .incbin "baserom.dol", 0x3F57D4, 0x4 +.global lbl_805A7E38 +lbl_805A7E38: + .incbin "baserom.dol", 0x3F57D8, 0x4 +.global lbl_805A7E3C +lbl_805A7E3C: + .incbin "baserom.dol", 0x3F57DC, 0x4 +.global lbl_805A7E40 +lbl_805A7E40: + .incbin "baserom.dol", 0x3F57E0, 0x4 +.global lbl_805A7E44 +lbl_805A7E44: + .incbin "baserom.dol", 0x3F57E4, 0x4 +.global lbl_805A7E48 +lbl_805A7E48: + .incbin "baserom.dol", 0x3F57E8, 0x4 +.global lbl_805A7E4C +lbl_805A7E4C: + .incbin "baserom.dol", 0x3F57EC, 0x4 +.global lbl_805A7E50 +lbl_805A7E50: + .incbin "baserom.dol", 0x3F57F0, 0x4 +.global lbl_805A7E54 +lbl_805A7E54: + .incbin "baserom.dol", 0x3F57F4, 0x4 +.global lbl_805A7E58 +lbl_805A7E58: + .incbin "baserom.dol", 0x3F57F8, 0x4 +.global lbl_805A7E5C +lbl_805A7E5C: + .incbin "baserom.dol", 0x3F57FC, 0x4 +.global lbl_805A7E60 +lbl_805A7E60: + .incbin "baserom.dol", 0x3F5800, 0x4 +.global lbl_805A7E64 +lbl_805A7E64: + .incbin "baserom.dol", 0x3F5804, 0x4 +.global lbl_805A7E68 +lbl_805A7E68: + .incbin "baserom.dol", 0x3F5808, 0x4 +.global lbl_805A7E6C +lbl_805A7E6C: + .incbin "baserom.dol", 0x3F580C, 0x4 +.global lbl_805A7E70 +lbl_805A7E70: + .incbin "baserom.dol", 0x3F5810, 0x4 +.global lbl_805A7E74 +lbl_805A7E74: + .incbin "baserom.dol", 0x3F5814, 0x4 +.global lbl_805A7E78 +lbl_805A7E78: + .incbin "baserom.dol", 0x3F5818, 0x8 +.global lbl_805A7E80 +lbl_805A7E80: + .incbin "baserom.dol", 0x3F5820, 0x4 +.global lbl_805A7E84 +lbl_805A7E84: + .incbin "baserom.dol", 0x3F5824, 0x4 +.global lbl_805A7E88 +lbl_805A7E88: + .incbin "baserom.dol", 0x3F5828, 0x8 +.global lbl_805A7E90 +lbl_805A7E90: + .incbin "baserom.dol", 0x3F5830, 0x4 +.global lbl_805A7E94 +lbl_805A7E94: + .incbin "baserom.dol", 0x3F5834, 0x4 +.global lbl_805A7E98 +lbl_805A7E98: + .incbin "baserom.dol", 0x3F5838, 0x4 +.global lbl_805A7E9C +lbl_805A7E9C: + .incbin "baserom.dol", 0x3F583C, 0x4 +.global lbl_805A7EA0 +lbl_805A7EA0: + .incbin "baserom.dol", 0x3F5840, 0x4 +.global lbl_805A7EA4 +lbl_805A7EA4: + .incbin "baserom.dol", 0x3F5844, 0x4 +.global lbl_805A7EA8 +lbl_805A7EA8: + .incbin "baserom.dol", 0x3F5848, 0x4 +.global lbl_805A7EAC +lbl_805A7EAC: + .incbin "baserom.dol", 0x3F584C, 0x4 +.global lbl_805A7EB0 +lbl_805A7EB0: + .incbin "baserom.dol", 0x3F5850, 0x4 +.global lbl_805A7EB4 +lbl_805A7EB4: + .incbin "baserom.dol", 0x3F5854, 0x4 +.global lbl_805A7EB8 +lbl_805A7EB8: + .incbin "baserom.dol", 0x3F5858, 0x4 +.global lbl_805A7EBC +lbl_805A7EBC: + .incbin "baserom.dol", 0x3F585C, 0x4 +.global lbl_805A7EC0 +lbl_805A7EC0: + .incbin "baserom.dol", 0x3F5860, 0x4 +.global lbl_805A7EC4 +lbl_805A7EC4: + .incbin "baserom.dol", 0x3F5864, 0x4 +.global lbl_805A7EC8 +lbl_805A7EC8: + .incbin "baserom.dol", 0x3F5868, 0x4 +.global lbl_805A7ECC +lbl_805A7ECC: + .incbin "baserom.dol", 0x3F586C, 0x4 +.global lbl_805A7ED0 +lbl_805A7ED0: + .incbin "baserom.dol", 0x3F5870, 0x4 +.global lbl_805A7ED4 +lbl_805A7ED4: + .incbin "baserom.dol", 0x3F5874, 0x4 +.global lbl_805A7ED8 +lbl_805A7ED8: + .incbin "baserom.dol", 0x3F5878, 0x4 +.global lbl_805A7EDC +lbl_805A7EDC: + .incbin "baserom.dol", 0x3F587C, 0x4 +.global lbl_805A7EE0 +lbl_805A7EE0: + .incbin "baserom.dol", 0x3F5880, 0x4 +.global lbl_805A7EE4 +lbl_805A7EE4: + .incbin "baserom.dol", 0x3F5884, 0x4 +.global lbl_805A7EE8 +lbl_805A7EE8: + .incbin "baserom.dol", 0x3F5888, 0x4 +.global lbl_805A7EEC +lbl_805A7EEC: + .incbin "baserom.dol", 0x3F588C, 0x4 +.global lbl_805A7EF0 +lbl_805A7EF0: + .incbin "baserom.dol", 0x3F5890, 0x4 +.global lbl_805A7EF4 +lbl_805A7EF4: + .incbin "baserom.dol", 0x3F5894, 0x4 +.global lbl_805A7EF8 +lbl_805A7EF8: + .incbin "baserom.dol", 0x3F5898, 0x8 +.global lbl_805A7F00 +lbl_805A7F00: + .incbin "baserom.dol", 0x3F58A0, 0x4 +.global lbl_805A7F04 +lbl_805A7F04: + .incbin "baserom.dol", 0x3F58A4, 0x4 +.global lbl_805A7F08 +lbl_805A7F08: + .incbin "baserom.dol", 0x3F58A8, 0x8 +.global lbl_805A7F10 +lbl_805A7F10: + .incbin "baserom.dol", 0x3F58B0, 0x4 +.global lbl_805A7F14 +lbl_805A7F14: + .incbin "baserom.dol", 0x3F58B4, 0x4 +.global lbl_805A7F18 +lbl_805A7F18: + .incbin "baserom.dol", 0x3F58B8, 0x4 +.global lbl_805A7F1C +lbl_805A7F1C: + .incbin "baserom.dol", 0x3F58BC, 0x4 +.global lbl_805A7F20 +lbl_805A7F20: + .incbin "baserom.dol", 0x3F58C0, 0x4 +.global lbl_805A7F24 +lbl_805A7F24: + .incbin "baserom.dol", 0x3F58C4, 0x4 +.global lbl_805A7F28 +lbl_805A7F28: + .incbin "baserom.dol", 0x3F58C8, 0x4 +.global lbl_805A7F2C +lbl_805A7F2C: + .incbin "baserom.dol", 0x3F58CC, 0x4 +.global lbl_805A7F30 +lbl_805A7F30: + .incbin "baserom.dol", 0x3F58D0, 0x4 +.global lbl_805A7F34 +lbl_805A7F34: + .incbin "baserom.dol", 0x3F58D4, 0x4 +.global lbl_805A7F38 +lbl_805A7F38: + .incbin "baserom.dol", 0x3F58D8, 0x4 +.global lbl_805A7F3C +lbl_805A7F3C: + .incbin "baserom.dol", 0x3F58DC, 0x4 +.global lbl_805A7F40 +lbl_805A7F40: + .incbin "baserom.dol", 0x3F58E0, 0x4 +.global lbl_805A7F44 +lbl_805A7F44: + .incbin "baserom.dol", 0x3F58E4, 0x4 +.global lbl_805A7F48 +lbl_805A7F48: + .incbin "baserom.dol", 0x3F58E8, 0x8 +.global lbl_805A7F50 +lbl_805A7F50: + .incbin "baserom.dol", 0x3F58F0, 0x4 +.global lbl_805A7F54 +lbl_805A7F54: + .incbin "baserom.dol", 0x3F58F4, 0x4 +.global lbl_805A7F58 +lbl_805A7F58: + .incbin "baserom.dol", 0x3F58F8, 0x4 +.global lbl_805A7F5C +lbl_805A7F5C: + .incbin "baserom.dol", 0x3F58FC, 0x4 +.global lbl_805A7F60 +lbl_805A7F60: + .incbin "baserom.dol", 0x3F5900, 0x4 +.global lbl_805A7F64 +lbl_805A7F64: + .incbin "baserom.dol", 0x3F5904, 0x4 +.global lbl_805A7F68 +lbl_805A7F68: + .incbin "baserom.dol", 0x3F5908, 0x4 +.global lbl_805A7F6C +lbl_805A7F6C: + .incbin "baserom.dol", 0x3F590C, 0x4 +.global lbl_805A7F70 +lbl_805A7F70: + .incbin "baserom.dol", 0x3F5910, 0x4 +.global lbl_805A7F74 +lbl_805A7F74: + .incbin "baserom.dol", 0x3F5914, 0x4 +.global lbl_805A7F78 +lbl_805A7F78: + .incbin "baserom.dol", 0x3F5918, 0x4 +.global lbl_805A7F7C +lbl_805A7F7C: + .incbin "baserom.dol", 0x3F591C, 0x4 +.global lbl_805A7F80 +lbl_805A7F80: + .incbin "baserom.dol", 0x3F5920, 0x8 +.global lbl_805A7F88 +lbl_805A7F88: + .incbin "baserom.dol", 0x3F5928, 0x4 +.global lbl_805A7F8C +lbl_805A7F8C: + .incbin "baserom.dol", 0x3F592C, 0x4 +.global lbl_805A7F90 +lbl_805A7F90: + .incbin "baserom.dol", 0x3F5930, 0x4 +.global lbl_805A7F94 +lbl_805A7F94: + .incbin "baserom.dol", 0x3F5934, 0x4 +.global lbl_805A7F98 +lbl_805A7F98: + .incbin "baserom.dol", 0x3F5938, 0x4 +.global lbl_805A7F9C +lbl_805A7F9C: + .incbin "baserom.dol", 0x3F593C, 0x4 +.global lbl_805A7FA0 +lbl_805A7FA0: + .incbin "baserom.dol", 0x3F5940, 0x4 +.global lbl_805A7FA4 +lbl_805A7FA4: + .incbin "baserom.dol", 0x3F5944, 0x4 +.global lbl_805A7FA8 +lbl_805A7FA8: + .incbin "baserom.dol", 0x3F5948, 0x4 +.global lbl_805A7FAC +lbl_805A7FAC: + .incbin "baserom.dol", 0x3F594C, 0x4 +.global lbl_805A7FB0 +lbl_805A7FB0: + .incbin "baserom.dol", 0x3F5950, 0x8 +.global lbl_805A7FB8 +lbl_805A7FB8: + .incbin "baserom.dol", 0x3F5958, 0x4 +.global lbl_805A7FBC +lbl_805A7FBC: + .incbin "baserom.dol", 0x3F595C, 0x4 +.global lbl_805A7FC0 +lbl_805A7FC0: + .incbin "baserom.dol", 0x3F5960, 0x4 +.global lbl_805A7FC4 +lbl_805A7FC4: + .incbin "baserom.dol", 0x3F5964, 0x4 +.global lbl_805A7FC8 +lbl_805A7FC8: + .incbin "baserom.dol", 0x3F5968, 0x4 +.global lbl_805A7FCC +lbl_805A7FCC: + .incbin "baserom.dol", 0x3F596C, 0x4 +.global lbl_805A7FD0 +lbl_805A7FD0: + .incbin "baserom.dol", 0x3F5970, 0x4 +.global lbl_805A7FD4 +lbl_805A7FD4: + .incbin "baserom.dol", 0x3F5974, 0x4 +.global lbl_805A7FD8 +lbl_805A7FD8: + .incbin "baserom.dol", 0x3F5978, 0x8 +.global lbl_805A7FE0 +lbl_805A7FE0: + .incbin "baserom.dol", 0x3F5980, 0x1 +.global lbl_805A7FE1 +lbl_805A7FE1: + .incbin "baserom.dol", 0x3F5981, 0x3 +.global lbl_805A7FE4 +lbl_805A7FE4: + .incbin "baserom.dol", 0x3F5984, 0x4 +.global lbl_805A7FE8 +lbl_805A7FE8: + .incbin "baserom.dol", 0x3F5988, 0x4 +.global lbl_805A7FEC +lbl_805A7FEC: + .incbin "baserom.dol", 0x3F598C, 0x4 +.global lbl_805A7FF0 +lbl_805A7FF0: + .incbin "baserom.dol", 0x3F5990, 0x4 +.global lbl_805A7FF4 +lbl_805A7FF4: + .incbin "baserom.dol", 0x3F5994, 0x4 +.global lbl_805A7FF8 +lbl_805A7FF8: + .incbin "baserom.dol", 0x3F5998, 0x4 +.global lbl_805A7FFC +lbl_805A7FFC: + .incbin "baserom.dol", 0x3F599C, 0x4 +.global lbl_805A8000 +lbl_805A8000: + .incbin "baserom.dol", 0x3F59A0, 0x4 +.global lbl_805A8004 +lbl_805A8004: + .incbin "baserom.dol", 0x3F59A4, 0x4 +.global lbl_805A8008 +lbl_805A8008: + .incbin "baserom.dol", 0x3F59A8, 0x4 +.global lbl_805A800C +lbl_805A800C: + .incbin "baserom.dol", 0x3F59AC, 0x4 +.global lbl_805A8010 +lbl_805A8010: + .incbin "baserom.dol", 0x3F59B0, 0x4 +.global lbl_805A8014 +lbl_805A8014: + .incbin "baserom.dol", 0x3F59B4, 0x4 +.global lbl_805A8018 +lbl_805A8018: + .incbin "baserom.dol", 0x3F59B8, 0x4 +.global lbl_805A801C +lbl_805A801C: + .incbin "baserom.dol", 0x3F59BC, 0x4 +.global lbl_805A8020 +lbl_805A8020: + .incbin "baserom.dol", 0x3F59C0, 0x4 +.global lbl_805A8024 +lbl_805A8024: + .incbin "baserom.dol", 0x3F59C4, 0x4 +.global lbl_805A8028 +lbl_805A8028: + .incbin "baserom.dol", 0x3F59C8, 0x4 +.global lbl_805A802C +lbl_805A802C: + .incbin "baserom.dol", 0x3F59CC, 0x4 +.global lbl_805A8030 +lbl_805A8030: + .incbin "baserom.dol", 0x3F59D0, 0x4 +.global lbl_805A8034 +lbl_805A8034: + .incbin "baserom.dol", 0x3F59D4, 0x4 +.global lbl_805A8038 +lbl_805A8038: + .incbin "baserom.dol", 0x3F59D8, 0x4 +.global lbl_805A803C +lbl_805A803C: + .incbin "baserom.dol", 0x3F59DC, 0x4 +.global lbl_805A8040 +lbl_805A8040: + .incbin "baserom.dol", 0x3F59E0, 0x4 +.global lbl_805A8044 +lbl_805A8044: + .incbin "baserom.dol", 0x3F59E4, 0x4 +.global lbl_805A8048 +lbl_805A8048: + .incbin "baserom.dol", 0x3F59E8, 0x4 +.global lbl_805A804C +lbl_805A804C: + .incbin "baserom.dol", 0x3F59EC, 0x4 +.global lbl_805A8050 +lbl_805A8050: + .incbin "baserom.dol", 0x3F59F0, 0x4 +.global lbl_805A8054 +lbl_805A8054: + .incbin "baserom.dol", 0x3F59F4, 0x4 +.global lbl_805A8058 +lbl_805A8058: + .incbin "baserom.dol", 0x3F59F8, 0x4 +.global lbl_805A805C +lbl_805A805C: + .incbin "baserom.dol", 0x3F59FC, 0x4 +.global lbl_805A8060 +lbl_805A8060: + .incbin "baserom.dol", 0x3F5A00, 0x4 +.global lbl_805A8064 +lbl_805A8064: + .incbin "baserom.dol", 0x3F5A04, 0x4 +.global lbl_805A8068 +lbl_805A8068: + .incbin "baserom.dol", 0x3F5A08, 0x8 +.global lbl_805A8070 +lbl_805A8070: + .incbin "baserom.dol", 0x3F5A10, 0x8 +.global lbl_805A8078 +lbl_805A8078: + .incbin "baserom.dol", 0x3F5A18, 0x4 +.global lbl_805A807C +lbl_805A807C: + .incbin "baserom.dol", 0x3F5A1C, 0x4 +.global lbl_805A8080 +lbl_805A8080: + .incbin "baserom.dol", 0x3F5A20, 0x4 +.global lbl_805A8084 +lbl_805A8084: + .incbin "baserom.dol", 0x3F5A24, 0x4 +.global lbl_805A8088 +lbl_805A8088: + .incbin "baserom.dol", 0x3F5A28, 0x4 +.global lbl_805A808C +lbl_805A808C: + .incbin "baserom.dol", 0x3F5A2C, 0x4 +.global lbl_805A8090 +lbl_805A8090: + .incbin "baserom.dol", 0x3F5A30, 0x4 +.global lbl_805A8094 +lbl_805A8094: + .incbin "baserom.dol", 0x3F5A34, 0x4 +.global lbl_805A8098 +lbl_805A8098: + .incbin "baserom.dol", 0x3F5A38, 0x4 +.global lbl_805A809C +lbl_805A809C: + .incbin "baserom.dol", 0x3F5A3C, 0x4 +.global lbl_805A80A0 +lbl_805A80A0: + .incbin "baserom.dol", 0x3F5A40, 0x4 +.global lbl_805A80A4 +lbl_805A80A4: + .incbin "baserom.dol", 0x3F5A44, 0x4 +.global lbl_805A80A8 +lbl_805A80A8: + .incbin "baserom.dol", 0x3F5A48, 0x4 +.global lbl_805A80AC +lbl_805A80AC: + .incbin "baserom.dol", 0x3F5A4C, 0x4 +.global lbl_805A80B0 +lbl_805A80B0: + .incbin "baserom.dol", 0x3F5A50, 0x4 +.global lbl_805A80B4 +lbl_805A80B4: + .incbin "baserom.dol", 0x3F5A54, 0x4 +.global lbl_805A80B8 +lbl_805A80B8: + .incbin "baserom.dol", 0x3F5A58, 0x4 +.global lbl_805A80BC +lbl_805A80BC: + .incbin "baserom.dol", 0x3F5A5C, 0x4 +.global lbl_805A80C0 +lbl_805A80C0: + .incbin "baserom.dol", 0x3F5A60, 0x4 +.global lbl_805A80C4 +lbl_805A80C4: + .incbin "baserom.dol", 0x3F5A64, 0x4 +.global lbl_805A80C8 +lbl_805A80C8: + .incbin "baserom.dol", 0x3F5A68, 0x4 +.global lbl_805A80CC +lbl_805A80CC: + .incbin "baserom.dol", 0x3F5A6C, 0x4 +.global lbl_805A80D0 +lbl_805A80D0: + .incbin "baserom.dol", 0x3F5A70, 0x4 +.global lbl_805A80D4 +lbl_805A80D4: + .incbin "baserom.dol", 0x3F5A74, 0x4 +.global lbl_805A80D8 +lbl_805A80D8: + .incbin "baserom.dol", 0x3F5A78, 0x4 +.global lbl_805A80DC +lbl_805A80DC: + .incbin "baserom.dol", 0x3F5A7C, 0x4 +.global lbl_805A80E0 +lbl_805A80E0: + .incbin "baserom.dol", 0x3F5A80, 0x4 +.global lbl_805A80E4 +lbl_805A80E4: + .incbin "baserom.dol", 0x3F5A84, 0x4 +.global lbl_805A80E8 +lbl_805A80E8: + .incbin "baserom.dol", 0x3F5A88, 0x4 +.global lbl_805A80EC +lbl_805A80EC: + .incbin "baserom.dol", 0x3F5A8C, 0x4 +.global lbl_805A80F0 +lbl_805A80F0: + .incbin "baserom.dol", 0x3F5A90, 0x8 +.global lbl_805A80F8 +lbl_805A80F8: + .incbin "baserom.dol", 0x3F5A98, 0x8 +.global lbl_805A8100 +lbl_805A8100: + .incbin "baserom.dol", 0x3F5AA0, 0x4 +.global lbl_805A8104 +lbl_805A8104: + .incbin "baserom.dol", 0x3F5AA4, 0x4 +.global lbl_805A8108 +lbl_805A8108: + .incbin "baserom.dol", 0x3F5AA8, 0x4 +.global lbl_805A810C +lbl_805A810C: + .incbin "baserom.dol", 0x3F5AAC, 0x4 +.global lbl_805A8110 +lbl_805A8110: + .incbin "baserom.dol", 0x3F5AB0, 0x4 +.global lbl_805A8114 +lbl_805A8114: + .incbin "baserom.dol", 0x3F5AB4, 0x4 +.global lbl_805A8118 +lbl_805A8118: + .incbin "baserom.dol", 0x3F5AB8, 0x4 +.global lbl_805A811C +lbl_805A811C: + .incbin "baserom.dol", 0x3F5ABC, 0x4 +.global lbl_805A8120 +lbl_805A8120: + .incbin "baserom.dol", 0x3F5AC0, 0x8 +.global lbl_805A8128 +lbl_805A8128: + .incbin "baserom.dol", 0x3F5AC8, 0x4 +.global lbl_805A812C +lbl_805A812C: + .incbin "baserom.dol", 0x3F5ACC, 0x4 +.global lbl_805A8130 +lbl_805A8130: + .incbin "baserom.dol", 0x3F5AD0, 0x4 +.global lbl_805A8134 +lbl_805A8134: + .incbin "baserom.dol", 0x3F5AD4, 0x4 +.global lbl_805A8138 +lbl_805A8138: + .incbin "baserom.dol", 0x3F5AD8, 0x4 +.global lbl_805A813C +lbl_805A813C: + .incbin "baserom.dol", 0x3F5ADC, 0x4 +.global lbl_805A8140 +lbl_805A8140: + .incbin "baserom.dol", 0x3F5AE0, 0x4 +.global lbl_805A8144 +lbl_805A8144: + .incbin "baserom.dol", 0x3F5AE4, 0x4 +.global lbl_805A8148 +lbl_805A8148: + .incbin "baserom.dol", 0x3F5AE8, 0x4 +.global lbl_805A814C +lbl_805A814C: + .incbin "baserom.dol", 0x3F5AEC, 0x4 +.global lbl_805A8150 +lbl_805A8150: + .incbin "baserom.dol", 0x3F5AF0, 0x4 +.global lbl_805A8154 +lbl_805A8154: + .incbin "baserom.dol", 0x3F5AF4, 0x4 +.global lbl_805A8158 +lbl_805A8158: + .incbin "baserom.dol", 0x3F5AF8, 0x4 +.global lbl_805A815C +lbl_805A815C: + .incbin "baserom.dol", 0x3F5AFC, 0x4 +.global lbl_805A8160 +lbl_805A8160: + .incbin "baserom.dol", 0x3F5B00, 0x4 +.global lbl_805A8164 +lbl_805A8164: + .incbin "baserom.dol", 0x3F5B04, 0x4 +.global lbl_805A8168 +lbl_805A8168: + .incbin "baserom.dol", 0x3F5B08, 0x4 +.global lbl_805A816C +lbl_805A816C: + .incbin "baserom.dol", 0x3F5B0C, 0x4 +.global lbl_805A8170 +lbl_805A8170: + .incbin "baserom.dol", 0x3F5B10, 0x4 +.global lbl_805A8174 +lbl_805A8174: + .incbin "baserom.dol", 0x3F5B14, 0x4 +.global lbl_805A8178 +lbl_805A8178: + .incbin "baserom.dol", 0x3F5B18, 0x4 +.global lbl_805A817C +lbl_805A817C: + .incbin "baserom.dol", 0x3F5B1C, 0x4 +.global lbl_805A8180 +lbl_805A8180: + .incbin "baserom.dol", 0x3F5B20, 0x4 +.global lbl_805A8184 +lbl_805A8184: + .incbin "baserom.dol", 0x3F5B24, 0x4 +.global lbl_805A8188 +lbl_805A8188: + .incbin "baserom.dol", 0x3F5B28, 0x4 +.global lbl_805A818C +lbl_805A818C: + .incbin "baserom.dol", 0x3F5B2C, 0x4 +.global lbl_805A8190 +lbl_805A8190: + .incbin "baserom.dol", 0x3F5B30, 0x4 +.global lbl_805A8194 +lbl_805A8194: + .incbin "baserom.dol", 0x3F5B34, 0x4 +.global lbl_805A8198 +lbl_805A8198: + .incbin "baserom.dol", 0x3F5B38, 0x4 +.global lbl_805A819C +lbl_805A819C: + .incbin "baserom.dol", 0x3F5B3C, 0x4 +.global lbl_805A81A0 +lbl_805A81A0: + .incbin "baserom.dol", 0x3F5B40, 0x8 +.global lbl_805A81A8 +lbl_805A81A8: + .incbin "baserom.dol", 0x3F5B48, 0x4 +.global lbl_805A81AC +lbl_805A81AC: + .incbin "baserom.dol", 0x3F5B4C, 0x4 +.global lbl_805A81B0 +lbl_805A81B0: + .incbin "baserom.dol", 0x3F5B50, 0x4 +.global lbl_805A81B4 +lbl_805A81B4: + .incbin "baserom.dol", 0x3F5B54, 0x4 +.global lbl_805A81B8 +lbl_805A81B8: + .incbin "baserom.dol", 0x3F5B58, 0x4 +.global lbl_805A81BC +lbl_805A81BC: + .incbin "baserom.dol", 0x3F5B5C, 0x4 +.global lbl_805A81C0 +lbl_805A81C0: + .incbin "baserom.dol", 0x3F5B60, 0x4 +.global lbl_805A81C4 +lbl_805A81C4: + .incbin "baserom.dol", 0x3F5B64, 0x4 +.global lbl_805A81C8 +lbl_805A81C8: + .incbin "baserom.dol", 0x3F5B68, 0x4 +.global lbl_805A81CC +lbl_805A81CC: + .incbin "baserom.dol", 0x3F5B6C, 0x4 +.global lbl_805A81D0 +lbl_805A81D0: + .incbin "baserom.dol", 0x3F5B70, 0x4 +.global lbl_805A81D4 +lbl_805A81D4: + .incbin "baserom.dol", 0x3F5B74, 0x4 +.global lbl_805A81D8 +lbl_805A81D8: + .incbin "baserom.dol", 0x3F5B78, 0x4 +.global lbl_805A81DC +lbl_805A81DC: + .incbin "baserom.dol", 0x3F5B7C, 0x4 +.global lbl_805A81E0 +lbl_805A81E0: + .incbin "baserom.dol", 0x3F5B80, 0x8 +.global lbl_805A81E8 +lbl_805A81E8: + .incbin "baserom.dol", 0x3F5B88, 0x4 +.global lbl_805A81EC +lbl_805A81EC: + .incbin "baserom.dol", 0x3F5B8C, 0x4 +.global lbl_805A81F0 +lbl_805A81F0: + .incbin "baserom.dol", 0x3F5B90, 0x8 +.global lbl_805A81F8 +lbl_805A81F8: + .incbin "baserom.dol", 0x3F5B98, 0x4 +.global lbl_805A81FC +lbl_805A81FC: + .incbin "baserom.dol", 0x3F5B9C, 0x4 +.global lbl_805A8200 +lbl_805A8200: + .incbin "baserom.dol", 0x3F5BA0, 0x8 +.global lbl_805A8208 +lbl_805A8208: + .incbin "baserom.dol", 0x3F5BA8, 0x4 +.global lbl_805A820C +lbl_805A820C: + .incbin "baserom.dol", 0x3F5BAC, 0x4 +.global lbl_805A8210 +lbl_805A8210: + .incbin "baserom.dol", 0x3F5BB0, 0x4 +.global lbl_805A8214 +lbl_805A8214: + .incbin "baserom.dol", 0x3F5BB4, 0x4 +.global lbl_805A8218 +lbl_805A8218: + .incbin "baserom.dol", 0x3F5BB8, 0x4 +.global lbl_805A821C +lbl_805A821C: + .incbin "baserom.dol", 0x3F5BBC, 0x4 +.global lbl_805A8220 +lbl_805A8220: + .incbin "baserom.dol", 0x3F5BC0, 0x4 +.global lbl_805A8224 +lbl_805A8224: + .incbin "baserom.dol", 0x3F5BC4, 0x4 +.global lbl_805A8228 +lbl_805A8228: + .incbin "baserom.dol", 0x3F5BC8, 0x4 +.global lbl_805A822C +lbl_805A822C: + .incbin "baserom.dol", 0x3F5BCC, 0x4 +.global lbl_805A8230 +lbl_805A8230: + .incbin "baserom.dol", 0x3F5BD0, 0x4 +.global lbl_805A8234 +lbl_805A8234: + .incbin "baserom.dol", 0x3F5BD4, 0x4 +.global lbl_805A8238 +lbl_805A8238: + .incbin "baserom.dol", 0x3F5BD8, 0x4 +.global lbl_805A823C +lbl_805A823C: + .incbin "baserom.dol", 0x3F5BDC, 0x4 +.global lbl_805A8240 +lbl_805A8240: + .incbin "baserom.dol", 0x3F5BE0, 0x4 +.global lbl_805A8244 +lbl_805A8244: + .incbin "baserom.dol", 0x3F5BE4, 0x4 +.global lbl_805A8248 +lbl_805A8248: + .incbin "baserom.dol", 0x3F5BE8, 0x4 +.global lbl_805A824C +lbl_805A824C: + .incbin "baserom.dol", 0x3F5BEC, 0x4 +.global lbl_805A8250 +lbl_805A8250: + .incbin "baserom.dol", 0x3F5BF0, 0x4 +.global lbl_805A8254 +lbl_805A8254: + .incbin "baserom.dol", 0x3F5BF4, 0x4 +.global lbl_805A8258 +lbl_805A8258: + .incbin "baserom.dol", 0x3F5BF8, 0x4 +.global lbl_805A825C +lbl_805A825C: + .incbin "baserom.dol", 0x3F5BFC, 0x4 +.global lbl_805A8260 +lbl_805A8260: + .incbin "baserom.dol", 0x3F5C00, 0x4 +.global lbl_805A8264 +lbl_805A8264: + .incbin "baserom.dol", 0x3F5C04, 0x4 +.global lbl_805A8268 +lbl_805A8268: + .incbin "baserom.dol", 0x3F5C08, 0x4 +.global lbl_805A826C +lbl_805A826C: + .incbin "baserom.dol", 0x3F5C0C, 0x4 +.global lbl_805A8270 +lbl_805A8270: + .incbin "baserom.dol", 0x3F5C10, 0x4 +.global lbl_805A8274 +lbl_805A8274: + .incbin "baserom.dol", 0x3F5C14, 0x4 +.global lbl_805A8278 +lbl_805A8278: + .incbin "baserom.dol", 0x3F5C18, 0x4 +.global lbl_805A827C +lbl_805A827C: + .incbin "baserom.dol", 0x3F5C1C, 0x4 +.global lbl_805A8280 +lbl_805A8280: + .incbin "baserom.dol", 0x3F5C20, 0x4 +.global lbl_805A8284 +lbl_805A8284: + .incbin "baserom.dol", 0x3F5C24, 0x4 +.global lbl_805A8288 +lbl_805A8288: + .incbin "baserom.dol", 0x3F5C28, 0x4 +.global lbl_805A828C +lbl_805A828C: + .incbin "baserom.dol", 0x3F5C2C, 0x4 +.global lbl_805A8290 +lbl_805A8290: + .incbin "baserom.dol", 0x3F5C30, 0x4 +.global lbl_805A8294 +lbl_805A8294: + .incbin "baserom.dol", 0x3F5C34, 0x4 +.global lbl_805A8298 +lbl_805A8298: + .incbin "baserom.dol", 0x3F5C38, 0x4 +.global lbl_805A829C +lbl_805A829C: + .incbin "baserom.dol", 0x3F5C3C, 0x4 +.global lbl_805A82A0 +lbl_805A82A0: + .incbin "baserom.dol", 0x3F5C40, 0x4 +.global lbl_805A82A4 +lbl_805A82A4: + .incbin "baserom.dol", 0x3F5C44, 0x4 +.global lbl_805A82A8 +lbl_805A82A8: + .incbin "baserom.dol", 0x3F5C48, 0x4 +.global lbl_805A82AC +lbl_805A82AC: + .incbin "baserom.dol", 0x3F5C4C, 0x4 +.global lbl_805A82B0 +lbl_805A82B0: + .incbin "baserom.dol", 0x3F5C50, 0x4 +.global lbl_805A82B4 +lbl_805A82B4: + .incbin "baserom.dol", 0x3F5C54, 0x4 +.global lbl_805A82B8 +lbl_805A82B8: + .incbin "baserom.dol", 0x3F5C58, 0x4 +.global lbl_805A82BC +lbl_805A82BC: + .incbin "baserom.dol", 0x3F5C5C, 0x4 +.global lbl_805A82C0 +lbl_805A82C0: + .incbin "baserom.dol", 0x3F5C60, 0x4 +.global lbl_805A82C4 +lbl_805A82C4: + .incbin "baserom.dol", 0x3F5C64, 0x4 +.global lbl_805A82C8 +lbl_805A82C8: + .incbin "baserom.dol", 0x3F5C68, 0x8 +.global lbl_805A82D0 +lbl_805A82D0: + .incbin "baserom.dol", 0x3F5C70, 0x1 +.global lbl_805A82D1 +lbl_805A82D1: + .incbin "baserom.dol", 0x3F5C71, 0x1 +.global lbl_805A82D2 +lbl_805A82D2: + .incbin "baserom.dol", 0x3F5C72, 0x1 +.global lbl_805A82D3 +lbl_805A82D3: + .incbin "baserom.dol", 0x3F5C73, 0x5 +.global lbl_805A82D8 +lbl_805A82D8: + .incbin "baserom.dol", 0x3F5C78, 0x8 +.global lbl_805A82E0 +lbl_805A82E0: + .incbin "baserom.dol", 0x3F5C80, 0x8 +.global lbl_805A82E8 +lbl_805A82E8: + .incbin "baserom.dol", 0x3F5C88, 0x8 +.global lbl_805A82F0 +lbl_805A82F0: + .incbin "baserom.dol", 0x3F5C90, 0x4 +.global lbl_805A82F4 +lbl_805A82F4: + .incbin "baserom.dol", 0x3F5C94, 0x4 +.global lbl_805A82F8 +lbl_805A82F8: + .incbin "baserom.dol", 0x3F5C98, 0x4 +.global lbl_805A82FC +lbl_805A82FC: + .incbin "baserom.dol", 0x3F5C9C, 0x4 +.global lbl_805A8300 +lbl_805A8300: + .incbin "baserom.dol", 0x3F5CA0, 0x4 +.global lbl_805A8304 +lbl_805A8304: + .incbin "baserom.dol", 0x3F5CA4, 0x4 +.global lbl_805A8308 +lbl_805A8308: + .incbin "baserom.dol", 0x3F5CA8, 0x4 +.global lbl_805A830C +lbl_805A830C: + .incbin "baserom.dol", 0x3F5CAC, 0x4 +.global lbl_805A8310 +lbl_805A8310: + .incbin "baserom.dol", 0x3F5CB0, 0x4 +.global lbl_805A8314 +lbl_805A8314: + .incbin "baserom.dol", 0x3F5CB4, 0x4 +.global lbl_805A8318 +lbl_805A8318: + .incbin "baserom.dol", 0x3F5CB8, 0x4 +.global lbl_805A831C +lbl_805A831C: + .incbin "baserom.dol", 0x3F5CBC, 0x4 +.global lbl_805A8320 +lbl_805A8320: + .incbin "baserom.dol", 0x3F5CC0, 0x4 +.global lbl_805A8324 +lbl_805A8324: + .incbin "baserom.dol", 0x3F5CC4, 0x4 +.global lbl_805A8328 +lbl_805A8328: + .incbin "baserom.dol", 0x3F5CC8, 0x4 +.global lbl_805A832C +lbl_805A832C: + .incbin "baserom.dol", 0x3F5CCC, 0x4 +.global lbl_805A8330 +lbl_805A8330: + .incbin "baserom.dol", 0x3F5CD0, 0x4 +.global lbl_805A8334 +lbl_805A8334: + .incbin "baserom.dol", 0x3F5CD4, 0x4 +.global lbl_805A8338 +lbl_805A8338: + .incbin "baserom.dol", 0x3F5CD8, 0x4 +.global lbl_805A833C +lbl_805A833C: + .incbin "baserom.dol", 0x3F5CDC, 0x4 +.global lbl_805A8340 +lbl_805A8340: + .incbin "baserom.dol", 0x3F5CE0, 0x4 +.global lbl_805A8344 +lbl_805A8344: + .incbin "baserom.dol", 0x3F5CE4, 0x4 +.global lbl_805A8348 +lbl_805A8348: + .incbin "baserom.dol", 0x3F5CE8, 0x4 +.global lbl_805A834C +lbl_805A834C: + .incbin "baserom.dol", 0x3F5CEC, 0x4 +.global lbl_805A8350 +lbl_805A8350: + .incbin "baserom.dol", 0x3F5CF0, 0x4 +.global lbl_805A8354 +lbl_805A8354: + .incbin "baserom.dol", 0x3F5CF4, 0x4 +.global lbl_805A8358 +lbl_805A8358: + .incbin "baserom.dol", 0x3F5CF8, 0x4 +.global lbl_805A835C +lbl_805A835C: + .incbin "baserom.dol", 0x3F5CFC, 0x4 +.global lbl_805A8360 +lbl_805A8360: + .incbin "baserom.dol", 0x3F5D00, 0x4 +.global lbl_805A8364 +lbl_805A8364: + .incbin "baserom.dol", 0x3F5D04, 0x4 +.global lbl_805A8368 +lbl_805A8368: + .incbin "baserom.dol", 0x3F5D08, 0x4 +.global lbl_805A836C +lbl_805A836C: + .incbin "baserom.dol", 0x3F5D0C, 0x4 +.global lbl_805A8370 +lbl_805A8370: + .incbin "baserom.dol", 0x3F5D10, 0x4 +.global lbl_805A8374 +lbl_805A8374: + .incbin "baserom.dol", 0x3F5D14, 0x4 +.global lbl_805A8378 +lbl_805A8378: + .incbin "baserom.dol", 0x3F5D18, 0x8 +.global lbl_805A8380 +lbl_805A8380: + .incbin "baserom.dol", 0x3F5D20, 0x4 +.global lbl_805A8384 +lbl_805A8384: + .incbin "baserom.dol", 0x3F5D24, 0x4 +.global lbl_805A8388 +lbl_805A8388: + .incbin "baserom.dol", 0x3F5D28, 0x8 +.global lbl_805A8390 +lbl_805A8390: + .incbin "baserom.dol", 0x3F5D30, 0x4 +.global lbl_805A8394 +lbl_805A8394: + .incbin "baserom.dol", 0x3F5D34, 0x4 +.global lbl_805A8398 +lbl_805A8398: + .incbin "baserom.dol", 0x3F5D38, 0x4 +.global lbl_805A839C +lbl_805A839C: + .incbin "baserom.dol", 0x3F5D3C, 0x4 +.global lbl_805A83A0 +lbl_805A83A0: + .incbin "baserom.dol", 0x3F5D40, 0x4 +.global lbl_805A83A4 +lbl_805A83A4: + .incbin "baserom.dol", 0x3F5D44, 0x4 +.global lbl_805A83A8 +lbl_805A83A8: + .incbin "baserom.dol", 0x3F5D48, 0x4 +.global lbl_805A83AC +lbl_805A83AC: + .incbin "baserom.dol", 0x3F5D4C, 0x4 +.global lbl_805A83B0 +lbl_805A83B0: + .incbin "baserom.dol", 0x3F5D50, 0x4 +.global lbl_805A83B4 +lbl_805A83B4: + .incbin "baserom.dol", 0x3F5D54, 0x4 +.global lbl_805A83B8 +lbl_805A83B8: + .incbin "baserom.dol", 0x3F5D58, 0x4 +.global lbl_805A83BC +lbl_805A83BC: + .incbin "baserom.dol", 0x3F5D5C, 0x4 +.global lbl_805A83C0 +lbl_805A83C0: + .incbin "baserom.dol", 0x3F5D60, 0x4 +.global lbl_805A83C4 +lbl_805A83C4: + .incbin "baserom.dol", 0x3F5D64, 0x4 +.global lbl_805A83C8 +lbl_805A83C8: + .incbin "baserom.dol", 0x3F5D68, 0x4 +.global lbl_805A83CC +lbl_805A83CC: + .incbin "baserom.dol", 0x3F5D6C, 0x4 +.global lbl_805A83D0 +lbl_805A83D0: + .incbin "baserom.dol", 0x3F5D70, 0x4 +.global lbl_805A83D4 +lbl_805A83D4: + .incbin "baserom.dol", 0x3F5D74, 0x4 +.global lbl_805A83D8 +lbl_805A83D8: + .incbin "baserom.dol", 0x3F5D78, 0x4 +.global lbl_805A83DC +lbl_805A83DC: + .incbin "baserom.dol", 0x3F5D7C, 0x4 +.global lbl_805A83E0 +lbl_805A83E0: + .incbin "baserom.dol", 0x3F5D80, 0x4 +.global lbl_805A83E4 +lbl_805A83E4: + .incbin "baserom.dol", 0x3F5D84, 0x4 +.global lbl_805A83E8 +lbl_805A83E8: + .incbin "baserom.dol", 0x3F5D88, 0x4 +.global lbl_805A83EC +lbl_805A83EC: + .incbin "baserom.dol", 0x3F5D8C, 0x4 +.global lbl_805A83F0 +lbl_805A83F0: + .incbin "baserom.dol", 0x3F5D90, 0x8 +.global lbl_805A83F8 +lbl_805A83F8: + .incbin "baserom.dol", 0x3F5D98, 0x8 +.global lbl_805A8400 +lbl_805A8400: + .incbin "baserom.dol", 0x3F5DA0, 0x8 +.global lbl_805A8408 +lbl_805A8408: + .incbin "baserom.dol", 0x3F5DA8, 0x4 +.global lbl_805A840C +lbl_805A840C: + .incbin "baserom.dol", 0x3F5DAC, 0x4 +.global lbl_805A8410 +lbl_805A8410: + .incbin "baserom.dol", 0x3F5DB0, 0x4 +.global lbl_805A8414 +lbl_805A8414: + .incbin "baserom.dol", 0x3F5DB4, 0x4 +.global lbl_805A8418 +lbl_805A8418: + .incbin "baserom.dol", 0x3F5DB8, 0x4 +.global lbl_805A841C +lbl_805A841C: + .incbin "baserom.dol", 0x3F5DBC, 0x4 +.global lbl_805A8420 +lbl_805A8420: + .incbin "baserom.dol", 0x3F5DC0, 0x4 +.global lbl_805A8424 +lbl_805A8424: + .incbin "baserom.dol", 0x3F5DC4, 0x4 +.global lbl_805A8428 +lbl_805A8428: + .incbin "baserom.dol", 0x3F5DC8, 0x4 +.global lbl_805A842C +lbl_805A842C: + .incbin "baserom.dol", 0x3F5DCC, 0x4 +.global lbl_805A8430 +lbl_805A8430: + .incbin "baserom.dol", 0x3F5DD0, 0x4 +.global lbl_805A8434 +lbl_805A8434: + .incbin "baserom.dol", 0x3F5DD4, 0x4 +.global lbl_805A8438 +lbl_805A8438: + .incbin "baserom.dol", 0x3F5DD8, 0x4 +.global lbl_805A843C +lbl_805A843C: + .incbin "baserom.dol", 0x3F5DDC, 0x4 +.global lbl_805A8440 +lbl_805A8440: + .incbin "baserom.dol", 0x3F5DE0, 0x4 +.global lbl_805A8444 +lbl_805A8444: + .incbin "baserom.dol", 0x3F5DE4, 0x4 +.global lbl_805A8448 +lbl_805A8448: + .incbin "baserom.dol", 0x3F5DE8, 0x4 +.global lbl_805A844C +lbl_805A844C: + .incbin "baserom.dol", 0x3F5DEC, 0x4 +.global lbl_805A8450 +lbl_805A8450: + .incbin "baserom.dol", 0x3F5DF0, 0x4 +.global lbl_805A8454 +lbl_805A8454: + .incbin "baserom.dol", 0x3F5DF4, 0x4 +.global lbl_805A8458 +lbl_805A8458: + .incbin "baserom.dol", 0x3F5DF8, 0x4 +.global lbl_805A845C +lbl_805A845C: + .incbin "baserom.dol", 0x3F5DFC, 0x4 +.global lbl_805A8460 +lbl_805A8460: + .incbin "baserom.dol", 0x3F5E00, 0x4 +.global lbl_805A8464 +lbl_805A8464: + .incbin "baserom.dol", 0x3F5E04, 0x4 +.global lbl_805A8468 +lbl_805A8468: + .incbin "baserom.dol", 0x3F5E08, 0x4 +.global lbl_805A846C +lbl_805A846C: + .incbin "baserom.dol", 0x3F5E0C, 0x4 +.global lbl_805A8470 +lbl_805A8470: + .incbin "baserom.dol", 0x3F5E10, 0x4 +.global lbl_805A8474 +lbl_805A8474: + .incbin "baserom.dol", 0x3F5E14, 0x4 +.global lbl_805A8478 +lbl_805A8478: + .incbin "baserom.dol", 0x3F5E18, 0x4 +.global lbl_805A847C +lbl_805A847C: + .incbin "baserom.dol", 0x3F5E1C, 0x4 +.global lbl_805A8480 +lbl_805A8480: + .incbin "baserom.dol", 0x3F5E20, 0x4 +.global lbl_805A8484 +lbl_805A8484: + .incbin "baserom.dol", 0x3F5E24, 0x4 +.global lbl_805A8488 +lbl_805A8488: + .incbin "baserom.dol", 0x3F5E28, 0x4 +.global lbl_805A848C +lbl_805A848C: + .incbin "baserom.dol", 0x3F5E2C, 0x4 +.global lbl_805A8490 +lbl_805A8490: + .incbin "baserom.dol", 0x3F5E30, 0x4 +.global lbl_805A8494 +lbl_805A8494: + .incbin "baserom.dol", 0x3F5E34, 0x4 +.global lbl_805A8498 +lbl_805A8498: + .incbin "baserom.dol", 0x3F5E38, 0x4 +.global lbl_805A849C +lbl_805A849C: + .incbin "baserom.dol", 0x3F5E3C, 0x4 +.global lbl_805A84A0 +lbl_805A84A0: + .incbin "baserom.dol", 0x3F5E40, 0x4 +.global lbl_805A84A4 +lbl_805A84A4: + .incbin "baserom.dol", 0x3F5E44, 0x8 +.global lbl_805A84AC +lbl_805A84AC: + .incbin "baserom.dol", 0x3F5E4C, 0x4 +.global lbl_805A84B0 +lbl_805A84B0: + .incbin "baserom.dol", 0x3F5E50, 0x4 +.global lbl_805A84B4 +lbl_805A84B4: + .incbin "baserom.dol", 0x3F5E54, 0x4 +.global lbl_805A84B8 +lbl_805A84B8: + .incbin "baserom.dol", 0x3F5E58, 0x4 +.global lbl_805A84BC +lbl_805A84BC: + .incbin "baserom.dol", 0x3F5E5C, 0x4 +.global lbl_805A84C0 +lbl_805A84C0: + .incbin "baserom.dol", 0x3F5E60, 0x4 +.global lbl_805A84C4 +lbl_805A84C4: + .incbin "baserom.dol", 0x3F5E64, 0x4 +.global lbl_805A84C8 +lbl_805A84C8: + .incbin "baserom.dol", 0x3F5E68, 0x4 +.global lbl_805A84CC +lbl_805A84CC: + .incbin "baserom.dol", 0x3F5E6C, 0x4 +.global lbl_805A84D0 +lbl_805A84D0: + .incbin "baserom.dol", 0x3F5E70, 0x4 +.global lbl_805A84D4 +lbl_805A84D4: + .incbin "baserom.dol", 0x3F5E74, 0x4 +.global lbl_805A84D8 +lbl_805A84D8: + .incbin "baserom.dol", 0x3F5E78, 0x4 +.global lbl_805A84DC +lbl_805A84DC: + .incbin "baserom.dol", 0x3F5E7C, 0x4 +.global lbl_805A84E0 +lbl_805A84E0: + .incbin "baserom.dol", 0x3F5E80, 0x4 +.global lbl_805A84E4 +lbl_805A84E4: + .incbin "baserom.dol", 0x3F5E84, 0x4 +.global lbl_805A84E8 +lbl_805A84E8: + .incbin "baserom.dol", 0x3F5E88, 0x4 +.global lbl_805A84EC +lbl_805A84EC: + .incbin "baserom.dol", 0x3F5E8C, 0x4 +.global lbl_805A84F0 +lbl_805A84F0: + .incbin "baserom.dol", 0x3F5E90, 0x4 +.global lbl_805A84F4 +lbl_805A84F4: + .incbin "baserom.dol", 0x3F5E94, 0x4 +.global lbl_805A84F8 +lbl_805A84F8: + .incbin "baserom.dol", 0x3F5E98, 0x4 +.global lbl_805A84FC +lbl_805A84FC: + .incbin "baserom.dol", 0x3F5E9C, 0x4 +.global lbl_805A8500 +lbl_805A8500: + .incbin "baserom.dol", 0x3F5EA0, 0x4 +.global lbl_805A8504 +lbl_805A8504: + .incbin "baserom.dol", 0x3F5EA4, 0x4 +.global lbl_805A8508 +lbl_805A8508: + .incbin "baserom.dol", 0x3F5EA8, 0x4 +.global lbl_805A850C +lbl_805A850C: + .incbin "baserom.dol", 0x3F5EAC, 0x4 +.global lbl_805A8510 +lbl_805A8510: + .incbin "baserom.dol", 0x3F5EB0, 0x4 +.global lbl_805A8514 +lbl_805A8514: + .incbin "baserom.dol", 0x3F5EB4, 0x4 +.global lbl_805A8518 +lbl_805A8518: + .incbin "baserom.dol", 0x3F5EB8, 0x4 +.global lbl_805A851C +lbl_805A851C: + .incbin "baserom.dol", 0x3F5EBC, 0x4 +.global lbl_805A8520 +lbl_805A8520: + .incbin "baserom.dol", 0x3F5EC0, 0x4 +.global lbl_805A8524 +lbl_805A8524: + .incbin "baserom.dol", 0x3F5EC4, 0x4 +.global lbl_805A8528 +lbl_805A8528: + .incbin "baserom.dol", 0x3F5EC8, 0x4 +.global lbl_805A852C +lbl_805A852C: + .incbin "baserom.dol", 0x3F5ECC, 0x4 +.global lbl_805A8530 +lbl_805A8530: + .incbin "baserom.dol", 0x3F5ED0, 0x8 +.global lbl_805A8538 +lbl_805A8538: + .incbin "baserom.dol", 0x3F5ED8, 0x4 +.global lbl_805A853C +lbl_805A853C: + .incbin "baserom.dol", 0x3F5EDC, 0x4 +.global lbl_805A8540 +lbl_805A8540: + .incbin "baserom.dol", 0x3F5EE0, 0x4 +.global lbl_805A8544 +lbl_805A8544: + .incbin "baserom.dol", 0x3F5EE4, 0x4 +.global lbl_805A8548 +lbl_805A8548: + .incbin "baserom.dol", 0x3F5EE8, 0x4 +.global lbl_805A854C +lbl_805A854C: + .incbin "baserom.dol", 0x3F5EEC, 0x4 +.global lbl_805A8550 +lbl_805A8550: + .incbin "baserom.dol", 0x3F5EF0, 0x4 +.global lbl_805A8554 +lbl_805A8554: + .incbin "baserom.dol", 0x3F5EF4, 0x4 +.global lbl_805A8558 +lbl_805A8558: + .incbin "baserom.dol", 0x3F5EF8, 0x4 +.global lbl_805A855C +lbl_805A855C: + .incbin "baserom.dol", 0x3F5EFC, 0x4 +.global lbl_805A8560 +lbl_805A8560: + .incbin "baserom.dol", 0x3F5F00, 0x4 +.global lbl_805A8564 +lbl_805A8564: + .incbin "baserom.dol", 0x3F5F04, 0x4 +.global lbl_805A8568 +lbl_805A8568: + .incbin "baserom.dol", 0x3F5F08, 0x4 +.global lbl_805A856C +lbl_805A856C: + .incbin "baserom.dol", 0x3F5F0C, 0x4 +.global lbl_805A8570 +lbl_805A8570: + .incbin "baserom.dol", 0x3F5F10, 0x4 +.global lbl_805A8574 +lbl_805A8574: + .incbin "baserom.dol", 0x3F5F14, 0x4 +.global lbl_805A8578 +lbl_805A8578: + .incbin "baserom.dol", 0x3F5F18, 0x1 +.global lbl_805A8579 +lbl_805A8579: + .incbin "baserom.dol", 0x3F5F19, 0x3 +.global lbl_805A857C +lbl_805A857C: + .incbin "baserom.dol", 0x3F5F1C, 0x4 +.global lbl_805A8580 +lbl_805A8580: + .incbin "baserom.dol", 0x3F5F20, 0x8 +.global lbl_805A8588 +lbl_805A8588: + .incbin "baserom.dol", 0x3F5F28, 0x8 +.global lbl_805A8590 +lbl_805A8590: + .incbin "baserom.dol", 0x3F5F30, 0x4 +.global lbl_805A8594 +lbl_805A8594: + .incbin "baserom.dol", 0x3F5F34, 0x4 +.global lbl_805A8598 +lbl_805A8598: + .incbin "baserom.dol", 0x3F5F38, 0x4 +.global lbl_805A859C +lbl_805A859C: + .incbin "baserom.dol", 0x3F5F3C, 0x4 +.global lbl_805A85A0 +lbl_805A85A0: + .incbin "baserom.dol", 0x3F5F40, 0x4 +.global lbl_805A85A4 +lbl_805A85A4: + .incbin "baserom.dol", 0x3F5F44, 0x4 +.global lbl_805A85A8 +lbl_805A85A8: + .incbin "baserom.dol", 0x3F5F48, 0x4 +.global lbl_805A85AC +lbl_805A85AC: + .incbin "baserom.dol", 0x3F5F4C, 0x4 +.global lbl_805A85B0 +lbl_805A85B0: + .incbin "baserom.dol", 0x3F5F50, 0x4 +.global lbl_805A85B4 +lbl_805A85B4: + .incbin "baserom.dol", 0x3F5F54, 0x4 +.global lbl_805A85B8 +lbl_805A85B8: + .incbin "baserom.dol", 0x3F5F58, 0x4 +.global lbl_805A85BC +lbl_805A85BC: + .incbin "baserom.dol", 0x3F5F5C, 0x4 +.global lbl_805A85C0 +lbl_805A85C0: + .incbin "baserom.dol", 0x3F5F60, 0x4 +.global lbl_805A85C4 +lbl_805A85C4: + .incbin "baserom.dol", 0x3F5F64, 0x4 +.global lbl_805A85C8 +lbl_805A85C8: + .incbin "baserom.dol", 0x3F5F68, 0x8 +.global lbl_805A85D0 +lbl_805A85D0: + .incbin "baserom.dol", 0x3F5F70, 0x4 +.global lbl_805A85D4 +lbl_805A85D4: + .incbin "baserom.dol", 0x3F5F74, 0x4 +.global lbl_805A85D8 +lbl_805A85D8: + .incbin "baserom.dol", 0x3F5F78, 0x4 +.global lbl_805A85DC +lbl_805A85DC: + .incbin "baserom.dol", 0x3F5F7C, 0x4 +.global lbl_805A85E0 +lbl_805A85E0: + .incbin "baserom.dol", 0x3F5F80, 0x8 +.global lbl_805A85E8 +lbl_805A85E8: + .incbin "baserom.dol", 0x3F5F88, 0x8 +.global lbl_805A85F0 +lbl_805A85F0: + .incbin "baserom.dol", 0x3F5F90, 0x4 +.global lbl_805A85F4 +lbl_805A85F4: + .incbin "baserom.dol", 0x3F5F94, 0x4 +.global lbl_805A85F8 +lbl_805A85F8: + .incbin "baserom.dol", 0x3F5F98, 0x4 +.global lbl_805A85FC +lbl_805A85FC: + .incbin "baserom.dol", 0x3F5F9C, 0x4 +.global lbl_805A8600 +lbl_805A8600: + .incbin "baserom.dol", 0x3F5FA0, 0x4 +.global lbl_805A8604 +lbl_805A8604: + .incbin "baserom.dol", 0x3F5FA4, 0x4 +.global lbl_805A8608 +lbl_805A8608: + .incbin "baserom.dol", 0x3F5FA8, 0x8 +.global lbl_805A8610 +lbl_805A8610: + .incbin "baserom.dol", 0x3F5FB0, 0x4 +.global lbl_805A8614 +lbl_805A8614: + .incbin "baserom.dol", 0x3F5FB4, 0x4 +.global lbl_805A8618 +lbl_805A8618: + .incbin "baserom.dol", 0x3F5FB8, 0x8 +.global lbl_805A8620 +lbl_805A8620: + .incbin "baserom.dol", 0x3F5FC0, 0x4 +.global lbl_805A8624 +lbl_805A8624: + .incbin "baserom.dol", 0x3F5FC4, 0x4 +.global lbl_805A8628 +lbl_805A8628: + .incbin "baserom.dol", 0x3F5FC8, 0x4 +.global lbl_805A862C +lbl_805A862C: + .incbin "baserom.dol", 0x3F5FCC, 0x4 +.global lbl_805A8630 +lbl_805A8630: + .incbin "baserom.dol", 0x3F5FD0, 0x8 +.global lbl_805A8638 +lbl_805A8638: + .incbin "baserom.dol", 0x3F5FD8, 0x8 +.global lbl_805A8640 +lbl_805A8640: + .incbin "baserom.dol", 0x3F5FE0, 0x8 +.global lbl_805A8648 +lbl_805A8648: + .incbin "baserom.dol", 0x3F5FE8, 0x8 +.global lbl_805A8650 +lbl_805A8650: + .incbin "baserom.dol", 0x3F5FF0, 0x8 +.global lbl_805A8658 +lbl_805A8658: + .incbin "baserom.dol", 0x3F5FF8, 0x4 +.global lbl_805A865C +lbl_805A865C: + .incbin "baserom.dol", 0x3F5FFC, 0x4 +.global lbl_805A8660 +lbl_805A8660: + .incbin "baserom.dol", 0x3F6000, 0x4 +.global lbl_805A8664 +lbl_805A8664: + .incbin "baserom.dol", 0x3F6004, 0x4 +.global lbl_805A8668 +lbl_805A8668: + .incbin "baserom.dol", 0x3F6008, 0x4 +.global lbl_805A866C +lbl_805A866C: + .incbin "baserom.dol", 0x3F600C, 0x4 +.global lbl_805A8670 +lbl_805A8670: + .incbin "baserom.dol", 0x3F6010, 0x4 +.global lbl_805A8674 +lbl_805A8674: + .incbin "baserom.dol", 0x3F6014, 0x4 +.global lbl_805A8678 +lbl_805A8678: + .incbin "baserom.dol", 0x3F6018, 0x4 +.global lbl_805A867C +lbl_805A867C: + .incbin "baserom.dol", 0x3F601C, 0x4 +.global lbl_805A8680 +lbl_805A8680: + .incbin "baserom.dol", 0x3F6020, 0x4 +.global lbl_805A8684 +lbl_805A8684: + .incbin "baserom.dol", 0x3F6024, 0x4 +.global lbl_805A8688 +lbl_805A8688: + .incbin "baserom.dol", 0x3F6028, 0x4 +.global lbl_805A868C +lbl_805A868C: + .incbin "baserom.dol", 0x3F602C, 0x4 +.global lbl_805A8690 +lbl_805A8690: + .incbin "baserom.dol", 0x3F6030, 0x4 +.global lbl_805A8694 +lbl_805A8694: + .incbin "baserom.dol", 0x3F6034, 0x4 +.global lbl_805A8698 +lbl_805A8698: + .incbin "baserom.dol", 0x3F6038, 0x4 +.global lbl_805A869C +lbl_805A869C: + .incbin "baserom.dol", 0x3F603C, 0x4 +.global lbl_805A86A0 +lbl_805A86A0: + .incbin "baserom.dol", 0x3F6040, 0x4 +.global lbl_805A86A4 +lbl_805A86A4: + .incbin "baserom.dol", 0x3F6044, 0x4 +.global lbl_805A86A8 +lbl_805A86A8: + .incbin "baserom.dol", 0x3F6048, 0x4 +.global lbl_805A86AC +lbl_805A86AC: + .incbin "baserom.dol", 0x3F604C, 0x4 +.global lbl_805A86B0 +lbl_805A86B0: + .incbin "baserom.dol", 0x3F6050, 0x4 +.global lbl_805A86B4 +lbl_805A86B4: + .incbin "baserom.dol", 0x3F6054, 0x4 +.global lbl_805A86B8 +lbl_805A86B8: + .incbin "baserom.dol", 0x3F6058, 0x8 +.global lbl_805A86C0 +lbl_805A86C0: + .incbin "baserom.dol", 0x3F6060, 0x4 +.global lbl_805A86C4 +lbl_805A86C4: + .incbin "baserom.dol", 0x3F6064, 0x4 +.global lbl_805A86C8 +lbl_805A86C8: + .incbin "baserom.dol", 0x3F6068, 0x4 +.global lbl_805A86CC +lbl_805A86CC: + .incbin "baserom.dol", 0x3F606C, 0x4 +.global lbl_805A86D0 +lbl_805A86D0: + .incbin "baserom.dol", 0x3F6070, 0x4 +.global lbl_805A86D4 +lbl_805A86D4: + .incbin "baserom.dol", 0x3F6074, 0x4 +.global lbl_805A86D8 +lbl_805A86D8: + .incbin "baserom.dol", 0x3F6078, 0x4 +.global lbl_805A86DC +lbl_805A86DC: + .incbin "baserom.dol", 0x3F607C, 0x4 +.global lbl_805A86E0 +lbl_805A86E0: + .incbin "baserom.dol", 0x3F6080, 0x8 +.global lbl_805A86E8 +lbl_805A86E8: + .incbin "baserom.dol", 0x3F6088, 0x8 +.global lbl_805A86F0 +lbl_805A86F0: + .incbin "baserom.dol", 0x3F6090, 0x8 +.global lbl_805A86F8 +lbl_805A86F8: + .incbin "baserom.dol", 0x3F6098, 0x8 +.global lbl_805A8700 +lbl_805A8700: + .incbin "baserom.dol", 0x3F60A0, 0x4 +.global lbl_805A8704 +lbl_805A8704: + .incbin "baserom.dol", 0x3F60A4, 0x4 +.global lbl_805A8708 +lbl_805A8708: + .incbin "baserom.dol", 0x3F60A8, 0x1 +.global lbl_805A8709 +lbl_805A8709: + .incbin "baserom.dol", 0x3F60A9, 0x1 +.global lbl_805A870A +lbl_805A870A: + .incbin "baserom.dol", 0x3F60AA, 0x6 +.global lbl_805A8710 +lbl_805A8710: + .incbin "baserom.dol", 0x3F60B0, 0x4 +.global lbl_805A8714 +lbl_805A8714: + .incbin "baserom.dol", 0x3F60B4, 0x4 +.global lbl_805A8718 +lbl_805A8718: + .incbin "baserom.dol", 0x3F60B8, 0x4 +.global lbl_805A871C +lbl_805A871C: + .incbin "baserom.dol", 0x3F60BC, 0x4 +.global lbl_805A8720 +lbl_805A8720: + .incbin "baserom.dol", 0x3F60C0, 0x1 +.global lbl_805A8721 +lbl_805A8721: + .incbin "baserom.dol", 0x3F60C1, 0x1 +.global lbl_805A8722 +lbl_805A8722: + .incbin "baserom.dol", 0x3F60C2, 0x6 +.global lbl_805A8728 +lbl_805A8728: + .incbin "baserom.dol", 0x3F60C8, 0x4 +.global lbl_805A872C +lbl_805A872C: + .incbin "baserom.dol", 0x3F60CC, 0x4 +.global lbl_805A8730 +lbl_805A8730: + .incbin "baserom.dol", 0x3F60D0, 0x4 +.global lbl_805A8734 +lbl_805A8734: + .incbin "baserom.dol", 0x3F60D4, 0x4 +.global lbl_805A8738 +lbl_805A8738: + .incbin "baserom.dol", 0x3F60D8, 0x4 +.global lbl_805A873C +lbl_805A873C: + .incbin "baserom.dol", 0x3F60DC, 0x4 +.global lbl_805A8740 +lbl_805A8740: + .incbin "baserom.dol", 0x3F60E0, 0x4 +.global lbl_805A8744 +lbl_805A8744: + .incbin "baserom.dol", 0x3F60E4, 0x4 +.global lbl_805A8748 +lbl_805A8748: + .incbin "baserom.dol", 0x3F60E8, 0x4 +.global lbl_805A874C +lbl_805A874C: + .incbin "baserom.dol", 0x3F60EC, 0x4 +.global lbl_805A8750 +lbl_805A8750: + .incbin "baserom.dol", 0x3F60F0, 0x4 +.global lbl_805A8754 +lbl_805A8754: + .incbin "baserom.dol", 0x3F60F4, 0x4 +.global lbl_805A8758 +lbl_805A8758: + .incbin "baserom.dol", 0x3F60F8, 0x4 +.global lbl_805A875C +lbl_805A875C: + .incbin "baserom.dol", 0x3F60FC, 0x4 +.global lbl_805A8760 +lbl_805A8760: + .incbin "baserom.dol", 0x3F6100, 0x4 +.global lbl_805A8764 +lbl_805A8764: + .incbin "baserom.dol", 0x3F6104, 0x4 +.global lbl_805A8768 +lbl_805A8768: + .incbin "baserom.dol", 0x3F6108, 0x4 +.global lbl_805A876C +lbl_805A876C: + .incbin "baserom.dol", 0x3F610C, 0x4 +.global lbl_805A8770 +lbl_805A8770: + .incbin "baserom.dol", 0x3F6110, 0x4 +.global lbl_805A8774 +lbl_805A8774: + .incbin "baserom.dol", 0x3F6114, 0x4 +.global lbl_805A8778 +lbl_805A8778: + .incbin "baserom.dol", 0x3F6118, 0x4 +.global lbl_805A877C +lbl_805A877C: + .incbin "baserom.dol", 0x3F611C, 0x4 +.global lbl_805A8780 +lbl_805A8780: + .incbin "baserom.dol", 0x3F6120, 0x1 +.global lbl_805A8781 +lbl_805A8781: + .incbin "baserom.dol", 0x3F6121, 0x1 +.global lbl_805A8782 +lbl_805A8782: + .incbin "baserom.dol", 0x3F6122, 0x6 +.global lbl_805A8788 +lbl_805A8788: + .incbin "baserom.dol", 0x3F6128, 0x4 +.global lbl_805A878C +lbl_805A878C: + .incbin "baserom.dol", 0x3F612C, 0x4 +.global lbl_805A8790 +lbl_805A8790: + .incbin "baserom.dol", 0x3F6130, 0x4 +.global lbl_805A8794 +lbl_805A8794: + .incbin "baserom.dol", 0x3F6134, 0x4 +.global lbl_805A8798 +lbl_805A8798: + .incbin "baserom.dol", 0x3F6138, 0x4 +.global lbl_805A879C +lbl_805A879C: + .incbin "baserom.dol", 0x3F613C, 0x4 +.global lbl_805A87A0 +lbl_805A87A0: + .incbin "baserom.dol", 0x3F6140, 0x4 +.global lbl_805A87A4 +lbl_805A87A4: + .incbin "baserom.dol", 0x3F6144, 0x4 +.global lbl_805A87A8 +lbl_805A87A8: + .incbin "baserom.dol", 0x3F6148, 0x4 +.global lbl_805A87AC +lbl_805A87AC: + .incbin "baserom.dol", 0x3F614C, 0x4 +.global lbl_805A87B0 +lbl_805A87B0: + .incbin "baserom.dol", 0x3F6150, 0x4 +.global lbl_805A87B4 +lbl_805A87B4: + .incbin "baserom.dol", 0x3F6154, 0x4 +.global lbl_805A87B8 +lbl_805A87B8: + .incbin "baserom.dol", 0x3F6158, 0x4 +.global lbl_805A87BC +lbl_805A87BC: + .incbin "baserom.dol", 0x3F615C, 0x4 +.global lbl_805A87C0 +lbl_805A87C0: + .incbin "baserom.dol", 0x3F6160, 0x4 +.global lbl_805A87C4 +lbl_805A87C4: + .incbin "baserom.dol", 0x3F6164, 0x4 +.global lbl_805A87C8 +lbl_805A87C8: + .incbin "baserom.dol", 0x3F6168, 0x4 +.global lbl_805A87CC +lbl_805A87CC: + .incbin "baserom.dol", 0x3F616C, 0x4 +.global lbl_805A87D0 +lbl_805A87D0: + .incbin "baserom.dol", 0x3F6170, 0x1 +.global lbl_805A87D1 +lbl_805A87D1: + .incbin "baserom.dol", 0x3F6171, 0x1 +.global lbl_805A87D2 +lbl_805A87D2: + .incbin "baserom.dol", 0x3F6172, 0x1 +.global lbl_805A87D3 +lbl_805A87D3: + .incbin "baserom.dol", 0x3F6173, 0x1 +.global lbl_805A87D4 +lbl_805A87D4: + .incbin "baserom.dol", 0x3F6174, 0x4 +.global lbl_805A87D8 +lbl_805A87D8: + .incbin "baserom.dol", 0x3F6178, 0x4 +.global lbl_805A87DC +lbl_805A87DC: + .incbin "baserom.dol", 0x3F617C, 0x4 +.global lbl_805A87E0 +lbl_805A87E0: + .incbin "baserom.dol", 0x3F6180, 0x4 +.global lbl_805A87E4 +lbl_805A87E4: + .incbin "baserom.dol", 0x3F6184, 0x4 +.global lbl_805A87E8 +lbl_805A87E8: + .incbin "baserom.dol", 0x3F6188, 0x8 +.global lbl_805A87F0 +lbl_805A87F0: + .incbin "baserom.dol", 0x3F6190, 0x1 +.global lbl_805A87F1 +lbl_805A87F1: + .incbin "baserom.dol", 0x3F6191, 0x1 +.global lbl_805A87F2 +lbl_805A87F2: + .incbin "baserom.dol", 0x3F6192, 0x1 +.global lbl_805A87F3 +lbl_805A87F3: + .incbin "baserom.dol", 0x3F6193, 0x5 +.global lbl_805A87F8 +lbl_805A87F8: + .incbin "baserom.dol", 0x3F6198, 0x8 +.global lbl_805A8800 +lbl_805A8800: + .incbin "baserom.dol", 0x3F61A0, 0x8 +.global lbl_805A8808 +lbl_805A8808: + .incbin "baserom.dol", 0x3F61A8, 0x8 +.global lbl_805A8810 +lbl_805A8810: + .incbin "baserom.dol", 0x3F61B0, 0x4 +.global lbl_805A8814 +lbl_805A8814: + .incbin "baserom.dol", 0x3F61B4, 0x4 +.global lbl_805A8818 +lbl_805A8818: + .incbin "baserom.dol", 0x3F61B8, 0x4 +.global lbl_805A881C +lbl_805A881C: + .incbin "baserom.dol", 0x3F61BC, 0x4 +.global lbl_805A8820 +lbl_805A8820: + .incbin "baserom.dol", 0x3F61C0, 0x4 +.global lbl_805A8824 +lbl_805A8824: + .incbin "baserom.dol", 0x3F61C4, 0x4 +.global lbl_805A8828 +lbl_805A8828: + .incbin "baserom.dol", 0x3F61C8, 0x4 +.global lbl_805A882C +lbl_805A882C: + .incbin "baserom.dol", 0x3F61CC, 0x4 +.global lbl_805A8830 +lbl_805A8830: + .incbin "baserom.dol", 0x3F61D0, 0x4 +.global lbl_805A8834 +lbl_805A8834: + .incbin "baserom.dol", 0x3F61D4, 0x4 +.global lbl_805A8838 +lbl_805A8838: + .incbin "baserom.dol", 0x3F61D8, 0x4 +.global lbl_805A883C +lbl_805A883C: + .incbin "baserom.dol", 0x3F61DC, 0x4 +.global lbl_805A8840 +lbl_805A8840: + .incbin "baserom.dol", 0x3F61E0, 0x1 +.global lbl_805A8841 +lbl_805A8841: + .incbin "baserom.dol", 0x3F61E1, 0x1 +.global lbl_805A8842 +lbl_805A8842: + .incbin "baserom.dol", 0x3F61E2, 0x2 +.global lbl_805A8844 +lbl_805A8844: + .incbin "baserom.dol", 0x3F61E4, 0x4 +.global lbl_805A8848 +lbl_805A8848: + .incbin "baserom.dol", 0x3F61E8, 0x4 +.global lbl_805A884C +lbl_805A884C: + .incbin "baserom.dol", 0x3F61EC, 0x4 +.global lbl_805A8850 +lbl_805A8850: + .incbin "baserom.dol", 0x3F61F0, 0x4 +.global lbl_805A8854 +lbl_805A8854: + .incbin "baserom.dol", 0x3F61F4, 0x4 +.global lbl_805A8858 +lbl_805A8858: + .incbin "baserom.dol", 0x3F61F8, 0x4 +.global lbl_805A885C +lbl_805A885C: + .incbin "baserom.dol", 0x3F61FC, 0x4 +.global lbl_805A8860 +lbl_805A8860: + .incbin "baserom.dol", 0x3F6200, 0x4 +.global lbl_805A8864 +lbl_805A8864: + .incbin "baserom.dol", 0x3F6204, 0x4 +.global lbl_805A8868 +lbl_805A8868: + .incbin "baserom.dol", 0x3F6208, 0x8 +.global lbl_805A8870 +lbl_805A8870: + .incbin "baserom.dol", 0x3F6210, 0x4 +.global lbl_805A8874 +lbl_805A8874: + .incbin "baserom.dol", 0x3F6214, 0x4 +.global lbl_805A8878 +lbl_805A8878: + .incbin "baserom.dol", 0x3F6218, 0x4 +.global lbl_805A887C +lbl_805A887C: + .incbin "baserom.dol", 0x3F621C, 0x4 +.global lbl_805A8880 +lbl_805A8880: + .incbin "baserom.dol", 0x3F6220, 0x4 +.global lbl_805A8884 +lbl_805A8884: + .incbin "baserom.dol", 0x3F6224, 0x4 +.global lbl_805A8888 +lbl_805A8888: + .incbin "baserom.dol", 0x3F6228, 0x4 +.global lbl_805A888C +lbl_805A888C: + .incbin "baserom.dol", 0x3F622C, 0x4 +.global lbl_805A8890 +lbl_805A8890: + .incbin "baserom.dol", 0x3F6230, 0x4 +.global lbl_805A8894 +lbl_805A8894: + .incbin "baserom.dol", 0x3F6234, 0x4 +.global lbl_805A8898 +lbl_805A8898: + .incbin "baserom.dol", 0x3F6238, 0x4 +.global lbl_805A889C +lbl_805A889C: + .incbin "baserom.dol", 0x3F623C, 0x4 +.global lbl_805A88A0 +lbl_805A88A0: + .incbin "baserom.dol", 0x3F6240, 0x4 +.global lbl_805A88A4 +lbl_805A88A4: + .incbin "baserom.dol", 0x3F6244, 0x4 +.global lbl_805A88A8 +lbl_805A88A8: + .incbin "baserom.dol", 0x3F6248, 0x4 +.global lbl_805A88AC +lbl_805A88AC: + .incbin "baserom.dol", 0x3F624C, 0x4 +.global lbl_805A88B0 +lbl_805A88B0: + .incbin "baserom.dol", 0x3F6250, 0x8 +.global lbl_805A88B8 +lbl_805A88B8: + .incbin "baserom.dol", 0x3F6258, 0x8 +.global lbl_805A88C0 +lbl_805A88C0: + .incbin "baserom.dol", 0x3F6260, 0x8 +.global lbl_805A88C8 +lbl_805A88C8: + .incbin "baserom.dol", 0x3F6268, 0x4 +.global lbl_805A88CC +lbl_805A88CC: + .incbin "baserom.dol", 0x3F626C, 0x4 +.global lbl_805A88D0 +lbl_805A88D0: + .incbin "baserom.dol", 0x3F6270, 0x8 +.global lbl_805A88D8 +lbl_805A88D8: + .incbin "baserom.dol", 0x3F6278, 0x4 +.global lbl_805A88DC +lbl_805A88DC: + .incbin "baserom.dol", 0x3F627C, 0x4 +.global lbl_805A88E0 +lbl_805A88E0: + .incbin "baserom.dol", 0x3F6280, 0x8 +.global lbl_805A88E8 +lbl_805A88E8: + .incbin "baserom.dol", 0x3F6288, 0x4 +.global lbl_805A88EC +lbl_805A88EC: + .incbin "baserom.dol", 0x3F628C, 0x4 +.global lbl_805A88F0 +lbl_805A88F0: + .incbin "baserom.dol", 0x3F6290, 0x8 +.global lbl_805A88F8 +lbl_805A88F8: + .incbin "baserom.dol", 0x3F6298, 0x8 +.global lbl_805A8900 +lbl_805A8900: + .incbin "baserom.dol", 0x3F62A0, 0x1 +.global lbl_805A8901 +lbl_805A8901: + .incbin "baserom.dol", 0x3F62A1, 0x1 +.global lbl_805A8902 +lbl_805A8902: + .incbin "baserom.dol", 0x3F62A2, 0x1 +.global lbl_805A8903 +lbl_805A8903: + .incbin "baserom.dol", 0x3F62A3, 0x1 +.global lbl_805A8904 +lbl_805A8904: + .incbin "baserom.dol", 0x3F62A4, 0x1 +.global lbl_805A8905 +lbl_805A8905: + .incbin "baserom.dol", 0x3F62A5, 0x3 +.global lbl_805A8908 +lbl_805A8908: + .incbin "baserom.dol", 0x3F62A8, 0x4 +.global lbl_805A890C +lbl_805A890C: + .incbin "baserom.dol", 0x3F62AC, 0x1 +.global lbl_805A890D +lbl_805A890D: + .incbin "baserom.dol", 0x3F62AD, 0x1 +.global lbl_805A890E +lbl_805A890E: + .incbin "baserom.dol", 0x3F62AE, 0x2 +.global lbl_805A8910 +lbl_805A8910: + .incbin "baserom.dol", 0x3F62B0, 0x1 +.global lbl_805A8911 +lbl_805A8911: + .incbin "baserom.dol", 0x3F62B1, 0x1 +.global lbl_805A8912 +lbl_805A8912: + .incbin "baserom.dol", 0x3F62B2, 0x6 +.global lbl_805A8918 +lbl_805A8918: + .incbin "baserom.dol", 0x3F62B8, 0x4 +.global lbl_805A891C +lbl_805A891C: + .incbin "baserom.dol", 0x3F62BC, 0x4 +.global lbl_805A8920 +lbl_805A8920: + .incbin "baserom.dol", 0x3F62C0, 0x8 +.global lbl_805A8928 +lbl_805A8928: + .incbin "baserom.dol", 0x3F62C8, 0x4 +.global lbl_805A892C +lbl_805A892C: + .incbin "baserom.dol", 0x3F62CC, 0x4 +.global lbl_805A8930 +lbl_805A8930: + .incbin "baserom.dol", 0x3F62D0, 0x4 +.global lbl_805A8934 +lbl_805A8934: + .incbin "baserom.dol", 0x3F62D4, 0x4 +.global lbl_805A8938 +lbl_805A8938: + .incbin "baserom.dol", 0x3F62D8, 0x4 +.global lbl_805A893C +lbl_805A893C: + .incbin "baserom.dol", 0x3F62DC, 0x4 +.global lbl_805A8940 +lbl_805A8940: + .incbin "baserom.dol", 0x3F62E0, 0x4 +.global lbl_805A8944 +lbl_805A8944: + .incbin "baserom.dol", 0x3F62E4, 0x4 +.global lbl_805A8948 +lbl_805A8948: + .incbin "baserom.dol", 0x3F62E8, 0x4 +.global lbl_805A894C +lbl_805A894C: + .incbin "baserom.dol", 0x3F62EC, 0x4 +.global lbl_805A8950 +lbl_805A8950: + .incbin "baserom.dol", 0x3F62F0, 0x4 +.global lbl_805A8954 +lbl_805A8954: + .incbin "baserom.dol", 0x3F62F4, 0x4 +.global lbl_805A8958 +lbl_805A8958: + .incbin "baserom.dol", 0x3F62F8, 0x4 +.global lbl_805A895C +lbl_805A895C: + .incbin "baserom.dol", 0x3F62FC, 0x4 +.global lbl_805A8960 +lbl_805A8960: + .incbin "baserom.dol", 0x3F6300, 0x4 +.global lbl_805A8964 +lbl_805A8964: + .incbin "baserom.dol", 0x3F6304, 0x4 +.global lbl_805A8968 +lbl_805A8968: + .incbin "baserom.dol", 0x3F6308, 0x4 +.global lbl_805A896C +lbl_805A896C: + .incbin "baserom.dol", 0x3F630C, 0x4 +.global lbl_805A8970 +lbl_805A8970: + .incbin "baserom.dol", 0x3F6310, 0x4 +.global lbl_805A8974 +lbl_805A8974: + .incbin "baserom.dol", 0x3F6314, 0x4 +.global lbl_805A8978 +lbl_805A8978: + .incbin "baserom.dol", 0x3F6318, 0x4 +.global lbl_805A897C +lbl_805A897C: + .incbin "baserom.dol", 0x3F631C, 0x4 +.global lbl_805A8980 +lbl_805A8980: + .incbin "baserom.dol", 0x3F6320, 0x4 +.global lbl_805A8984 +lbl_805A8984: + .incbin "baserom.dol", 0x3F6324, 0x4 +.global lbl_805A8988 +lbl_805A8988: + .incbin "baserom.dol", 0x3F6328, 0x4 +.global lbl_805A898C +lbl_805A898C: + .incbin "baserom.dol", 0x3F632C, 0x4 +.global lbl_805A8990 +lbl_805A8990: + .incbin "baserom.dol", 0x3F6330, 0x4 +.global lbl_805A8994 +lbl_805A8994: + .incbin "baserom.dol", 0x3F6334, 0x4 +.global lbl_805A8998 +lbl_805A8998: + .incbin "baserom.dol", 0x3F6338, 0x2 +.global lbl_805A899A +lbl_805A899A: + .incbin "baserom.dol", 0x3F633A, 0x2 +.global lbl_805A899C +lbl_805A899C: + .incbin "baserom.dol", 0x3F633C, 0x2 +.global lbl_805A899E +lbl_805A899E: + .incbin "baserom.dol", 0x3F633E, 0x1 +.global lbl_805A899F +lbl_805A899F: + .incbin "baserom.dol", 0x3F633F, 0x1 +.global lbl_805A89A0 +lbl_805A89A0: + .incbin "baserom.dol", 0x3F6340, 0x1 +.global lbl_805A89A1 +lbl_805A89A1: + .incbin "baserom.dol", 0x3F6341, 0x1 +.global lbl_805A89A2 +lbl_805A89A2: + .incbin "baserom.dol", 0x3F6342, 0x1 +.global lbl_805A89A3 +lbl_805A89A3: + .incbin "baserom.dol", 0x3F6343, 0x1 +.global lbl_805A89A4 +lbl_805A89A4: + .incbin "baserom.dol", 0x3F6344, 0x1 +.global lbl_805A89A5 +lbl_805A89A5: + .incbin "baserom.dol", 0x3F6345, 0x1 +.global lbl_805A89A6 +lbl_805A89A6: + .incbin "baserom.dol", 0x3F6346, 0x1 +.global lbl_805A89A7 +lbl_805A89A7: + .incbin "baserom.dol", 0x3F6347, 0x1 +.global lbl_805A89A8 +lbl_805A89A8: + .incbin "baserom.dol", 0x3F6348, 0x1 +.global lbl_805A89A9 +lbl_805A89A9: + .incbin "baserom.dol", 0x3F6349, 0x1 +.global lbl_805A89AA +lbl_805A89AA: + .incbin "baserom.dol", 0x3F634A, 0x1 +.global lbl_805A89AB +lbl_805A89AB: + .incbin "baserom.dol", 0x3F634B, 0x5 +.global lbl_805A89B0 +lbl_805A89B0: + .incbin "baserom.dol", 0x3F6350, 0x4 +.global lbl_805A89B4 +lbl_805A89B4: + .incbin "baserom.dol", 0x3F6354, 0x4 +.global lbl_805A89B8 +lbl_805A89B8: + .incbin "baserom.dol", 0x3F6358, 0x8 +.global lbl_805A89C0 +lbl_805A89C0: + .incbin "baserom.dol", 0x3F6360, 0x4 +.global lbl_805A89C4 +lbl_805A89C4: + .incbin "baserom.dol", 0x3F6364, 0x4 +.global lbl_805A89C8 +lbl_805A89C8: + .incbin "baserom.dol", 0x3F6368, 0x4 +.global lbl_805A89CC +lbl_805A89CC: + .incbin "baserom.dol", 0x3F636C, 0x4 +.global lbl_805A89D0 +lbl_805A89D0: + .incbin "baserom.dol", 0x3F6370, 0x8 +.global lbl_805A89D8 +lbl_805A89D8: + .incbin "baserom.dol", 0x3F6378, 0x8 +.global lbl_805A89E0 +lbl_805A89E0: + .incbin "baserom.dol", 0x3F6380, 0x8 +.global lbl_805A89E8 +lbl_805A89E8: + .incbin "baserom.dol", 0x3F6388, 0x1 +.global lbl_805A89E9 +lbl_805A89E9: + .incbin "baserom.dol", 0x3F6389, 0x3 +.global lbl_805A89EC +lbl_805A89EC: + .incbin "baserom.dol", 0x3F638C, 0x4 +.global lbl_805A89F0 +lbl_805A89F0: + .incbin "baserom.dol", 0x3F6390, 0x8 +.global lbl_805A89F8 +lbl_805A89F8: + .incbin "baserom.dol", 0x3F6398, 0x4 +.global lbl_805A89FC +lbl_805A89FC: + .incbin "baserom.dol", 0x3F639C, 0x4 +.global lbl_805A8A00 +lbl_805A8A00: + .incbin "baserom.dol", 0x3F63A0, 0x4 +.global lbl_805A8A04 +lbl_805A8A04: + .incbin "baserom.dol", 0x3F63A4, 0x4 +.global lbl_805A8A08 +lbl_805A8A08: + .incbin "baserom.dol", 0x3F63A8, 0x8 +.global lbl_805A8A10 +lbl_805A8A10: + .incbin "baserom.dol", 0x3F63B0, 0x2 +.global lbl_805A8A12 +lbl_805A8A12: + .incbin "baserom.dol", 0x3F63B2, 0x2 +.global lbl_805A8A14 +lbl_805A8A14: + .incbin "baserom.dol", 0x3F63B4, 0x4 +.global lbl_805A8A18 +lbl_805A8A18: + .incbin "baserom.dol", 0x3F63B8, 0x8 +.global lbl_805A8A20 +lbl_805A8A20: + .incbin "baserom.dol", 0x3F63C0, 0x4 +.global lbl_805A8A24 +lbl_805A8A24: + .incbin "baserom.dol", 0x3F63C4, 0x4 +.global lbl_805A8A28 +lbl_805A8A28: + .incbin "baserom.dol", 0x3F63C8, 0x4 +.global lbl_805A8A2C +lbl_805A8A2C: + .incbin "baserom.dol", 0x3F63CC, 0x4 +.global lbl_805A8A30 +lbl_805A8A30: + .incbin "baserom.dol", 0x3F63D0, 0x4 +.global lbl_805A8A34 +lbl_805A8A34: + .incbin "baserom.dol", 0x3F63D4, 0x4 +.global lbl_805A8A38 +lbl_805A8A38: + .incbin "baserom.dol", 0x3F63D8, 0x4 +.global lbl_805A8A3C +lbl_805A8A3C: + .incbin "baserom.dol", 0x3F63DC, 0x4 +.global lbl_805A8A40 +lbl_805A8A40: + .incbin "baserom.dol", 0x3F63E0, 0x1 +.global lbl_805A8A41 +lbl_805A8A41: + .incbin "baserom.dol", 0x3F63E1, 0x7 +.global lbl_805A8A48 +lbl_805A8A48: + .incbin "baserom.dol", 0x3F63E8, 0x4 +.global lbl_805A8A4C +lbl_805A8A4C: + .incbin "baserom.dol", 0x3F63EC, 0x1 +.global lbl_805A8A4D +lbl_805A8A4D: + .incbin "baserom.dol", 0x3F63ED, 0x3 +.global lbl_805A8A50 +lbl_805A8A50: + .incbin "baserom.dol", 0x3F63F0, 0x4 +.global lbl_805A8A54 +lbl_805A8A54: + .incbin "baserom.dol", 0x3F63F4, 0x4 +.global lbl_805A8A58 +lbl_805A8A58: + .incbin "baserom.dol", 0x3F63F8, 0x1 +.global lbl_805A8A59 +lbl_805A8A59: + .incbin "baserom.dol", 0x3F63F9, 0x1 +.global lbl_805A8A5A +lbl_805A8A5A: + .incbin "baserom.dol", 0x3F63FA, 0x1 +.global lbl_805A8A5B +lbl_805A8A5B: + .incbin "baserom.dol", 0x3F63FB, 0x1 +.global lbl_805A8A5C +lbl_805A8A5C: + .incbin "baserom.dol", 0x3F63FC, 0x1 +.global lbl_805A8A5D +lbl_805A8A5D: + .incbin "baserom.dol", 0x3F63FD, 0x3 +.global lbl_805A8A60 +lbl_805A8A60: + .incbin "baserom.dol", 0x3F6400, 0x8 +.global lbl_805A8A68 +lbl_805A8A68: + .incbin "baserom.dol", 0x3F6408, 0x8 +.global lbl_805A8A70 +lbl_805A8A70: + .incbin "baserom.dol", 0x3F6410, 0x8 +.global lbl_805A8A78 +lbl_805A8A78: + .incbin "baserom.dol", 0x3F6418, 0x8 +.global lbl_805A8A80 +lbl_805A8A80: + .incbin "baserom.dol", 0x3F6420, 0x8 +.global lbl_805A8A88 +lbl_805A8A88: + .incbin "baserom.dol", 0x3F6428, 0x8 +.global lbl_805A8A90 +lbl_805A8A90: + .incbin "baserom.dol", 0x3F6430, 0x8 +.global lbl_805A8A98 +lbl_805A8A98: + .incbin "baserom.dol", 0x3F6438, 0x4 +.global lbl_805A8A9C +lbl_805A8A9C: + .incbin "baserom.dol", 0x3F643C, 0x4 +.global lbl_805A8AA0 +lbl_805A8AA0: + .incbin "baserom.dol", 0x3F6440, 0x4 +.global lbl_805A8AA4 +lbl_805A8AA4: + .incbin "baserom.dol", 0x3F6444, 0x8 +.global lbl_805A8AAC +lbl_805A8AAC: + .incbin "baserom.dol", 0x3F644C, 0x4 +.global lbl_805A8AB0 +lbl_805A8AB0: + .incbin "baserom.dol", 0x3F6450, 0x4 +.global lbl_805A8AB4 +lbl_805A8AB4: + .incbin "baserom.dol", 0x3F6454, 0x4 +.global lbl_805A8AB8 +lbl_805A8AB8: + .incbin "baserom.dol", 0x3F6458, 0x4 +.global lbl_805A8ABC +lbl_805A8ABC: + .incbin "baserom.dol", 0x3F645C, 0x4 +.global lbl_805A8AC0 +lbl_805A8AC0: + .incbin "baserom.dol", 0x3F6460, 0x8 +.global lbl_805A8AC8 +lbl_805A8AC8: + .incbin "baserom.dol", 0x3F6468, 0x8 +.global lbl_805A8AD0 +lbl_805A8AD0: + .incbin "baserom.dol", 0x3F6470, 0x4 +.global lbl_805A8AD4 +lbl_805A8AD4: + .incbin "baserom.dol", 0x3F6474, 0x4 +.global lbl_805A8AD8 +lbl_805A8AD8: + .incbin "baserom.dol", 0x3F6478, 0x8 +.global lbl_805A8AE0 +lbl_805A8AE0: + .incbin "baserom.dol", 0x3F6480, 0x8 +.global lbl_805A8AE8 +lbl_805A8AE8: + .incbin "baserom.dol", 0x3F6488, 0x8 +.global lbl_805A8AF0 +lbl_805A8AF0: + .incbin "baserom.dol", 0x3F6490, 0x8 +.global lbl_805A8AF8 +lbl_805A8AF8: + .incbin "baserom.dol", 0x3F6498, 0x8 +.global lbl_805A8B00 +lbl_805A8B00: + .incbin "baserom.dol", 0x3F64A0, 0x8 +.global lbl_805A8B08 +lbl_805A8B08: + .incbin "baserom.dol", 0x3F64A8, 0x8 +.global lbl_805A8B10 +lbl_805A8B10: + .incbin "baserom.dol", 0x3F64B0, 0x8 +.global lbl_805A8B18 +lbl_805A8B18: + .incbin "baserom.dol", 0x3F64B8, 0x8 +.global lbl_805A8B20 +lbl_805A8B20: + .incbin "baserom.dol", 0x3F64C0, 0x8 +.global lbl_805A8B28 +lbl_805A8B28: + .incbin "baserom.dol", 0x3F64C8, 0x4 +.global lbl_805A8B2C +lbl_805A8B2C: + .incbin "baserom.dol", 0x3F64CC, 0x4 +.global lbl_805A8B30 +lbl_805A8B30: + .incbin "baserom.dol", 0x3F64D0, 0x8 +.global lbl_805A8B38 +lbl_805A8B38: + .incbin "baserom.dol", 0x3F64D8, 0x4 +.global lbl_805A8B3C +lbl_805A8B3C: + .incbin "baserom.dol", 0x3F64DC, 0x4 +.global lbl_805A8B40 +lbl_805A8B40: + .incbin "baserom.dol", 0x3F64E0, 0x8 +.global lbl_805A8B48 +lbl_805A8B48: + .incbin "baserom.dol", 0x3F64E8, 0x8 +.global lbl_805A8B50 +lbl_805A8B50: + .incbin "baserom.dol", 0x3F64F0, 0x8 +.global lbl_805A8B58 +lbl_805A8B58: + .incbin "baserom.dol", 0x3F64F8, 0x4 +.global lbl_805A8B5C +lbl_805A8B5C: + .incbin "baserom.dol", 0x3F64FC, 0x4 +.global lbl_805A8B60 +lbl_805A8B60: + .incbin "baserom.dol", 0x3F6500, 0x4 +.global lbl_805A8B64 +lbl_805A8B64: + .incbin "baserom.dol", 0x3F6504, 0x4 +.global lbl_805A8B68 +lbl_805A8B68: + .incbin "baserom.dol", 0x3F6508, 0x4 +.global lbl_805A8B6C +lbl_805A8B6C: + .incbin "baserom.dol", 0x3F650C, 0x4 +.global lbl_805A8B70 +lbl_805A8B70: + .incbin "baserom.dol", 0x3F6510, 0x4 +.global lbl_805A8B74 +lbl_805A8B74: + .incbin "baserom.dol", 0x3F6514, 0x4 +.global lbl_805A8B78 +lbl_805A8B78: + .incbin "baserom.dol", 0x3F6518, 0x4 +.global lbl_805A8B7C +lbl_805A8B7C: + .incbin "baserom.dol", 0x3F651C, 0xC +.global lbl_805A8B88 +lbl_805A8B88: + .incbin "baserom.dol", 0x3F6528, 0x8 +.global lbl_805A8B90 +lbl_805A8B90: + .incbin "baserom.dol", 0x3F6530, 0x8 +.global lbl_805A8B98 +lbl_805A8B98: + .incbin "baserom.dol", 0x3F6538, 0x8 +.global lbl_805A8BA0 +lbl_805A8BA0: + .incbin "baserom.dol", 0x3F6540, 0x4 +.global lbl_805A8BA4 +lbl_805A8BA4: + .incbin "baserom.dol", 0x3F6544, 0x4 +.global lbl_805A8BA8 +lbl_805A8BA8: + .incbin "baserom.dol", 0x3F6548, 0x8 +.global lbl_805A8BB0 +lbl_805A8BB0: + .incbin "baserom.dol", 0x3F6550, 0x8 +.global lbl_805A8BB8 +lbl_805A8BB8: + .incbin "baserom.dol", 0x3F6558, 0x8 +.global lbl_805A8BC0 +lbl_805A8BC0: + .incbin "baserom.dol", 0x3F6560, 0x8 +.global lbl_805A8BC8 +lbl_805A8BC8: + .incbin "baserom.dol", 0x3F6568, 0x8 +.global lbl_805A8BD0 +lbl_805A8BD0: + .incbin "baserom.dol", 0x3F6570, 0x8 +.global lbl_805A8BD8 +lbl_805A8BD8: + .incbin "baserom.dol", 0x3F6578, 0x8 +.global lbl_805A8BE0 +lbl_805A8BE0: + .incbin "baserom.dol", 0x3F6580, 0x8 +.global lbl_805A8BE8 +lbl_805A8BE8: + .incbin "baserom.dol", 0x3F6588, 0x8 +.global lbl_805A8BF0 +lbl_805A8BF0: + .incbin "baserom.dol", 0x3F6590, 0x8 +.global lbl_805A8BF8 +lbl_805A8BF8: + .incbin "baserom.dol", 0x3F6598, 0x8 +.global lbl_805A8C00 +lbl_805A8C00: + .incbin "baserom.dol", 0x3F65A0, 0x8 +.global lbl_805A8C08 +lbl_805A8C08: + .incbin "baserom.dol", 0x3F65A8, 0x8 +.global lbl_805A8C10 +lbl_805A8C10: + .incbin "baserom.dol", 0x3F65B0, 0x8 +.global lbl_805A8C18 +lbl_805A8C18: + .incbin "baserom.dol", 0x3F65B8, 0x4 diff --git a/asm/sdata2.s b/asm/sdata2.s new file mode 100644 index 00000000..fd9363a0 --- /dev/null +++ b/asm/sdata2.s @@ -0,0 +1,14100 @@ +.include "macros.inc" + +.section .sdata2, "a" # 0x805A9D20 - 0x805AF45C +.global lbl_805A9D20 +lbl_805A9D20: + .incbin "baserom.dol", 0x3F65C0, 0x4 +.global lbl_805A9D24 +lbl_805A9D24: + .incbin "baserom.dol", 0x3F65C4, 0x4 +.global lbl_805A9D28 +lbl_805A9D28: + .incbin "baserom.dol", 0x3F65C8, 0x8 +.global lbl_805A9D30 +lbl_805A9D30: + .incbin "baserom.dol", 0x3F65D0, 0x8 +.global lbl_805A9D38 +lbl_805A9D38: + .incbin "baserom.dol", 0x3F65D8, 0x8 +.global lbl_805A9D40 +lbl_805A9D40: + .incbin "baserom.dol", 0x3F65E0, 0x8 +.global lbl_805A9D48 +lbl_805A9D48: + .incbin "baserom.dol", 0x3F65E8, 0x8 +.global lbl_805A9D50 +lbl_805A9D50: + .incbin "baserom.dol", 0x3F65F0, 0x4 +.global lbl_805A9D54 +lbl_805A9D54: + .incbin "baserom.dol", 0x3F65F4, 0x4 +.global lbl_805A9D58 +lbl_805A9D58: + .incbin "baserom.dol", 0x3F65F8, 0x4 +.global lbl_805A9D5C +lbl_805A9D5C: + .incbin "baserom.dol", 0x3F65FC, 0x4 +.global lbl_805A9D60 +lbl_805A9D60: + .incbin "baserom.dol", 0x3F6600, 0x8 +.global lbl_805A9D68 +lbl_805A9D68: + .incbin "baserom.dol", 0x3F6608, 0x4 +.global lbl_805A9D6C +lbl_805A9D6C: + .incbin "baserom.dol", 0x3F660C, 0x4 +.global lbl_805A9D70 +lbl_805A9D70: + .incbin "baserom.dol", 0x3F6610, 0x8 +.global lbl_805A9D78 +lbl_805A9D78: + .incbin "baserom.dol", 0x3F6618, 0x4 +.global lbl_805A9D7C +lbl_805A9D7C: + .incbin "baserom.dol", 0x3F661C, 0x4 +.global lbl_805A9D80 +lbl_805A9D80: + .incbin "baserom.dol", 0x3F6620, 0x8 +.global lbl_805A9D88 +lbl_805A9D88: + .incbin "baserom.dol", 0x3F6628, 0x8 +.global lbl_805A9D90 +lbl_805A9D90: + .incbin "baserom.dol", 0x3F6630, 0x4 +.global lbl_805A9D94 +lbl_805A9D94: + .incbin "baserom.dol", 0x3F6634, 0x4 +.global lbl_805A9D98 +lbl_805A9D98: + .incbin "baserom.dol", 0x3F6638, 0x8 +.global lbl_805A9DA0 +lbl_805A9DA0: + .incbin "baserom.dol", 0x3F6640, 0x4 +.global lbl_805A9DA4 +lbl_805A9DA4: + .incbin "baserom.dol", 0x3F6644, 0x4 +.global lbl_805A9DA8 +lbl_805A9DA8: + .incbin "baserom.dol", 0x3F6648, 0x4 +.global lbl_805A9DAC +lbl_805A9DAC: + .incbin "baserom.dol", 0x3F664C, 0x4 +.global lbl_805A9DB0 +lbl_805A9DB0: + .incbin "baserom.dol", 0x3F6650, 0x4 +.global lbl_805A9DB4 +lbl_805A9DB4: + .incbin "baserom.dol", 0x3F6654, 0x4 +.global lbl_805A9DB8 +lbl_805A9DB8: + .incbin "baserom.dol", 0x3F6658, 0x8 +.global lbl_805A9DC0 +lbl_805A9DC0: + .incbin "baserom.dol", 0x3F6660, 0x8 +.global lbl_805A9DC8 +lbl_805A9DC8: + .incbin "baserom.dol", 0x3F6668, 0x4 +.global lbl_805A9DCC +lbl_805A9DCC: + .incbin "baserom.dol", 0x3F666C, 0x4 +.global lbl_805A9DD0 +lbl_805A9DD0: + .incbin "baserom.dol", 0x3F6670, 0x4 +.global lbl_805A9DD4 +lbl_805A9DD4: + .incbin "baserom.dol", 0x3F6674, 0x4 +.global lbl_805A9DD8 +lbl_805A9DD8: + .incbin "baserom.dol", 0x3F6678, 0x8 +.global lbl_805A9DE0 +lbl_805A9DE0: + .incbin "baserom.dol", 0x3F6680, 0x8 +.global lbl_805A9DE8 +lbl_805A9DE8: + .incbin "baserom.dol", 0x3F6688, 0x4 +.global lbl_805A9DEC +lbl_805A9DEC: + .incbin "baserom.dol", 0x3F668C, 0x4 +.global lbl_805A9DF0 +lbl_805A9DF0: + .incbin "baserom.dol", 0x3F6690, 0x4 +.global lbl_805A9DF4 +lbl_805A9DF4: + .incbin "baserom.dol", 0x3F6694, 0x4 +.global lbl_805A9DF8 +lbl_805A9DF8: + .incbin "baserom.dol", 0x3F6698, 0x4 +.global lbl_805A9DFC +lbl_805A9DFC: + .incbin "baserom.dol", 0x3F669C, 0x4 +.global lbl_805A9E00 +lbl_805A9E00: + .incbin "baserom.dol", 0x3F66A0, 0x1 +.global lbl_805A9E01 +lbl_805A9E01: + .incbin "baserom.dol", 0x3F66A1, 0x1 +.global lbl_805A9E02 +lbl_805A9E02: + .incbin "baserom.dol", 0x3F66A2, 0x2 +.global lbl_805A9E04 +lbl_805A9E04: + .incbin "baserom.dol", 0x3F66A4, 0x4 +.global lbl_805A9E08 +lbl_805A9E08: + .incbin "baserom.dol", 0x3F66A8, 0x1 +.global lbl_805A9E09 +lbl_805A9E09: + .incbin "baserom.dol", 0x3F66A9, 0x3 +.global lbl_805A9E0C +lbl_805A9E0C: + .incbin "baserom.dol", 0x3F66AC, 0x4 +.global lbl_805A9E10 +lbl_805A9E10: + .incbin "baserom.dol", 0x3F66B0, 0x4 +.global lbl_805A9E14 +lbl_805A9E14: + .incbin "baserom.dol", 0x3F66B4, 0x4 +.global lbl_805A9E18 +lbl_805A9E18: + .incbin "baserom.dol", 0x3F66B8, 0x4 +.global lbl_805A9E1C +lbl_805A9E1C: + .incbin "baserom.dol", 0x3F66BC, 0x4 +.global lbl_805A9E20 +lbl_805A9E20: + .incbin "baserom.dol", 0x3F66C0, 0x4 +.global lbl_805A9E24 +lbl_805A9E24: + .incbin "baserom.dol", 0x3F66C4, 0x4 +.global lbl_805A9E28 +lbl_805A9E28: + .incbin "baserom.dol", 0x3F66C8, 0x4 +.global lbl_805A9E2C +lbl_805A9E2C: + .incbin "baserom.dol", 0x3F66CC, 0x4 +.global lbl_805A9E30 +lbl_805A9E30: + .incbin "baserom.dol", 0x3F66D0, 0x4 +.global lbl_805A9E34 +lbl_805A9E34: + .incbin "baserom.dol", 0x3F66D4, 0x4 +.global lbl_805A9E38 +lbl_805A9E38: + .incbin "baserom.dol", 0x3F66D8, 0x4 +.global lbl_805A9E3C +lbl_805A9E3C: + .incbin "baserom.dol", 0x3F66DC, 0x4 +.global lbl_805A9E40 +lbl_805A9E40: + .incbin "baserom.dol", 0x3F66E0, 0x4 +.global lbl_805A9E44 +lbl_805A9E44: + .incbin "baserom.dol", 0x3F66E4, 0x4 +.global lbl_805A9E48 +lbl_805A9E48: + .incbin "baserom.dol", 0x3F66E8, 0x4 +.global lbl_805A9E4C +lbl_805A9E4C: + .incbin "baserom.dol", 0x3F66EC, 0x4 +.global lbl_805A9E50 +lbl_805A9E50: + .incbin "baserom.dol", 0x3F66F0, 0x4 +.global lbl_805A9E54 +lbl_805A9E54: + .incbin "baserom.dol", 0x3F66F4, 0x4 +.global lbl_805A9E58 +lbl_805A9E58: + .incbin "baserom.dol", 0x3F66F8, 0x4 +.global lbl_805A9E5C +lbl_805A9E5C: + .incbin "baserom.dol", 0x3F66FC, 0x4 +.global lbl_805A9E60 +lbl_805A9E60: + .incbin "baserom.dol", 0x3F6700, 0x4 +.global lbl_805A9E64 +lbl_805A9E64: + .incbin "baserom.dol", 0x3F6704, 0x4 +.global lbl_805A9E68 +lbl_805A9E68: + .incbin "baserom.dol", 0x3F6708, 0x4 +.global lbl_805A9E6C +lbl_805A9E6C: + .incbin "baserom.dol", 0x3F670C, 0x4 +.global lbl_805A9E70 +lbl_805A9E70: + .incbin "baserom.dol", 0x3F6710, 0x4 +.global lbl_805A9E74 +lbl_805A9E74: + .incbin "baserom.dol", 0x3F6714, 0x4 +.global lbl_805A9E78 +lbl_805A9E78: + .incbin "baserom.dol", 0x3F6718, 0x8 +.global lbl_805A9E80 +lbl_805A9E80: + .incbin "baserom.dol", 0x3F6720, 0x8 +.global lbl_805A9E88 +lbl_805A9E88: + .incbin "baserom.dol", 0x3F6728, 0x4 +.global lbl_805A9E8C +lbl_805A9E8C: + .incbin "baserom.dol", 0x3F672C, 0x4 +.global lbl_805A9E90 +lbl_805A9E90: + .incbin "baserom.dol", 0x3F6730, 0x4 +.global lbl_805A9E94 +lbl_805A9E94: + .incbin "baserom.dol", 0x3F6734, 0x4 +.global lbl_805A9E98 +lbl_805A9E98: + .incbin "baserom.dol", 0x3F6738, 0x8 +.global lbl_805A9EA0 +lbl_805A9EA0: + .incbin "baserom.dol", 0x3F6740, 0x8 +.global lbl_805A9EA8 +lbl_805A9EA8: + .incbin "baserom.dol", 0x3F6748, 0x4 +.global lbl_805A9EAC +lbl_805A9EAC: + .incbin "baserom.dol", 0x3F674C, 0x4 +.global lbl_805A9EB0 +lbl_805A9EB0: + .incbin "baserom.dol", 0x3F6750, 0x4 +.global lbl_805A9EB4 +lbl_805A9EB4: + .incbin "baserom.dol", 0x3F6754, 0x4 +.global lbl_805A9EB8 +lbl_805A9EB8: + .incbin "baserom.dol", 0x3F6758, 0x4 +.global lbl_805A9EBC +lbl_805A9EBC: + .incbin "baserom.dol", 0x3F675C, 0x4 +.global lbl_805A9EC0 +lbl_805A9EC0: + .incbin "baserom.dol", 0x3F6760, 0x4 +.global lbl_805A9EC4 +lbl_805A9EC4: + .incbin "baserom.dol", 0x3F6764, 0x4 +.global lbl_805A9EC8 +lbl_805A9EC8: + .incbin "baserom.dol", 0x3F6768, 0x4 +.global lbl_805A9ECC +lbl_805A9ECC: + .incbin "baserom.dol", 0x3F676C, 0x4 +.global lbl_805A9ED0 +lbl_805A9ED0: + .incbin "baserom.dol", 0x3F6770, 0x4 +.global lbl_805A9ED4 +lbl_805A9ED4: + .incbin "baserom.dol", 0x3F6774, 0x4 +.global lbl_805A9ED8 +lbl_805A9ED8: + .incbin "baserom.dol", 0x3F6778, 0x4 +.global lbl_805A9EDC +lbl_805A9EDC: + .incbin "baserom.dol", 0x3F677C, 0x4 +.global lbl_805A9EE0 +lbl_805A9EE0: + .incbin "baserom.dol", 0x3F6780, 0x4 +.global lbl_805A9EE4 +lbl_805A9EE4: + .incbin "baserom.dol", 0x3F6784, 0x4 +.global lbl_805A9EE8 +lbl_805A9EE8: + .incbin "baserom.dol", 0x3F6788, 0x4 +.global lbl_805A9EEC +lbl_805A9EEC: + .incbin "baserom.dol", 0x3F678C, 0x4 +.global lbl_805A9EF0 +lbl_805A9EF0: + .incbin "baserom.dol", 0x3F6790, 0x4 +.global lbl_805A9EF4 +lbl_805A9EF4: + .incbin "baserom.dol", 0x3F6794, 0x4 +.global lbl_805A9EF8 +lbl_805A9EF8: + .incbin "baserom.dol", 0x3F6798, 0x4 +.global lbl_805A9EFC +lbl_805A9EFC: + .incbin "baserom.dol", 0x3F679C, 0x4 +.global lbl_805A9F00 +lbl_805A9F00: + .incbin "baserom.dol", 0x3F67A0, 0x4 +.global lbl_805A9F04 +lbl_805A9F04: + .incbin "baserom.dol", 0x3F67A4, 0x4 +.global lbl_805A9F08 +lbl_805A9F08: + .incbin "baserom.dol", 0x3F67A8, 0x4 +.global lbl_805A9F0C +lbl_805A9F0C: + .incbin "baserom.dol", 0x3F67AC, 0x4 +.global lbl_805A9F10 +lbl_805A9F10: + .incbin "baserom.dol", 0x3F67B0, 0x4 +.global lbl_805A9F14 +lbl_805A9F14: + .incbin "baserom.dol", 0x3F67B4, 0x4 +.global lbl_805A9F18 +lbl_805A9F18: + .incbin "baserom.dol", 0x3F67B8, 0x4 +.global lbl_805A9F1C +lbl_805A9F1C: + .incbin "baserom.dol", 0x3F67BC, 0x4 +.global lbl_805A9F20 +lbl_805A9F20: + .incbin "baserom.dol", 0x3F67C0, 0x4 +.global lbl_805A9F24 +lbl_805A9F24: + .incbin "baserom.dol", 0x3F67C4, 0x4 +.global lbl_805A9F28 +lbl_805A9F28: + .incbin "baserom.dol", 0x3F67C8, 0x4 +.global lbl_805A9F2C +lbl_805A9F2C: + .incbin "baserom.dol", 0x3F67CC, 0x4 +.global lbl_805A9F30 +lbl_805A9F30: + .incbin "baserom.dol", 0x3F67D0, 0x8 +.global lbl_805A9F38 +lbl_805A9F38: + .incbin "baserom.dol", 0x3F67D8, 0x4 +.global lbl_805A9F3C +lbl_805A9F3C: + .incbin "baserom.dol", 0x3F67DC, 0x4 +.global lbl_805A9F40 +lbl_805A9F40: + .incbin "baserom.dol", 0x3F67E0, 0x4 +.global lbl_805A9F44 +lbl_805A9F44: + .incbin "baserom.dol", 0x3F67E4, 0x4 +.global lbl_805A9F48 +lbl_805A9F48: + .incbin "baserom.dol", 0x3F67E8, 0x4 +.global lbl_805A9F4C +lbl_805A9F4C: + .incbin "baserom.dol", 0x3F67EC, 0x4 +.global lbl_805A9F50 +lbl_805A9F50: + .incbin "baserom.dol", 0x3F67F0, 0x4 +.global lbl_805A9F54 +lbl_805A9F54: + .incbin "baserom.dol", 0x3F67F4, 0x4 +.global lbl_805A9F58 +lbl_805A9F58: + .incbin "baserom.dol", 0x3F67F8, 0x4 +.global lbl_805A9F5C +lbl_805A9F5C: + .incbin "baserom.dol", 0x3F67FC, 0x4 +.global lbl_805A9F60 +lbl_805A9F60: + .incbin "baserom.dol", 0x3F6800, 0x4 +.global lbl_805A9F64 +lbl_805A9F64: + .incbin "baserom.dol", 0x3F6804, 0x4 +.global lbl_805A9F68 +lbl_805A9F68: + .incbin "baserom.dol", 0x3F6808, 0x4 +.global lbl_805A9F6C +lbl_805A9F6C: + .incbin "baserom.dol", 0x3F680C, 0x4 +.global lbl_805A9F70 +lbl_805A9F70: + .incbin "baserom.dol", 0x3F6810, 0x8 +.global lbl_805A9F78 +lbl_805A9F78: + .incbin "baserom.dol", 0x3F6818, 0x4 +.global lbl_805A9F7C +lbl_805A9F7C: + .incbin "baserom.dol", 0x3F681C, 0x4 +.global lbl_805A9F80 +lbl_805A9F80: + .incbin "baserom.dol", 0x3F6820, 0x8 +.global lbl_805A9F88 +lbl_805A9F88: + .incbin "baserom.dol", 0x3F6828, 0x8 +.global lbl_805A9F90 +lbl_805A9F90: + .incbin "baserom.dol", 0x3F6830, 0x8 +.global lbl_805A9F98 +lbl_805A9F98: + .incbin "baserom.dol", 0x3F6838, 0x8 +.global lbl_805A9FA0 +lbl_805A9FA0: + .incbin "baserom.dol", 0x3F6840, 0x8 +.global lbl_805A9FA8 +lbl_805A9FA8: + .incbin "baserom.dol", 0x3F6848, 0x4 +.global lbl_805A9FAC +lbl_805A9FAC: + .incbin "baserom.dol", 0x3F684C, 0x4 +.global lbl_805A9FB0 +lbl_805A9FB0: + .incbin "baserom.dol", 0x3F6850, 0x4 +.global lbl_805A9FB4 +lbl_805A9FB4: + .incbin "baserom.dol", 0x3F6854, 0x4 +.global lbl_805A9FB8 +lbl_805A9FB8: + .incbin "baserom.dol", 0x3F6858, 0x4 +.global lbl_805A9FBC +lbl_805A9FBC: + .incbin "baserom.dol", 0x3F685C, 0x4 +.global lbl_805A9FC0 +lbl_805A9FC0: + .incbin "baserom.dol", 0x3F6860, 0x4 +.global lbl_805A9FC4 +lbl_805A9FC4: + .incbin "baserom.dol", 0x3F6864, 0x4 +.global lbl_805A9FC8 +lbl_805A9FC8: + .incbin "baserom.dol", 0x3F6868, 0x4 +.global lbl_805A9FCC +lbl_805A9FCC: + .incbin "baserom.dol", 0x3F686C, 0x4 +.global lbl_805A9FD0 +lbl_805A9FD0: + .incbin "baserom.dol", 0x3F6870, 0x8 +.global lbl_805A9FD8 +lbl_805A9FD8: + .incbin "baserom.dol", 0x3F6878, 0x8 +.global lbl_805A9FE0 +lbl_805A9FE0: + .incbin "baserom.dol", 0x3F6880, 0x4 +.global lbl_805A9FE4 +lbl_805A9FE4: + .incbin "baserom.dol", 0x3F6884, 0x4 +.global lbl_805A9FE8 +lbl_805A9FE8: + .incbin "baserom.dol", 0x3F6888, 0x8 +.global lbl_805A9FF0 +lbl_805A9FF0: + .incbin "baserom.dol", 0x3F6890, 0x4 +.global lbl_805A9FF4 +lbl_805A9FF4: + .incbin "baserom.dol", 0x3F6894, 0x4 +.global lbl_805A9FF8 +lbl_805A9FF8: + .incbin "baserom.dol", 0x3F6898, 0x4 +.global lbl_805A9FFC +lbl_805A9FFC: + .incbin "baserom.dol", 0x3F689C, 0x4 +.global lbl_805AA000 +lbl_805AA000: + .incbin "baserom.dol", 0x3F68A0, 0x4 +.global lbl_805AA004 +lbl_805AA004: + .incbin "baserom.dol", 0x3F68A4, 0x4 +.global lbl_805AA008 +lbl_805AA008: + .incbin "baserom.dol", 0x3F68A8, 0x4 +.global lbl_805AA00C +lbl_805AA00C: + .incbin "baserom.dol", 0x3F68AC, 0x4 +.global lbl_805AA010 +lbl_805AA010: + .incbin "baserom.dol", 0x3F68B0, 0x4 +.global lbl_805AA014 +lbl_805AA014: + .incbin "baserom.dol", 0x3F68B4, 0x4 +.global lbl_805AA018 +lbl_805AA018: + .incbin "baserom.dol", 0x3F68B8, 0x4 +.global lbl_805AA01C +lbl_805AA01C: + .incbin "baserom.dol", 0x3F68BC, 0x4 +.global lbl_805AA020 +lbl_805AA020: + .incbin "baserom.dol", 0x3F68C0, 0x4 +.global lbl_805AA024 +lbl_805AA024: + .incbin "baserom.dol", 0x3F68C4, 0x4 +.global lbl_805AA028 +lbl_805AA028: + .incbin "baserom.dol", 0x3F68C8, 0x4 +.global lbl_805AA02C +lbl_805AA02C: + .incbin "baserom.dol", 0x3F68CC, 0x4 +.global lbl_805AA030 +lbl_805AA030: + .incbin "baserom.dol", 0x3F68D0, 0x4 +.global lbl_805AA034 +lbl_805AA034: + .incbin "baserom.dol", 0x3F68D4, 0x4 +.global lbl_805AA038 +lbl_805AA038: + .incbin "baserom.dol", 0x3F68D8, 0x4 +.global lbl_805AA03C +lbl_805AA03C: + .incbin "baserom.dol", 0x3F68DC, 0x4 +.global lbl_805AA040 +lbl_805AA040: + .incbin "baserom.dol", 0x3F68E0, 0x4 +.global lbl_805AA044 +lbl_805AA044: + .incbin "baserom.dol", 0x3F68E4, 0x4 +.global lbl_805AA048 +lbl_805AA048: + .incbin "baserom.dol", 0x3F68E8, 0x4 +.global lbl_805AA04C +lbl_805AA04C: + .incbin "baserom.dol", 0x3F68EC, 0x4 +.global lbl_805AA050 +lbl_805AA050: + .incbin "baserom.dol", 0x3F68F0, 0x8 +.global lbl_805AA058 +lbl_805AA058: + .incbin "baserom.dol", 0x3F68F8, 0x4 +.global lbl_805AA05C +lbl_805AA05C: + .incbin "baserom.dol", 0x3F68FC, 0x4 +.global lbl_805AA060 +lbl_805AA060: + .incbin "baserom.dol", 0x3F6900, 0x8 +.global lbl_805AA068 +lbl_805AA068: + .incbin "baserom.dol", 0x3F6908, 0x4 +.global lbl_805AA06C +lbl_805AA06C: + .incbin "baserom.dol", 0x3F690C, 0x4 +.global lbl_805AA070 +lbl_805AA070: + .incbin "baserom.dol", 0x3F6910, 0x4 +.global lbl_805AA074 +lbl_805AA074: + .incbin "baserom.dol", 0x3F6914, 0x4 +.global lbl_805AA078 +lbl_805AA078: + .incbin "baserom.dol", 0x3F6918, 0x4 +.global lbl_805AA07C +lbl_805AA07C: + .incbin "baserom.dol", 0x3F691C, 0x4 +.global lbl_805AA080 +lbl_805AA080: + .incbin "baserom.dol", 0x3F6920, 0x4 +.global lbl_805AA084 +lbl_805AA084: + .incbin "baserom.dol", 0x3F6924, 0x4 +.global lbl_805AA088 +lbl_805AA088: + .incbin "baserom.dol", 0x3F6928, 0x8 +.global lbl_805AA090 +lbl_805AA090: + .incbin "baserom.dol", 0x3F6930, 0x4 +.global lbl_805AA094 +lbl_805AA094: + .incbin "baserom.dol", 0x3F6934, 0x4 +.global lbl_805AA098 +lbl_805AA098: + .incbin "baserom.dol", 0x3F6938, 0x4 +.global lbl_805AA09C +lbl_805AA09C: + .incbin "baserom.dol", 0x3F693C, 0x4 +.global lbl_805AA0A0 +lbl_805AA0A0: + .incbin "baserom.dol", 0x3F6940, 0x4 +.global lbl_805AA0A4 +lbl_805AA0A4: + .incbin "baserom.dol", 0x3F6944, 0x4 +.global lbl_805AA0A8 +lbl_805AA0A8: + .incbin "baserom.dol", 0x3F6948, 0x4 +.global lbl_805AA0AC +lbl_805AA0AC: + .incbin "baserom.dol", 0x3F694C, 0x4 +.global lbl_805AA0B0 +lbl_805AA0B0: + .incbin "baserom.dol", 0x3F6950, 0x4 +.global lbl_805AA0B4 +lbl_805AA0B4: + .incbin "baserom.dol", 0x3F6954, 0x4 +.global lbl_805AA0B8 +lbl_805AA0B8: + .incbin "baserom.dol", 0x3F6958, 0x4 +.global lbl_805AA0BC +lbl_805AA0BC: + .incbin "baserom.dol", 0x3F695C, 0x4 +.global lbl_805AA0C0 +lbl_805AA0C0: + .incbin "baserom.dol", 0x3F6960, 0x4 +.global lbl_805AA0C4 +lbl_805AA0C4: + .incbin "baserom.dol", 0x3F6964, 0x4 +.global lbl_805AA0C8 +lbl_805AA0C8: + .incbin "baserom.dol", 0x3F6968, 0x4 +.global lbl_805AA0CC +lbl_805AA0CC: + .incbin "baserom.dol", 0x3F696C, 0x4 +.global lbl_805AA0D0 +lbl_805AA0D0: + .incbin "baserom.dol", 0x3F6970, 0x8 +.global lbl_805AA0D8 +lbl_805AA0D8: + .incbin "baserom.dol", 0x3F6978, 0x8 +.global lbl_805AA0E0 +lbl_805AA0E0: + .incbin "baserom.dol", 0x3F6980, 0x4 +.global lbl_805AA0E4 +lbl_805AA0E4: + .incbin "baserom.dol", 0x3F6984, 0x4 +.global lbl_805AA0E8 +lbl_805AA0E8: + .incbin "baserom.dol", 0x3F6988, 0x8 +.global lbl_805AA0F0 +lbl_805AA0F0: + .incbin "baserom.dol", 0x3F6990, 0x4 +.global lbl_805AA0F4 +lbl_805AA0F4: + .incbin "baserom.dol", 0x3F6994, 0x4 +.global lbl_805AA0F8 +lbl_805AA0F8: + .incbin "baserom.dol", 0x3F6998, 0x4 +.global lbl_805AA0FC +lbl_805AA0FC: + .incbin "baserom.dol", 0x3F699C, 0x4 +.global lbl_805AA100 +lbl_805AA100: + .incbin "baserom.dol", 0x3F69A0, 0x8 +.global lbl_805AA108 +lbl_805AA108: + .incbin "baserom.dol", 0x3F69A8, 0x4 +.global lbl_805AA10C +lbl_805AA10C: + .incbin "baserom.dol", 0x3F69AC, 0x4 +.global lbl_805AA110 +lbl_805AA110: + .incbin "baserom.dol", 0x3F69B0, 0x8 +.global lbl_805AA118 +lbl_805AA118: + .incbin "baserom.dol", 0x3F69B8, 0x4 +.global lbl_805AA11C +lbl_805AA11C: + .incbin "baserom.dol", 0x3F69BC, 0x4 +.global lbl_805AA120 +lbl_805AA120: + .incbin "baserom.dol", 0x3F69C0, 0x4 +.global lbl_805AA124 +lbl_805AA124: + .incbin "baserom.dol", 0x3F69C4, 0x4 +.global lbl_805AA128 +lbl_805AA128: + .incbin "baserom.dol", 0x3F69C8, 0x4 +.global lbl_805AA12C +lbl_805AA12C: + .incbin "baserom.dol", 0x3F69CC, 0x4 +.global lbl_805AA130 +lbl_805AA130: + .incbin "baserom.dol", 0x3F69D0, 0x4 +.global lbl_805AA134 +lbl_805AA134: + .incbin "baserom.dol", 0x3F69D4, 0x4 +.global lbl_805AA138 +lbl_805AA138: + .incbin "baserom.dol", 0x3F69D8, 0x4 +.global lbl_805AA13C +lbl_805AA13C: + .incbin "baserom.dol", 0x3F69DC, 0x4 +.global lbl_805AA140 +lbl_805AA140: + .incbin "baserom.dol", 0x3F69E0, 0x4 +.global lbl_805AA144 +lbl_805AA144: + .incbin "baserom.dol", 0x3F69E4, 0x4 +.global lbl_805AA148 +lbl_805AA148: + .incbin "baserom.dol", 0x3F69E8, 0x4 +.global lbl_805AA14C +lbl_805AA14C: + .incbin "baserom.dol", 0x3F69EC, 0x4 +.global lbl_805AA150 +lbl_805AA150: + .incbin "baserom.dol", 0x3F69F0, 0x4 +.global lbl_805AA154 +lbl_805AA154: + .incbin "baserom.dol", 0x3F69F4, 0x4 +.global lbl_805AA158 +lbl_805AA158: + .incbin "baserom.dol", 0x3F69F8, 0x8 +.global lbl_805AA160 +lbl_805AA160: + .incbin "baserom.dol", 0x3F6A00, 0x8 +.global lbl_805AA168 +lbl_805AA168: + .incbin "baserom.dol", 0x3F6A08, 0x4 +.global lbl_805AA16C +lbl_805AA16C: + .incbin "baserom.dol", 0x3F6A0C, 0x4 +.global lbl_805AA170 +lbl_805AA170: + .incbin "baserom.dol", 0x3F6A10, 0x8 +.global lbl_805AA178 +lbl_805AA178: + .incbin "baserom.dol", 0x3F6A18, 0x8 +.global lbl_805AA180 +lbl_805AA180: + .incbin "baserom.dol", 0x3F6A20, 0x8 +.global lbl_805AA188 +lbl_805AA188: + .incbin "baserom.dol", 0x3F6A28, 0x4 +.global lbl_805AA18C +lbl_805AA18C: + .incbin "baserom.dol", 0x3F6A2C, 0x4 +.global lbl_805AA190 +lbl_805AA190: + .incbin "baserom.dol", 0x3F6A30, 0x4 +.global lbl_805AA194 +lbl_805AA194: + .incbin "baserom.dol", 0x3F6A34, 0x4 +.global lbl_805AA198 +lbl_805AA198: + .incbin "baserom.dol", 0x3F6A38, 0x4 +.global lbl_805AA19C +lbl_805AA19C: + .incbin "baserom.dol", 0x3F6A3C, 0x4 +.global lbl_805AA1A0 +lbl_805AA1A0: + .incbin "baserom.dol", 0x3F6A40, 0x4 +.global lbl_805AA1A4 +lbl_805AA1A4: + .incbin "baserom.dol", 0x3F6A44, 0x4 +.global lbl_805AA1A8 +lbl_805AA1A8: + .incbin "baserom.dol", 0x3F6A48, 0x4 +.global lbl_805AA1AC +lbl_805AA1AC: + .incbin "baserom.dol", 0x3F6A4C, 0x4 +.global lbl_805AA1B0 +lbl_805AA1B0: + .incbin "baserom.dol", 0x3F6A50, 0x4 +.global lbl_805AA1B4 +lbl_805AA1B4: + .incbin "baserom.dol", 0x3F6A54, 0x4 +.global lbl_805AA1B8 +lbl_805AA1B8: + .incbin "baserom.dol", 0x3F6A58, 0x4 +.global lbl_805AA1BC +lbl_805AA1BC: + .incbin "baserom.dol", 0x3F6A5C, 0x4 +.global lbl_805AA1C0 +lbl_805AA1C0: + .incbin "baserom.dol", 0x3F6A60, 0x4 +.global lbl_805AA1C4 +lbl_805AA1C4: + .incbin "baserom.dol", 0x3F6A64, 0x4 +.global lbl_805AA1C8 +lbl_805AA1C8: + .incbin "baserom.dol", 0x3F6A68, 0x4 +.global lbl_805AA1CC +lbl_805AA1CC: + .incbin "baserom.dol", 0x3F6A6C, 0x4 +.global lbl_805AA1D0 +lbl_805AA1D0: + .incbin "baserom.dol", 0x3F6A70, 0x8 +.global lbl_805AA1D8 +lbl_805AA1D8: + .incbin "baserom.dol", 0x3F6A78, 0x4 +.global lbl_805AA1DC +lbl_805AA1DC: + .incbin "baserom.dol", 0x3F6A7C, 0x4 +.global lbl_805AA1E0 +lbl_805AA1E0: + .incbin "baserom.dol", 0x3F6A80, 0x8 +.global lbl_805AA1E8 +lbl_805AA1E8: + .incbin "baserom.dol", 0x3F6A88, 0x4 +.global lbl_805AA1EC +lbl_805AA1EC: + .incbin "baserom.dol", 0x3F6A8C, 0x4 +.global lbl_805AA1F0 +lbl_805AA1F0: + .incbin "baserom.dol", 0x3F6A90, 0x4 +.global lbl_805AA1F4 +lbl_805AA1F4: + .incbin "baserom.dol", 0x3F6A94, 0x4 +.global lbl_805AA1F8 +lbl_805AA1F8: + .incbin "baserom.dol", 0x3F6A98, 0x4 +.global lbl_805AA1FC +lbl_805AA1FC: + .incbin "baserom.dol", 0x3F6A9C, 0x4 +.global lbl_805AA200 +lbl_805AA200: + .incbin "baserom.dol", 0x3F6AA0, 0x4 +.global lbl_805AA204 +lbl_805AA204: + .incbin "baserom.dol", 0x3F6AA4, 0x4 +.global lbl_805AA208 +lbl_805AA208: + .incbin "baserom.dol", 0x3F6AA8, 0x4 +.global lbl_805AA20C +lbl_805AA20C: + .incbin "baserom.dol", 0x3F6AAC, 0x4 +.global lbl_805AA210 +lbl_805AA210: + .incbin "baserom.dol", 0x3F6AB0, 0x4 +.global lbl_805AA214 +lbl_805AA214: + .incbin "baserom.dol", 0x3F6AB4, 0x4 +.global lbl_805AA218 +lbl_805AA218: + .incbin "baserom.dol", 0x3F6AB8, 0x4 +.global lbl_805AA21C +lbl_805AA21C: + .incbin "baserom.dol", 0x3F6ABC, 0x4 +.global lbl_805AA220 +lbl_805AA220: + .incbin "baserom.dol", 0x3F6AC0, 0x4 +.global lbl_805AA224 +lbl_805AA224: + .incbin "baserom.dol", 0x3F6AC4, 0x4 +.global lbl_805AA228 +lbl_805AA228: + .incbin "baserom.dol", 0x3F6AC8, 0x4 +.global lbl_805AA22C +lbl_805AA22C: + .incbin "baserom.dol", 0x3F6ACC, 0x4 +.global lbl_805AA230 +lbl_805AA230: + .incbin "baserom.dol", 0x3F6AD0, 0x4 +.global lbl_805AA234 +lbl_805AA234: + .incbin "baserom.dol", 0x3F6AD4, 0x4 +.global lbl_805AA238 +lbl_805AA238: + .incbin "baserom.dol", 0x3F6AD8, 0x4 +.global lbl_805AA23C +lbl_805AA23C: + .incbin "baserom.dol", 0x3F6ADC, 0x4 +.global lbl_805AA240 +lbl_805AA240: + .incbin "baserom.dol", 0x3F6AE0, 0x4 +.global lbl_805AA244 +lbl_805AA244: + .incbin "baserom.dol", 0x3F6AE4, 0x4 +.global lbl_805AA248 +lbl_805AA248: + .incbin "baserom.dol", 0x3F6AE8, 0x4 +.global lbl_805AA24C +lbl_805AA24C: + .incbin "baserom.dol", 0x3F6AEC, 0x4 +.global lbl_805AA250 +lbl_805AA250: + .incbin "baserom.dol", 0x3F6AF0, 0x4 +.global lbl_805AA254 +lbl_805AA254: + .incbin "baserom.dol", 0x3F6AF4, 0x4 +.global lbl_805AA258 +lbl_805AA258: + .incbin "baserom.dol", 0x3F6AF8, 0x4 +.global lbl_805AA25C +lbl_805AA25C: + .incbin "baserom.dol", 0x3F6AFC, 0x4 +.global lbl_805AA260 +lbl_805AA260: + .incbin "baserom.dol", 0x3F6B00, 0x4 +.global lbl_805AA264 +lbl_805AA264: + .incbin "baserom.dol", 0x3F6B04, 0x8 +.global lbl_805AA26C +lbl_805AA26C: + .incbin "baserom.dol", 0x3F6B0C, 0x8 +.global lbl_805AA274 +lbl_805AA274: + .incbin "baserom.dol", 0x3F6B14, 0x8 +.global lbl_805AA27C +lbl_805AA27C: + .incbin "baserom.dol", 0x3F6B1C, 0x8 +.global lbl_805AA284 +lbl_805AA284: + .incbin "baserom.dol", 0x3F6B24, 0x4 +.global lbl_805AA288 +lbl_805AA288: + .incbin "baserom.dol", 0x3F6B28, 0x4 +.global lbl_805AA28C +lbl_805AA28C: + .incbin "baserom.dol", 0x3F6B2C, 0x4 +.global lbl_805AA290 +lbl_805AA290: + .incbin "baserom.dol", 0x3F6B30, 0x4 +.global lbl_805AA294 +lbl_805AA294: + .incbin "baserom.dol", 0x3F6B34, 0x4 +.global lbl_805AA298 +lbl_805AA298: + .incbin "baserom.dol", 0x3F6B38, 0x4 +.global lbl_805AA29C +lbl_805AA29C: + .incbin "baserom.dol", 0x3F6B3C, 0x4 +.global lbl_805AA2A0 +lbl_805AA2A0: + .incbin "baserom.dol", 0x3F6B40, 0x4 +.global lbl_805AA2A4 +lbl_805AA2A4: + .incbin "baserom.dol", 0x3F6B44, 0x4 +.global lbl_805AA2A8 +lbl_805AA2A8: + .incbin "baserom.dol", 0x3F6B48, 0x4 +.global lbl_805AA2AC +lbl_805AA2AC: + .incbin "baserom.dol", 0x3F6B4C, 0x4 +.global lbl_805AA2B0 +lbl_805AA2B0: + .incbin "baserom.dol", 0x3F6B50, 0x4 +.global lbl_805AA2B4 +lbl_805AA2B4: + .incbin "baserom.dol", 0x3F6B54, 0x4 +.global lbl_805AA2B8 +lbl_805AA2B8: + .incbin "baserom.dol", 0x3F6B58, 0x4 +.global lbl_805AA2BC +lbl_805AA2BC: + .incbin "baserom.dol", 0x3F6B5C, 0x4 +.global lbl_805AA2C0 +lbl_805AA2C0: + .incbin "baserom.dol", 0x3F6B60, 0x8 +.global lbl_805AA2C8 +lbl_805AA2C8: + .incbin "baserom.dol", 0x3F6B68, 0x8 +.global lbl_805AA2D0 +lbl_805AA2D0: + .incbin "baserom.dol", 0x3F6B70, 0x4 +.global lbl_805AA2D4 +lbl_805AA2D4: + .incbin "baserom.dol", 0x3F6B74, 0x4 +.global lbl_805AA2D8 +lbl_805AA2D8: + .incbin "baserom.dol", 0x3F6B78, 0x4 +.global lbl_805AA2DC +lbl_805AA2DC: + .incbin "baserom.dol", 0x3F6B7C, 0x4 +.global lbl_805AA2E0 +lbl_805AA2E0: + .incbin "baserom.dol", 0x3F6B80, 0x4 +.global lbl_805AA2E4 +lbl_805AA2E4: + .incbin "baserom.dol", 0x3F6B84, 0x4 +.global lbl_805AA2E8 +lbl_805AA2E8: + .incbin "baserom.dol", 0x3F6B88, 0x4 +.global lbl_805AA2EC +lbl_805AA2EC: + .incbin "baserom.dol", 0x3F6B8C, 0x4 +.global lbl_805AA2F0 +lbl_805AA2F0: + .incbin "baserom.dol", 0x3F6B90, 0x4 +.global lbl_805AA2F4 +lbl_805AA2F4: + .incbin "baserom.dol", 0x3F6B94, 0x4 +.global lbl_805AA2F8 +lbl_805AA2F8: + .incbin "baserom.dol", 0x3F6B98, 0x4 +.global lbl_805AA2FC +lbl_805AA2FC: + .incbin "baserom.dol", 0x3F6B9C, 0x4 +.global lbl_805AA300 +lbl_805AA300: + .incbin "baserom.dol", 0x3F6BA0, 0x4 +.global lbl_805AA304 +lbl_805AA304: + .incbin "baserom.dol", 0x3F6BA4, 0x4 +.global lbl_805AA308 +lbl_805AA308: + .incbin "baserom.dol", 0x3F6BA8, 0x4 +.global lbl_805AA30C +lbl_805AA30C: + .incbin "baserom.dol", 0x3F6BAC, 0x4 +.global lbl_805AA310 +lbl_805AA310: + .incbin "baserom.dol", 0x3F6BB0, 0x4 +.global lbl_805AA314 +lbl_805AA314: + .incbin "baserom.dol", 0x3F6BB4, 0x4 +.global lbl_805AA318 +lbl_805AA318: + .incbin "baserom.dol", 0x3F6BB8, 0x4 +.global lbl_805AA31C +lbl_805AA31C: + .incbin "baserom.dol", 0x3F6BBC, 0x4 +.global lbl_805AA320 +lbl_805AA320: + .incbin "baserom.dol", 0x3F6BC0, 0x4 +.global lbl_805AA324 +lbl_805AA324: + .incbin "baserom.dol", 0x3F6BC4, 0x4 +.global lbl_805AA328 +lbl_805AA328: + .incbin "baserom.dol", 0x3F6BC8, 0x8 +.global lbl_805AA330 +lbl_805AA330: + .incbin "baserom.dol", 0x3F6BD0, 0x8 +.global lbl_805AA338 +lbl_805AA338: + .incbin "baserom.dol", 0x3F6BD8, 0x4 +.global lbl_805AA33C +lbl_805AA33C: + .incbin "baserom.dol", 0x3F6BDC, 0x4 +.global lbl_805AA340 +lbl_805AA340: + .incbin "baserom.dol", 0x3F6BE0, 0x4 +.global lbl_805AA344 +lbl_805AA344: + .incbin "baserom.dol", 0x3F6BE4, 0x4 +.global lbl_805AA348 +lbl_805AA348: + .incbin "baserom.dol", 0x3F6BE8, 0x4 +.global lbl_805AA34C +lbl_805AA34C: + .incbin "baserom.dol", 0x3F6BEC, 0x4 +.global lbl_805AA350 +lbl_805AA350: + .incbin "baserom.dol", 0x3F6BF0, 0x4 +.global lbl_805AA354 +lbl_805AA354: + .incbin "baserom.dol", 0x3F6BF4, 0x4 +.global lbl_805AA358 +lbl_805AA358: + .incbin "baserom.dol", 0x3F6BF8, 0x4 +.global lbl_805AA35C +lbl_805AA35C: + .incbin "baserom.dol", 0x3F6BFC, 0x4 +.global lbl_805AA360 +lbl_805AA360: + .incbin "baserom.dol", 0x3F6C00, 0x4 +.global lbl_805AA364 +lbl_805AA364: + .incbin "baserom.dol", 0x3F6C04, 0x4 +.global lbl_805AA368 +lbl_805AA368: + .incbin "baserom.dol", 0x3F6C08, 0x8 +.global lbl_805AA370 +lbl_805AA370: + .incbin "baserom.dol", 0x3F6C10, 0x8 +.global lbl_805AA378 +lbl_805AA378: + .incbin "baserom.dol", 0x3F6C18, 0x8 +.global lbl_805AA380 +lbl_805AA380: + .incbin "baserom.dol", 0x3F6C20, 0x4 +.global lbl_805AA384 +lbl_805AA384: + .incbin "baserom.dol", 0x3F6C24, 0x4 +.global lbl_805AA388 +lbl_805AA388: + .incbin "baserom.dol", 0x3F6C28, 0x4 +.global lbl_805AA38C +lbl_805AA38C: + .incbin "baserom.dol", 0x3F6C2C, 0x4 +.global lbl_805AA390 +lbl_805AA390: + .incbin "baserom.dol", 0x3F6C30, 0x4 +.global lbl_805AA394 +lbl_805AA394: + .incbin "baserom.dol", 0x3F6C34, 0x4 +.global lbl_805AA398 +lbl_805AA398: + .incbin "baserom.dol", 0x3F6C38, 0x8 +.global lbl_805AA3A0 +lbl_805AA3A0: + .incbin "baserom.dol", 0x3F6C40, 0x8 +.global lbl_805AA3A8 +lbl_805AA3A8: + .incbin "baserom.dol", 0x3F6C48, 0x8 +.global lbl_805AA3B0 +lbl_805AA3B0: + .incbin "baserom.dol", 0x3F6C50, 0x4 +.global lbl_805AA3B4 +lbl_805AA3B4: + .incbin "baserom.dol", 0x3F6C54, 0x4 +.global lbl_805AA3B8 +lbl_805AA3B8: + .incbin "baserom.dol", 0x3F6C58, 0x4 +.global lbl_805AA3BC +lbl_805AA3BC: + .incbin "baserom.dol", 0x3F6C5C, 0x4 +.global lbl_805AA3C0 +lbl_805AA3C0: + .incbin "baserom.dol", 0x3F6C60, 0x8 +.global lbl_805AA3C8 +lbl_805AA3C8: + .incbin "baserom.dol", 0x3F6C68, 0x4 +.global lbl_805AA3CC +lbl_805AA3CC: + .incbin "baserom.dol", 0x3F6C6C, 0x4 +.global lbl_805AA3D0 +lbl_805AA3D0: + .incbin "baserom.dol", 0x3F6C70, 0x8 +.global lbl_805AA3D8 +lbl_805AA3D8: + .incbin "baserom.dol", 0x3F6C78, 0x4 +.global lbl_805AA3DC +lbl_805AA3DC: + .incbin "baserom.dol", 0x3F6C7C, 0x4 +.global lbl_805AA3E0 +lbl_805AA3E0: + .incbin "baserom.dol", 0x3F6C80, 0x8 +.global lbl_805AA3E8 +lbl_805AA3E8: + .incbin "baserom.dol", 0x3F6C88, 0x8 +.global lbl_805AA3F0 +lbl_805AA3F0: + .incbin "baserom.dol", 0x3F6C90, 0x4 +.global lbl_805AA3F4 +lbl_805AA3F4: + .incbin "baserom.dol", 0x3F6C94, 0x4 +.global lbl_805AA3F8 +lbl_805AA3F8: + .incbin "baserom.dol", 0x3F6C98, 0x4 +.global lbl_805AA3FC +lbl_805AA3FC: + .incbin "baserom.dol", 0x3F6C9C, 0x4 +.global lbl_805AA400 +lbl_805AA400: + .incbin "baserom.dol", 0x3F6CA0, 0x4 +.global lbl_805AA404 +lbl_805AA404: + .incbin "baserom.dol", 0x3F6CA4, 0x4 +.global lbl_805AA408 +lbl_805AA408: + .incbin "baserom.dol", 0x3F6CA8, 0x8 +.global lbl_805AA410 +lbl_805AA410: + .incbin "baserom.dol", 0x3F6CB0, 0x8 +.global lbl_805AA418 +lbl_805AA418: + .incbin "baserom.dol", 0x3F6CB8, 0x4 +.global lbl_805AA41C +lbl_805AA41C: + .incbin "baserom.dol", 0x3F6CBC, 0x4 +.global lbl_805AA420 +lbl_805AA420: + .incbin "baserom.dol", 0x3F6CC0, 0x4 +.global lbl_805AA424 +lbl_805AA424: + .incbin "baserom.dol", 0x3F6CC4, 0x4 +.global lbl_805AA428 +lbl_805AA428: + .incbin "baserom.dol", 0x3F6CC8, 0x4 +.global lbl_805AA42C +lbl_805AA42C: + .incbin "baserom.dol", 0x3F6CCC, 0x4 +.global lbl_805AA430 +lbl_805AA430: + .incbin "baserom.dol", 0x3F6CD0, 0x4 +.global lbl_805AA434 +lbl_805AA434: + .incbin "baserom.dol", 0x3F6CD4, 0x4 +.global lbl_805AA438 +lbl_805AA438: + .incbin "baserom.dol", 0x3F6CD8, 0x4 +.global lbl_805AA43C +lbl_805AA43C: + .incbin "baserom.dol", 0x3F6CDC, 0x4 +.global lbl_805AA440 +lbl_805AA440: + .incbin "baserom.dol", 0x3F6CE0, 0x8 +.global lbl_805AA448 +lbl_805AA448: + .incbin "baserom.dol", 0x3F6CE8, 0x4 +.global lbl_805AA44C +lbl_805AA44C: + .incbin "baserom.dol", 0x3F6CEC, 0x4 +.global lbl_805AA450 +lbl_805AA450: + .incbin "baserom.dol", 0x3F6CF0, 0x4 +.global lbl_805AA454 +lbl_805AA454: + .incbin "baserom.dol", 0x3F6CF4, 0x4 +.global lbl_805AA458 +lbl_805AA458: + .incbin "baserom.dol", 0x3F6CF8, 0x4 +.global lbl_805AA45C +lbl_805AA45C: + .incbin "baserom.dol", 0x3F6CFC, 0x4 +.global lbl_805AA460 +lbl_805AA460: + .incbin "baserom.dol", 0x3F6D00, 0x8 +.global lbl_805AA468 +lbl_805AA468: + .incbin "baserom.dol", 0x3F6D08, 0x4 +.global lbl_805AA46C +lbl_805AA46C: + .incbin "baserom.dol", 0x3F6D0C, 0x4 +.global lbl_805AA470 +lbl_805AA470: + .incbin "baserom.dol", 0x3F6D10, 0x4 +.global lbl_805AA474 +lbl_805AA474: + .incbin "baserom.dol", 0x3F6D14, 0x4 +.global lbl_805AA478 +lbl_805AA478: + .incbin "baserom.dol", 0x3F6D18, 0x4 +.global lbl_805AA47C +lbl_805AA47C: + .incbin "baserom.dol", 0x3F6D1C, 0x4 +.global lbl_805AA480 +lbl_805AA480: + .incbin "baserom.dol", 0x3F6D20, 0x8 +.global lbl_805AA488 +lbl_805AA488: + .incbin "baserom.dol", 0x3F6D28, 0x8 +.global lbl_805AA490 +lbl_805AA490: + .incbin "baserom.dol", 0x3F6D30, 0x4 +.global lbl_805AA494 +lbl_805AA494: + .incbin "baserom.dol", 0x3F6D34, 0x4 +.global lbl_805AA498 +lbl_805AA498: + .incbin "baserom.dol", 0x3F6D38, 0x4 +.global lbl_805AA49C +lbl_805AA49C: + .incbin "baserom.dol", 0x3F6D3C, 0x4 +.global lbl_805AA4A0 +lbl_805AA4A0: + .incbin "baserom.dol", 0x3F6D40, 0x4 +.global lbl_805AA4A4 +lbl_805AA4A4: + .incbin "baserom.dol", 0x3F6D44, 0x4 +.global lbl_805AA4A8 +lbl_805AA4A8: + .incbin "baserom.dol", 0x3F6D48, 0x4 +.global lbl_805AA4AC +lbl_805AA4AC: + .incbin "baserom.dol", 0x3F6D4C, 0x4 +.global lbl_805AA4B0 +lbl_805AA4B0: + .incbin "baserom.dol", 0x3F6D50, 0x4 +.global lbl_805AA4B4 +lbl_805AA4B4: + .incbin "baserom.dol", 0x3F6D54, 0x4 +.global lbl_805AA4B8 +lbl_805AA4B8: + .incbin "baserom.dol", 0x3F6D58, 0x4 +.global lbl_805AA4BC +lbl_805AA4BC: + .incbin "baserom.dol", 0x3F6D5C, 0x4 +.global lbl_805AA4C0 +lbl_805AA4C0: + .incbin "baserom.dol", 0x3F6D60, 0x4 +.global lbl_805AA4C4 +lbl_805AA4C4: + .incbin "baserom.dol", 0x3F6D64, 0x4 +.global lbl_805AA4C8 +lbl_805AA4C8: + .incbin "baserom.dol", 0x3F6D68, 0x4 +.global lbl_805AA4CC +lbl_805AA4CC: + .incbin "baserom.dol", 0x3F6D6C, 0x4 +.global lbl_805AA4D0 +lbl_805AA4D0: + .incbin "baserom.dol", 0x3F6D70, 0x4 +.global lbl_805AA4D4 +lbl_805AA4D4: + .incbin "baserom.dol", 0x3F6D74, 0x4 +.global lbl_805AA4D8 +lbl_805AA4D8: + .incbin "baserom.dol", 0x3F6D78, 0x8 +.global lbl_805AA4E0 +lbl_805AA4E0: + .incbin "baserom.dol", 0x3F6D80, 0x4 +.global lbl_805AA4E4 +lbl_805AA4E4: + .incbin "baserom.dol", 0x3F6D84, 0x4 +.global lbl_805AA4E8 +lbl_805AA4E8: + .incbin "baserom.dol", 0x3F6D88, 0x4 +.global lbl_805AA4EC +lbl_805AA4EC: + .incbin "baserom.dol", 0x3F6D8C, 0x4 +.global lbl_805AA4F0 +lbl_805AA4F0: + .incbin "baserom.dol", 0x3F6D90, 0x4 +.global lbl_805AA4F4 +lbl_805AA4F4: + .incbin "baserom.dol", 0x3F6D94, 0x4 +.global lbl_805AA4F8 +lbl_805AA4F8: + .incbin "baserom.dol", 0x3F6D98, 0x4 +.global lbl_805AA4FC +lbl_805AA4FC: + .incbin "baserom.dol", 0x3F6D9C, 0x4 +.global lbl_805AA500 +lbl_805AA500: + .incbin "baserom.dol", 0x3F6DA0, 0x4 +.global lbl_805AA504 +lbl_805AA504: + .incbin "baserom.dol", 0x3F6DA4, 0x4 +.global lbl_805AA508 +lbl_805AA508: + .incbin "baserom.dol", 0x3F6DA8, 0x4 +.global lbl_805AA50C +lbl_805AA50C: + .incbin "baserom.dol", 0x3F6DAC, 0x4 +.global lbl_805AA510 +lbl_805AA510: + .incbin "baserom.dol", 0x3F6DB0, 0x8 +.global lbl_805AA518 +lbl_805AA518: + .incbin "baserom.dol", 0x3F6DB8, 0x4 +.global lbl_805AA51C +lbl_805AA51C: + .incbin "baserom.dol", 0x3F6DBC, 0x4 +.global lbl_805AA520 +lbl_805AA520: + .incbin "baserom.dol", 0x3F6DC0, 0x4 +.global lbl_805AA524 +lbl_805AA524: + .incbin "baserom.dol", 0x3F6DC4, 0x4 +.global lbl_805AA528 +lbl_805AA528: + .incbin "baserom.dol", 0x3F6DC8, 0x4 +.global lbl_805AA52C +lbl_805AA52C: + .incbin "baserom.dol", 0x3F6DCC, 0x4 +.global lbl_805AA530 +lbl_805AA530: + .incbin "baserom.dol", 0x3F6DD0, 0x8 +.global lbl_805AA538 +lbl_805AA538: + .incbin "baserom.dol", 0x3F6DD8, 0x4 +.global lbl_805AA53C +lbl_805AA53C: + .incbin "baserom.dol", 0x3F6DDC, 0x4 +.global lbl_805AA540 +lbl_805AA540: + .incbin "baserom.dol", 0x3F6DE0, 0x8 +.global lbl_805AA548 +lbl_805AA548: + .incbin "baserom.dol", 0x3F6DE8, 0x4 +.global lbl_805AA54C +lbl_805AA54C: + .incbin "baserom.dol", 0x3F6DEC, 0x4 +.global lbl_805AA550 +lbl_805AA550: + .incbin "baserom.dol", 0x3F6DF0, 0x4 +.global lbl_805AA554 +lbl_805AA554: + .incbin "baserom.dol", 0x3F6DF4, 0x4 +.global lbl_805AA558 +lbl_805AA558: + .incbin "baserom.dol", 0x3F6DF8, 0x8 +.global lbl_805AA560 +lbl_805AA560: + .incbin "baserom.dol", 0x3F6E00, 0x4 +.global lbl_805AA564 +lbl_805AA564: + .incbin "baserom.dol", 0x3F6E04, 0x4 +.global lbl_805AA568 +lbl_805AA568: + .incbin "baserom.dol", 0x3F6E08, 0x4 +.global lbl_805AA56C +lbl_805AA56C: + .incbin "baserom.dol", 0x3F6E0C, 0x4 +.global lbl_805AA570 +lbl_805AA570: + .incbin "baserom.dol", 0x3F6E10, 0x4 +.global lbl_805AA574 +lbl_805AA574: + .incbin "baserom.dol", 0x3F6E14, 0x4 +.global lbl_805AA578 +lbl_805AA578: + .incbin "baserom.dol", 0x3F6E18, 0x4 +.global lbl_805AA57C +lbl_805AA57C: + .incbin "baserom.dol", 0x3F6E1C, 0x4 +.global lbl_805AA580 +lbl_805AA580: + .incbin "baserom.dol", 0x3F6E20, 0x4 +.global lbl_805AA584 +lbl_805AA584: + .incbin "baserom.dol", 0x3F6E24, 0x4 +.global lbl_805AA588 +lbl_805AA588: + .incbin "baserom.dol", 0x3F6E28, 0x8 +.global lbl_805AA590 +lbl_805AA590: + .incbin "baserom.dol", 0x3F6E30, 0x4 +.global lbl_805AA594 +lbl_805AA594: + .incbin "baserom.dol", 0x3F6E34, 0x4 +.global lbl_805AA598 +lbl_805AA598: + .incbin "baserom.dol", 0x3F6E38, 0x4 +.global lbl_805AA59C +lbl_805AA59C: + .incbin "baserom.dol", 0x3F6E3C, 0x4 +.global lbl_805AA5A0 +lbl_805AA5A0: + .incbin "baserom.dol", 0x3F6E40, 0x4 +.global lbl_805AA5A4 +lbl_805AA5A4: + .incbin "baserom.dol", 0x3F6E44, 0x4 +.global lbl_805AA5A8 +lbl_805AA5A8: + .incbin "baserom.dol", 0x3F6E48, 0x4 +.global lbl_805AA5AC +lbl_805AA5AC: + .incbin "baserom.dol", 0x3F6E4C, 0x4 +.global lbl_805AA5B0 +lbl_805AA5B0: + .incbin "baserom.dol", 0x3F6E50, 0x4 +.global lbl_805AA5B4 +lbl_805AA5B4: + .incbin "baserom.dol", 0x3F6E54, 0x4 +.global lbl_805AA5B8 +lbl_805AA5B8: + .incbin "baserom.dol", 0x3F6E58, 0x4 +.global lbl_805AA5BC +lbl_805AA5BC: + .incbin "baserom.dol", 0x3F6E5C, 0x4 +.global lbl_805AA5C0 +lbl_805AA5C0: + .incbin "baserom.dol", 0x3F6E60, 0x8 +.global lbl_805AA5C8 +lbl_805AA5C8: + .incbin "baserom.dol", 0x3F6E68, 0x8 +.global lbl_805AA5D0 +lbl_805AA5D0: + .incbin "baserom.dol", 0x3F6E70, 0x4 +.global lbl_805AA5D4 +lbl_805AA5D4: + .incbin "baserom.dol", 0x3F6E74, 0x4 +.global lbl_805AA5D8 +lbl_805AA5D8: + .incbin "baserom.dol", 0x3F6E78, 0x4 +.global lbl_805AA5DC +lbl_805AA5DC: + .incbin "baserom.dol", 0x3F6E7C, 0x4 +.global lbl_805AA5E0 +lbl_805AA5E0: + .incbin "baserom.dol", 0x3F6E80, 0x8 +.global lbl_805AA5E8 +lbl_805AA5E8: + .incbin "baserom.dol", 0x3F6E88, 0x8 +.global lbl_805AA5F0 +lbl_805AA5F0: + .incbin "baserom.dol", 0x3F6E90, 0x4 +.global lbl_805AA5F4 +lbl_805AA5F4: + .incbin "baserom.dol", 0x3F6E94, 0x4 +.global lbl_805AA5F8 +lbl_805AA5F8: + .incbin "baserom.dol", 0x3F6E98, 0x8 +.global lbl_805AA600 +lbl_805AA600: + .incbin "baserom.dol", 0x3F6EA0, 0x8 +.global lbl_805AA608 +lbl_805AA608: + .incbin "baserom.dol", 0x3F6EA8, 0x8 +.global lbl_805AA610 +lbl_805AA610: + .incbin "baserom.dol", 0x3F6EB0, 0x4 +.global lbl_805AA614 +lbl_805AA614: + .incbin "baserom.dol", 0x3F6EB4, 0x4 +.global lbl_805AA618 +lbl_805AA618: + .incbin "baserom.dol", 0x3F6EB8, 0x4 +.global lbl_805AA61C +lbl_805AA61C: + .incbin "baserom.dol", 0x3F6EBC, 0x4 +.global lbl_805AA620 +lbl_805AA620: + .incbin "baserom.dol", 0x3F6EC0, 0x4 +.global lbl_805AA624 +lbl_805AA624: + .incbin "baserom.dol", 0x3F6EC4, 0x4 +.global lbl_805AA628 +lbl_805AA628: + .incbin "baserom.dol", 0x3F6EC8, 0x4 +.global lbl_805AA62C +lbl_805AA62C: + .incbin "baserom.dol", 0x3F6ECC, 0x4 +.global lbl_805AA630 +lbl_805AA630: + .incbin "baserom.dol", 0x3F6ED0, 0x4 +.global lbl_805AA634 +lbl_805AA634: + .incbin "baserom.dol", 0x3F6ED4, 0x4 +.global lbl_805AA638 +lbl_805AA638: + .incbin "baserom.dol", 0x3F6ED8, 0x4 +.global lbl_805AA63C +lbl_805AA63C: + .incbin "baserom.dol", 0x3F6EDC, 0x4 +.global lbl_805AA640 +lbl_805AA640: + .incbin "baserom.dol", 0x3F6EE0, 0x4 +.global lbl_805AA644 +lbl_805AA644: + .incbin "baserom.dol", 0x3F6EE4, 0x4 +.global lbl_805AA648 +lbl_805AA648: + .incbin "baserom.dol", 0x3F6EE8, 0x4 +.global lbl_805AA64C +lbl_805AA64C: + .incbin "baserom.dol", 0x3F6EEC, 0x4 +.global lbl_805AA650 +lbl_805AA650: + .incbin "baserom.dol", 0x3F6EF0, 0x4 +.global lbl_805AA654 +lbl_805AA654: + .incbin "baserom.dol", 0x3F6EF4, 0x4 +.global lbl_805AA658 +lbl_805AA658: + .incbin "baserom.dol", 0x3F6EF8, 0x4 +.global lbl_805AA65C +lbl_805AA65C: + .incbin "baserom.dol", 0x3F6EFC, 0x4 +.global lbl_805AA660 +lbl_805AA660: + .incbin "baserom.dol", 0x3F6F00, 0x4 +.global lbl_805AA664 +lbl_805AA664: + .incbin "baserom.dol", 0x3F6F04, 0x4 +.global lbl_805AA668 +lbl_805AA668: + .incbin "baserom.dol", 0x3F6F08, 0x4 +.global lbl_805AA66C +lbl_805AA66C: + .incbin "baserom.dol", 0x3F6F0C, 0x4 +.global lbl_805AA670 +lbl_805AA670: + .incbin "baserom.dol", 0x3F6F10, 0x4 +.global lbl_805AA674 +lbl_805AA674: + .incbin "baserom.dol", 0x3F6F14, 0x4 +.global lbl_805AA678 +lbl_805AA678: + .incbin "baserom.dol", 0x3F6F18, 0x4 +.global lbl_805AA67C +lbl_805AA67C: + .incbin "baserom.dol", 0x3F6F1C, 0x4 +.global lbl_805AA680 +lbl_805AA680: + .incbin "baserom.dol", 0x3F6F20, 0x4 +.global lbl_805AA684 +lbl_805AA684: + .incbin "baserom.dol", 0x3F6F24, 0x4 +.global lbl_805AA688 +lbl_805AA688: + .incbin "baserom.dol", 0x3F6F28, 0x4 +.global lbl_805AA68C +lbl_805AA68C: + .incbin "baserom.dol", 0x3F6F2C, 0x4 +.global lbl_805AA690 +lbl_805AA690: + .incbin "baserom.dol", 0x3F6F30, 0x4 +.global lbl_805AA694 +lbl_805AA694: + .incbin "baserom.dol", 0x3F6F34, 0x4 +.global lbl_805AA698 +lbl_805AA698: + .incbin "baserom.dol", 0x3F6F38, 0x8 +.global lbl_805AA6A0 +lbl_805AA6A0: + .incbin "baserom.dol", 0x3F6F40, 0x8 +.global lbl_805AA6A8 +lbl_805AA6A8: + .incbin "baserom.dol", 0x3F6F48, 0x4 +.global lbl_805AA6AC +lbl_805AA6AC: + .incbin "baserom.dol", 0x3F6F4C, 0x4 +.global lbl_805AA6B0 +lbl_805AA6B0: + .incbin "baserom.dol", 0x3F6F50, 0x4 +.global lbl_805AA6B4 +lbl_805AA6B4: + .incbin "baserom.dol", 0x3F6F54, 0x4 +.global lbl_805AA6B8 +lbl_805AA6B8: + .incbin "baserom.dol", 0x3F6F58, 0x8 +.global lbl_805AA6C0 +lbl_805AA6C0: + .incbin "baserom.dol", 0x3F6F60, 0x8 +.global lbl_805AA6C8 +lbl_805AA6C8: + .incbin "baserom.dol", 0x3F6F68, 0x4 +.global lbl_805AA6CC +lbl_805AA6CC: + .incbin "baserom.dol", 0x3F6F6C, 0x4 +.global lbl_805AA6D0 +lbl_805AA6D0: + .incbin "baserom.dol", 0x3F6F70, 0x4 +.global lbl_805AA6D4 +lbl_805AA6D4: + .incbin "baserom.dol", 0x3F6F74, 0x4 +.global lbl_805AA6D8 +lbl_805AA6D8: + .incbin "baserom.dol", 0x3F6F78, 0x4 +.global lbl_805AA6DC +lbl_805AA6DC: + .incbin "baserom.dol", 0x3F6F7C, 0x4 +.global lbl_805AA6E0 +lbl_805AA6E0: + .incbin "baserom.dol", 0x3F6F80, 0x4 +.global lbl_805AA6E4 +lbl_805AA6E4: + .incbin "baserom.dol", 0x3F6F84, 0x4 +.global lbl_805AA6E8 +lbl_805AA6E8: + .incbin "baserom.dol", 0x3F6F88, 0x8 +.global lbl_805AA6F0 +lbl_805AA6F0: + .incbin "baserom.dol", 0x3F6F90, 0x4 +.global lbl_805AA6F4 +lbl_805AA6F4: + .incbin "baserom.dol", 0x3F6F94, 0x4 +.global lbl_805AA6F8 +lbl_805AA6F8: + .incbin "baserom.dol", 0x3F6F98, 0x4 +.global lbl_805AA6FC +lbl_805AA6FC: + .incbin "baserom.dol", 0x3F6F9C, 0x4 +.global lbl_805AA700 +lbl_805AA700: + .incbin "baserom.dol", 0x3F6FA0, 0x4 +.global lbl_805AA704 +lbl_805AA704: + .incbin "baserom.dol", 0x3F6FA4, 0x4 +.global lbl_805AA708 +lbl_805AA708: + .incbin "baserom.dol", 0x3F6FA8, 0x4 +.global lbl_805AA70C +lbl_805AA70C: + .incbin "baserom.dol", 0x3F6FAC, 0x4 +.global lbl_805AA710 +lbl_805AA710: + .incbin "baserom.dol", 0x3F6FB0, 0x8 +.global lbl_805AA718 +lbl_805AA718: + .incbin "baserom.dol", 0x3F6FB8, 0x4 +.global lbl_805AA71C +lbl_805AA71C: + .incbin "baserom.dol", 0x3F6FBC, 0x4 +.global lbl_805AA720 +lbl_805AA720: + .incbin "baserom.dol", 0x3F6FC0, 0x4 +.global lbl_805AA724 +lbl_805AA724: + .incbin "baserom.dol", 0x3F6FC4, 0x4 +.global lbl_805AA728 +lbl_805AA728: + .incbin "baserom.dol", 0x3F6FC8, 0x4 +.global lbl_805AA72C +lbl_805AA72C: + .incbin "baserom.dol", 0x3F6FCC, 0x4 +.global lbl_805AA730 +lbl_805AA730: + .incbin "baserom.dol", 0x3F6FD0, 0x4 +.global lbl_805AA734 +lbl_805AA734: + .incbin "baserom.dol", 0x3F6FD4, 0x4 +.global lbl_805AA738 +lbl_805AA738: + .incbin "baserom.dol", 0x3F6FD8, 0x4 +.global lbl_805AA73C +lbl_805AA73C: + .incbin "baserom.dol", 0x3F6FDC, 0x4 +.global lbl_805AA740 +lbl_805AA740: + .incbin "baserom.dol", 0x3F6FE0, 0x4 +.global lbl_805AA744 +lbl_805AA744: + .incbin "baserom.dol", 0x3F6FE4, 0x4 +.global lbl_805AA748 +lbl_805AA748: + .incbin "baserom.dol", 0x3F6FE8, 0x4 +.global lbl_805AA74C +lbl_805AA74C: + .incbin "baserom.dol", 0x3F6FEC, 0x4 +.global lbl_805AA750 +lbl_805AA750: + .incbin "baserom.dol", 0x3F6FF0, 0x4 +.global lbl_805AA754 +lbl_805AA754: + .incbin "baserom.dol", 0x3F6FF4, 0x4 +.global lbl_805AA758 +lbl_805AA758: + .incbin "baserom.dol", 0x3F6FF8, 0x4 +.global lbl_805AA75C +lbl_805AA75C: + .incbin "baserom.dol", 0x3F6FFC, 0x4 +.global lbl_805AA760 +lbl_805AA760: + .incbin "baserom.dol", 0x3F7000, 0x4 +.global lbl_805AA764 +lbl_805AA764: + .incbin "baserom.dol", 0x3F7004, 0x4 +.global lbl_805AA768 +lbl_805AA768: + .incbin "baserom.dol", 0x3F7008, 0x4 +.global lbl_805AA76C +lbl_805AA76C: + .incbin "baserom.dol", 0x3F700C, 0x4 +.global lbl_805AA770 +lbl_805AA770: + .incbin "baserom.dol", 0x3F7010, 0x4 +.global lbl_805AA774 +lbl_805AA774: + .incbin "baserom.dol", 0x3F7014, 0x4 +.global lbl_805AA778 +lbl_805AA778: + .incbin "baserom.dol", 0x3F7018, 0x4 +.global lbl_805AA77C +lbl_805AA77C: + .incbin "baserom.dol", 0x3F701C, 0x4 +.global lbl_805AA780 +lbl_805AA780: + .incbin "baserom.dol", 0x3F7020, 0x4 +.global lbl_805AA784 +lbl_805AA784: + .incbin "baserom.dol", 0x3F7024, 0x4 +.global lbl_805AA788 +lbl_805AA788: + .incbin "baserom.dol", 0x3F7028, 0x4 +.global lbl_805AA78C +lbl_805AA78C: + .incbin "baserom.dol", 0x3F702C, 0x4 +.global lbl_805AA790 +lbl_805AA790: + .incbin "baserom.dol", 0x3F7030, 0x4 +.global lbl_805AA794 +lbl_805AA794: + .incbin "baserom.dol", 0x3F7034, 0x4 +.global lbl_805AA798 +lbl_805AA798: + .incbin "baserom.dol", 0x3F7038, 0x4 +.global lbl_805AA79C +lbl_805AA79C: + .incbin "baserom.dol", 0x3F703C, 0x4 +.global lbl_805AA7A0 +lbl_805AA7A0: + .incbin "baserom.dol", 0x3F7040, 0x4 +.global lbl_805AA7A4 +lbl_805AA7A4: + .incbin "baserom.dol", 0x3F7044, 0x4 +.global lbl_805AA7A8 +lbl_805AA7A8: + .incbin "baserom.dol", 0x3F7048, 0x4 +.global lbl_805AA7AC +lbl_805AA7AC: + .incbin "baserom.dol", 0x3F704C, 0x4 +.global lbl_805AA7B0 +lbl_805AA7B0: + .incbin "baserom.dol", 0x3F7050, 0x4 +.global lbl_805AA7B4 +lbl_805AA7B4: + .incbin "baserom.dol", 0x3F7054, 0x4 +.global lbl_805AA7B8 +lbl_805AA7B8: + .incbin "baserom.dol", 0x3F7058, 0x4 +.global lbl_805AA7BC +lbl_805AA7BC: + .incbin "baserom.dol", 0x3F705C, 0x4 +.global lbl_805AA7C0 +lbl_805AA7C0: + .incbin "baserom.dol", 0x3F7060, 0x4 +.global lbl_805AA7C4 +lbl_805AA7C4: + .incbin "baserom.dol", 0x3F7064, 0x4 +.global lbl_805AA7C8 +lbl_805AA7C8: + .incbin "baserom.dol", 0x3F7068, 0x4 +.global lbl_805AA7CC +lbl_805AA7CC: + .incbin "baserom.dol", 0x3F706C, 0x4 +.global lbl_805AA7D0 +lbl_805AA7D0: + .incbin "baserom.dol", 0x3F7070, 0x4 +.global lbl_805AA7D4 +lbl_805AA7D4: + .incbin "baserom.dol", 0x3F7074, 0x4 +.global lbl_805AA7D8 +lbl_805AA7D8: + .incbin "baserom.dol", 0x3F7078, 0x4 +.global lbl_805AA7DC +lbl_805AA7DC: + .incbin "baserom.dol", 0x3F707C, 0x4 +.global lbl_805AA7E0 +lbl_805AA7E0: + .incbin "baserom.dol", 0x3F7080, 0x4 +.global lbl_805AA7E4 +lbl_805AA7E4: + .incbin "baserom.dol", 0x3F7084, 0x4 +.global lbl_805AA7E8 +lbl_805AA7E8: + .incbin "baserom.dol", 0x3F7088, 0x4 +.global lbl_805AA7EC +lbl_805AA7EC: + .incbin "baserom.dol", 0x3F708C, 0x4 +.global lbl_805AA7F0 +lbl_805AA7F0: + .incbin "baserom.dol", 0x3F7090, 0x8 +.global lbl_805AA7F8 +lbl_805AA7F8: + .incbin "baserom.dol", 0x3F7098, 0x8 +.global lbl_805AA800 +lbl_805AA800: + .incbin "baserom.dol", 0x3F70A0, 0x4 +.global lbl_805AA804 +lbl_805AA804: + .incbin "baserom.dol", 0x3F70A4, 0x4 +.global lbl_805AA808 +lbl_805AA808: + .incbin "baserom.dol", 0x3F70A8, 0x4 +.global lbl_805AA80C +lbl_805AA80C: + .incbin "baserom.dol", 0x3F70AC, 0x4 +.global lbl_805AA810 +lbl_805AA810: + .incbin "baserom.dol", 0x3F70B0, 0x4 +.global lbl_805AA814 +lbl_805AA814: + .incbin "baserom.dol", 0x3F70B4, 0x4 +.global lbl_805AA818 +lbl_805AA818: + .incbin "baserom.dol", 0x3F70B8, 0x4 +.global lbl_805AA81C +lbl_805AA81C: + .incbin "baserom.dol", 0x3F70BC, 0x4 +.global lbl_805AA820 +lbl_805AA820: + .incbin "baserom.dol", 0x3F70C0, 0x4 +.global lbl_805AA824 +lbl_805AA824: + .incbin "baserom.dol", 0x3F70C4, 0x4 +.global lbl_805AA828 +lbl_805AA828: + .incbin "baserom.dol", 0x3F70C8, 0x4 +.global lbl_805AA82C +lbl_805AA82C: + .incbin "baserom.dol", 0x3F70CC, 0x4 +.global lbl_805AA830 +lbl_805AA830: + .incbin "baserom.dol", 0x3F70D0, 0x4 +.global lbl_805AA834 +lbl_805AA834: + .incbin "baserom.dol", 0x3F70D4, 0x4 +.global lbl_805AA838 +lbl_805AA838: + .incbin "baserom.dol", 0x3F70D8, 0x4 +.global lbl_805AA83C +lbl_805AA83C: + .incbin "baserom.dol", 0x3F70DC, 0x4 +.global lbl_805AA840 +lbl_805AA840: + .incbin "baserom.dol", 0x3F70E0, 0x8 +.global lbl_805AA848 +lbl_805AA848: + .incbin "baserom.dol", 0x3F70E8, 0x4 +.global lbl_805AA84C +lbl_805AA84C: + .incbin "baserom.dol", 0x3F70EC, 0x4 +.global lbl_805AA850 +lbl_805AA850: + .incbin "baserom.dol", 0x3F70F0, 0x8 +.global lbl_805AA858 +lbl_805AA858: + .incbin "baserom.dol", 0x3F70F8, 0x4 +.global lbl_805AA85C +lbl_805AA85C: + .incbin "baserom.dol", 0x3F70FC, 0x4 +.global lbl_805AA860 +lbl_805AA860: + .incbin "baserom.dol", 0x3F7100, 0x8 +.global lbl_805AA868 +lbl_805AA868: + .incbin "baserom.dol", 0x3F7108, 0x8 +.global lbl_805AA870 +lbl_805AA870: + .incbin "baserom.dol", 0x3F7110, 0x4 +.global lbl_805AA874 +lbl_805AA874: + .incbin "baserom.dol", 0x3F7114, 0x4 +.global lbl_805AA878 +lbl_805AA878: + .incbin "baserom.dol", 0x3F7118, 0x8 +.global lbl_805AA880 +lbl_805AA880: + .incbin "baserom.dol", 0x3F7120, 0x4 +.global lbl_805AA884 +lbl_805AA884: + .incbin "baserom.dol", 0x3F7124, 0x4 +.global lbl_805AA888 +lbl_805AA888: + .incbin "baserom.dol", 0x3F7128, 0x4 +.global lbl_805AA88C +lbl_805AA88C: + .incbin "baserom.dol", 0x3F712C, 0x4 +.global lbl_805AA890 +lbl_805AA890: + .incbin "baserom.dol", 0x3F7130, 0x4 +.global lbl_805AA894 +lbl_805AA894: + .incbin "baserom.dol", 0x3F7134, 0x4 +.global lbl_805AA898 +lbl_805AA898: + .incbin "baserom.dol", 0x3F7138, 0x4 +.global lbl_805AA89C +lbl_805AA89C: + .incbin "baserom.dol", 0x3F713C, 0x4 +.global lbl_805AA8A0 +lbl_805AA8A0: + .incbin "baserom.dol", 0x3F7140, 0x8 +.global lbl_805AA8A8 +lbl_805AA8A8: + .incbin "baserom.dol", 0x3F7148, 0x8 +.global lbl_805AA8B0 +lbl_805AA8B0: + .incbin "baserom.dol", 0x3F7150, 0x4 +.global lbl_805AA8B4 +lbl_805AA8B4: + .incbin "baserom.dol", 0x3F7154, 0x4 +.global lbl_805AA8B8 +lbl_805AA8B8: + .incbin "baserom.dol", 0x3F7158, 0x4 +.global lbl_805AA8BC +lbl_805AA8BC: + .incbin "baserom.dol", 0x3F715C, 0x4 +.global lbl_805AA8C0 +lbl_805AA8C0: + .incbin "baserom.dol", 0x3F7160, 0x4 +.global lbl_805AA8C4 +lbl_805AA8C4: + .incbin "baserom.dol", 0x3F7164, 0x4 +.global lbl_805AA8C8 +lbl_805AA8C8: + .incbin "baserom.dol", 0x3F7168, 0x4 +.global lbl_805AA8CC +lbl_805AA8CC: + .incbin "baserom.dol", 0x3F716C, 0x4 +.global lbl_805AA8D0 +lbl_805AA8D0: + .incbin "baserom.dol", 0x3F7170, 0x8 +.global lbl_805AA8D8 +lbl_805AA8D8: + .incbin "baserom.dol", 0x3F7178, 0x4 +.global lbl_805AA8DC +lbl_805AA8DC: + .incbin "baserom.dol", 0x3F717C, 0x4 +.global lbl_805AA8E0 +lbl_805AA8E0: + .incbin "baserom.dol", 0x3F7180, 0x4 +.global lbl_805AA8E4 +lbl_805AA8E4: + .incbin "baserom.dol", 0x3F7184, 0x4 +.global lbl_805AA8E8 +lbl_805AA8E8: + .incbin "baserom.dol", 0x3F7188, 0x4 +.global lbl_805AA8EC +lbl_805AA8EC: + .incbin "baserom.dol", 0x3F718C, 0x4 +.global lbl_805AA8F0 +lbl_805AA8F0: + .incbin "baserom.dol", 0x3F7190, 0x4 +.global lbl_805AA8F4 +lbl_805AA8F4: + .incbin "baserom.dol", 0x3F7194, 0x4 +.global lbl_805AA8F8 +lbl_805AA8F8: + .incbin "baserom.dol", 0x3F7198, 0x8 +.global lbl_805AA900 +lbl_805AA900: + .incbin "baserom.dol", 0x3F71A0, 0x4 +.global lbl_805AA904 +lbl_805AA904: + .incbin "baserom.dol", 0x3F71A4, 0x4 +.global lbl_805AA908 +lbl_805AA908: + .incbin "baserom.dol", 0x3F71A8, 0x4 +.global lbl_805AA90C +lbl_805AA90C: + .incbin "baserom.dol", 0x3F71AC, 0x4 +.global lbl_805AA910 +lbl_805AA910: + .incbin "baserom.dol", 0x3F71B0, 0x4 +.global lbl_805AA914 +lbl_805AA914: + .incbin "baserom.dol", 0x3F71B4, 0x4 +.global lbl_805AA918 +lbl_805AA918: + .incbin "baserom.dol", 0x3F71B8, 0x4 +.global lbl_805AA91C +lbl_805AA91C: + .incbin "baserom.dol", 0x3F71BC, 0x4 +.global lbl_805AA920 +lbl_805AA920: + .incbin "baserom.dol", 0x3F71C0, 0x8 +.global lbl_805AA928 +lbl_805AA928: + .incbin "baserom.dol", 0x3F71C8, 0x4 +.global lbl_805AA92C +lbl_805AA92C: + .incbin "baserom.dol", 0x3F71CC, 0x4 +.global lbl_805AA930 +lbl_805AA930: + .incbin "baserom.dol", 0x3F71D0, 0x4 +.global lbl_805AA934 +lbl_805AA934: + .incbin "baserom.dol", 0x3F71D4, 0x4 +.global lbl_805AA938 +lbl_805AA938: + .incbin "baserom.dol", 0x3F71D8, 0x4 +.global lbl_805AA93C +lbl_805AA93C: + .incbin "baserom.dol", 0x3F71DC, 0x4 +.global lbl_805AA940 +lbl_805AA940: + .incbin "baserom.dol", 0x3F71E0, 0x4 +.global lbl_805AA944 +lbl_805AA944: + .incbin "baserom.dol", 0x3F71E4, 0x4 +.global lbl_805AA948 +lbl_805AA948: + .incbin "baserom.dol", 0x3F71E8, 0x4 +.global lbl_805AA94C +lbl_805AA94C: + .incbin "baserom.dol", 0x3F71EC, 0x4 +.global lbl_805AA950 +lbl_805AA950: + .incbin "baserom.dol", 0x3F71F0, 0x4 +.global lbl_805AA954 +lbl_805AA954: + .incbin "baserom.dol", 0x3F71F4, 0x4 +.global lbl_805AA958 +lbl_805AA958: + .incbin "baserom.dol", 0x3F71F8, 0x4 +.global lbl_805AA95C +lbl_805AA95C: + .incbin "baserom.dol", 0x3F71FC, 0x4 +.global lbl_805AA960 +lbl_805AA960: + .incbin "baserom.dol", 0x3F7200, 0x4 +.global lbl_805AA964 +lbl_805AA964: + .incbin "baserom.dol", 0x3F7204, 0x4 +.global lbl_805AA968 +lbl_805AA968: + .incbin "baserom.dol", 0x3F7208, 0x8 +.global lbl_805AA970 +lbl_805AA970: + .incbin "baserom.dol", 0x3F7210, 0x8 +.global lbl_805AA978 +lbl_805AA978: + .incbin "baserom.dol", 0x3F7218, 0x4 +.global lbl_805AA97C +lbl_805AA97C: + .incbin "baserom.dol", 0x3F721C, 0x4 +.global lbl_805AA980 +lbl_805AA980: + .incbin "baserom.dol", 0x3F7220, 0x4 +.global lbl_805AA984 +lbl_805AA984: + .incbin "baserom.dol", 0x3F7224, 0x4 +.global lbl_805AA988 +lbl_805AA988: + .incbin "baserom.dol", 0x3F7228, 0x4 +.global lbl_805AA98C +lbl_805AA98C: + .incbin "baserom.dol", 0x3F722C, 0x4 +.global lbl_805AA990 +lbl_805AA990: + .incbin "baserom.dol", 0x3F7230, 0x4 +.global lbl_805AA994 +lbl_805AA994: + .incbin "baserom.dol", 0x3F7234, 0x4 +.global lbl_805AA998 +lbl_805AA998: + .incbin "baserom.dol", 0x3F7238, 0x4 +.global lbl_805AA99C +lbl_805AA99C: + .incbin "baserom.dol", 0x3F723C, 0x4 +.global lbl_805AA9A0 +lbl_805AA9A0: + .incbin "baserom.dol", 0x3F7240, 0x4 +.global lbl_805AA9A4 +lbl_805AA9A4: + .incbin "baserom.dol", 0x3F7244, 0x4 +.global lbl_805AA9A8 +lbl_805AA9A8: + .incbin "baserom.dol", 0x3F7248, 0x4 +.global lbl_805AA9AC +lbl_805AA9AC: + .incbin "baserom.dol", 0x3F724C, 0x4 +.global lbl_805AA9B0 +lbl_805AA9B0: + .incbin "baserom.dol", 0x3F7250, 0x8 +.global lbl_805AA9B8 +lbl_805AA9B8: + .incbin "baserom.dol", 0x3F7258, 0x8 +.global lbl_805AA9C0 +lbl_805AA9C0: + .incbin "baserom.dol", 0x3F7260, 0x4 +.global lbl_805AA9C4 +lbl_805AA9C4: + .incbin "baserom.dol", 0x3F7264, 0x4 +.global lbl_805AA9C8 +lbl_805AA9C8: + .incbin "baserom.dol", 0x3F7268, 0x4 +.global lbl_805AA9CC +lbl_805AA9CC: + .incbin "baserom.dol", 0x3F726C, 0x4 +.global lbl_805AA9D0 +lbl_805AA9D0: + .incbin "baserom.dol", 0x3F7270, 0x4 +.global lbl_805AA9D4 +lbl_805AA9D4: + .incbin "baserom.dol", 0x3F7274, 0x4 +.global lbl_805AA9D8 +lbl_805AA9D8: + .incbin "baserom.dol", 0x3F7278, 0x8 +.global lbl_805AA9E0 +lbl_805AA9E0: + .incbin "baserom.dol", 0x3F7280, 0x8 +.global lbl_805AA9E8 +lbl_805AA9E8: + .incbin "baserom.dol", 0x3F7288, 0x4 +.global lbl_805AA9EC +lbl_805AA9EC: + .incbin "baserom.dol", 0x3F728C, 0x4 +.global lbl_805AA9F0 +lbl_805AA9F0: + .incbin "baserom.dol", 0x3F7290, 0x4 +.global lbl_805AA9F4 +lbl_805AA9F4: + .incbin "baserom.dol", 0x3F7294, 0x4 +.global lbl_805AA9F8 +lbl_805AA9F8: + .incbin "baserom.dol", 0x3F7298, 0x4 +.global lbl_805AA9FC +lbl_805AA9FC: + .incbin "baserom.dol", 0x3F729C, 0x4 +.global lbl_805AAA00 +lbl_805AAA00: + .incbin "baserom.dol", 0x3F72A0, 0x8 +.global lbl_805AAA08 +lbl_805AAA08: + .incbin "baserom.dol", 0x3F72A8, 0x8 +.global lbl_805AAA10 +lbl_805AAA10: + .incbin "baserom.dol", 0x3F72B0, 0x8 +.global lbl_805AAA18 +lbl_805AAA18: + .incbin "baserom.dol", 0x3F72B8, 0x4 +.global lbl_805AAA1C +lbl_805AAA1C: + .incbin "baserom.dol", 0x3F72BC, 0x4 +.global lbl_805AAA20 +lbl_805AAA20: + .incbin "baserom.dol", 0x3F72C0, 0x8 +.global lbl_805AAA28 +lbl_805AAA28: + .incbin "baserom.dol", 0x3F72C8, 0x4 +.global lbl_805AAA2C +lbl_805AAA2C: + .incbin "baserom.dol", 0x3F72CC, 0x4 +.global lbl_805AAA30 +lbl_805AAA30: + .incbin "baserom.dol", 0x3F72D0, 0x4 +.global lbl_805AAA34 +lbl_805AAA34: + .incbin "baserom.dol", 0x3F72D4, 0x4 +.global lbl_805AAA38 +lbl_805AAA38: + .incbin "baserom.dol", 0x3F72D8, 0x8 +.global lbl_805AAA40 +lbl_805AAA40: + .incbin "baserom.dol", 0x3F72E0, 0x4 +.global lbl_805AAA44 +lbl_805AAA44: + .incbin "baserom.dol", 0x3F72E4, 0x4 +.global lbl_805AAA48 +lbl_805AAA48: + .incbin "baserom.dol", 0x3F72E8, 0x4 +.global lbl_805AAA4C +lbl_805AAA4C: + .incbin "baserom.dol", 0x3F72EC, 0x4 +.global lbl_805AAA50 +lbl_805AAA50: + .incbin "baserom.dol", 0x3F72F0, 0x4 +.global lbl_805AAA54 +lbl_805AAA54: + .incbin "baserom.dol", 0x3F72F4, 0x4 +.global lbl_805AAA58 +lbl_805AAA58: + .incbin "baserom.dol", 0x3F72F8, 0x4 +.global lbl_805AAA5C +lbl_805AAA5C: + .incbin "baserom.dol", 0x3F72FC, 0x4 +.global lbl_805AAA60 +lbl_805AAA60: + .incbin "baserom.dol", 0x3F7300, 0x8 +.global lbl_805AAA68 +lbl_805AAA68: + .incbin "baserom.dol", 0x3F7308, 0x8 +.global lbl_805AAA70 +lbl_805AAA70: + .incbin "baserom.dol", 0x3F7310, 0x4 +.global lbl_805AAA74 +lbl_805AAA74: + .incbin "baserom.dol", 0x3F7314, 0x4 +.global lbl_805AAA78 +lbl_805AAA78: + .incbin "baserom.dol", 0x3F7318, 0x4 +.global lbl_805AAA7C +lbl_805AAA7C: + .incbin "baserom.dol", 0x3F731C, 0x4 +.global lbl_805AAA80 +lbl_805AAA80: + .incbin "baserom.dol", 0x3F7320, 0x4 +.global lbl_805AAA84 +lbl_805AAA84: + .incbin "baserom.dol", 0x3F7324, 0x4 +.global lbl_805AAA88 +lbl_805AAA88: + .incbin "baserom.dol", 0x3F7328, 0x4 +.global lbl_805AAA8C +lbl_805AAA8C: + .incbin "baserom.dol", 0x3F732C, 0x4 +.global lbl_805AAA90 +lbl_805AAA90: + .incbin "baserom.dol", 0x3F7330, 0x4 +.global lbl_805AAA94 +lbl_805AAA94: + .incbin "baserom.dol", 0x3F7334, 0x4 +.global lbl_805AAA98 +lbl_805AAA98: + .incbin "baserom.dol", 0x3F7338, 0x4 +.global lbl_805AAA9C +lbl_805AAA9C: + .incbin "baserom.dol", 0x3F733C, 0x4 +.global lbl_805AAAA0 +lbl_805AAAA0: + .incbin "baserom.dol", 0x3F7340, 0x4 +.global lbl_805AAAA4 +lbl_805AAAA4: + .incbin "baserom.dol", 0x3F7344, 0x4 +.global lbl_805AAAA8 +lbl_805AAAA8: + .incbin "baserom.dol", 0x3F7348, 0x4 +.global lbl_805AAAAC +lbl_805AAAAC: + .incbin "baserom.dol", 0x3F734C, 0x4 +.global lbl_805AAAB0 +lbl_805AAAB0: + .incbin "baserom.dol", 0x3F7350, 0x4 +.global lbl_805AAAB4 +lbl_805AAAB4: + .incbin "baserom.dol", 0x3F7354, 0x4 +.global lbl_805AAAB8 +lbl_805AAAB8: + .incbin "baserom.dol", 0x3F7358, 0x4 +.global lbl_805AAABC +lbl_805AAABC: + .incbin "baserom.dol", 0x3F735C, 0x4 +.global lbl_805AAAC0 +lbl_805AAAC0: + .incbin "baserom.dol", 0x3F7360, 0x8 +.global lbl_805AAAC8 +lbl_805AAAC8: + .incbin "baserom.dol", 0x3F7368, 0x4 +.global lbl_805AAACC +lbl_805AAACC: + .incbin "baserom.dol", 0x3F736C, 0x4 +.global lbl_805AAAD0 +lbl_805AAAD0: + .incbin "baserom.dol", 0x3F7370, 0x4 +.global lbl_805AAAD4 +lbl_805AAAD4: + .incbin "baserom.dol", 0x3F7374, 0x4 +.global lbl_805AAAD8 +lbl_805AAAD8: + .incbin "baserom.dol", 0x3F7378, 0x4 +.global lbl_805AAADC +lbl_805AAADC: + .incbin "baserom.dol", 0x3F737C, 0x4 +.global lbl_805AAAE0 +lbl_805AAAE0: + .incbin "baserom.dol", 0x3F7380, 0x4 +.global lbl_805AAAE4 +lbl_805AAAE4: + .incbin "baserom.dol", 0x3F7384, 0x4 +.global lbl_805AAAE8 +lbl_805AAAE8: + .incbin "baserom.dol", 0x3F7388, 0x4 +.global lbl_805AAAEC +lbl_805AAAEC: + .incbin "baserom.dol", 0x3F738C, 0x4 +.global lbl_805AAAF0 +lbl_805AAAF0: + .incbin "baserom.dol", 0x3F7390, 0x4 +.global lbl_805AAAF4 +lbl_805AAAF4: + .incbin "baserom.dol", 0x3F7394, 0x4 +.global lbl_805AAAF8 +lbl_805AAAF8: + .incbin "baserom.dol", 0x3F7398, 0x4 +.global lbl_805AAAFC +lbl_805AAAFC: + .incbin "baserom.dol", 0x3F739C, 0x4 +.global lbl_805AAB00 +lbl_805AAB00: + .incbin "baserom.dol", 0x3F73A0, 0x4 +.global lbl_805AAB04 +lbl_805AAB04: + .incbin "baserom.dol", 0x3F73A4, 0x4 +.global lbl_805AAB08 +lbl_805AAB08: + .incbin "baserom.dol", 0x3F73A8, 0x4 +.global lbl_805AAB0C +lbl_805AAB0C: + .incbin "baserom.dol", 0x3F73AC, 0x4 +.global lbl_805AAB10 +lbl_805AAB10: + .incbin "baserom.dol", 0x3F73B0, 0x8 +.global lbl_805AAB18 +lbl_805AAB18: + .incbin "baserom.dol", 0x3F73B8, 0x4 +.global lbl_805AAB1C +lbl_805AAB1C: + .incbin "baserom.dol", 0x3F73BC, 0x4 +.global lbl_805AAB20 +lbl_805AAB20: + .incbin "baserom.dol", 0x3F73C0, 0x4 +.global lbl_805AAB24 +lbl_805AAB24: + .incbin "baserom.dol", 0x3F73C4, 0x4 +.global lbl_805AAB28 +lbl_805AAB28: + .incbin "baserom.dol", 0x3F73C8, 0x8 +.global lbl_805AAB30 +lbl_805AAB30: + .incbin "baserom.dol", 0x3F73D0, 0x4 +.global lbl_805AAB34 +lbl_805AAB34: + .incbin "baserom.dol", 0x3F73D4, 0x4 +.global lbl_805AAB38 +lbl_805AAB38: + .incbin "baserom.dol", 0x3F73D8, 0x4 +.global lbl_805AAB3C +lbl_805AAB3C: + .incbin "baserom.dol", 0x3F73DC, 0x4 +.global lbl_805AAB40 +lbl_805AAB40: + .incbin "baserom.dol", 0x3F73E0, 0x8 +.global lbl_805AAB48 +lbl_805AAB48: + .incbin "baserom.dol", 0x3F73E8, 0x4 +.global lbl_805AAB4C +lbl_805AAB4C: + .incbin "baserom.dol", 0x3F73EC, 0x4 +.global lbl_805AAB50 +lbl_805AAB50: + .incbin "baserom.dol", 0x3F73F0, 0x4 +.global lbl_805AAB54 +lbl_805AAB54: + .incbin "baserom.dol", 0x3F73F4, 0x4 +.global lbl_805AAB58 +lbl_805AAB58: + .incbin "baserom.dol", 0x3F73F8, 0x8 +.global lbl_805AAB60 +lbl_805AAB60: + .incbin "baserom.dol", 0x3F7400, 0x8 +.global lbl_805AAB68 +lbl_805AAB68: + .incbin "baserom.dol", 0x3F7408, 0x8 +.global lbl_805AAB70 +lbl_805AAB70: + .incbin "baserom.dol", 0x3F7410, 0x4 +.global lbl_805AAB74 +lbl_805AAB74: + .incbin "baserom.dol", 0x3F7414, 0x4 +.global lbl_805AAB78 +lbl_805AAB78: + .incbin "baserom.dol", 0x3F7418, 0x4 +.global lbl_805AAB7C +lbl_805AAB7C: + .incbin "baserom.dol", 0x3F741C, 0x4 +.global lbl_805AAB80 +lbl_805AAB80: + .incbin "baserom.dol", 0x3F7420, 0x4 +.global lbl_805AAB84 +lbl_805AAB84: + .incbin "baserom.dol", 0x3F7424, 0x4 +.global lbl_805AAB88 +lbl_805AAB88: + .incbin "baserom.dol", 0x3F7428, 0x4 +.global lbl_805AAB8C +lbl_805AAB8C: + .incbin "baserom.dol", 0x3F742C, 0x4 +.global lbl_805AAB90 +lbl_805AAB90: + .incbin "baserom.dol", 0x3F7430, 0x4 +.global lbl_805AAB94 +lbl_805AAB94: + .incbin "baserom.dol", 0x3F7434, 0x4 +.global lbl_805AAB98 +lbl_805AAB98: + .incbin "baserom.dol", 0x3F7438, 0x4 +.global lbl_805AAB9C +lbl_805AAB9C: + .incbin "baserom.dol", 0x3F743C, 0x4 +.global lbl_805AABA0 +lbl_805AABA0: + .incbin "baserom.dol", 0x3F7440, 0x4 +.global lbl_805AABA4 +lbl_805AABA4: + .incbin "baserom.dol", 0x3F7444, 0x4 +.global lbl_805AABA8 +lbl_805AABA8: + .incbin "baserom.dol", 0x3F7448, 0x4 +.global lbl_805AABAC +lbl_805AABAC: + .incbin "baserom.dol", 0x3F744C, 0x4 +.global lbl_805AABB0 +lbl_805AABB0: + .incbin "baserom.dol", 0x3F7450, 0x4 +.global lbl_805AABB4 +lbl_805AABB4: + .incbin "baserom.dol", 0x3F7454, 0x4 +.global lbl_805AABB8 +lbl_805AABB8: + .incbin "baserom.dol", 0x3F7458, 0x4 +.global lbl_805AABBC +lbl_805AABBC: + .incbin "baserom.dol", 0x3F745C, 0x4 +.global lbl_805AABC0 +lbl_805AABC0: + .incbin "baserom.dol", 0x3F7460, 0x4 +.global lbl_805AABC4 +lbl_805AABC4: + .incbin "baserom.dol", 0x3F7464, 0x4 +.global lbl_805AABC8 +lbl_805AABC8: + .incbin "baserom.dol", 0x3F7468, 0x4 +.global lbl_805AABCC +lbl_805AABCC: + .incbin "baserom.dol", 0x3F746C, 0x4 +.global lbl_805AABD0 +lbl_805AABD0: + .incbin "baserom.dol", 0x3F7470, 0x4 +.global lbl_805AABD4 +lbl_805AABD4: + .incbin "baserom.dol", 0x3F7474, 0x4 +.global lbl_805AABD8 +lbl_805AABD8: + .incbin "baserom.dol", 0x3F7478, 0x4 +.global lbl_805AABDC +lbl_805AABDC: + .incbin "baserom.dol", 0x3F747C, 0x4 +.global lbl_805AABE0 +lbl_805AABE0: + .incbin "baserom.dol", 0x3F7480, 0x8 +.global lbl_805AABE8 +lbl_805AABE8: + .incbin "baserom.dol", 0x3F7488, 0x8 +.global lbl_805AABF0 +lbl_805AABF0: + .incbin "baserom.dol", 0x3F7490, 0x4 +.global lbl_805AABF4 +lbl_805AABF4: + .incbin "baserom.dol", 0x3F7494, 0x4 +.global lbl_805AABF8 +lbl_805AABF8: + .incbin "baserom.dol", 0x3F7498, 0x4 +.global lbl_805AABFC +lbl_805AABFC: + .incbin "baserom.dol", 0x3F749C, 0x4 +.global lbl_805AAC00 +lbl_805AAC00: + .incbin "baserom.dol", 0x3F74A0, 0x4 +.global lbl_805AAC04 +lbl_805AAC04: + .incbin "baserom.dol", 0x3F74A4, 0x4 +.global lbl_805AAC08 +lbl_805AAC08: + .incbin "baserom.dol", 0x3F74A8, 0x8 +.global lbl_805AAC10 +lbl_805AAC10: + .incbin "baserom.dol", 0x3F74B0, 0x4 +.global lbl_805AAC14 +lbl_805AAC14: + .incbin "baserom.dol", 0x3F74B4, 0x4 +.global lbl_805AAC18 +lbl_805AAC18: + .incbin "baserom.dol", 0x3F74B8, 0x4 +.global lbl_805AAC1C +lbl_805AAC1C: + .incbin "baserom.dol", 0x3F74BC, 0x4 +.global lbl_805AAC20 +lbl_805AAC20: + .incbin "baserom.dol", 0x3F74C0, 0x4 +.global lbl_805AAC24 +lbl_805AAC24: + .incbin "baserom.dol", 0x3F74C4, 0x4 +.global lbl_805AAC28 +lbl_805AAC28: + .incbin "baserom.dol", 0x3F74C8, 0x4 +.global lbl_805AAC2C +lbl_805AAC2C: + .incbin "baserom.dol", 0x3F74CC, 0x4 +.global lbl_805AAC30 +lbl_805AAC30: + .incbin "baserom.dol", 0x3F74D0, 0x4 +.global lbl_805AAC34 +lbl_805AAC34: + .incbin "baserom.dol", 0x3F74D4, 0x4 +.global lbl_805AAC38 +lbl_805AAC38: + .incbin "baserom.dol", 0x3F74D8, 0x4 +.global lbl_805AAC3C +lbl_805AAC3C: + .incbin "baserom.dol", 0x3F74DC, 0x4 +.global lbl_805AAC40 +lbl_805AAC40: + .incbin "baserom.dol", 0x3F74E0, 0x4 +.global lbl_805AAC44 +lbl_805AAC44: + .incbin "baserom.dol", 0x3F74E4, 0x4 +.global lbl_805AAC48 +lbl_805AAC48: + .incbin "baserom.dol", 0x3F74E8, 0x8 +.global lbl_805AAC50 +lbl_805AAC50: + .incbin "baserom.dol", 0x3F74F0, 0x4 +.global lbl_805AAC54 +lbl_805AAC54: + .incbin "baserom.dol", 0x3F74F4, 0x4 +.global lbl_805AAC58 +lbl_805AAC58: + .incbin "baserom.dol", 0x3F74F8, 0x4 +.global lbl_805AAC5C +lbl_805AAC5C: + .incbin "baserom.dol", 0x3F74FC, 0x4 +.global lbl_805AAC60 +lbl_805AAC60: + .incbin "baserom.dol", 0x3F7500, 0x4 +.global lbl_805AAC64 +lbl_805AAC64: + .incbin "baserom.dol", 0x3F7504, 0x4 +.global lbl_805AAC68 +lbl_805AAC68: + .incbin "baserom.dol", 0x3F7508, 0x4 +.global lbl_805AAC6C +lbl_805AAC6C: + .incbin "baserom.dol", 0x3F750C, 0x4 +.global lbl_805AAC70 +lbl_805AAC70: + .incbin "baserom.dol", 0x3F7510, 0x4 +.global lbl_805AAC74 +lbl_805AAC74: + .incbin "baserom.dol", 0x3F7514, 0x4 +.global lbl_805AAC78 +lbl_805AAC78: + .incbin "baserom.dol", 0x3F7518, 0x4 +.global lbl_805AAC7C +lbl_805AAC7C: + .incbin "baserom.dol", 0x3F751C, 0x4 +.global lbl_805AAC80 +lbl_805AAC80: + .incbin "baserom.dol", 0x3F7520, 0x4 +.global lbl_805AAC84 +lbl_805AAC84: + .incbin "baserom.dol", 0x3F7524, 0x4 +.global lbl_805AAC88 +lbl_805AAC88: + .incbin "baserom.dol", 0x3F7528, 0x4 +.global lbl_805AAC8C +lbl_805AAC8C: + .incbin "baserom.dol", 0x3F752C, 0x4 +.global lbl_805AAC90 +lbl_805AAC90: + .incbin "baserom.dol", 0x3F7530, 0x8 +.global lbl_805AAC98 +lbl_805AAC98: + .incbin "baserom.dol", 0x3F7538, 0x4 +.global lbl_805AAC9C +lbl_805AAC9C: + .incbin "baserom.dol", 0x3F753C, 0x4 +.global lbl_805AACA0 +lbl_805AACA0: + .incbin "baserom.dol", 0x3F7540, 0x4 +.global lbl_805AACA4 +lbl_805AACA4: + .incbin "baserom.dol", 0x3F7544, 0x4 +.global lbl_805AACA8 +lbl_805AACA8: + .incbin "baserom.dol", 0x3F7548, 0x4 +.global lbl_805AACAC +lbl_805AACAC: + .incbin "baserom.dol", 0x3F754C, 0x4 +.global lbl_805AACB0 +lbl_805AACB0: + .incbin "baserom.dol", 0x3F7550, 0x8 +.global lbl_805AACB8 +lbl_805AACB8: + .incbin "baserom.dol", 0x3F7558, 0x8 +.global lbl_805AACC0 +lbl_805AACC0: + .incbin "baserom.dol", 0x3F7560, 0x8 +.global lbl_805AACC8 +lbl_805AACC8: + .incbin "baserom.dol", 0x3F7568, 0x4 +.global lbl_805AACCC +lbl_805AACCC: + .incbin "baserom.dol", 0x3F756C, 0x4 +.global lbl_805AACD0 +lbl_805AACD0: + .incbin "baserom.dol", 0x3F7570, 0x4 +.global lbl_805AACD4 +lbl_805AACD4: + .incbin "baserom.dol", 0x3F7574, 0x4 +.global lbl_805AACD8 +lbl_805AACD8: + .incbin "baserom.dol", 0x3F7578, 0x8 +.global lbl_805AACE0 +lbl_805AACE0: + .incbin "baserom.dol", 0x3F7580, 0x4 +.global lbl_805AACE4 +lbl_805AACE4: + .incbin "baserom.dol", 0x3F7584, 0x4 +.global lbl_805AACE8 +lbl_805AACE8: + .incbin "baserom.dol", 0x3F7588, 0x4 +.global lbl_805AACEC +lbl_805AACEC: + .incbin "baserom.dol", 0x3F758C, 0x4 +.global lbl_805AACF0 +lbl_805AACF0: + .incbin "baserom.dol", 0x3F7590, 0x4 +.global lbl_805AACF4 +lbl_805AACF4: + .incbin "baserom.dol", 0x3F7594, 0x4 +.global lbl_805AACF8 +lbl_805AACF8: + .incbin "baserom.dol", 0x3F7598, 0x4 +.global lbl_805AACFC +lbl_805AACFC: + .incbin "baserom.dol", 0x3F759C, 0x4 +.global lbl_805AAD00 +lbl_805AAD00: + .incbin "baserom.dol", 0x3F75A0, 0x4 +.global lbl_805AAD04 +lbl_805AAD04: + .incbin "baserom.dol", 0x3F75A4, 0x4 +.global lbl_805AAD08 +lbl_805AAD08: + .incbin "baserom.dol", 0x3F75A8, 0x4 +.global lbl_805AAD0C +lbl_805AAD0C: + .incbin "baserom.dol", 0x3F75AC, 0x4 +.global lbl_805AAD10 +lbl_805AAD10: + .incbin "baserom.dol", 0x3F75B0, 0x4 +.global lbl_805AAD14 +lbl_805AAD14: + .incbin "baserom.dol", 0x3F75B4, 0x4 +.global lbl_805AAD18 +lbl_805AAD18: + .incbin "baserom.dol", 0x3F75B8, 0x4 +.global lbl_805AAD1C +lbl_805AAD1C: + .incbin "baserom.dol", 0x3F75BC, 0x4 +.global lbl_805AAD20 +lbl_805AAD20: + .incbin "baserom.dol", 0x3F75C0, 0x4 +.global lbl_805AAD24 +lbl_805AAD24: + .incbin "baserom.dol", 0x3F75C4, 0x4 +.global lbl_805AAD28 +lbl_805AAD28: + .incbin "baserom.dol", 0x3F75C8, 0x4 +.global lbl_805AAD2C +lbl_805AAD2C: + .incbin "baserom.dol", 0x3F75CC, 0x4 +.global lbl_805AAD30 +lbl_805AAD30: + .incbin "baserom.dol", 0x3F75D0, 0x4 +.global lbl_805AAD34 +lbl_805AAD34: + .incbin "baserom.dol", 0x3F75D4, 0x4 +.global lbl_805AAD38 +lbl_805AAD38: + .incbin "baserom.dol", 0x3F75D8, 0x8 +.global lbl_805AAD40 +lbl_805AAD40: + .incbin "baserom.dol", 0x3F75E0, 0x4 +.global lbl_805AAD44 +lbl_805AAD44: + .incbin "baserom.dol", 0x3F75E4, 0x4 +.global lbl_805AAD48 +lbl_805AAD48: + .incbin "baserom.dol", 0x3F75E8, 0x4 +.global lbl_805AAD4C +lbl_805AAD4C: + .incbin "baserom.dol", 0x3F75EC, 0x4 +.global lbl_805AAD50 +lbl_805AAD50: + .incbin "baserom.dol", 0x3F75F0, 0x4 +.global lbl_805AAD54 +lbl_805AAD54: + .incbin "baserom.dol", 0x3F75F4, 0x4 +.global lbl_805AAD58 +lbl_805AAD58: + .incbin "baserom.dol", 0x3F75F8, 0x4 +.global lbl_805AAD5C +lbl_805AAD5C: + .incbin "baserom.dol", 0x3F75FC, 0x4 +.global lbl_805AAD60 +lbl_805AAD60: + .incbin "baserom.dol", 0x3F7600, 0x4 +.global lbl_805AAD64 +lbl_805AAD64: + .incbin "baserom.dol", 0x3F7604, 0x4 +.global lbl_805AAD68 +lbl_805AAD68: + .incbin "baserom.dol", 0x3F7608, 0x4 +.global lbl_805AAD6C +lbl_805AAD6C: + .incbin "baserom.dol", 0x3F760C, 0x4 +.global lbl_805AAD70 +lbl_805AAD70: + .incbin "baserom.dol", 0x3F7610, 0x4 +.global lbl_805AAD74 +lbl_805AAD74: + .incbin "baserom.dol", 0x3F7614, 0x4 +.global lbl_805AAD78 +lbl_805AAD78: + .incbin "baserom.dol", 0x3F7618, 0x4 +.global lbl_805AAD7C +lbl_805AAD7C: + .incbin "baserom.dol", 0x3F761C, 0x4 +.global lbl_805AAD80 +lbl_805AAD80: + .incbin "baserom.dol", 0x3F7620, 0x8 +.global lbl_805AAD88 +lbl_805AAD88: + .incbin "baserom.dol", 0x3F7628, 0x8 +.global lbl_805AAD90 +lbl_805AAD90: + .incbin "baserom.dol", 0x3F7630, 0x8 +.global lbl_805AAD98 +lbl_805AAD98: + .incbin "baserom.dol", 0x3F7638, 0x4 +.global lbl_805AAD9C +lbl_805AAD9C: + .incbin "baserom.dol", 0x3F763C, 0x4 +.global lbl_805AADA0 +lbl_805AADA0: + .incbin "baserom.dol", 0x3F7640, 0x4 +.global lbl_805AADA4 +lbl_805AADA4: + .incbin "baserom.dol", 0x3F7644, 0x4 +.global lbl_805AADA8 +lbl_805AADA8: + .incbin "baserom.dol", 0x3F7648, 0x4 +.global lbl_805AADAC +lbl_805AADAC: + .incbin "baserom.dol", 0x3F764C, 0x4 +.global lbl_805AADB0 +lbl_805AADB0: + .incbin "baserom.dol", 0x3F7650, 0x8 +.global lbl_805AADB8 +lbl_805AADB8: + .incbin "baserom.dol", 0x3F7658, 0x8 +.global lbl_805AADC0 +lbl_805AADC0: + .incbin "baserom.dol", 0x3F7660, 0x8 +.global lbl_805AADC8 +lbl_805AADC8: + .incbin "baserom.dol", 0x3F7668, 0x8 +.global lbl_805AADD0 +lbl_805AADD0: + .incbin "baserom.dol", 0x3F7670, 0x4 +.global lbl_805AADD4 +lbl_805AADD4: + .incbin "baserom.dol", 0x3F7674, 0x4 +.global lbl_805AADD8 +lbl_805AADD8: + .incbin "baserom.dol", 0x3F7678, 0x4 +.global lbl_805AADDC +lbl_805AADDC: + .incbin "baserom.dol", 0x3F767C, 0x4 +.global lbl_805AADE0 +lbl_805AADE0: + .incbin "baserom.dol", 0x3F7680, 0x8 +.global lbl_805AADE8 +lbl_805AADE8: + .incbin "baserom.dol", 0x3F7688, 0x8 +.global lbl_805AADF0 +lbl_805AADF0: + .incbin "baserom.dol", 0x3F7690, 0x4 +.global lbl_805AADF4 +lbl_805AADF4: + .incbin "baserom.dol", 0x3F7694, 0x4 +.global lbl_805AADF8 +lbl_805AADF8: + .incbin "baserom.dol", 0x3F7698, 0x4 +.global lbl_805AADFC +lbl_805AADFC: + .incbin "baserom.dol", 0x3F769C, 0x4 +.global lbl_805AAE00 +lbl_805AAE00: + .incbin "baserom.dol", 0x3F76A0, 0x4 +.global lbl_805AAE04 +lbl_805AAE04: + .incbin "baserom.dol", 0x3F76A4, 0x4 +.global lbl_805AAE08 +lbl_805AAE08: + .incbin "baserom.dol", 0x3F76A8, 0x4 +.global lbl_805AAE0C +lbl_805AAE0C: + .incbin "baserom.dol", 0x3F76AC, 0x4 +.global lbl_805AAE10 +lbl_805AAE10: + .incbin "baserom.dol", 0x3F76B0, 0x4 +.global lbl_805AAE14 +lbl_805AAE14: + .incbin "baserom.dol", 0x3F76B4, 0x4 +.global lbl_805AAE18 +lbl_805AAE18: + .incbin "baserom.dol", 0x3F76B8, 0x4 +.global lbl_805AAE1C +lbl_805AAE1C: + .incbin "baserom.dol", 0x3F76BC, 0x4 +.global lbl_805AAE20 +lbl_805AAE20: + .incbin "baserom.dol", 0x3F76C0, 0x8 +.global lbl_805AAE28 +lbl_805AAE28: + .incbin "baserom.dol", 0x3F76C8, 0x8 +.global lbl_805AAE30 +lbl_805AAE30: + .incbin "baserom.dol", 0x3F76D0, 0x4 +.global lbl_805AAE34 +lbl_805AAE34: + .incbin "baserom.dol", 0x3F76D4, 0x4 +.global lbl_805AAE38 +lbl_805AAE38: + .incbin "baserom.dol", 0x3F76D8, 0x4 +.global lbl_805AAE3C +lbl_805AAE3C: + .incbin "baserom.dol", 0x3F76DC, 0x4 +.global lbl_805AAE40 +lbl_805AAE40: + .incbin "baserom.dol", 0x3F76E0, 0x8 +.global lbl_805AAE48 +lbl_805AAE48: + .incbin "baserom.dol", 0x3F76E8, 0x4 +.global lbl_805AAE4C +lbl_805AAE4C: + .incbin "baserom.dol", 0x3F76EC, 0x4 +.global lbl_805AAE50 +lbl_805AAE50: + .incbin "baserom.dol", 0x3F76F0, 0x4 +.global lbl_805AAE54 +lbl_805AAE54: + .incbin "baserom.dol", 0x3F76F4, 0x4 +.global lbl_805AAE58 +lbl_805AAE58: + .incbin "baserom.dol", 0x3F76F8, 0x4 +.global lbl_805AAE5C +lbl_805AAE5C: + .incbin "baserom.dol", 0x3F76FC, 0x4 +.global lbl_805AAE60 +lbl_805AAE60: + .incbin "baserom.dol", 0x3F7700, 0x4 +.global lbl_805AAE64 +lbl_805AAE64: + .incbin "baserom.dol", 0x3F7704, 0x4 +.global lbl_805AAE68 +lbl_805AAE68: + .incbin "baserom.dol", 0x3F7708, 0x4 +.global lbl_805AAE6C +lbl_805AAE6C: + .incbin "baserom.dol", 0x3F770C, 0x4 +.global lbl_805AAE70 +lbl_805AAE70: + .incbin "baserom.dol", 0x3F7710, 0x4 +.global lbl_805AAE74 +lbl_805AAE74: + .incbin "baserom.dol", 0x3F7714, 0x4 +.global lbl_805AAE78 +lbl_805AAE78: + .incbin "baserom.dol", 0x3F7718, 0x4 +.global lbl_805AAE7C +lbl_805AAE7C: + .incbin "baserom.dol", 0x3F771C, 0x4 +.global lbl_805AAE80 +lbl_805AAE80: + .incbin "baserom.dol", 0x3F7720, 0x4 +.global lbl_805AAE84 +lbl_805AAE84: + .incbin "baserom.dol", 0x3F7724, 0x4 +.global lbl_805AAE88 +lbl_805AAE88: + .incbin "baserom.dol", 0x3F7728, 0x4 +.global lbl_805AAE8C +lbl_805AAE8C: + .incbin "baserom.dol", 0x3F772C, 0x4 +.global lbl_805AAE90 +lbl_805AAE90: + .incbin "baserom.dol", 0x3F7730, 0x4 +.global lbl_805AAE94 +lbl_805AAE94: + .incbin "baserom.dol", 0x3F7734, 0x4 +.global lbl_805AAE98 +lbl_805AAE98: + .incbin "baserom.dol", 0x3F7738, 0x4 +.global lbl_805AAE9C +lbl_805AAE9C: + .incbin "baserom.dol", 0x3F773C, 0x4 +.global lbl_805AAEA0 +lbl_805AAEA0: + .incbin "baserom.dol", 0x3F7740, 0x4 +.global lbl_805AAEA4 +lbl_805AAEA4: + .incbin "baserom.dol", 0x3F7744, 0x4 +.global lbl_805AAEA8 +lbl_805AAEA8: + .incbin "baserom.dol", 0x3F7748, 0x4 +.global lbl_805AAEAC +lbl_805AAEAC: + .incbin "baserom.dol", 0x3F774C, 0x4 +.global lbl_805AAEB0 +lbl_805AAEB0: + .incbin "baserom.dol", 0x3F7750, 0x4 +.global lbl_805AAEB4 +lbl_805AAEB4: + .incbin "baserom.dol", 0x3F7754, 0x4 +.global lbl_805AAEB8 +lbl_805AAEB8: + .incbin "baserom.dol", 0x3F7758, 0x4 +.global lbl_805AAEBC +lbl_805AAEBC: + .incbin "baserom.dol", 0x3F775C, 0x4 +.global lbl_805AAEC0 +lbl_805AAEC0: + .incbin "baserom.dol", 0x3F7760, 0x8 +.global lbl_805AAEC8 +lbl_805AAEC8: + .incbin "baserom.dol", 0x3F7768, 0x4 +.global lbl_805AAECC +lbl_805AAECC: + .incbin "baserom.dol", 0x3F776C, 0x4 +.global lbl_805AAED0 +lbl_805AAED0: + .incbin "baserom.dol", 0x3F7770, 0x4 +.global lbl_805AAED4 +lbl_805AAED4: + .incbin "baserom.dol", 0x3F7774, 0x4 +.global lbl_805AAED8 +lbl_805AAED8: + .incbin "baserom.dol", 0x3F7778, 0x4 +.global lbl_805AAEDC +lbl_805AAEDC: + .incbin "baserom.dol", 0x3F777C, 0x4 +.global lbl_805AAEE0 +lbl_805AAEE0: + .incbin "baserom.dol", 0x3F7780, 0x4 +.global lbl_805AAEE4 +lbl_805AAEE4: + .incbin "baserom.dol", 0x3F7784, 0x4 +.global lbl_805AAEE8 +lbl_805AAEE8: + .incbin "baserom.dol", 0x3F7788, 0x8 +.global lbl_805AAEF0 +lbl_805AAEF0: + .incbin "baserom.dol", 0x3F7790, 0x8 +.global lbl_805AAEF8 +lbl_805AAEF8: + .incbin "baserom.dol", 0x3F7798, 0x4 +.global lbl_805AAEFC +lbl_805AAEFC: + .incbin "baserom.dol", 0x3F779C, 0x4 +.global lbl_805AAF00 +lbl_805AAF00: + .incbin "baserom.dol", 0x3F77A0, 0x4 +.global lbl_805AAF04 +lbl_805AAF04: + .incbin "baserom.dol", 0x3F77A4, 0x4 +.global lbl_805AAF08 +lbl_805AAF08: + .incbin "baserom.dol", 0x3F77A8, 0x4 +.global lbl_805AAF0C +lbl_805AAF0C: + .incbin "baserom.dol", 0x3F77AC, 0x4 +.global lbl_805AAF10 +lbl_805AAF10: + .incbin "baserom.dol", 0x3F77B0, 0x4 +.global lbl_805AAF14 +lbl_805AAF14: + .incbin "baserom.dol", 0x3F77B4, 0x4 +.global lbl_805AAF18 +lbl_805AAF18: + .incbin "baserom.dol", 0x3F77B8, 0x4 +.global lbl_805AAF1C +lbl_805AAF1C: + .incbin "baserom.dol", 0x3F77BC, 0x4 +.global lbl_805AAF20 +lbl_805AAF20: + .incbin "baserom.dol", 0x3F77C0, 0x4 +.global lbl_805AAF24 +lbl_805AAF24: + .incbin "baserom.dol", 0x3F77C4, 0x4 +.global lbl_805AAF28 +lbl_805AAF28: + .incbin "baserom.dol", 0x3F77C8, 0x8 +.global lbl_805AAF30 +lbl_805AAF30: + .incbin "baserom.dol", 0x3F77D0, 0x8 +.global lbl_805AAF38 +lbl_805AAF38: + .incbin "baserom.dol", 0x3F77D8, 0x4 +.global lbl_805AAF3C +lbl_805AAF3C: + .incbin "baserom.dol", 0x3F77DC, 0x4 +.global lbl_805AAF40 +lbl_805AAF40: + .incbin "baserom.dol", 0x3F77E0, 0x4 +.global lbl_805AAF44 +lbl_805AAF44: + .incbin "baserom.dol", 0x3F77E4, 0x4 +.global lbl_805AAF48 +lbl_805AAF48: + .incbin "baserom.dol", 0x3F77E8, 0x4 +.global lbl_805AAF4C +lbl_805AAF4C: + .incbin "baserom.dol", 0x3F77EC, 0x4 +.global lbl_805AAF50 +lbl_805AAF50: + .incbin "baserom.dol", 0x3F77F0, 0x4 +.global lbl_805AAF54 +lbl_805AAF54: + .incbin "baserom.dol", 0x3F77F4, 0x4 +.global lbl_805AAF58 +lbl_805AAF58: + .incbin "baserom.dol", 0x3F77F8, 0x4 +.global lbl_805AAF5C +lbl_805AAF5C: + .incbin "baserom.dol", 0x3F77FC, 0x4 +.global lbl_805AAF60 +lbl_805AAF60: + .incbin "baserom.dol", 0x3F7800, 0x4 +.global lbl_805AAF64 +lbl_805AAF64: + .incbin "baserom.dol", 0x3F7804, 0x4 +.global lbl_805AAF68 +lbl_805AAF68: + .incbin "baserom.dol", 0x3F7808, 0x4 +.global lbl_805AAF6C +lbl_805AAF6C: + .incbin "baserom.dol", 0x3F780C, 0x4 +.global lbl_805AAF70 +lbl_805AAF70: + .incbin "baserom.dol", 0x3F7810, 0x4 +.global lbl_805AAF74 +lbl_805AAF74: + .incbin "baserom.dol", 0x3F7814, 0x4 +.global lbl_805AAF78 +lbl_805AAF78: + .incbin "baserom.dol", 0x3F7818, 0x4 +.global lbl_805AAF7C +lbl_805AAF7C: + .incbin "baserom.dol", 0x3F781C, 0x4 +.global lbl_805AAF80 +lbl_805AAF80: + .incbin "baserom.dol", 0x3F7820, 0x4 +.global lbl_805AAF84 +lbl_805AAF84: + .incbin "baserom.dol", 0x3F7824, 0x4 +.global lbl_805AAF88 +lbl_805AAF88: + .incbin "baserom.dol", 0x3F7828, 0x4 +.global lbl_805AAF8C +lbl_805AAF8C: + .incbin "baserom.dol", 0x3F782C, 0x4 +.global lbl_805AAF90 +lbl_805AAF90: + .incbin "baserom.dol", 0x3F7830, 0x8 +.global lbl_805AAF98 +lbl_805AAF98: + .incbin "baserom.dol", 0x3F7838, 0x8 +.global lbl_805AAFA0 +lbl_805AAFA0: + .incbin "baserom.dol", 0x3F7840, 0x4 +.global lbl_805AAFA4 +lbl_805AAFA4: + .incbin "baserom.dol", 0x3F7844, 0x4 +.global lbl_805AAFA8 +lbl_805AAFA8: + .incbin "baserom.dol", 0x3F7848, 0x4 +.global lbl_805AAFAC +lbl_805AAFAC: + .incbin "baserom.dol", 0x3F784C, 0x4 +.global lbl_805AAFB0 +lbl_805AAFB0: + .incbin "baserom.dol", 0x3F7850, 0x4 +.global lbl_805AAFB4 +lbl_805AAFB4: + .incbin "baserom.dol", 0x3F7854, 0x4 +.global lbl_805AAFB8 +lbl_805AAFB8: + .incbin "baserom.dol", 0x3F7858, 0x8 +.global lbl_805AAFC0 +lbl_805AAFC0: + .incbin "baserom.dol", 0x3F7860, 0x4 +.global lbl_805AAFC4 +lbl_805AAFC4: + .incbin "baserom.dol", 0x3F7864, 0x4 +.global lbl_805AAFC8 +lbl_805AAFC8: + .incbin "baserom.dol", 0x3F7868, 0x8 +.global lbl_805AAFD0 +lbl_805AAFD0: + .incbin "baserom.dol", 0x3F7870, 0x8 +.global lbl_805AAFD8 +lbl_805AAFD8: + .incbin "baserom.dol", 0x3F7878, 0x4 +.global lbl_805AAFDC +lbl_805AAFDC: + .incbin "baserom.dol", 0x3F787C, 0x4 +.global lbl_805AAFE0 +lbl_805AAFE0: + .incbin "baserom.dol", 0x3F7880, 0x4 +.global lbl_805AAFE4 +lbl_805AAFE4: + .incbin "baserom.dol", 0x3F7884, 0x4 +.global lbl_805AAFE8 +lbl_805AAFE8: + .incbin "baserom.dol", 0x3F7888, 0x4 +.global lbl_805AAFEC +lbl_805AAFEC: + .incbin "baserom.dol", 0x3F788C, 0x4 +.global lbl_805AAFF0 +lbl_805AAFF0: + .incbin "baserom.dol", 0x3F7890, 0x4 +.global lbl_805AAFF4 +lbl_805AAFF4: + .incbin "baserom.dol", 0x3F7894, 0x4 +.global lbl_805AAFF8 +lbl_805AAFF8: + .incbin "baserom.dol", 0x3F7898, 0x4 +.global lbl_805AAFFC +lbl_805AAFFC: + .incbin "baserom.dol", 0x3F789C, 0x4 +.global lbl_805AB000 +lbl_805AB000: + .incbin "baserom.dol", 0x3F78A0, 0x4 +.global lbl_805AB004 +lbl_805AB004: + .incbin "baserom.dol", 0x3F78A4, 0x4 +.global lbl_805AB008 +lbl_805AB008: + .incbin "baserom.dol", 0x3F78A8, 0x4 +.global lbl_805AB00C +lbl_805AB00C: + .incbin "baserom.dol", 0x3F78AC, 0x4 +.global lbl_805AB010 +lbl_805AB010: + .incbin "baserom.dol", 0x3F78B0, 0x4 +.global lbl_805AB014 +lbl_805AB014: + .incbin "baserom.dol", 0x3F78B4, 0x4 +.global lbl_805AB018 +lbl_805AB018: + .incbin "baserom.dol", 0x3F78B8, 0x4 +.global lbl_805AB01C +lbl_805AB01C: + .incbin "baserom.dol", 0x3F78BC, 0x4 +.global lbl_805AB020 +lbl_805AB020: + .incbin "baserom.dol", 0x3F78C0, 0x4 +.global lbl_805AB024 +lbl_805AB024: + .incbin "baserom.dol", 0x3F78C4, 0x4 +.global lbl_805AB028 +lbl_805AB028: + .incbin "baserom.dol", 0x3F78C8, 0x4 +.global lbl_805AB02C +lbl_805AB02C: + .incbin "baserom.dol", 0x3F78CC, 0x4 +.global lbl_805AB030 +lbl_805AB030: + .incbin "baserom.dol", 0x3F78D0, 0x4 +.global lbl_805AB034 +lbl_805AB034: + .incbin "baserom.dol", 0x3F78D4, 0x4 +.global lbl_805AB038 +lbl_805AB038: + .incbin "baserom.dol", 0x3F78D8, 0x4 +.global lbl_805AB03C +lbl_805AB03C: + .incbin "baserom.dol", 0x3F78DC, 0x4 +.global lbl_805AB040 +lbl_805AB040: + .incbin "baserom.dol", 0x3F78E0, 0x4 +.global lbl_805AB044 +lbl_805AB044: + .incbin "baserom.dol", 0x3F78E4, 0x4 +.global lbl_805AB048 +lbl_805AB048: + .incbin "baserom.dol", 0x3F78E8, 0x8 +.global lbl_805AB050 +lbl_805AB050: + .incbin "baserom.dol", 0x3F78F0, 0x8 +.global lbl_805AB058 +lbl_805AB058: + .incbin "baserom.dol", 0x3F78F8, 0x4 +.global lbl_805AB05C +lbl_805AB05C: + .incbin "baserom.dol", 0x3F78FC, 0x4 +.global lbl_805AB060 +lbl_805AB060: + .incbin "baserom.dol", 0x3F7900, 0x4 +.global lbl_805AB064 +lbl_805AB064: + .incbin "baserom.dol", 0x3F7904, 0x4 +.global lbl_805AB068 +lbl_805AB068: + .incbin "baserom.dol", 0x3F7908, 0x4 +.global lbl_805AB06C +lbl_805AB06C: + .incbin "baserom.dol", 0x3F790C, 0x4 +.global lbl_805AB070 +lbl_805AB070: + .incbin "baserom.dol", 0x3F7910, 0x4 +.global lbl_805AB074 +lbl_805AB074: + .incbin "baserom.dol", 0x3F7914, 0x4 +.global lbl_805AB078 +lbl_805AB078: + .incbin "baserom.dol", 0x3F7918, 0x4 +.global lbl_805AB07C +lbl_805AB07C: + .incbin "baserom.dol", 0x3F791C, 0x4 +.global lbl_805AB080 +lbl_805AB080: + .incbin "baserom.dol", 0x3F7920, 0x4 +.global lbl_805AB084 +lbl_805AB084: + .incbin "baserom.dol", 0x3F7924, 0x4 +.global lbl_805AB088 +lbl_805AB088: + .incbin "baserom.dol", 0x3F7928, 0x4 +.global lbl_805AB08C +lbl_805AB08C: + .incbin "baserom.dol", 0x3F792C, 0x4 +.global lbl_805AB090 +lbl_805AB090: + .incbin "baserom.dol", 0x3F7930, 0x4 +.global lbl_805AB094 +lbl_805AB094: + .incbin "baserom.dol", 0x3F7934, 0x4 +.global lbl_805AB098 +lbl_805AB098: + .incbin "baserom.dol", 0x3F7938, 0x4 +.global lbl_805AB09C +lbl_805AB09C: + .incbin "baserom.dol", 0x3F793C, 0x4 +.global lbl_805AB0A0 +lbl_805AB0A0: + .incbin "baserom.dol", 0x3F7940, 0x4 +.global lbl_805AB0A4 +lbl_805AB0A4: + .incbin "baserom.dol", 0x3F7944, 0x4 +.global lbl_805AB0A8 +lbl_805AB0A8: + .incbin "baserom.dol", 0x3F7948, 0x4 +.global lbl_805AB0AC +lbl_805AB0AC: + .incbin "baserom.dol", 0x3F794C, 0x4 +.global lbl_805AB0B0 +lbl_805AB0B0: + .incbin "baserom.dol", 0x3F7950, 0x4 +.global lbl_805AB0B4 +lbl_805AB0B4: + .incbin "baserom.dol", 0x3F7954, 0x4 +.global lbl_805AB0B8 +lbl_805AB0B8: + .incbin "baserom.dol", 0x3F7958, 0x4 +.global lbl_805AB0BC +lbl_805AB0BC: + .incbin "baserom.dol", 0x3F795C, 0x4 +.global lbl_805AB0C0 +lbl_805AB0C0: + .incbin "baserom.dol", 0x3F7960, 0x4 +.global lbl_805AB0C4 +lbl_805AB0C4: + .incbin "baserom.dol", 0x3F7964, 0x4 +.global lbl_805AB0C8 +lbl_805AB0C8: + .incbin "baserom.dol", 0x3F7968, 0x8 +.global lbl_805AB0D0 +lbl_805AB0D0: + .incbin "baserom.dol", 0x3F7970, 0x8 +.global lbl_805AB0D8 +lbl_805AB0D8: + .incbin "baserom.dol", 0x3F7978, 0x4 +.global lbl_805AB0DC +lbl_805AB0DC: + .incbin "baserom.dol", 0x3F797C, 0x4 +.global lbl_805AB0E0 +lbl_805AB0E0: + .incbin "baserom.dol", 0x3F7980, 0x4 +.global lbl_805AB0E4 +lbl_805AB0E4: + .incbin "baserom.dol", 0x3F7984, 0x4 +.global lbl_805AB0E8 +lbl_805AB0E8: + .incbin "baserom.dol", 0x3F7988, 0x8 +.global lbl_805AB0F0 +lbl_805AB0F0: + .incbin "baserom.dol", 0x3F7990, 0x4 +.global lbl_805AB0F4 +lbl_805AB0F4: + .incbin "baserom.dol", 0x3F7994, 0x4 +.global lbl_805AB0F8 +lbl_805AB0F8: + .incbin "baserom.dol", 0x3F7998, 0x4 +.global lbl_805AB0FC +lbl_805AB0FC: + .incbin "baserom.dol", 0x3F799C, 0x4 +.global lbl_805AB100 +lbl_805AB100: + .incbin "baserom.dol", 0x3F79A0, 0x8 +.global lbl_805AB108 +lbl_805AB108: + .incbin "baserom.dol", 0x3F79A8, 0x4 +.global lbl_805AB10C +lbl_805AB10C: + .incbin "baserom.dol", 0x3F79AC, 0x4 +.global lbl_805AB110 +lbl_805AB110: + .incbin "baserom.dol", 0x3F79B0, 0x4 +.global lbl_805AB114 +lbl_805AB114: + .incbin "baserom.dol", 0x3F79B4, 0x4 +.global lbl_805AB118 +lbl_805AB118: + .incbin "baserom.dol", 0x3F79B8, 0x4 +.global lbl_805AB11C +lbl_805AB11C: + .incbin "baserom.dol", 0x3F79BC, 0x4 +.global lbl_805AB120 +lbl_805AB120: + .incbin "baserom.dol", 0x3F79C0, 0x4 +.global lbl_805AB124 +lbl_805AB124: + .incbin "baserom.dol", 0x3F79C4, 0x4 +.global lbl_805AB128 +lbl_805AB128: + .incbin "baserom.dol", 0x3F79C8, 0x4 +.global lbl_805AB12C +lbl_805AB12C: + .incbin "baserom.dol", 0x3F79CC, 0x4 +.global lbl_805AB130 +lbl_805AB130: + .incbin "baserom.dol", 0x3F79D0, 0x4 +.global lbl_805AB134 +lbl_805AB134: + .incbin "baserom.dol", 0x3F79D4, 0x4 +.global lbl_805AB138 +lbl_805AB138: + .incbin "baserom.dol", 0x3F79D8, 0x4 +.global lbl_805AB13C +lbl_805AB13C: + .incbin "baserom.dol", 0x3F79DC, 0x4 +.global lbl_805AB140 +lbl_805AB140: + .incbin "baserom.dol", 0x3F79E0, 0x4 +.global lbl_805AB144 +lbl_805AB144: + .incbin "baserom.dol", 0x3F79E4, 0x4 +.global lbl_805AB148 +lbl_805AB148: + .incbin "baserom.dol", 0x3F79E8, 0x4 +.global lbl_805AB14C +lbl_805AB14C: + .incbin "baserom.dol", 0x3F79EC, 0x4 +.global lbl_805AB150 +lbl_805AB150: + .incbin "baserom.dol", 0x3F79F0, 0x4 +.global lbl_805AB154 +lbl_805AB154: + .incbin "baserom.dol", 0x3F79F4, 0x4 +.global lbl_805AB158 +lbl_805AB158: + .incbin "baserom.dol", 0x3F79F8, 0x4 +.global lbl_805AB15C +lbl_805AB15C: + .incbin "baserom.dol", 0x3F79FC, 0x4 +.global lbl_805AB160 +lbl_805AB160: + .incbin "baserom.dol", 0x3F7A00, 0x8 +.global lbl_805AB168 +lbl_805AB168: + .incbin "baserom.dol", 0x3F7A08, 0x8 +.global lbl_805AB170 +lbl_805AB170: + .incbin "baserom.dol", 0x3F7A10, 0x4 +.global lbl_805AB174 +lbl_805AB174: + .incbin "baserom.dol", 0x3F7A14, 0x4 +.global lbl_805AB178 +lbl_805AB178: + .incbin "baserom.dol", 0x3F7A18, 0x4 +.global lbl_805AB17C +lbl_805AB17C: + .incbin "baserom.dol", 0x3F7A1C, 0x4 +.global lbl_805AB180 +lbl_805AB180: + .incbin "baserom.dol", 0x3F7A20, 0x4 +.global lbl_805AB184 +lbl_805AB184: + .incbin "baserom.dol", 0x3F7A24, 0x4 +.global lbl_805AB188 +lbl_805AB188: + .incbin "baserom.dol", 0x3F7A28, 0x8 +.global lbl_805AB190 +lbl_805AB190: + .incbin "baserom.dol", 0x3F7A30, 0x8 +.global lbl_805AB198 +lbl_805AB198: + .incbin "baserom.dol", 0x3F7A38, 0x8 +.global lbl_805AB1A0 +lbl_805AB1A0: + .incbin "baserom.dol", 0x3F7A40, 0x4 +.global lbl_805AB1A4 +lbl_805AB1A4: + .incbin "baserom.dol", 0x3F7A44, 0x4 +.global lbl_805AB1A8 +lbl_805AB1A8: + .incbin "baserom.dol", 0x3F7A48, 0x4 +.global lbl_805AB1AC +lbl_805AB1AC: + .incbin "baserom.dol", 0x3F7A4C, 0x4 +.global lbl_805AB1B0 +lbl_805AB1B0: + .incbin "baserom.dol", 0x3F7A50, 0x4 +.global lbl_805AB1B4 +lbl_805AB1B4: + .incbin "baserom.dol", 0x3F7A54, 0x4 +.global lbl_805AB1B8 +lbl_805AB1B8: + .incbin "baserom.dol", 0x3F7A58, 0x4 +.global lbl_805AB1BC +lbl_805AB1BC: + .incbin "baserom.dol", 0x3F7A5C, 0x4 +.global lbl_805AB1C0 +lbl_805AB1C0: + .incbin "baserom.dol", 0x3F7A60, 0x4 +.global lbl_805AB1C4 +lbl_805AB1C4: + .incbin "baserom.dol", 0x3F7A64, 0x4 +.global lbl_805AB1C8 +lbl_805AB1C8: + .incbin "baserom.dol", 0x3F7A68, 0x4 +.global lbl_805AB1CC +lbl_805AB1CC: + .incbin "baserom.dol", 0x3F7A6C, 0x4 +.global lbl_805AB1D0 +lbl_805AB1D0: + .incbin "baserom.dol", 0x3F7A70, 0x4 +.global lbl_805AB1D4 +lbl_805AB1D4: + .incbin "baserom.dol", 0x3F7A74, 0x4 +.global lbl_805AB1D8 +lbl_805AB1D8: + .incbin "baserom.dol", 0x3F7A78, 0x8 +.global lbl_805AB1E0 +lbl_805AB1E0: + .incbin "baserom.dol", 0x3F7A80, 0x4 +.global lbl_805AB1E4 +lbl_805AB1E4: + .incbin "baserom.dol", 0x3F7A84, 0x4 +.global lbl_805AB1E8 +lbl_805AB1E8: + .incbin "baserom.dol", 0x3F7A88, 0x4 +.global lbl_805AB1EC +lbl_805AB1EC: + .incbin "baserom.dol", 0x3F7A8C, 0x4 +.global lbl_805AB1F0 +lbl_805AB1F0: + .incbin "baserom.dol", 0x3F7A90, 0x4 +.global lbl_805AB1F4 +lbl_805AB1F4: + .incbin "baserom.dol", 0x3F7A94, 0x4 +.global lbl_805AB1F8 +lbl_805AB1F8: + .incbin "baserom.dol", 0x3F7A98, 0x4 +.global lbl_805AB1FC +lbl_805AB1FC: + .incbin "baserom.dol", 0x3F7A9C, 0x4 +.global lbl_805AB200 +lbl_805AB200: + .incbin "baserom.dol", 0x3F7AA0, 0x8 +.global lbl_805AB208 +lbl_805AB208: + .incbin "baserom.dol", 0x3F7AA8, 0x4 +.global lbl_805AB20C +lbl_805AB20C: + .incbin "baserom.dol", 0x3F7AAC, 0x4 +.global lbl_805AB210 +lbl_805AB210: + .incbin "baserom.dol", 0x3F7AB0, 0x4 +.global lbl_805AB214 +lbl_805AB214: + .incbin "baserom.dol", 0x3F7AB4, 0x4 +.global lbl_805AB218 +lbl_805AB218: + .incbin "baserom.dol", 0x3F7AB8, 0x4 +.global lbl_805AB21C +lbl_805AB21C: + .incbin "baserom.dol", 0x3F7ABC, 0x4 +.global lbl_805AB220 +lbl_805AB220: + .incbin "baserom.dol", 0x3F7AC0, 0x4 +.global lbl_805AB224 +lbl_805AB224: + .incbin "baserom.dol", 0x3F7AC4, 0x4 +.global lbl_805AB228 +lbl_805AB228: + .incbin "baserom.dol", 0x3F7AC8, 0x4 +.global lbl_805AB22C +lbl_805AB22C: + .incbin "baserom.dol", 0x3F7ACC, 0x4 +.global lbl_805AB230 +lbl_805AB230: + .incbin "baserom.dol", 0x3F7AD0, 0x4 +.global lbl_805AB234 +lbl_805AB234: + .incbin "baserom.dol", 0x3F7AD4, 0x4 +.global lbl_805AB238 +lbl_805AB238: + .incbin "baserom.dol", 0x3F7AD8, 0x4 +.global lbl_805AB23C +lbl_805AB23C: + .incbin "baserom.dol", 0x3F7ADC, 0x4 +.global lbl_805AB240 +lbl_805AB240: + .incbin "baserom.dol", 0x3F7AE0, 0x4 +.global lbl_805AB244 +lbl_805AB244: + .incbin "baserom.dol", 0x3F7AE4, 0x4 +.global lbl_805AB248 +lbl_805AB248: + .incbin "baserom.dol", 0x3F7AE8, 0x4 +.global lbl_805AB24C +lbl_805AB24C: + .incbin "baserom.dol", 0x3F7AEC, 0x4 +.global lbl_805AB250 +lbl_805AB250: + .incbin "baserom.dol", 0x3F7AF0, 0x4 +.global lbl_805AB254 +lbl_805AB254: + .incbin "baserom.dol", 0x3F7AF4, 0x4 +.global lbl_805AB258 +lbl_805AB258: + .incbin "baserom.dol", 0x3F7AF8, 0x4 +.global lbl_805AB25C +lbl_805AB25C: + .incbin "baserom.dol", 0x3F7AFC, 0x4 +.global lbl_805AB260 +lbl_805AB260: + .incbin "baserom.dol", 0x3F7B00, 0x4 +.global lbl_805AB264 +lbl_805AB264: + .incbin "baserom.dol", 0x3F7B04, 0x4 +.global lbl_805AB268 +lbl_805AB268: + .incbin "baserom.dol", 0x3F7B08, 0x4 +.global lbl_805AB26C +lbl_805AB26C: + .incbin "baserom.dol", 0x3F7B0C, 0x4 +.global lbl_805AB270 +lbl_805AB270: + .incbin "baserom.dol", 0x3F7B10, 0x4 +.global lbl_805AB274 +lbl_805AB274: + .incbin "baserom.dol", 0x3F7B14, 0x4 +.global lbl_805AB278 +lbl_805AB278: + .incbin "baserom.dol", 0x3F7B18, 0x4 +.global lbl_805AB27C +lbl_805AB27C: + .incbin "baserom.dol", 0x3F7B1C, 0x4 +.global lbl_805AB280 +lbl_805AB280: + .incbin "baserom.dol", 0x3F7B20, 0x4 +.global lbl_805AB284 +lbl_805AB284: + .incbin "baserom.dol", 0x3F7B24, 0x4 +.global lbl_805AB288 +lbl_805AB288: + .incbin "baserom.dol", 0x3F7B28, 0x4 +.global lbl_805AB28C +lbl_805AB28C: + .incbin "baserom.dol", 0x3F7B2C, 0x4 +.global lbl_805AB290 +lbl_805AB290: + .incbin "baserom.dol", 0x3F7B30, 0x8 +.global lbl_805AB298 +lbl_805AB298: + .incbin "baserom.dol", 0x3F7B38, 0x8 +.global lbl_805AB2A0 +lbl_805AB2A0: + .incbin "baserom.dol", 0x3F7B40, 0x8 +.global lbl_805AB2A8 +lbl_805AB2A8: + .incbin "baserom.dol", 0x3F7B48, 0x4 +.global lbl_805AB2AC +lbl_805AB2AC: + .incbin "baserom.dol", 0x3F7B4C, 0x4 +.global lbl_805AB2B0 +lbl_805AB2B0: + .incbin "baserom.dol", 0x3F7B50, 0x4 +.global lbl_805AB2B4 +lbl_805AB2B4: + .incbin "baserom.dol", 0x3F7B54, 0x4 +.global lbl_805AB2B8 +lbl_805AB2B8: + .incbin "baserom.dol", 0x3F7B58, 0x4 +.global lbl_805AB2BC +lbl_805AB2BC: + .incbin "baserom.dol", 0x3F7B5C, 0x4 +.global lbl_805AB2C0 +lbl_805AB2C0: + .incbin "baserom.dol", 0x3F7B60, 0x4 +.global lbl_805AB2C4 +lbl_805AB2C4: + .incbin "baserom.dol", 0x3F7B64, 0x4 +.global lbl_805AB2C8 +lbl_805AB2C8: + .incbin "baserom.dol", 0x3F7B68, 0x4 +.global lbl_805AB2CC +lbl_805AB2CC: + .incbin "baserom.dol", 0x3F7B6C, 0x4 +.global lbl_805AB2D0 +lbl_805AB2D0: + .incbin "baserom.dol", 0x3F7B70, 0x4 +.global lbl_805AB2D4 +lbl_805AB2D4: + .incbin "baserom.dol", 0x3F7B74, 0x4 +.global lbl_805AB2D8 +lbl_805AB2D8: + .incbin "baserom.dol", 0x3F7B78, 0x8 +.global lbl_805AB2E0 +lbl_805AB2E0: + .incbin "baserom.dol", 0x3F7B80, 0x8 +.global lbl_805AB2E8 +lbl_805AB2E8: + .incbin "baserom.dol", 0x3F7B88, 0x4 +.global lbl_805AB2EC +lbl_805AB2EC: + .incbin "baserom.dol", 0x3F7B8C, 0x4 +.global lbl_805AB2F0 +lbl_805AB2F0: + .incbin "baserom.dol", 0x3F7B90, 0x4 +.global lbl_805AB2F4 +lbl_805AB2F4: + .incbin "baserom.dol", 0x3F7B94, 0x4 +.global lbl_805AB2F8 +lbl_805AB2F8: + .incbin "baserom.dol", 0x3F7B98, 0x4 +.global lbl_805AB2FC +lbl_805AB2FC: + .incbin "baserom.dol", 0x3F7B9C, 0x4 +.global lbl_805AB300 +lbl_805AB300: + .incbin "baserom.dol", 0x3F7BA0, 0x4 +.global lbl_805AB304 +lbl_805AB304: + .incbin "baserom.dol", 0x3F7BA4, 0x4 +.global lbl_805AB308 +lbl_805AB308: + .incbin "baserom.dol", 0x3F7BA8, 0x4 +.global lbl_805AB30C +lbl_805AB30C: + .incbin "baserom.dol", 0x3F7BAC, 0x4 +.global lbl_805AB310 +lbl_805AB310: + .incbin "baserom.dol", 0x3F7BB0, 0x8 +.global lbl_805AB318 +lbl_805AB318: + .incbin "baserom.dol", 0x3F7BB8, 0x8 +.global lbl_805AB320 +lbl_805AB320: + .incbin "baserom.dol", 0x3F7BC0, 0x8 +.global lbl_805AB328 +lbl_805AB328: + .incbin "baserom.dol", 0x3F7BC8, 0x4 +.global lbl_805AB32C +lbl_805AB32C: + .incbin "baserom.dol", 0x3F7BCC, 0x4 +.global lbl_805AB330 +lbl_805AB330: + .incbin "baserom.dol", 0x3F7BD0, 0x4 +.global lbl_805AB334 +lbl_805AB334: + .incbin "baserom.dol", 0x3F7BD4, 0x4 +.global lbl_805AB338 +lbl_805AB338: + .incbin "baserom.dol", 0x3F7BD8, 0x4 +.global lbl_805AB33C +lbl_805AB33C: + .incbin "baserom.dol", 0x3F7BDC, 0x4 +.global lbl_805AB340 +lbl_805AB340: + .incbin "baserom.dol", 0x3F7BE0, 0x4 +.global lbl_805AB344 +lbl_805AB344: + .incbin "baserom.dol", 0x3F7BE4, 0x4 +.global lbl_805AB348 +lbl_805AB348: + .incbin "baserom.dol", 0x3F7BE8, 0x4 +.global lbl_805AB34C +lbl_805AB34C: + .incbin "baserom.dol", 0x3F7BEC, 0x4 +.global lbl_805AB350 +lbl_805AB350: + .incbin "baserom.dol", 0x3F7BF0, 0x4 +.global lbl_805AB354 +lbl_805AB354: + .incbin "baserom.dol", 0x3F7BF4, 0x4 +.global lbl_805AB358 +lbl_805AB358: + .incbin "baserom.dol", 0x3F7BF8, 0x4 +.global lbl_805AB35C +lbl_805AB35C: + .incbin "baserom.dol", 0x3F7BFC, 0x4 +.global lbl_805AB360 +lbl_805AB360: + .incbin "baserom.dol", 0x3F7C00, 0x8 +.global lbl_805AB368 +lbl_805AB368: + .incbin "baserom.dol", 0x3F7C08, 0x4 +.global lbl_805AB36C +lbl_805AB36C: + .incbin "baserom.dol", 0x3F7C0C, 0x4 +.global lbl_805AB370 +lbl_805AB370: + .incbin "baserom.dol", 0x3F7C10, 0x8 +.global lbl_805AB378 +lbl_805AB378: + .incbin "baserom.dol", 0x3F7C18, 0x4 +.global lbl_805AB37C +lbl_805AB37C: + .incbin "baserom.dol", 0x3F7C1C, 0x4 +.global lbl_805AB380 +lbl_805AB380: + .incbin "baserom.dol", 0x3F7C20, 0x8 +.global lbl_805AB388 +lbl_805AB388: + .incbin "baserom.dol", 0x3F7C28, 0x4 +.global lbl_805AB38C +lbl_805AB38C: + .incbin "baserom.dol", 0x3F7C2C, 0x4 +.global lbl_805AB390 +lbl_805AB390: + .incbin "baserom.dol", 0x3F7C30, 0x8 +.global lbl_805AB398 +lbl_805AB398: + .incbin "baserom.dol", 0x3F7C38, 0x4 +.global lbl_805AB39C +lbl_805AB39C: + .incbin "baserom.dol", 0x3F7C3C, 0x4 +.global lbl_805AB3A0 +lbl_805AB3A0: + .incbin "baserom.dol", 0x3F7C40, 0x4 +.global lbl_805AB3A4 +lbl_805AB3A4: + .incbin "baserom.dol", 0x3F7C44, 0x4 +.global lbl_805AB3A8 +lbl_805AB3A8: + .incbin "baserom.dol", 0x3F7C48, 0x4 +.global lbl_805AB3AC +lbl_805AB3AC: + .incbin "baserom.dol", 0x3F7C4C, 0x4 +.global lbl_805AB3B0 +lbl_805AB3B0: + .incbin "baserom.dol", 0x3F7C50, 0x4 +.global lbl_805AB3B4 +lbl_805AB3B4: + .incbin "baserom.dol", 0x3F7C54, 0x4 +.global lbl_805AB3B8 +lbl_805AB3B8: + .incbin "baserom.dol", 0x3F7C58, 0x8 +.global lbl_805AB3C0 +lbl_805AB3C0: + .incbin "baserom.dol", 0x3F7C60, 0x4 +.global lbl_805AB3C4 +lbl_805AB3C4: + .incbin "baserom.dol", 0x3F7C64, 0x4 +.global lbl_805AB3C8 +lbl_805AB3C8: + .incbin "baserom.dol", 0x3F7C68, 0x4 +.global lbl_805AB3CC +lbl_805AB3CC: + .incbin "baserom.dol", 0x3F7C6C, 0x4 +.global lbl_805AB3D0 +lbl_805AB3D0: + .incbin "baserom.dol", 0x3F7C70, 0x4 +.global lbl_805AB3D4 +lbl_805AB3D4: + .incbin "baserom.dol", 0x3F7C74, 0x4 +.global lbl_805AB3D8 +lbl_805AB3D8: + .incbin "baserom.dol", 0x3F7C78, 0x4 +.global lbl_805AB3DC +lbl_805AB3DC: + .incbin "baserom.dol", 0x3F7C7C, 0x4 +.global lbl_805AB3E0 +lbl_805AB3E0: + .incbin "baserom.dol", 0x3F7C80, 0x4 +.global lbl_805AB3E4 +lbl_805AB3E4: + .incbin "baserom.dol", 0x3F7C84, 0x4 +.global lbl_805AB3E8 +lbl_805AB3E8: + .incbin "baserom.dol", 0x3F7C88, 0x8 +.global lbl_805AB3F0 +lbl_805AB3F0: + .incbin "baserom.dol", 0x3F7C90, 0x4 +.global lbl_805AB3F4 +lbl_805AB3F4: + .incbin "baserom.dol", 0x3F7C94, 0x4 +.global lbl_805AB3F8 +lbl_805AB3F8: + .incbin "baserom.dol", 0x3F7C98, 0x4 +.global lbl_805AB3FC +lbl_805AB3FC: + .incbin "baserom.dol", 0x3F7C9C, 0x4 +.global lbl_805AB400 +lbl_805AB400: + .incbin "baserom.dol", 0x3F7CA0, 0x4 +.global lbl_805AB404 +lbl_805AB404: + .incbin "baserom.dol", 0x3F7CA4, 0x4 +.global lbl_805AB408 +lbl_805AB408: + .incbin "baserom.dol", 0x3F7CA8, 0x4 +.global lbl_805AB40C +lbl_805AB40C: + .incbin "baserom.dol", 0x3F7CAC, 0x4 +.global lbl_805AB410 +lbl_805AB410: + .incbin "baserom.dol", 0x3F7CB0, 0x4 +.global lbl_805AB414 +lbl_805AB414: + .incbin "baserom.dol", 0x3F7CB4, 0x4 +.global lbl_805AB418 +lbl_805AB418: + .incbin "baserom.dol", 0x3F7CB8, 0x4 +.global lbl_805AB41C +lbl_805AB41C: + .incbin "baserom.dol", 0x3F7CBC, 0x4 +.global lbl_805AB420 +lbl_805AB420: + .incbin "baserom.dol", 0x3F7CC0, 0x4 +.global lbl_805AB424 +lbl_805AB424: + .incbin "baserom.dol", 0x3F7CC4, 0x4 +.global lbl_805AB428 +lbl_805AB428: + .incbin "baserom.dol", 0x3F7CC8, 0x4 +.global lbl_805AB42C +lbl_805AB42C: + .incbin "baserom.dol", 0x3F7CCC, 0x4 +.global lbl_805AB430 +lbl_805AB430: + .incbin "baserom.dol", 0x3F7CD0, 0x4 +.global lbl_805AB434 +lbl_805AB434: + .incbin "baserom.dol", 0x3F7CD4, 0x4 +.global lbl_805AB438 +lbl_805AB438: + .incbin "baserom.dol", 0x3F7CD8, 0x4 +.global lbl_805AB43C +lbl_805AB43C: + .incbin "baserom.dol", 0x3F7CDC, 0x4 +.global lbl_805AB440 +lbl_805AB440: + .incbin "baserom.dol", 0x3F7CE0, 0x4 +.global lbl_805AB444 +lbl_805AB444: + .incbin "baserom.dol", 0x3F7CE4, 0x4 +.global lbl_805AB448 +lbl_805AB448: + .incbin "baserom.dol", 0x3F7CE8, 0x4 +.global lbl_805AB44C +lbl_805AB44C: + .incbin "baserom.dol", 0x3F7CEC, 0x4 +.global lbl_805AB450 +lbl_805AB450: + .incbin "baserom.dol", 0x3F7CF0, 0x4 +.global lbl_805AB454 +lbl_805AB454: + .incbin "baserom.dol", 0x3F7CF4, 0x4 +.global lbl_805AB458 +lbl_805AB458: + .incbin "baserom.dol", 0x3F7CF8, 0x8 +.global lbl_805AB460 +lbl_805AB460: + .incbin "baserom.dol", 0x3F7D00, 0x8 +.global lbl_805AB468 +lbl_805AB468: + .incbin "baserom.dol", 0x3F7D08, 0x4 +.global lbl_805AB46C +lbl_805AB46C: + .incbin "baserom.dol", 0x3F7D0C, 0x4 +.global lbl_805AB470 +lbl_805AB470: + .incbin "baserom.dol", 0x3F7D10, 0x4 +.global lbl_805AB474 +lbl_805AB474: + .incbin "baserom.dol", 0x3F7D14, 0x4 +.global lbl_805AB478 +lbl_805AB478: + .incbin "baserom.dol", 0x3F7D18, 0x4 +.global lbl_805AB47C +lbl_805AB47C: + .incbin "baserom.dol", 0x3F7D1C, 0x4 +.global lbl_805AB480 +lbl_805AB480: + .incbin "baserom.dol", 0x3F7D20, 0x4 +.global lbl_805AB484 +lbl_805AB484: + .incbin "baserom.dol", 0x3F7D24, 0x4 +.global lbl_805AB488 +lbl_805AB488: + .incbin "baserom.dol", 0x3F7D28, 0x4 +.global lbl_805AB48C +lbl_805AB48C: + .incbin "baserom.dol", 0x3F7D2C, 0x4 +.global lbl_805AB490 +lbl_805AB490: + .incbin "baserom.dol", 0x3F7D30, 0x4 +.global lbl_805AB494 +lbl_805AB494: + .incbin "baserom.dol", 0x3F7D34, 0x4 +.global lbl_805AB498 +lbl_805AB498: + .incbin "baserom.dol", 0x3F7D38, 0x8 +.global lbl_805AB4A0 +lbl_805AB4A0: + .incbin "baserom.dol", 0x3F7D40, 0x8 +.global lbl_805AB4A8 +lbl_805AB4A8: + .incbin "baserom.dol", 0x3F7D48, 0x4 +.global lbl_805AB4AC +lbl_805AB4AC: + .incbin "baserom.dol", 0x3F7D4C, 0x4 +.global lbl_805AB4B0 +lbl_805AB4B0: + .incbin "baserom.dol", 0x3F7D50, 0x4 +.global lbl_805AB4B4 +lbl_805AB4B4: + .incbin "baserom.dol", 0x3F7D54, 0x4 +.global lbl_805AB4B8 +lbl_805AB4B8: + .incbin "baserom.dol", 0x3F7D58, 0x4 +.global lbl_805AB4BC +lbl_805AB4BC: + .incbin "baserom.dol", 0x3F7D5C, 0x4 +.global lbl_805AB4C0 +lbl_805AB4C0: + .incbin "baserom.dol", 0x3F7D60, 0x8 +.global lbl_805AB4C8 +lbl_805AB4C8: + .incbin "baserom.dol", 0x3F7D68, 0x8 +.global lbl_805AB4D0 +lbl_805AB4D0: + .incbin "baserom.dol", 0x3F7D70, 0x4 +.global lbl_805AB4D4 +lbl_805AB4D4: + .incbin "baserom.dol", 0x3F7D74, 0x4 +.global lbl_805AB4D8 +lbl_805AB4D8: + .incbin "baserom.dol", 0x3F7D78, 0x4 +.global lbl_805AB4DC +lbl_805AB4DC: + .incbin "baserom.dol", 0x3F7D7C, 0x4 +.global lbl_805AB4E0 +lbl_805AB4E0: + .incbin "baserom.dol", 0x3F7D80, 0x4 +.global lbl_805AB4E4 +lbl_805AB4E4: + .incbin "baserom.dol", 0x3F7D84, 0x4 +.global lbl_805AB4E8 +lbl_805AB4E8: + .incbin "baserom.dol", 0x3F7D88, 0x4 +.global lbl_805AB4EC +lbl_805AB4EC: + .incbin "baserom.dol", 0x3F7D8C, 0x4 +.global lbl_805AB4F0 +lbl_805AB4F0: + .incbin "baserom.dol", 0x3F7D90, 0x4 +.global lbl_805AB4F4 +lbl_805AB4F4: + .incbin "baserom.dol", 0x3F7D94, 0x4 +.global lbl_805AB4F8 +lbl_805AB4F8: + .incbin "baserom.dol", 0x3F7D98, 0x4 +.global lbl_805AB4FC +lbl_805AB4FC: + .incbin "baserom.dol", 0x3F7D9C, 0x4 +.global lbl_805AB500 +lbl_805AB500: + .incbin "baserom.dol", 0x3F7DA0, 0x4 +.global lbl_805AB504 +lbl_805AB504: + .incbin "baserom.dol", 0x3F7DA4, 0x4 +.global lbl_805AB508 +lbl_805AB508: + .incbin "baserom.dol", 0x3F7DA8, 0x4 +.global lbl_805AB50C +lbl_805AB50C: + .incbin "baserom.dol", 0x3F7DAC, 0x4 +.global lbl_805AB510 +lbl_805AB510: + .incbin "baserom.dol", 0x3F7DB0, 0x4 +.global lbl_805AB514 +lbl_805AB514: + .incbin "baserom.dol", 0x3F7DB4, 0x4 +.global lbl_805AB518 +lbl_805AB518: + .incbin "baserom.dol", 0x3F7DB8, 0x4 +.global lbl_805AB51C +lbl_805AB51C: + .incbin "baserom.dol", 0x3F7DBC, 0x4 +.global lbl_805AB520 +lbl_805AB520: + .incbin "baserom.dol", 0x3F7DC0, 0x4 +.global lbl_805AB524 +lbl_805AB524: + .incbin "baserom.dol", 0x3F7DC4, 0x4 +.global lbl_805AB528 +lbl_805AB528: + .incbin "baserom.dol", 0x3F7DC8, 0x4 +.global lbl_805AB52C +lbl_805AB52C: + .incbin "baserom.dol", 0x3F7DCC, 0x4 +.global lbl_805AB530 +lbl_805AB530: + .incbin "baserom.dol", 0x3F7DD0, 0x4 +.global lbl_805AB534 +lbl_805AB534: + .incbin "baserom.dol", 0x3F7DD4, 0x4 +.global lbl_805AB538 +lbl_805AB538: + .incbin "baserom.dol", 0x3F7DD8, 0x4 +.global lbl_805AB53C +lbl_805AB53C: + .incbin "baserom.dol", 0x3F7DDC, 0x4 +.global lbl_805AB540 +lbl_805AB540: + .incbin "baserom.dol", 0x3F7DE0, 0x4 +.global lbl_805AB544 +lbl_805AB544: + .incbin "baserom.dol", 0x3F7DE4, 0x4 +.global lbl_805AB548 +lbl_805AB548: + .incbin "baserom.dol", 0x3F7DE8, 0x4 +.global lbl_805AB54C +lbl_805AB54C: + .incbin "baserom.dol", 0x3F7DEC, 0x4 +.global lbl_805AB550 +lbl_805AB550: + .incbin "baserom.dol", 0x3F7DF0, 0x4 +.global lbl_805AB554 +lbl_805AB554: + .incbin "baserom.dol", 0x3F7DF4, 0x4 +.global lbl_805AB558 +lbl_805AB558: + .incbin "baserom.dol", 0x3F7DF8, 0x4 +.global lbl_805AB55C +lbl_805AB55C: + .incbin "baserom.dol", 0x3F7DFC, 0x4 +.global lbl_805AB560 +lbl_805AB560: + .incbin "baserom.dol", 0x3F7E00, 0x4 +.global lbl_805AB564 +lbl_805AB564: + .incbin "baserom.dol", 0x3F7E04, 0x4 +.global lbl_805AB568 +lbl_805AB568: + .incbin "baserom.dol", 0x3F7E08, 0x4 +.global lbl_805AB56C +lbl_805AB56C: + .incbin "baserom.dol", 0x3F7E0C, 0x4 +.global lbl_805AB570 +lbl_805AB570: + .incbin "baserom.dol", 0x3F7E10, 0x4 +.global lbl_805AB574 +lbl_805AB574: + .incbin "baserom.dol", 0x3F7E14, 0x4 +.global lbl_805AB578 +lbl_805AB578: + .incbin "baserom.dol", 0x3F7E18, 0x4 +.global lbl_805AB57C +lbl_805AB57C: + .incbin "baserom.dol", 0x3F7E1C, 0x4 +.global lbl_805AB580 +lbl_805AB580: + .incbin "baserom.dol", 0x3F7E20, 0x4 +.global lbl_805AB584 +lbl_805AB584: + .incbin "baserom.dol", 0x3F7E24, 0x4 +.global lbl_805AB588 +lbl_805AB588: + .incbin "baserom.dol", 0x3F7E28, 0x4 +.global lbl_805AB58C +lbl_805AB58C: + .incbin "baserom.dol", 0x3F7E2C, 0x4 +.global lbl_805AB590 +lbl_805AB590: + .incbin "baserom.dol", 0x3F7E30, 0x4 +.global lbl_805AB594 +lbl_805AB594: + .incbin "baserom.dol", 0x3F7E34, 0x4 +.global lbl_805AB598 +lbl_805AB598: + .incbin "baserom.dol", 0x3F7E38, 0x4 +.global lbl_805AB59C +lbl_805AB59C: + .incbin "baserom.dol", 0x3F7E3C, 0x4 +.global lbl_805AB5A0 +lbl_805AB5A0: + .incbin "baserom.dol", 0x3F7E40, 0x4 +.global lbl_805AB5A4 +lbl_805AB5A4: + .incbin "baserom.dol", 0x3F7E44, 0x4 +.global lbl_805AB5A8 +lbl_805AB5A8: + .incbin "baserom.dol", 0x3F7E48, 0x4 +.global lbl_805AB5AC +lbl_805AB5AC: + .incbin "baserom.dol", 0x3F7E4C, 0x4 +.global lbl_805AB5B0 +lbl_805AB5B0: + .incbin "baserom.dol", 0x3F7E50, 0x8 +.global lbl_805AB5B8 +lbl_805AB5B8: + .incbin "baserom.dol", 0x3F7E58, 0x4 +.global lbl_805AB5BC +lbl_805AB5BC: + .incbin "baserom.dol", 0x3F7E5C, 0x4 +.global lbl_805AB5C0 +lbl_805AB5C0: + .incbin "baserom.dol", 0x3F7E60, 0x4 +.global lbl_805AB5C4 +lbl_805AB5C4: + .incbin "baserom.dol", 0x3F7E64, 0x4 +.global lbl_805AB5C8 +lbl_805AB5C8: + .incbin "baserom.dol", 0x3F7E68, 0x4 +.global lbl_805AB5CC +lbl_805AB5CC: + .incbin "baserom.dol", 0x3F7E6C, 0x4 +.global lbl_805AB5D0 +lbl_805AB5D0: + .incbin "baserom.dol", 0x3F7E70, 0x8 +.global lbl_805AB5D8 +lbl_805AB5D8: + .incbin "baserom.dol", 0x3F7E78, 0x8 +.global lbl_805AB5E0 +lbl_805AB5E0: + .incbin "baserom.dol", 0x3F7E80, 0x4 +.global lbl_805AB5E4 +lbl_805AB5E4: + .incbin "baserom.dol", 0x3F7E84, 0x4 +.global lbl_805AB5E8 +lbl_805AB5E8: + .incbin "baserom.dol", 0x3F7E88, 0x4 +.global lbl_805AB5EC +lbl_805AB5EC: + .incbin "baserom.dol", 0x3F7E8C, 0x4 +.global lbl_805AB5F0 +lbl_805AB5F0: + .incbin "baserom.dol", 0x3F7E90, 0x4 +.global lbl_805AB5F4 +lbl_805AB5F4: + .incbin "baserom.dol", 0x3F7E94, 0x4 +.global lbl_805AB5F8 +lbl_805AB5F8: + .incbin "baserom.dol", 0x3F7E98, 0x4 +.global lbl_805AB5FC +lbl_805AB5FC: + .incbin "baserom.dol", 0x3F7E9C, 0x4 +.global lbl_805AB600 +lbl_805AB600: + .incbin "baserom.dol", 0x3F7EA0, 0x8 +.global lbl_805AB608 +lbl_805AB608: + .incbin "baserom.dol", 0x3F7EA8, 0x1 +.global lbl_805AB609 +lbl_805AB609: + .incbin "baserom.dol", 0x3F7EA9, 0x1 +.global lbl_805AB60A +lbl_805AB60A: + .incbin "baserom.dol", 0x3F7EAA, 0x2 +.global lbl_805AB60C +lbl_805AB60C: + .incbin "baserom.dol", 0x3F7EAC, 0x4 +.global lbl_805AB610 +lbl_805AB610: + .incbin "baserom.dol", 0x3F7EB0, 0x4 +.global lbl_805AB614 +lbl_805AB614: + .incbin "baserom.dol", 0x3F7EB4, 0x4 +.global lbl_805AB618 +lbl_805AB618: + .incbin "baserom.dol", 0x3F7EB8, 0x4 +.global lbl_805AB61C +lbl_805AB61C: + .incbin "baserom.dol", 0x3F7EBC, 0x4 +.global lbl_805AB620 +lbl_805AB620: + .incbin "baserom.dol", 0x3F7EC0, 0x4 +.global lbl_805AB624 +lbl_805AB624: + .incbin "baserom.dol", 0x3F7EC4, 0x4 +.global lbl_805AB628 +lbl_805AB628: + .incbin "baserom.dol", 0x3F7EC8, 0x4 +.global lbl_805AB62C +lbl_805AB62C: + .incbin "baserom.dol", 0x3F7ECC, 0x4 +.global lbl_805AB630 +lbl_805AB630: + .incbin "baserom.dol", 0x3F7ED0, 0x4 +.global lbl_805AB634 +lbl_805AB634: + .incbin "baserom.dol", 0x3F7ED4, 0x4 +.global lbl_805AB638 +lbl_805AB638: + .incbin "baserom.dol", 0x3F7ED8, 0x4 +.global lbl_805AB63C +lbl_805AB63C: + .incbin "baserom.dol", 0x3F7EDC, 0x4 +.global lbl_805AB640 +lbl_805AB640: + .incbin "baserom.dol", 0x3F7EE0, 0x4 +.global lbl_805AB644 +lbl_805AB644: + .incbin "baserom.dol", 0x3F7EE4, 0x4 +.global lbl_805AB648 +lbl_805AB648: + .incbin "baserom.dol", 0x3F7EE8, 0x8 +.global lbl_805AB650 +lbl_805AB650: + .incbin "baserom.dol", 0x3F7EF0, 0x8 +.global lbl_805AB658 +lbl_805AB658: + .incbin "baserom.dol", 0x3F7EF8, 0x4 +.global lbl_805AB65C +lbl_805AB65C: + .incbin "baserom.dol", 0x3F7EFC, 0x4 +.global lbl_805AB660 +lbl_805AB660: + .incbin "baserom.dol", 0x3F7F00, 0x4 +.global lbl_805AB664 +lbl_805AB664: + .incbin "baserom.dol", 0x3F7F04, 0x4 +.global lbl_805AB668 +lbl_805AB668: + .incbin "baserom.dol", 0x3F7F08, 0x4 +.global lbl_805AB66C +lbl_805AB66C: + .incbin "baserom.dol", 0x3F7F0C, 0x4 +.global lbl_805AB670 +lbl_805AB670: + .incbin "baserom.dol", 0x3F7F10, 0x8 +.global lbl_805AB678 +lbl_805AB678: + .incbin "baserom.dol", 0x3F7F18, 0x8 +.global lbl_805AB680 +lbl_805AB680: + .incbin "baserom.dol", 0x3F7F20, 0x4 +.global lbl_805AB684 +lbl_805AB684: + .incbin "baserom.dol", 0x3F7F24, 0x4 +.global lbl_805AB688 +lbl_805AB688: + .incbin "baserom.dol", 0x3F7F28, 0x4 +.global lbl_805AB68C +lbl_805AB68C: + .incbin "baserom.dol", 0x3F7F2C, 0x4 +.global lbl_805AB690 +lbl_805AB690: + .incbin "baserom.dol", 0x3F7F30, 0x4 +.global lbl_805AB694 +lbl_805AB694: + .incbin "baserom.dol", 0x3F7F34, 0x4 +.global lbl_805AB698 +lbl_805AB698: + .incbin "baserom.dol", 0x3F7F38, 0x4 +.global lbl_805AB69C +lbl_805AB69C: + .incbin "baserom.dol", 0x3F7F3C, 0x4 +.global lbl_805AB6A0 +lbl_805AB6A0: + .incbin "baserom.dol", 0x3F7F40, 0x4 +.global lbl_805AB6A4 +lbl_805AB6A4: + .incbin "baserom.dol", 0x3F7F44, 0x4 +.global lbl_805AB6A8 +lbl_805AB6A8: + .incbin "baserom.dol", 0x3F7F48, 0x4 +.global lbl_805AB6AC +lbl_805AB6AC: + .incbin "baserom.dol", 0x3F7F4C, 0x4 +.global lbl_805AB6B0 +lbl_805AB6B0: + .incbin "baserom.dol", 0x3F7F50, 0x4 +.global lbl_805AB6B4 +lbl_805AB6B4: + .incbin "baserom.dol", 0x3F7F54, 0x4 +.global lbl_805AB6B8 +lbl_805AB6B8: + .incbin "baserom.dol", 0x3F7F58, 0x4 +.global lbl_805AB6BC +lbl_805AB6BC: + .incbin "baserom.dol", 0x3F7F5C, 0x4 +.global lbl_805AB6C0 +lbl_805AB6C0: + .incbin "baserom.dol", 0x3F7F60, 0x4 +.global lbl_805AB6C4 +lbl_805AB6C4: + .incbin "baserom.dol", 0x3F7F64, 0x4 +.global lbl_805AB6C8 +lbl_805AB6C8: + .incbin "baserom.dol", 0x3F7F68, 0x8 +.global lbl_805AB6D0 +lbl_805AB6D0: + .incbin "baserom.dol", 0x3F7F70, 0x4 +.global lbl_805AB6D4 +lbl_805AB6D4: + .incbin "baserom.dol", 0x3F7F74, 0x4 +.global lbl_805AB6D8 +lbl_805AB6D8: + .incbin "baserom.dol", 0x3F7F78, 0x4 +.global lbl_805AB6DC +lbl_805AB6DC: + .incbin "baserom.dol", 0x3F7F7C, 0x4 +.global lbl_805AB6E0 +lbl_805AB6E0: + .incbin "baserom.dol", 0x3F7F80, 0x4 +.global lbl_805AB6E4 +lbl_805AB6E4: + .incbin "baserom.dol", 0x3F7F84, 0x4 +.global lbl_805AB6E8 +lbl_805AB6E8: + .incbin "baserom.dol", 0x3F7F88, 0x4 +.global lbl_805AB6EC +lbl_805AB6EC: + .incbin "baserom.dol", 0x3F7F8C, 0x4 +.global lbl_805AB6F0 +lbl_805AB6F0: + .incbin "baserom.dol", 0x3F7F90, 0x4 +.global lbl_805AB6F4 +lbl_805AB6F4: + .incbin "baserom.dol", 0x3F7F94, 0x4 +.global lbl_805AB6F8 +lbl_805AB6F8: + .incbin "baserom.dol", 0x3F7F98, 0x4 +.global lbl_805AB6FC +lbl_805AB6FC: + .incbin "baserom.dol", 0x3F7F9C, 0x4 +.global lbl_805AB700 +lbl_805AB700: + .incbin "baserom.dol", 0x3F7FA0, 0x8 +.global lbl_805AB708 +lbl_805AB708: + .incbin "baserom.dol", 0x3F7FA8, 0x8 +.global lbl_805AB710 +lbl_805AB710: + .incbin "baserom.dol", 0x3F7FB0, 0x4 +.global lbl_805AB714 +lbl_805AB714: + .incbin "baserom.dol", 0x3F7FB4, 0x4 +.global lbl_805AB718 +lbl_805AB718: + .incbin "baserom.dol", 0x3F7FB8, 0x4 +.global lbl_805AB71C +lbl_805AB71C: + .incbin "baserom.dol", 0x3F7FBC, 0x4 +.global lbl_805AB720 +lbl_805AB720: + .incbin "baserom.dol", 0x3F7FC0, 0x4 +.global lbl_805AB724 +lbl_805AB724: + .incbin "baserom.dol", 0x3F7FC4, 0x4 +.global lbl_805AB728 +lbl_805AB728: + .incbin "baserom.dol", 0x3F7FC8, 0x4 +.global lbl_805AB72C +lbl_805AB72C: + .incbin "baserom.dol", 0x3F7FCC, 0x4 +.global lbl_805AB730 +lbl_805AB730: + .incbin "baserom.dol", 0x3F7FD0, 0x4 +.global lbl_805AB734 +lbl_805AB734: + .incbin "baserom.dol", 0x3F7FD4, 0x4 +.global lbl_805AB738 +lbl_805AB738: + .incbin "baserom.dol", 0x3F7FD8, 0x4 +.global lbl_805AB73C +lbl_805AB73C: + .incbin "baserom.dol", 0x3F7FDC, 0x4 +.global lbl_805AB740 +lbl_805AB740: + .incbin "baserom.dol", 0x3F7FE0, 0x8 +.global lbl_805AB748 +lbl_805AB748: + .incbin "baserom.dol", 0x3F7FE8, 0x4 +.global lbl_805AB74C +lbl_805AB74C: + .incbin "baserom.dol", 0x3F7FEC, 0x4 +.global lbl_805AB750 +lbl_805AB750: + .incbin "baserom.dol", 0x3F7FF0, 0x4 +.global lbl_805AB754 +lbl_805AB754: + .incbin "baserom.dol", 0x3F7FF4, 0x4 +.global lbl_805AB758 +lbl_805AB758: + .incbin "baserom.dol", 0x3F7FF8, 0x4 +.global lbl_805AB75C +lbl_805AB75C: + .incbin "baserom.dol", 0x3F7FFC, 0x4 +.global lbl_805AB760 +lbl_805AB760: + .incbin "baserom.dol", 0x3F8000, 0x4 +.global lbl_805AB764 +lbl_805AB764: + .incbin "baserom.dol", 0x3F8004, 0x4 +.global lbl_805AB768 +lbl_805AB768: + .incbin "baserom.dol", 0x3F8008, 0x4 +.global lbl_805AB76C +lbl_805AB76C: + .incbin "baserom.dol", 0x3F800C, 0x4 +.global lbl_805AB770 +lbl_805AB770: + .incbin "baserom.dol", 0x3F8010, 0x4 +.global lbl_805AB774 +lbl_805AB774: + .incbin "baserom.dol", 0x3F8014, 0x4 +.global lbl_805AB778 +lbl_805AB778: + .incbin "baserom.dol", 0x3F8018, 0x8 +.global lbl_805AB780 +lbl_805AB780: + .incbin "baserom.dol", 0x3F8020, 0x4 +.global lbl_805AB784 +lbl_805AB784: + .incbin "baserom.dol", 0x3F8024, 0x4 +.global lbl_805AB788 +lbl_805AB788: + .incbin "baserom.dol", 0x3F8028, 0x4 +.global lbl_805AB78C +lbl_805AB78C: + .incbin "baserom.dol", 0x3F802C, 0x4 +.global lbl_805AB790 +lbl_805AB790: + .incbin "baserom.dol", 0x3F8030, 0x4 +.global lbl_805AB794 +lbl_805AB794: + .incbin "baserom.dol", 0x3F8034, 0x4 +.global lbl_805AB798 +lbl_805AB798: + .incbin "baserom.dol", 0x3F8038, 0x4 +.global lbl_805AB79C +lbl_805AB79C: + .incbin "baserom.dol", 0x3F803C, 0x4 +.global lbl_805AB7A0 +lbl_805AB7A0: + .incbin "baserom.dol", 0x3F8040, 0x4 +.global lbl_805AB7A4 +lbl_805AB7A4: + .incbin "baserom.dol", 0x3F8044, 0x4 +.global lbl_805AB7A8 +lbl_805AB7A8: + .incbin "baserom.dol", 0x3F8048, 0x4 +.global lbl_805AB7AC +lbl_805AB7AC: + .incbin "baserom.dol", 0x3F804C, 0x4 +.global lbl_805AB7B0 +lbl_805AB7B0: + .incbin "baserom.dol", 0x3F8050, 0x8 +.global lbl_805AB7B8 +lbl_805AB7B8: + .incbin "baserom.dol", 0x3F8058, 0x4 +.global lbl_805AB7BC +lbl_805AB7BC: + .incbin "baserom.dol", 0x3F805C, 0x4 +.global lbl_805AB7C0 +lbl_805AB7C0: + .incbin "baserom.dol", 0x3F8060, 0x4 +.global lbl_805AB7C4 +lbl_805AB7C4: + .incbin "baserom.dol", 0x3F8064, 0x4 +.global lbl_805AB7C8 +lbl_805AB7C8: + .incbin "baserom.dol", 0x3F8068, 0x4 +.global lbl_805AB7CC +lbl_805AB7CC: + .incbin "baserom.dol", 0x3F806C, 0x4 +.global lbl_805AB7D0 +lbl_805AB7D0: + .incbin "baserom.dol", 0x3F8070, 0x8 +.global lbl_805AB7D8 +lbl_805AB7D8: + .incbin "baserom.dol", 0x3F8078, 0x4 +.global lbl_805AB7DC +lbl_805AB7DC: + .incbin "baserom.dol", 0x3F807C, 0x4 +.global lbl_805AB7E0 +lbl_805AB7E0: + .incbin "baserom.dol", 0x3F8080, 0x4 +.global lbl_805AB7E4 +lbl_805AB7E4: + .incbin "baserom.dol", 0x3F8084, 0x4 +.global lbl_805AB7E8 +lbl_805AB7E8: + .incbin "baserom.dol", 0x3F8088, 0x4 +.global lbl_805AB7EC +lbl_805AB7EC: + .incbin "baserom.dol", 0x3F808C, 0x4 +.global lbl_805AB7F0 +lbl_805AB7F0: + .incbin "baserom.dol", 0x3F8090, 0x4 +.global lbl_805AB7F4 +lbl_805AB7F4: + .incbin "baserom.dol", 0x3F8094, 0x4 +.global lbl_805AB7F8 +lbl_805AB7F8: + .incbin "baserom.dol", 0x3F8098, 0x4 +.global lbl_805AB7FC +lbl_805AB7FC: + .incbin "baserom.dol", 0x3F809C, 0x4 +.global lbl_805AB800 +lbl_805AB800: + .incbin "baserom.dol", 0x3F80A0, 0x4 +.global lbl_805AB804 +lbl_805AB804: + .incbin "baserom.dol", 0x3F80A4, 0x4 +.global lbl_805AB808 +lbl_805AB808: + .incbin "baserom.dol", 0x3F80A8, 0x4 +.global lbl_805AB80C +lbl_805AB80C: + .incbin "baserom.dol", 0x3F80AC, 0x4 +.global lbl_805AB810 +lbl_805AB810: + .incbin "baserom.dol", 0x3F80B0, 0x8 +.global lbl_805AB818 +lbl_805AB818: + .incbin "baserom.dol", 0x3F80B8, 0x4 +.global lbl_805AB81C +lbl_805AB81C: + .incbin "baserom.dol", 0x3F80BC, 0x4 +.global lbl_805AB820 +lbl_805AB820: + .incbin "baserom.dol", 0x3F80C0, 0x8 +.global lbl_805AB828 +lbl_805AB828: + .incbin "baserom.dol", 0x3F80C8, 0x8 +.global lbl_805AB830 +lbl_805AB830: + .incbin "baserom.dol", 0x3F80D0, 0x8 +.global lbl_805AB838 +lbl_805AB838: + .incbin "baserom.dol", 0x3F80D8, 0x8 +.global lbl_805AB840 +lbl_805AB840: + .incbin "baserom.dol", 0x3F80E0, 0x8 +.global lbl_805AB848 +lbl_805AB848: + .incbin "baserom.dol", 0x3F80E8, 0x4 +.global lbl_805AB84C +lbl_805AB84C: + .incbin "baserom.dol", 0x3F80EC, 0x4 +.global lbl_805AB850 +lbl_805AB850: + .incbin "baserom.dol", 0x3F80F0, 0x4 +.global lbl_805AB854 +lbl_805AB854: + .incbin "baserom.dol", 0x3F80F4, 0x4 +.global lbl_805AB858 +lbl_805AB858: + .incbin "baserom.dol", 0x3F80F8, 0x4 +.global lbl_805AB85C +lbl_805AB85C: + .incbin "baserom.dol", 0x3F80FC, 0x4 +.global lbl_805AB860 +lbl_805AB860: + .incbin "baserom.dol", 0x3F8100, 0x4 +.global lbl_805AB864 +lbl_805AB864: + .incbin "baserom.dol", 0x3F8104, 0x4 +.global lbl_805AB868 +lbl_805AB868: + .incbin "baserom.dol", 0x3F8108, 0x8 +.global lbl_805AB870 +lbl_805AB870: + .incbin "baserom.dol", 0x3F8110, 0x8 +.global lbl_805AB878 +lbl_805AB878: + .incbin "baserom.dol", 0x3F8118, 0x4 +.global lbl_805AB87C +lbl_805AB87C: + .incbin "baserom.dol", 0x3F811C, 0x4 +.global lbl_805AB880 +lbl_805AB880: + .incbin "baserom.dol", 0x3F8120, 0x4 +.global lbl_805AB884 +lbl_805AB884: + .incbin "baserom.dol", 0x3F8124, 0x4 +.global lbl_805AB888 +lbl_805AB888: + .incbin "baserom.dol", 0x3F8128, 0x4 +.global lbl_805AB88C +lbl_805AB88C: + .incbin "baserom.dol", 0x3F812C, 0x4 +.global lbl_805AB890 +lbl_805AB890: + .incbin "baserom.dol", 0x3F8130, 0x4 +.global lbl_805AB894 +lbl_805AB894: + .incbin "baserom.dol", 0x3F8134, 0x4 +.global lbl_805AB898 +lbl_805AB898: + .incbin "baserom.dol", 0x3F8138, 0x4 +.global lbl_805AB89C +lbl_805AB89C: + .incbin "baserom.dol", 0x3F813C, 0x4 +.global lbl_805AB8A0 +lbl_805AB8A0: + .incbin "baserom.dol", 0x3F8140, 0x4 +.global lbl_805AB8A4 +lbl_805AB8A4: + .incbin "baserom.dol", 0x3F8144, 0x4 +.global lbl_805AB8A8 +lbl_805AB8A8: + .incbin "baserom.dol", 0x3F8148, 0x4 +.global lbl_805AB8AC +lbl_805AB8AC: + .incbin "baserom.dol", 0x3F814C, 0x4 +.global lbl_805AB8B0 +lbl_805AB8B0: + .incbin "baserom.dol", 0x3F8150, 0x4 +.global lbl_805AB8B4 +lbl_805AB8B4: + .incbin "baserom.dol", 0x3F8154, 0x4 +.global lbl_805AB8B8 +lbl_805AB8B8: + .incbin "baserom.dol", 0x3F8158, 0x4 +.global lbl_805AB8BC +lbl_805AB8BC: + .incbin "baserom.dol", 0x3F815C, 0x4 +.global lbl_805AB8C0 +lbl_805AB8C0: + .incbin "baserom.dol", 0x3F8160, 0x4 +.global lbl_805AB8C4 +lbl_805AB8C4: + .incbin "baserom.dol", 0x3F8164, 0x4 +.global lbl_805AB8C8 +lbl_805AB8C8: + .incbin "baserom.dol", 0x3F8168, 0x4 +.global lbl_805AB8CC +lbl_805AB8CC: + .incbin "baserom.dol", 0x3F816C, 0x4 +.global lbl_805AB8D0 +lbl_805AB8D0: + .incbin "baserom.dol", 0x3F8170, 0x4 +.global lbl_805AB8D4 +lbl_805AB8D4: + .incbin "baserom.dol", 0x3F8174, 0x4 +.global lbl_805AB8D8 +lbl_805AB8D8: + .incbin "baserom.dol", 0x3F8178, 0x4 +.global lbl_805AB8DC +lbl_805AB8DC: + .incbin "baserom.dol", 0x3F817C, 0x4 +.global lbl_805AB8E0 +lbl_805AB8E0: + .incbin "baserom.dol", 0x3F8180, 0x4 +.global lbl_805AB8E4 +lbl_805AB8E4: + .incbin "baserom.dol", 0x3F8184, 0x4 +.global lbl_805AB8E8 +lbl_805AB8E8: + .incbin "baserom.dol", 0x3F8188, 0x4 +.global lbl_805AB8EC +lbl_805AB8EC: + .incbin "baserom.dol", 0x3F818C, 0x4 +.global lbl_805AB8F0 +lbl_805AB8F0: + .incbin "baserom.dol", 0x3F8190, 0x4 +.global lbl_805AB8F4 +lbl_805AB8F4: + .incbin "baserom.dol", 0x3F8194, 0x4 +.global lbl_805AB8F8 +lbl_805AB8F8: + .incbin "baserom.dol", 0x3F8198, 0x4 +.global lbl_805AB8FC +lbl_805AB8FC: + .incbin "baserom.dol", 0x3F819C, 0x4 +.global lbl_805AB900 +lbl_805AB900: + .incbin "baserom.dol", 0x3F81A0, 0x8 +.global lbl_805AB908 +lbl_805AB908: + .incbin "baserom.dol", 0x3F81A8, 0x8 +.global lbl_805AB910 +lbl_805AB910: + .incbin "baserom.dol", 0x3F81B0, 0x4 +.global lbl_805AB914 +lbl_805AB914: + .incbin "baserom.dol", 0x3F81B4, 0x4 +.global lbl_805AB918 +lbl_805AB918: + .incbin "baserom.dol", 0x3F81B8, 0x4 +.global lbl_805AB91C +lbl_805AB91C: + .incbin "baserom.dol", 0x3F81BC, 0x4 +.global lbl_805AB920 +lbl_805AB920: + .incbin "baserom.dol", 0x3F81C0, 0x4 +.global lbl_805AB924 +lbl_805AB924: + .incbin "baserom.dol", 0x3F81C4, 0x4 +.global lbl_805AB928 +lbl_805AB928: + .incbin "baserom.dol", 0x3F81C8, 0x4 +.global lbl_805AB92C +lbl_805AB92C: + .incbin "baserom.dol", 0x3F81CC, 0x4 +.global lbl_805AB930 +lbl_805AB930: + .incbin "baserom.dol", 0x3F81D0, 0x8 +.global lbl_805AB938 +lbl_805AB938: + .incbin "baserom.dol", 0x3F81D8, 0x4 +.global lbl_805AB93C +lbl_805AB93C: + .incbin "baserom.dol", 0x3F81DC, 0x4 +.global lbl_805AB940 +lbl_805AB940: + .incbin "baserom.dol", 0x3F81E0, 0x4 +.global lbl_805AB944 +lbl_805AB944: + .incbin "baserom.dol", 0x3F81E4, 0x4 +.global lbl_805AB948 +lbl_805AB948: + .incbin "baserom.dol", 0x3F81E8, 0x4 +.global lbl_805AB94C +lbl_805AB94C: + .incbin "baserom.dol", 0x3F81EC, 0x4 +.global lbl_805AB950 +lbl_805AB950: + .incbin "baserom.dol", 0x3F81F0, 0x8 +.global lbl_805AB958 +lbl_805AB958: + .incbin "baserom.dol", 0x3F81F8, 0x4 +.global lbl_805AB95C +lbl_805AB95C: + .incbin "baserom.dol", 0x3F81FC, 0x4 +.global lbl_805AB960 +lbl_805AB960: + .incbin "baserom.dol", 0x3F8200, 0x4 +.global lbl_805AB964 +lbl_805AB964: + .incbin "baserom.dol", 0x3F8204, 0x4 +.global lbl_805AB968 +lbl_805AB968: + .incbin "baserom.dol", 0x3F8208, 0x4 +.global lbl_805AB96C +lbl_805AB96C: + .incbin "baserom.dol", 0x3F820C, 0x4 +.global lbl_805AB970 +lbl_805AB970: + .incbin "baserom.dol", 0x3F8210, 0x8 +.global lbl_805AB978 +lbl_805AB978: + .incbin "baserom.dol", 0x3F8218, 0x8 +.global lbl_805AB980 +lbl_805AB980: + .incbin "baserom.dol", 0x3F8220, 0x4 +.global lbl_805AB984 +lbl_805AB984: + .incbin "baserom.dol", 0x3F8224, 0x4 +.global lbl_805AB988 +lbl_805AB988: + .incbin "baserom.dol", 0x3F8228, 0x4 +.global lbl_805AB98C +lbl_805AB98C: + .incbin "baserom.dol", 0x3F822C, 0x4 +.global lbl_805AB990 +lbl_805AB990: + .incbin "baserom.dol", 0x3F8230, 0x4 +.global lbl_805AB994 +lbl_805AB994: + .incbin "baserom.dol", 0x3F8234, 0x4 +.global lbl_805AB998 +lbl_805AB998: + .incbin "baserom.dol", 0x3F8238, 0x8 +.global lbl_805AB9A0 +lbl_805AB9A0: + .incbin "baserom.dol", 0x3F8240, 0x4 +.global lbl_805AB9A4 +lbl_805AB9A4: + .incbin "baserom.dol", 0x3F8244, 0x4 +.global lbl_805AB9A8 +lbl_805AB9A8: + .incbin "baserom.dol", 0x3F8248, 0x4 +.global lbl_805AB9AC +lbl_805AB9AC: + .incbin "baserom.dol", 0x3F824C, 0x4 +.global lbl_805AB9B0 +lbl_805AB9B0: + .incbin "baserom.dol", 0x3F8250, 0x4 +.global lbl_805AB9B4 +lbl_805AB9B4: + .incbin "baserom.dol", 0x3F8254, 0x4 +.global lbl_805AB9B8 +lbl_805AB9B8: + .incbin "baserom.dol", 0x3F8258, 0x4 +.global lbl_805AB9BC +lbl_805AB9BC: + .incbin "baserom.dol", 0x3F825C, 0x4 +.global lbl_805AB9C0 +lbl_805AB9C0: + .incbin "baserom.dol", 0x3F8260, 0x4 +.global lbl_805AB9C4 +lbl_805AB9C4: + .incbin "baserom.dol", 0x3F8264, 0x4 +.global lbl_805AB9C8 +lbl_805AB9C8: + .incbin "baserom.dol", 0x3F8268, 0x4 +.global lbl_805AB9CC +lbl_805AB9CC: + .incbin "baserom.dol", 0x3F826C, 0x4 +.global lbl_805AB9D0 +lbl_805AB9D0: + .incbin "baserom.dol", 0x3F8270, 0x4 +.global lbl_805AB9D4 +lbl_805AB9D4: + .incbin "baserom.dol", 0x3F8274, 0x4 +.global lbl_805AB9D8 +lbl_805AB9D8: + .incbin "baserom.dol", 0x3F8278, 0x4 +.global lbl_805AB9DC +lbl_805AB9DC: + .incbin "baserom.dol", 0x3F827C, 0x4 +.global lbl_805AB9E0 +lbl_805AB9E0: + .incbin "baserom.dol", 0x3F8280, 0x4 +.global lbl_805AB9E4 +lbl_805AB9E4: + .incbin "baserom.dol", 0x3F8284, 0x4 +.global lbl_805AB9E8 +lbl_805AB9E8: + .incbin "baserom.dol", 0x3F8288, 0x4 +.global lbl_805AB9EC +lbl_805AB9EC: + .incbin "baserom.dol", 0x3F828C, 0x4 +.global lbl_805AB9F0 +lbl_805AB9F0: + .incbin "baserom.dol", 0x3F8290, 0x8 +.global lbl_805AB9F8 +lbl_805AB9F8: + .incbin "baserom.dol", 0x3F8298, 0x4 +.global lbl_805AB9FC +lbl_805AB9FC: + .incbin "baserom.dol", 0x3F829C, 0x4 +.global lbl_805ABA00 +lbl_805ABA00: + .incbin "baserom.dol", 0x3F82A0, 0x8 +.global lbl_805ABA08 +lbl_805ABA08: + .incbin "baserom.dol", 0x3F82A8, 0x4 +.global lbl_805ABA0C +lbl_805ABA0C: + .incbin "baserom.dol", 0x3F82AC, 0x4 +.global lbl_805ABA10 +lbl_805ABA10: + .incbin "baserom.dol", 0x3F82B0, 0x4 +.global lbl_805ABA14 +lbl_805ABA14: + .incbin "baserom.dol", 0x3F82B4, 0x4 +.global lbl_805ABA18 +lbl_805ABA18: + .incbin "baserom.dol", 0x3F82B8, 0x4 +.global lbl_805ABA1C +lbl_805ABA1C: + .incbin "baserom.dol", 0x3F82BC, 0x4 +.global lbl_805ABA20 +lbl_805ABA20: + .incbin "baserom.dol", 0x3F82C0, 0x4 +.global lbl_805ABA24 +lbl_805ABA24: + .incbin "baserom.dol", 0x3F82C4, 0x4 +.global lbl_805ABA28 +lbl_805ABA28: + .incbin "baserom.dol", 0x3F82C8, 0x4 +.global lbl_805ABA2C +lbl_805ABA2C: + .incbin "baserom.dol", 0x3F82CC, 0x4 +.global lbl_805ABA30 +lbl_805ABA30: + .incbin "baserom.dol", 0x3F82D0, 0x4 +.global lbl_805ABA34 +lbl_805ABA34: + .incbin "baserom.dol", 0x3F82D4, 0x4 +.global lbl_805ABA38 +lbl_805ABA38: + .incbin "baserom.dol", 0x3F82D8, 0x4 +.global lbl_805ABA3C +lbl_805ABA3C: + .incbin "baserom.dol", 0x3F82DC, 0x4 +.global lbl_805ABA40 +lbl_805ABA40: + .incbin "baserom.dol", 0x3F82E0, 0x4 +.global lbl_805ABA44 +lbl_805ABA44: + .incbin "baserom.dol", 0x3F82E4, 0x4 +.global lbl_805ABA48 +lbl_805ABA48: + .incbin "baserom.dol", 0x3F82E8, 0x8 +.global lbl_805ABA50 +lbl_805ABA50: + .incbin "baserom.dol", 0x3F82F0, 0x8 +.global lbl_805ABA58 +lbl_805ABA58: + .incbin "baserom.dol", 0x3F82F8, 0x4 +.global lbl_805ABA5C +lbl_805ABA5C: + .incbin "baserom.dol", 0x3F82FC, 0x4 +.global lbl_805ABA60 +lbl_805ABA60: + .incbin "baserom.dol", 0x3F8300, 0x4 +.global lbl_805ABA64 +lbl_805ABA64: + .incbin "baserom.dol", 0x3F8304, 0x4 +.global lbl_805ABA68 +lbl_805ABA68: + .incbin "baserom.dol", 0x3F8308, 0x4 +.global lbl_805ABA6C +lbl_805ABA6C: + .incbin "baserom.dol", 0x3F830C, 0x4 +.global lbl_805ABA70 +lbl_805ABA70: + .incbin "baserom.dol", 0x3F8310, 0x8 +.global lbl_805ABA78 +lbl_805ABA78: + .incbin "baserom.dol", 0x3F8318, 0x8 +.global lbl_805ABA80 +lbl_805ABA80: + .incbin "baserom.dol", 0x3F8320, 0x4 +.global lbl_805ABA84 +lbl_805ABA84: + .incbin "baserom.dol", 0x3F8324, 0x4 +.global lbl_805ABA88 +lbl_805ABA88: + .incbin "baserom.dol", 0x3F8328, 0x4 +.global lbl_805ABA8C +lbl_805ABA8C: + .incbin "baserom.dol", 0x3F832C, 0x4 +.global lbl_805ABA90 +lbl_805ABA90: + .incbin "baserom.dol", 0x3F8330, 0x4 +.global lbl_805ABA94 +lbl_805ABA94: + .incbin "baserom.dol", 0x3F8334, 0x4 +.global lbl_805ABA98 +lbl_805ABA98: + .incbin "baserom.dol", 0x3F8338, 0x4 +.global lbl_805ABA9C +lbl_805ABA9C: + .incbin "baserom.dol", 0x3F833C, 0x4 +.global lbl_805ABAA0 +lbl_805ABAA0: + .incbin "baserom.dol", 0x3F8340, 0x4 +.global lbl_805ABAA4 +lbl_805ABAA4: + .incbin "baserom.dol", 0x3F8344, 0x4 +.global lbl_805ABAA8 +lbl_805ABAA8: + .incbin "baserom.dol", 0x3F8348, 0x4 +.global lbl_805ABAAC +lbl_805ABAAC: + .incbin "baserom.dol", 0x3F834C, 0x4 +.global lbl_805ABAB0 +lbl_805ABAB0: + .incbin "baserom.dol", 0x3F8350, 0x8 +.global lbl_805ABAB8 +lbl_805ABAB8: + .incbin "baserom.dol", 0x3F8358, 0x4 +.global lbl_805ABABC +lbl_805ABABC: + .incbin "baserom.dol", 0x3F835C, 0x4 +.global lbl_805ABAC0 +lbl_805ABAC0: + .incbin "baserom.dol", 0x3F8360, 0x4 +.global lbl_805ABAC4 +lbl_805ABAC4: + .incbin "baserom.dol", 0x3F8364, 0x4 +.global lbl_805ABAC8 +lbl_805ABAC8: + .incbin "baserom.dol", 0x3F8368, 0x8 +.global lbl_805ABAD0 +lbl_805ABAD0: + .incbin "baserom.dol", 0x3F8370, 0x4 +.global lbl_805ABAD4 +lbl_805ABAD4: + .incbin "baserom.dol", 0x3F8374, 0x4 +.global lbl_805ABAD8 +lbl_805ABAD8: + .incbin "baserom.dol", 0x3F8378, 0x4 +.global lbl_805ABADC +lbl_805ABADC: + .incbin "baserom.dol", 0x3F837C, 0x4 +.global lbl_805ABAE0 +lbl_805ABAE0: + .incbin "baserom.dol", 0x3F8380, 0x4 +.global lbl_805ABAE4 +lbl_805ABAE4: + .incbin "baserom.dol", 0x3F8384, 0x4 +.global lbl_805ABAE8 +lbl_805ABAE8: + .incbin "baserom.dol", 0x3F8388, 0x8 +.global lbl_805ABAF0 +lbl_805ABAF0: + .incbin "baserom.dol", 0x3F8390, 0x8 +.global lbl_805ABAF8 +lbl_805ABAF8: + .incbin "baserom.dol", 0x3F8398, 0x4 +.global lbl_805ABAFC +lbl_805ABAFC: + .incbin "baserom.dol", 0x3F839C, 0x4 +.global lbl_805ABB00 +lbl_805ABB00: + .incbin "baserom.dol", 0x3F83A0, 0x4 +.global lbl_805ABB04 +lbl_805ABB04: + .incbin "baserom.dol", 0x3F83A4, 0x4 +.global lbl_805ABB08 +lbl_805ABB08: + .incbin "baserom.dol", 0x3F83A8, 0x4 +.global lbl_805ABB0C +lbl_805ABB0C: + .incbin "baserom.dol", 0x3F83AC, 0x4 +.global lbl_805ABB10 +lbl_805ABB10: + .incbin "baserom.dol", 0x3F83B0, 0x8 +.global lbl_805ABB18 +lbl_805ABB18: + .incbin "baserom.dol", 0x3F83B8, 0x4 +.global lbl_805ABB1C +lbl_805ABB1C: + .incbin "baserom.dol", 0x3F83BC, 0x4 +.global lbl_805ABB20 +lbl_805ABB20: + .incbin "baserom.dol", 0x3F83C0, 0x4 +.global lbl_805ABB24 +lbl_805ABB24: + .incbin "baserom.dol", 0x3F83C4, 0x4 +.global lbl_805ABB28 +lbl_805ABB28: + .incbin "baserom.dol", 0x3F83C8, 0x4 +.global lbl_805ABB2C +lbl_805ABB2C: + .incbin "baserom.dol", 0x3F83CC, 0x4 +.global lbl_805ABB30 +lbl_805ABB30: + .incbin "baserom.dol", 0x3F83D0, 0x4 +.global lbl_805ABB34 +lbl_805ABB34: + .incbin "baserom.dol", 0x3F83D4, 0x4 +.global lbl_805ABB38 +lbl_805ABB38: + .incbin "baserom.dol", 0x3F83D8, 0x4 +.global lbl_805ABB3C +lbl_805ABB3C: + .incbin "baserom.dol", 0x3F83DC, 0x4 +.global lbl_805ABB40 +lbl_805ABB40: + .incbin "baserom.dol", 0x3F83E0, 0x4 +.global lbl_805ABB44 +lbl_805ABB44: + .incbin "baserom.dol", 0x3F83E4, 0x4 +.global lbl_805ABB48 +lbl_805ABB48: + .incbin "baserom.dol", 0x3F83E8, 0x4 +.global lbl_805ABB4C +lbl_805ABB4C: + .incbin "baserom.dol", 0x3F83EC, 0x4 +.global lbl_805ABB50 +lbl_805ABB50: + .incbin "baserom.dol", 0x3F83F0, 0x4 +.global lbl_805ABB54 +lbl_805ABB54: + .incbin "baserom.dol", 0x3F83F4, 0x4 +.global lbl_805ABB58 +lbl_805ABB58: + .incbin "baserom.dol", 0x3F83F8, 0x4 +.global lbl_805ABB5C +lbl_805ABB5C: + .incbin "baserom.dol", 0x3F83FC, 0x4 +.global lbl_805ABB60 +lbl_805ABB60: + .incbin "baserom.dol", 0x3F8400, 0x8 +.global lbl_805ABB68 +lbl_805ABB68: + .incbin "baserom.dol", 0x3F8408, 0x8 +.global lbl_805ABB70 +lbl_805ABB70: + .incbin "baserom.dol", 0x3F8410, 0x4 +.global lbl_805ABB74 +lbl_805ABB74: + .incbin "baserom.dol", 0x3F8414, 0x4 +.global lbl_805ABB78 +lbl_805ABB78: + .incbin "baserom.dol", 0x3F8418, 0x4 +.global lbl_805ABB7C +lbl_805ABB7C: + .incbin "baserom.dol", 0x3F841C, 0x4 +.global lbl_805ABB80 +lbl_805ABB80: + .incbin "baserom.dol", 0x3F8420, 0x4 +.global lbl_805ABB84 +lbl_805ABB84: + .incbin "baserom.dol", 0x3F8424, 0x4 +.global lbl_805ABB88 +lbl_805ABB88: + .incbin "baserom.dol", 0x3F8428, 0x4 +.global lbl_805ABB8C +lbl_805ABB8C: + .incbin "baserom.dol", 0x3F842C, 0x4 +.global lbl_805ABB90 +lbl_805ABB90: + .incbin "baserom.dol", 0x3F8430, 0x4 +.global lbl_805ABB94 +lbl_805ABB94: + .incbin "baserom.dol", 0x3F8434, 0x4 +.global lbl_805ABB98 +lbl_805ABB98: + .incbin "baserom.dol", 0x3F8438, 0x4 +.global lbl_805ABB9C +lbl_805ABB9C: + .incbin "baserom.dol", 0x3F843C, 0x4 +.global lbl_805ABBA0 +lbl_805ABBA0: + .incbin "baserom.dol", 0x3F8440, 0x4 +.global lbl_805ABBA4 +lbl_805ABBA4: + .incbin "baserom.dol", 0x3F8444, 0x4 +.global lbl_805ABBA8 +lbl_805ABBA8: + .incbin "baserom.dol", 0x3F8448, 0x4 +.global lbl_805ABBAC +lbl_805ABBAC: + .incbin "baserom.dol", 0x3F844C, 0x4 +.global lbl_805ABBB0 +lbl_805ABBB0: + .incbin "baserom.dol", 0x3F8450, 0x4 +.global lbl_805ABBB4 +lbl_805ABBB4: + .incbin "baserom.dol", 0x3F8454, 0x4 +.global lbl_805ABBB8 +lbl_805ABBB8: + .incbin "baserom.dol", 0x3F8458, 0x4 +.global lbl_805ABBBC +lbl_805ABBBC: + .incbin "baserom.dol", 0x3F845C, 0x4 +.global lbl_805ABBC0 +lbl_805ABBC0: + .incbin "baserom.dol", 0x3F8460, 0x4 +.global lbl_805ABBC4 +lbl_805ABBC4: + .incbin "baserom.dol", 0x3F8464, 0x4 +.global lbl_805ABBC8 +lbl_805ABBC8: + .incbin "baserom.dol", 0x3F8468, 0x4 +.global lbl_805ABBCC +lbl_805ABBCC: + .incbin "baserom.dol", 0x3F846C, 0x4 +.global lbl_805ABBD0 +lbl_805ABBD0: + .incbin "baserom.dol", 0x3F8470, 0x4 +.global lbl_805ABBD4 +lbl_805ABBD4: + .incbin "baserom.dol", 0x3F8474, 0x4 +.global lbl_805ABBD8 +lbl_805ABBD8: + .incbin "baserom.dol", 0x3F8478, 0x4 +.global lbl_805ABBDC +lbl_805ABBDC: + .incbin "baserom.dol", 0x3F847C, 0x4 +.global lbl_805ABBE0 +lbl_805ABBE0: + .incbin "baserom.dol", 0x3F8480, 0x8 +.global lbl_805ABBE8 +lbl_805ABBE8: + .incbin "baserom.dol", 0x3F8488, 0x4 +.global lbl_805ABBEC +lbl_805ABBEC: + .incbin "baserom.dol", 0x3F848C, 0x4 +.global lbl_805ABBF0 +lbl_805ABBF0: + .incbin "baserom.dol", 0x3F8490, 0x8 +.global lbl_805ABBF8 +lbl_805ABBF8: + .incbin "baserom.dol", 0x3F8498, 0x4 +.global lbl_805ABBFC +lbl_805ABBFC: + .incbin "baserom.dol", 0x3F849C, 0x4 +.global lbl_805ABC00 +lbl_805ABC00: + .incbin "baserom.dol", 0x3F84A0, 0x4 +.global lbl_805ABC04 +lbl_805ABC04: + .incbin "baserom.dol", 0x3F84A4, 0x4 +.global lbl_805ABC08 +lbl_805ABC08: + .incbin "baserom.dol", 0x3F84A8, 0x4 +.global lbl_805ABC0C +lbl_805ABC0C: + .incbin "baserom.dol", 0x3F84AC, 0x4 +.global lbl_805ABC10 +lbl_805ABC10: + .incbin "baserom.dol", 0x3F84B0, 0x4 +.global lbl_805ABC14 +lbl_805ABC14: + .incbin "baserom.dol", 0x3F84B4, 0x4 +.global lbl_805ABC18 +lbl_805ABC18: + .incbin "baserom.dol", 0x3F84B8, 0x4 +.global lbl_805ABC1C +lbl_805ABC1C: + .incbin "baserom.dol", 0x3F84BC, 0x4 +.global lbl_805ABC20 +lbl_805ABC20: + .incbin "baserom.dol", 0x3F84C0, 0x4 +.global lbl_805ABC24 +lbl_805ABC24: + .incbin "baserom.dol", 0x3F84C4, 0x4 +.global lbl_805ABC28 +lbl_805ABC28: + .incbin "baserom.dol", 0x3F84C8, 0x4 +.global lbl_805ABC2C +lbl_805ABC2C: + .incbin "baserom.dol", 0x3F84CC, 0x4 +.global lbl_805ABC30 +lbl_805ABC30: + .incbin "baserom.dol", 0x3F84D0, 0x4 +.global lbl_805ABC34 +lbl_805ABC34: + .incbin "baserom.dol", 0x3F84D4, 0x4 +.global lbl_805ABC38 +lbl_805ABC38: + .incbin "baserom.dol", 0x3F84D8, 0x4 +.global lbl_805ABC3C +lbl_805ABC3C: + .incbin "baserom.dol", 0x3F84DC, 0x4 +.global lbl_805ABC40 +lbl_805ABC40: + .incbin "baserom.dol", 0x3F84E0, 0x4 +.global lbl_805ABC44 +lbl_805ABC44: + .incbin "baserom.dol", 0x3F84E4, 0x4 +.global lbl_805ABC48 +lbl_805ABC48: + .incbin "baserom.dol", 0x3F84E8, 0x4 +.global lbl_805ABC4C +lbl_805ABC4C: + .incbin "baserom.dol", 0x3F84EC, 0x4 +.global lbl_805ABC50 +lbl_805ABC50: + .incbin "baserom.dol", 0x3F84F0, 0x4 +.global lbl_805ABC54 +lbl_805ABC54: + .incbin "baserom.dol", 0x3F84F4, 0x4 +.global lbl_805ABC58 +lbl_805ABC58: + .incbin "baserom.dol", 0x3F84F8, 0x8 +.global lbl_805ABC60 +lbl_805ABC60: + .incbin "baserom.dol", 0x3F8500, 0x8 +.global lbl_805ABC68 +lbl_805ABC68: + .incbin "baserom.dol", 0x3F8508, 0x4 +.global lbl_805ABC6C +lbl_805ABC6C: + .incbin "baserom.dol", 0x3F850C, 0x4 +.global lbl_805ABC70 +lbl_805ABC70: + .incbin "baserom.dol", 0x3F8510, 0x4 +.global lbl_805ABC74 +lbl_805ABC74: + .incbin "baserom.dol", 0x3F8514, 0x4 +.global lbl_805ABC78 +lbl_805ABC78: + .incbin "baserom.dol", 0x3F8518, 0x8 +.global lbl_805ABC80 +lbl_805ABC80: + .incbin "baserom.dol", 0x3F8520, 0x8 +.global lbl_805ABC88 +lbl_805ABC88: + .incbin "baserom.dol", 0x3F8528, 0x4 +.global lbl_805ABC8C +lbl_805ABC8C: + .incbin "baserom.dol", 0x3F852C, 0x4 +.global lbl_805ABC90 +lbl_805ABC90: + .incbin "baserom.dol", 0x3F8530, 0x4 +.global lbl_805ABC94 +lbl_805ABC94: + .incbin "baserom.dol", 0x3F8534, 0x4 +.global lbl_805ABC98 +lbl_805ABC98: + .incbin "baserom.dol", 0x3F8538, 0x4 +.global lbl_805ABC9C +lbl_805ABC9C: + .incbin "baserom.dol", 0x3F853C, 0x4 +.global lbl_805ABCA0 +lbl_805ABCA0: + .incbin "baserom.dol", 0x3F8540, 0x4 +.global lbl_805ABCA4 +lbl_805ABCA4: + .incbin "baserom.dol", 0x3F8544, 0x4 +.global lbl_805ABCA8 +lbl_805ABCA8: + .incbin "baserom.dol", 0x3F8548, 0x4 +.global lbl_805ABCAC +lbl_805ABCAC: + .incbin "baserom.dol", 0x3F854C, 0x4 +.global lbl_805ABCB0 +lbl_805ABCB0: + .incbin "baserom.dol", 0x3F8550, 0x4 +.global lbl_805ABCB4 +lbl_805ABCB4: + .incbin "baserom.dol", 0x3F8554, 0x4 +.global lbl_805ABCB8 +lbl_805ABCB8: + .incbin "baserom.dol", 0x3F8558, 0x4 +.global lbl_805ABCBC +lbl_805ABCBC: + .incbin "baserom.dol", 0x3F855C, 0x4 +.global lbl_805ABCC0 +lbl_805ABCC0: + .incbin "baserom.dol", 0x3F8560, 0x4 +.global lbl_805ABCC4 +lbl_805ABCC4: + .incbin "baserom.dol", 0x3F8564, 0x4 +.global lbl_805ABCC8 +lbl_805ABCC8: + .incbin "baserom.dol", 0x3F8568, 0x4 +.global lbl_805ABCCC +lbl_805ABCCC: + .incbin "baserom.dol", 0x3F856C, 0x4 +.global lbl_805ABCD0 +lbl_805ABCD0: + .incbin "baserom.dol", 0x3F8570, 0x4 +.global lbl_805ABCD4 +lbl_805ABCD4: + .incbin "baserom.dol", 0x3F8574, 0x4 +.global lbl_805ABCD8 +lbl_805ABCD8: + .incbin "baserom.dol", 0x3F8578, 0x4 +.global lbl_805ABCDC +lbl_805ABCDC: + .incbin "baserom.dol", 0x3F857C, 0x4 +.global lbl_805ABCE0 +lbl_805ABCE0: + .incbin "baserom.dol", 0x3F8580, 0x4 +.global lbl_805ABCE4 +lbl_805ABCE4: + .incbin "baserom.dol", 0x3F8584, 0x4 +.global lbl_805ABCE8 +lbl_805ABCE8: + .incbin "baserom.dol", 0x3F8588, 0x4 +.global lbl_805ABCEC +lbl_805ABCEC: + .incbin "baserom.dol", 0x3F858C, 0x4 +.global lbl_805ABCF0 +lbl_805ABCF0: + .incbin "baserom.dol", 0x3F8590, 0x8 +.global lbl_805ABCF8 +lbl_805ABCF8: + .incbin "baserom.dol", 0x3F8598, 0x4 +.global lbl_805ABCFC +lbl_805ABCFC: + .incbin "baserom.dol", 0x3F859C, 0x4 +.global lbl_805ABD00 +lbl_805ABD00: + .incbin "baserom.dol", 0x3F85A0, 0x4 +.global lbl_805ABD04 +lbl_805ABD04: + .incbin "baserom.dol", 0x3F85A4, 0x4 +.global lbl_805ABD08 +lbl_805ABD08: + .incbin "baserom.dol", 0x3F85A8, 0x4 +.global lbl_805ABD0C +lbl_805ABD0C: + .incbin "baserom.dol", 0x3F85AC, 0x4 +.global lbl_805ABD10 +lbl_805ABD10: + .incbin "baserom.dol", 0x3F85B0, 0x4 +.global lbl_805ABD14 +lbl_805ABD14: + .incbin "baserom.dol", 0x3F85B4, 0x4 +.global lbl_805ABD18 +lbl_805ABD18: + .incbin "baserom.dol", 0x3F85B8, 0x4 +.global lbl_805ABD1C +lbl_805ABD1C: + .incbin "baserom.dol", 0x3F85BC, 0x4 +.global lbl_805ABD20 +lbl_805ABD20: + .incbin "baserom.dol", 0x3F85C0, 0x4 +.global lbl_805ABD24 +lbl_805ABD24: + .incbin "baserom.dol", 0x3F85C4, 0x4 +.global lbl_805ABD28 +lbl_805ABD28: + .incbin "baserom.dol", 0x3F85C8, 0x4 +.global lbl_805ABD2C +lbl_805ABD2C: + .incbin "baserom.dol", 0x3F85CC, 0x4 +.global lbl_805ABD30 +lbl_805ABD30: + .incbin "baserom.dol", 0x3F85D0, 0x4 +.global lbl_805ABD34 +lbl_805ABD34: + .incbin "baserom.dol", 0x3F85D4, 0x4 +.global lbl_805ABD38 +lbl_805ABD38: + .incbin "baserom.dol", 0x3F85D8, 0x8 +.global lbl_805ABD40 +lbl_805ABD40: + .incbin "baserom.dol", 0x3F85E0, 0x8 +.global lbl_805ABD48 +lbl_805ABD48: + .incbin "baserom.dol", 0x3F85E8, 0x4 +.global lbl_805ABD4C +lbl_805ABD4C: + .incbin "baserom.dol", 0x3F85EC, 0x4 +.global lbl_805ABD50 +lbl_805ABD50: + .incbin "baserom.dol", 0x3F85F0, 0x4 +.global lbl_805ABD54 +lbl_805ABD54: + .incbin "baserom.dol", 0x3F85F4, 0x4 +.global lbl_805ABD58 +lbl_805ABD58: + .incbin "baserom.dol", 0x3F85F8, 0x4 +.global lbl_805ABD5C +lbl_805ABD5C: + .incbin "baserom.dol", 0x3F85FC, 0x4 +.global lbl_805ABD60 +lbl_805ABD60: + .incbin "baserom.dol", 0x3F8600, 0x8 +.global lbl_805ABD68 +lbl_805ABD68: + .incbin "baserom.dol", 0x3F8608, 0x8 +.global lbl_805ABD70 +lbl_805ABD70: + .incbin "baserom.dol", 0x3F8610, 0x4 +.global lbl_805ABD74 +lbl_805ABD74: + .incbin "baserom.dol", 0x3F8614, 0x4 +.global lbl_805ABD78 +lbl_805ABD78: + .incbin "baserom.dol", 0x3F8618, 0x4 +.global lbl_805ABD7C +lbl_805ABD7C: + .incbin "baserom.dol", 0x3F861C, 0x4 +.global lbl_805ABD80 +lbl_805ABD80: + .incbin "baserom.dol", 0x3F8620, 0x8 +.global lbl_805ABD88 +lbl_805ABD88: + .incbin "baserom.dol", 0x3F8628, 0x8 +.global lbl_805ABD90 +lbl_805ABD90: + .incbin "baserom.dol", 0x3F8630, 0x4 +.global lbl_805ABD94 +lbl_805ABD94: + .incbin "baserom.dol", 0x3F8634, 0x4 +.global lbl_805ABD98 +lbl_805ABD98: + .incbin "baserom.dol", 0x3F8638, 0x4 +.global lbl_805ABD9C +lbl_805ABD9C: + .incbin "baserom.dol", 0x3F863C, 0x4 +.global lbl_805ABDA0 +lbl_805ABDA0: + .incbin "baserom.dol", 0x3F8640, 0x4 +.global lbl_805ABDA4 +lbl_805ABDA4: + .incbin "baserom.dol", 0x3F8644, 0x4 +.global lbl_805ABDA8 +lbl_805ABDA8: + .incbin "baserom.dol", 0x3F8648, 0x4 +.global lbl_805ABDAC +lbl_805ABDAC: + .incbin "baserom.dol", 0x3F864C, 0x4 +.global lbl_805ABDB0 +lbl_805ABDB0: + .incbin "baserom.dol", 0x3F8650, 0x4 +.global lbl_805ABDB4 +lbl_805ABDB4: + .incbin "baserom.dol", 0x3F8654, 0x4 +.global lbl_805ABDB8 +lbl_805ABDB8: + .incbin "baserom.dol", 0x3F8658, 0x4 +.global lbl_805ABDBC +lbl_805ABDBC: + .incbin "baserom.dol", 0x3F865C, 0x4 +.global lbl_805ABDC0 +lbl_805ABDC0: + .incbin "baserom.dol", 0x3F8660, 0x4 +.global lbl_805ABDC4 +lbl_805ABDC4: + .incbin "baserom.dol", 0x3F8664, 0x4 +.global lbl_805ABDC8 +lbl_805ABDC8: + .incbin "baserom.dol", 0x3F8668, 0x4 +.global lbl_805ABDCC +lbl_805ABDCC: + .incbin "baserom.dol", 0x3F866C, 0x4 +.global lbl_805ABDD0 +lbl_805ABDD0: + .incbin "baserom.dol", 0x3F8670, 0x4 +.global lbl_805ABDD4 +lbl_805ABDD4: + .incbin "baserom.dol", 0x3F8674, 0x4 +.global lbl_805ABDD8 +lbl_805ABDD8: + .incbin "baserom.dol", 0x3F8678, 0x4 +.global lbl_805ABDDC +lbl_805ABDDC: + .incbin "baserom.dol", 0x3F867C, 0x4 +.global lbl_805ABDE0 +lbl_805ABDE0: + .incbin "baserom.dol", 0x3F8680, 0x4 +.global lbl_805ABDE4 +lbl_805ABDE4: + .incbin "baserom.dol", 0x3F8684, 0x4 +.global lbl_805ABDE8 +lbl_805ABDE8: + .incbin "baserom.dol", 0x3F8688, 0x4 +.global lbl_805ABDEC +lbl_805ABDEC: + .incbin "baserom.dol", 0x3F868C, 0x4 +.global lbl_805ABDF0 +lbl_805ABDF0: + .incbin "baserom.dol", 0x3F8690, 0x4 +.global lbl_805ABDF4 +lbl_805ABDF4: + .incbin "baserom.dol", 0x3F8694, 0x4 +.global lbl_805ABDF8 +lbl_805ABDF8: + .incbin "baserom.dol", 0x3F8698, 0x4 +.global lbl_805ABDFC +lbl_805ABDFC: + .incbin "baserom.dol", 0x3F869C, 0x4 +.global lbl_805ABE00 +lbl_805ABE00: + .incbin "baserom.dol", 0x3F86A0, 0x4 +.global lbl_805ABE04 +lbl_805ABE04: + .incbin "baserom.dol", 0x3F86A4, 0x4 +.global lbl_805ABE08 +lbl_805ABE08: + .incbin "baserom.dol", 0x3F86A8, 0x4 +.global lbl_805ABE0C +lbl_805ABE0C: + .incbin "baserom.dol", 0x3F86AC, 0x4 +.global lbl_805ABE10 +lbl_805ABE10: + .incbin "baserom.dol", 0x3F86B0, 0x4 +.global lbl_805ABE14 +lbl_805ABE14: + .incbin "baserom.dol", 0x3F86B4, 0x4 +.global lbl_805ABE18 +lbl_805ABE18: + .incbin "baserom.dol", 0x3F86B8, 0x4 +.global lbl_805ABE1C +lbl_805ABE1C: + .incbin "baserom.dol", 0x3F86BC, 0x4 +.global lbl_805ABE20 +lbl_805ABE20: + .incbin "baserom.dol", 0x3F86C0, 0x4 +.global lbl_805ABE24 +lbl_805ABE24: + .incbin "baserom.dol", 0x3F86C4, 0x4 +.global lbl_805ABE28 +lbl_805ABE28: + .incbin "baserom.dol", 0x3F86C8, 0x8 +.global lbl_805ABE30 +lbl_805ABE30: + .incbin "baserom.dol", 0x3F86D0, 0x4 +.global lbl_805ABE34 +lbl_805ABE34: + .incbin "baserom.dol", 0x3F86D4, 0x4 +.global lbl_805ABE38 +lbl_805ABE38: + .incbin "baserom.dol", 0x3F86D8, 0x4 +.global lbl_805ABE3C +lbl_805ABE3C: + .incbin "baserom.dol", 0x3F86DC, 0x4 +.global lbl_805ABE40 +lbl_805ABE40: + .incbin "baserom.dol", 0x3F86E0, 0x4 +.global lbl_805ABE44 +lbl_805ABE44: + .incbin "baserom.dol", 0x3F86E4, 0x4 +.global lbl_805ABE48 +lbl_805ABE48: + .incbin "baserom.dol", 0x3F86E8, 0x4 +.global lbl_805ABE4C +lbl_805ABE4C: + .incbin "baserom.dol", 0x3F86EC, 0x4 +.global lbl_805ABE50 +lbl_805ABE50: + .incbin "baserom.dol", 0x3F86F0, 0x8 +.global lbl_805ABE58 +lbl_805ABE58: + .incbin "baserom.dol", 0x3F86F8, 0x8 +.global lbl_805ABE60 +lbl_805ABE60: + .incbin "baserom.dol", 0x3F8700, 0x4 +.global lbl_805ABE64 +lbl_805ABE64: + .incbin "baserom.dol", 0x3F8704, 0x4 +.global lbl_805ABE68 +lbl_805ABE68: + .incbin "baserom.dol", 0x3F8708, 0x4 +.global lbl_805ABE6C +lbl_805ABE6C: + .incbin "baserom.dol", 0x3F870C, 0x4 +.global lbl_805ABE70 +lbl_805ABE70: + .incbin "baserom.dol", 0x3F8710, 0x4 +.global lbl_805ABE74 +lbl_805ABE74: + .incbin "baserom.dol", 0x3F8714, 0x4 +.global lbl_805ABE78 +lbl_805ABE78: + .incbin "baserom.dol", 0x3F8718, 0x8 +.global lbl_805ABE80 +lbl_805ABE80: + .incbin "baserom.dol", 0x3F8720, 0x8 +.global lbl_805ABE88 +lbl_805ABE88: + .incbin "baserom.dol", 0x3F8728, 0x8 +.global lbl_805ABE90 +lbl_805ABE90: + .incbin "baserom.dol", 0x3F8730, 0x8 +.global lbl_805ABE98 +lbl_805ABE98: + .incbin "baserom.dol", 0x3F8738, 0x4 +.global lbl_805ABE9C +lbl_805ABE9C: + .incbin "baserom.dol", 0x3F873C, 0x4 +.global lbl_805ABEA0 +lbl_805ABEA0: + .incbin "baserom.dol", 0x3F8740, 0x4 +.global lbl_805ABEA4 +lbl_805ABEA4: + .incbin "baserom.dol", 0x3F8744, 0x4 +.global lbl_805ABEA8 +lbl_805ABEA8: + .incbin "baserom.dol", 0x3F8748, 0x8 +.global lbl_805ABEB0 +lbl_805ABEB0: + .incbin "baserom.dol", 0x3F8750, 0x4 +.global lbl_805ABEB4 +lbl_805ABEB4: + .incbin "baserom.dol", 0x3F8754, 0x4 +.global lbl_805ABEB8 +lbl_805ABEB8: + .incbin "baserom.dol", 0x3F8758, 0x4 +.global lbl_805ABEBC +lbl_805ABEBC: + .incbin "baserom.dol", 0x3F875C, 0x4 +.global lbl_805ABEC0 +lbl_805ABEC0: + .incbin "baserom.dol", 0x3F8760, 0x4 +.global lbl_805ABEC4 +lbl_805ABEC4: + .incbin "baserom.dol", 0x3F8764, 0x4 +.global lbl_805ABEC8 +lbl_805ABEC8: + .incbin "baserom.dol", 0x3F8768, 0x8 +.global lbl_805ABED0 +lbl_805ABED0: + .incbin "baserom.dol", 0x3F8770, 0x4 +.global lbl_805ABED4 +lbl_805ABED4: + .incbin "baserom.dol", 0x3F8774, 0x4 +.global lbl_805ABED8 +lbl_805ABED8: + .incbin "baserom.dol", 0x3F8778, 0x4 +.global lbl_805ABEDC +lbl_805ABEDC: + .incbin "baserom.dol", 0x3F877C, 0x4 +.global lbl_805ABEE0 +lbl_805ABEE0: + .incbin "baserom.dol", 0x3F8780, 0x4 +.global lbl_805ABEE4 +lbl_805ABEE4: + .incbin "baserom.dol", 0x3F8784, 0x4 +.global lbl_805ABEE8 +lbl_805ABEE8: + .incbin "baserom.dol", 0x3F8788, 0x8 +.global lbl_805ABEF0 +lbl_805ABEF0: + .incbin "baserom.dol", 0x3F8790, 0x8 +.global lbl_805ABEF8 +lbl_805ABEF8: + .incbin "baserom.dol", 0x3F8798, 0x4 +.global lbl_805ABEFC +lbl_805ABEFC: + .incbin "baserom.dol", 0x3F879C, 0x4 +.global lbl_805ABF00 +lbl_805ABF00: + .incbin "baserom.dol", 0x3F87A0, 0x4 +.global lbl_805ABF04 +lbl_805ABF04: + .incbin "baserom.dol", 0x3F87A4, 0x4 +.global lbl_805ABF08 +lbl_805ABF08: + .incbin "baserom.dol", 0x3F87A8, 0x8 +.global lbl_805ABF10 +lbl_805ABF10: + .incbin "baserom.dol", 0x3F87B0, 0x8 +.global lbl_805ABF18 +lbl_805ABF18: + .incbin "baserom.dol", 0x3F87B8, 0x4 +.global lbl_805ABF1C +lbl_805ABF1C: + .incbin "baserom.dol", 0x3F87BC, 0x4 +.global lbl_805ABF20 +lbl_805ABF20: + .incbin "baserom.dol", 0x3F87C0, 0x4 +.global lbl_805ABF24 +lbl_805ABF24: + .incbin "baserom.dol", 0x3F87C4, 0x4 +.global lbl_805ABF28 +lbl_805ABF28: + .incbin "baserom.dol", 0x3F87C8, 0x4 +.global lbl_805ABF2C +lbl_805ABF2C: + .incbin "baserom.dol", 0x3F87CC, 0x4 +.global lbl_805ABF30 +lbl_805ABF30: + .incbin "baserom.dol", 0x3F87D0, 0x4 +.global lbl_805ABF34 +lbl_805ABF34: + .incbin "baserom.dol", 0x3F87D4, 0x4 +.global lbl_805ABF38 +lbl_805ABF38: + .incbin "baserom.dol", 0x3F87D8, 0x4 +.global lbl_805ABF3C +lbl_805ABF3C: + .incbin "baserom.dol", 0x3F87DC, 0x4 +.global lbl_805ABF40 +lbl_805ABF40: + .incbin "baserom.dol", 0x3F87E0, 0x4 +.global lbl_805ABF44 +lbl_805ABF44: + .incbin "baserom.dol", 0x3F87E4, 0x4 +.global lbl_805ABF48 +lbl_805ABF48: + .incbin "baserom.dol", 0x3F87E8, 0x4 +.global lbl_805ABF4C +lbl_805ABF4C: + .incbin "baserom.dol", 0x3F87EC, 0x4 +.global lbl_805ABF50 +lbl_805ABF50: + .incbin "baserom.dol", 0x3F87F0, 0x4 +.global lbl_805ABF54 +lbl_805ABF54: + .incbin "baserom.dol", 0x3F87F4, 0x4 +.global lbl_805ABF58 +lbl_805ABF58: + .incbin "baserom.dol", 0x3F87F8, 0x4 +.global lbl_805ABF5C +lbl_805ABF5C: + .incbin "baserom.dol", 0x3F87FC, 0x4 +.global lbl_805ABF60 +lbl_805ABF60: + .incbin "baserom.dol", 0x3F8800, 0x8 +.global lbl_805ABF68 +lbl_805ABF68: + .incbin "baserom.dol", 0x3F8808, 0x4 +.global lbl_805ABF6C +lbl_805ABF6C: + .incbin "baserom.dol", 0x3F880C, 0x4 +.global lbl_805ABF70 +lbl_805ABF70: + .incbin "baserom.dol", 0x3F8810, 0x8 +.global lbl_805ABF78 +lbl_805ABF78: + .incbin "baserom.dol", 0x3F8818, 0x8 +.global lbl_805ABF80 +lbl_805ABF80: + .incbin "baserom.dol", 0x3F8820, 0x4 +.global lbl_805ABF84 +lbl_805ABF84: + .incbin "baserom.dol", 0x3F8824, 0x4 +.global lbl_805ABF88 +lbl_805ABF88: + .incbin "baserom.dol", 0x3F8828, 0x4 +.global lbl_805ABF8C +lbl_805ABF8C: + .incbin "baserom.dol", 0x3F882C, 0x4 +.global lbl_805ABF90 +lbl_805ABF90: + .incbin "baserom.dol", 0x3F8830, 0x4 +.global lbl_805ABF94 +lbl_805ABF94: + .incbin "baserom.dol", 0x3F8834, 0x4 +.global lbl_805ABF98 +lbl_805ABF98: + .incbin "baserom.dol", 0x3F8838, 0x4 +.global lbl_805ABF9C +lbl_805ABF9C: + .incbin "baserom.dol", 0x3F883C, 0x4 +.global lbl_805ABFA0 +lbl_805ABFA0: + .incbin "baserom.dol", 0x3F8840, 0x4 +.global lbl_805ABFA4 +lbl_805ABFA4: + .incbin "baserom.dol", 0x3F8844, 0x4 +.global lbl_805ABFA8 +lbl_805ABFA8: + .incbin "baserom.dol", 0x3F8848, 0x4 +.global lbl_805ABFAC +lbl_805ABFAC: + .incbin "baserom.dol", 0x3F884C, 0x4 +.global lbl_805ABFB0 +lbl_805ABFB0: + .incbin "baserom.dol", 0x3F8850, 0x8 +.global lbl_805ABFB8 +lbl_805ABFB8: + .incbin "baserom.dol", 0x3F8858, 0x8 +.global lbl_805ABFC0 +lbl_805ABFC0: + .incbin "baserom.dol", 0x3F8860, 0x4 +.global lbl_805ABFC4 +lbl_805ABFC4: + .incbin "baserom.dol", 0x3F8864, 0x4 +.global lbl_805ABFC8 +lbl_805ABFC8: + .incbin "baserom.dol", 0x3F8868, 0x4 +.global lbl_805ABFCC +lbl_805ABFCC: + .incbin "baserom.dol", 0x3F886C, 0x4 +.global lbl_805ABFD0 +lbl_805ABFD0: + .incbin "baserom.dol", 0x3F8870, 0x8 +.global lbl_805ABFD8 +lbl_805ABFD8: + .incbin "baserom.dol", 0x3F8878, 0x8 +.global lbl_805ABFE0 +lbl_805ABFE0: + .incbin "baserom.dol", 0x3F8880, 0x4 +.global lbl_805ABFE4 +lbl_805ABFE4: + .incbin "baserom.dol", 0x3F8884, 0x4 +.global lbl_805ABFE8 +lbl_805ABFE8: + .incbin "baserom.dol", 0x3F8888, 0x4 +.global lbl_805ABFEC +lbl_805ABFEC: + .incbin "baserom.dol", 0x3F888C, 0x4 +.global lbl_805ABFF0 +lbl_805ABFF0: + .incbin "baserom.dol", 0x3F8890, 0x4 +.global lbl_805ABFF4 +lbl_805ABFF4: + .incbin "baserom.dol", 0x3F8894, 0x4 +.global lbl_805ABFF8 +lbl_805ABFF8: + .incbin "baserom.dol", 0x3F8898, 0x4 +.global lbl_805ABFFC +lbl_805ABFFC: + .incbin "baserom.dol", 0x3F889C, 0x4 +.global lbl_805AC000 +lbl_805AC000: + .incbin "baserom.dol", 0x3F88A0, 0x4 +.global lbl_805AC004 +lbl_805AC004: + .incbin "baserom.dol", 0x3F88A4, 0x4 +.global lbl_805AC008 +lbl_805AC008: + .incbin "baserom.dol", 0x3F88A8, 0x4 +.global lbl_805AC00C +lbl_805AC00C: + .incbin "baserom.dol", 0x3F88AC, 0x4 +.global lbl_805AC010 +lbl_805AC010: + .incbin "baserom.dol", 0x3F88B0, 0x4 +.global lbl_805AC014 +lbl_805AC014: + .incbin "baserom.dol", 0x3F88B4, 0x4 +.global lbl_805AC018 +lbl_805AC018: + .incbin "baserom.dol", 0x3F88B8, 0x4 +.global lbl_805AC01C +lbl_805AC01C: + .incbin "baserom.dol", 0x3F88BC, 0x4 +.global lbl_805AC020 +lbl_805AC020: + .incbin "baserom.dol", 0x3F88C0, 0x8 +.global lbl_805AC028 +lbl_805AC028: + .incbin "baserom.dol", 0x3F88C8, 0x8 +.global lbl_805AC030 +lbl_805AC030: + .incbin "baserom.dol", 0x3F88D0, 0x4 +.global lbl_805AC034 +lbl_805AC034: + .incbin "baserom.dol", 0x3F88D4, 0x4 +.global lbl_805AC038 +lbl_805AC038: + .incbin "baserom.dol", 0x3F88D8, 0x4 +.global lbl_805AC03C +lbl_805AC03C: + .incbin "baserom.dol", 0x3F88DC, 0x4 +.global lbl_805AC040 +lbl_805AC040: + .incbin "baserom.dol", 0x3F88E0, 0x4 +.global lbl_805AC044 +lbl_805AC044: + .incbin "baserom.dol", 0x3F88E4, 0x4 +.global lbl_805AC048 +lbl_805AC048: + .incbin "baserom.dol", 0x3F88E8, 0x4 +.global lbl_805AC04C +lbl_805AC04C: + .incbin "baserom.dol", 0x3F88EC, 0x4 +.global lbl_805AC050 +lbl_805AC050: + .incbin "baserom.dol", 0x3F88F0, 0x4 +.global lbl_805AC054 +lbl_805AC054: + .incbin "baserom.dol", 0x3F88F4, 0x4 +.global lbl_805AC058 +lbl_805AC058: + .incbin "baserom.dol", 0x3F88F8, 0x4 +.global lbl_805AC05C +lbl_805AC05C: + .incbin "baserom.dol", 0x3F88FC, 0x4 +.global lbl_805AC060 +lbl_805AC060: + .incbin "baserom.dol", 0x3F8900, 0x4 +.global lbl_805AC064 +lbl_805AC064: + .incbin "baserom.dol", 0x3F8904, 0x4 +.global lbl_805AC068 +lbl_805AC068: + .incbin "baserom.dol", 0x3F8908, 0x8 +.global lbl_805AC070 +lbl_805AC070: + .incbin "baserom.dol", 0x3F8910, 0x8 +.global lbl_805AC078 +lbl_805AC078: + .incbin "baserom.dol", 0x3F8918, 0x4 +.global lbl_805AC07C +lbl_805AC07C: + .incbin "baserom.dol", 0x3F891C, 0x4 +.global lbl_805AC080 +lbl_805AC080: + .incbin "baserom.dol", 0x3F8920, 0x4 +.global lbl_805AC084 +lbl_805AC084: + .incbin "baserom.dol", 0x3F8924, 0x4 +.global lbl_805AC088 +lbl_805AC088: + .incbin "baserom.dol", 0x3F8928, 0x4 +.global lbl_805AC08C +lbl_805AC08C: + .incbin "baserom.dol", 0x3F892C, 0x4 +.global lbl_805AC090 +lbl_805AC090: + .incbin "baserom.dol", 0x3F8930, 0x8 +.global lbl_805AC098 +lbl_805AC098: + .incbin "baserom.dol", 0x3F8938, 0x4 +.global lbl_805AC09C +lbl_805AC09C: + .incbin "baserom.dol", 0x3F893C, 0x4 +.global lbl_805AC0A0 +lbl_805AC0A0: + .incbin "baserom.dol", 0x3F8940, 0x4 +.global lbl_805AC0A4 +lbl_805AC0A4: + .incbin "baserom.dol", 0x3F8944, 0x4 +.global lbl_805AC0A8 +lbl_805AC0A8: + .incbin "baserom.dol", 0x3F8948, 0x4 +.global lbl_805AC0AC +lbl_805AC0AC: + .incbin "baserom.dol", 0x3F894C, 0x4 +.global lbl_805AC0B0 +lbl_805AC0B0: + .incbin "baserom.dol", 0x3F8950, 0x4 +.global lbl_805AC0B4 +lbl_805AC0B4: + .incbin "baserom.dol", 0x3F8954, 0x4 +.global lbl_805AC0B8 +lbl_805AC0B8: + .incbin "baserom.dol", 0x3F8958, 0x4 +.global lbl_805AC0BC +lbl_805AC0BC: + .incbin "baserom.dol", 0x3F895C, 0x4 +.global lbl_805AC0C0 +lbl_805AC0C0: + .incbin "baserom.dol", 0x3F8960, 0x4 +.global lbl_805AC0C4 +lbl_805AC0C4: + .incbin "baserom.dol", 0x3F8964, 0x4 +.global lbl_805AC0C8 +lbl_805AC0C8: + .incbin "baserom.dol", 0x3F8968, 0x4 +.global lbl_805AC0CC +lbl_805AC0CC: + .incbin "baserom.dol", 0x3F896C, 0x4 +.global lbl_805AC0D0 +lbl_805AC0D0: + .incbin "baserom.dol", 0x3F8970, 0x4 +.global lbl_805AC0D4 +lbl_805AC0D4: + .incbin "baserom.dol", 0x3F8974, 0x4 +.global lbl_805AC0D8 +lbl_805AC0D8: + .incbin "baserom.dol", 0x3F8978, 0x4 +.global lbl_805AC0DC +lbl_805AC0DC: + .incbin "baserom.dol", 0x3F897C, 0x4 +.global lbl_805AC0E0 +lbl_805AC0E0: + .incbin "baserom.dol", 0x3F8980, 0x4 +.global lbl_805AC0E4 +lbl_805AC0E4: + .incbin "baserom.dol", 0x3F8984, 0x4 +.global lbl_805AC0E8 +lbl_805AC0E8: + .incbin "baserom.dol", 0x3F8988, 0x4 +.global lbl_805AC0EC +lbl_805AC0EC: + .incbin "baserom.dol", 0x3F898C, 0x4 +.global lbl_805AC0F0 +lbl_805AC0F0: + .incbin "baserom.dol", 0x3F8990, 0x4 +.global lbl_805AC0F4 +lbl_805AC0F4: + .incbin "baserom.dol", 0x3F8994, 0x4 +.global lbl_805AC0F8 +lbl_805AC0F8: + .incbin "baserom.dol", 0x3F8998, 0x4 +.global lbl_805AC0FC +lbl_805AC0FC: + .incbin "baserom.dol", 0x3F899C, 0x4 +.global lbl_805AC100 +lbl_805AC100: + .incbin "baserom.dol", 0x3F89A0, 0x4 +.global lbl_805AC104 +lbl_805AC104: + .incbin "baserom.dol", 0x3F89A4, 0x4 +.global lbl_805AC108 +lbl_805AC108: + .incbin "baserom.dol", 0x3F89A8, 0x4 +.global lbl_805AC10C +lbl_805AC10C: + .incbin "baserom.dol", 0x3F89AC, 0x4 +.global lbl_805AC110 +lbl_805AC110: + .incbin "baserom.dol", 0x3F89B0, 0x4 +.global lbl_805AC114 +lbl_805AC114: + .incbin "baserom.dol", 0x3F89B4, 0x4 +.global lbl_805AC118 +lbl_805AC118: + .incbin "baserom.dol", 0x3F89B8, 0x4 +.global lbl_805AC11C +lbl_805AC11C: + .incbin "baserom.dol", 0x3F89BC, 0x4 +.global lbl_805AC120 +lbl_805AC120: + .incbin "baserom.dol", 0x3F89C0, 0x4 +.global lbl_805AC124 +lbl_805AC124: + .incbin "baserom.dol", 0x3F89C4, 0x4 +.global lbl_805AC128 +lbl_805AC128: + .incbin "baserom.dol", 0x3F89C8, 0x4 +.global lbl_805AC12C +lbl_805AC12C: + .incbin "baserom.dol", 0x3F89CC, 0x4 +.global lbl_805AC130 +lbl_805AC130: + .incbin "baserom.dol", 0x3F89D0, 0x4 +.global lbl_805AC134 +lbl_805AC134: + .incbin "baserom.dol", 0x3F89D4, 0x4 +.global lbl_805AC138 +lbl_805AC138: + .incbin "baserom.dol", 0x3F89D8, 0x4 +.global lbl_805AC13C +lbl_805AC13C: + .incbin "baserom.dol", 0x3F89DC, 0x4 +.global lbl_805AC140 +lbl_805AC140: + .incbin "baserom.dol", 0x3F89E0, 0x4 +.global lbl_805AC144 +lbl_805AC144: + .incbin "baserom.dol", 0x3F89E4, 0x4 +.global lbl_805AC148 +lbl_805AC148: + .incbin "baserom.dol", 0x3F89E8, 0x4 +.global lbl_805AC14C +lbl_805AC14C: + .incbin "baserom.dol", 0x3F89EC, 0x4 +.global lbl_805AC150 +lbl_805AC150: + .incbin "baserom.dol", 0x3F89F0, 0x4 +.global lbl_805AC154 +lbl_805AC154: + .incbin "baserom.dol", 0x3F89F4, 0x4 +.global lbl_805AC158 +lbl_805AC158: + .incbin "baserom.dol", 0x3F89F8, 0x4 +.global lbl_805AC15C +lbl_805AC15C: + .incbin "baserom.dol", 0x3F89FC, 0x4 +.global lbl_805AC160 +lbl_805AC160: + .incbin "baserom.dol", 0x3F8A00, 0x4 +.global lbl_805AC164 +lbl_805AC164: + .incbin "baserom.dol", 0x3F8A04, 0x4 +.global lbl_805AC168 +lbl_805AC168: + .incbin "baserom.dol", 0x3F8A08, 0x4 +.global lbl_805AC16C +lbl_805AC16C: + .incbin "baserom.dol", 0x3F8A0C, 0x4 +.global lbl_805AC170 +lbl_805AC170: + .incbin "baserom.dol", 0x3F8A10, 0x4 +.global lbl_805AC174 +lbl_805AC174: + .incbin "baserom.dol", 0x3F8A14, 0x4 +.global lbl_805AC178 +lbl_805AC178: + .incbin "baserom.dol", 0x3F8A18, 0x8 +.global lbl_805AC180 +lbl_805AC180: + .incbin "baserom.dol", 0x3F8A20, 0x8 +.global lbl_805AC188 +lbl_805AC188: + .incbin "baserom.dol", 0x3F8A28, 0x4 +.global lbl_805AC18C +lbl_805AC18C: + .incbin "baserom.dol", 0x3F8A2C, 0x4 +.global lbl_805AC190 +lbl_805AC190: + .incbin "baserom.dol", 0x3F8A30, 0x4 +.global lbl_805AC194 +lbl_805AC194: + .incbin "baserom.dol", 0x3F8A34, 0x4 +.global lbl_805AC198 +lbl_805AC198: + .incbin "baserom.dol", 0x3F8A38, 0x4 +.global lbl_805AC19C +lbl_805AC19C: + .incbin "baserom.dol", 0x3F8A3C, 0x4 +.global lbl_805AC1A0 +lbl_805AC1A0: + .incbin "baserom.dol", 0x3F8A40, 0x4 +.global lbl_805AC1A4 +lbl_805AC1A4: + .incbin "baserom.dol", 0x3F8A44, 0x4 +.global lbl_805AC1A8 +lbl_805AC1A8: + .incbin "baserom.dol", 0x3F8A48, 0x8 +.global lbl_805AC1B0 +lbl_805AC1B0: + .incbin "baserom.dol", 0x3F8A50, 0x8 +.global lbl_805AC1B8 +lbl_805AC1B8: + .incbin "baserom.dol", 0x3F8A58, 0x4 +.global lbl_805AC1BC +lbl_805AC1BC: + .incbin "baserom.dol", 0x3F8A5C, 0x4 +.global lbl_805AC1C0 +lbl_805AC1C0: + .incbin "baserom.dol", 0x3F8A60, 0x4 +.global lbl_805AC1C4 +lbl_805AC1C4: + .incbin "baserom.dol", 0x3F8A64, 0x4 +.global lbl_805AC1C8 +lbl_805AC1C8: + .incbin "baserom.dol", 0x3F8A68, 0x4 +.global lbl_805AC1CC +lbl_805AC1CC: + .incbin "baserom.dol", 0x3F8A6C, 0x4 +.global lbl_805AC1D0 +lbl_805AC1D0: + .incbin "baserom.dol", 0x3F8A70, 0x4 +.global lbl_805AC1D4 +lbl_805AC1D4: + .incbin "baserom.dol", 0x3F8A74, 0x4 +.global lbl_805AC1D8 +lbl_805AC1D8: + .incbin "baserom.dol", 0x3F8A78, 0x4 +.global lbl_805AC1DC +lbl_805AC1DC: + .incbin "baserom.dol", 0x3F8A7C, 0x4 +.global lbl_805AC1E0 +lbl_805AC1E0: + .incbin "baserom.dol", 0x3F8A80, 0x4 +.global lbl_805AC1E4 +lbl_805AC1E4: + .incbin "baserom.dol", 0x3F8A84, 0x4 +.global lbl_805AC1E8 +lbl_805AC1E8: + .incbin "baserom.dol", 0x3F8A88, 0x4 +.global lbl_805AC1EC +lbl_805AC1EC: + .incbin "baserom.dol", 0x3F8A8C, 0x4 +.global lbl_805AC1F0 +lbl_805AC1F0: + .incbin "baserom.dol", 0x3F8A90, 0x4 +.global lbl_805AC1F4 +lbl_805AC1F4: + .incbin "baserom.dol", 0x3F8A94, 0x4 +.global lbl_805AC1F8 +lbl_805AC1F8: + .incbin "baserom.dol", 0x3F8A98, 0x4 +.global lbl_805AC1FC +lbl_805AC1FC: + .incbin "baserom.dol", 0x3F8A9C, 0x4 +.global lbl_805AC200 +lbl_805AC200: + .incbin "baserom.dol", 0x3F8AA0, 0x4 +.global lbl_805AC204 +lbl_805AC204: + .incbin "baserom.dol", 0x3F8AA4, 0x4 +.global lbl_805AC208 +lbl_805AC208: + .incbin "baserom.dol", 0x3F8AA8, 0x4 +.global lbl_805AC20C +lbl_805AC20C: + .incbin "baserom.dol", 0x3F8AAC, 0x4 +.global lbl_805AC210 +lbl_805AC210: + .incbin "baserom.dol", 0x3F8AB0, 0x8 +.global lbl_805AC218 +lbl_805AC218: + .incbin "baserom.dol", 0x3F8AB8, 0x4 +.global lbl_805AC21C +lbl_805AC21C: + .incbin "baserom.dol", 0x3F8ABC, 0x4 +.global lbl_805AC220 +lbl_805AC220: + .incbin "baserom.dol", 0x3F8AC0, 0x4 +.global lbl_805AC224 +lbl_805AC224: + .incbin "baserom.dol", 0x3F8AC4, 0x4 +.global lbl_805AC228 +lbl_805AC228: + .incbin "baserom.dol", 0x3F8AC8, 0x4 +.global lbl_805AC22C +lbl_805AC22C: + .incbin "baserom.dol", 0x3F8ACC, 0x4 +.global lbl_805AC230 +lbl_805AC230: + .incbin "baserom.dol", 0x3F8AD0, 0x8 +.global lbl_805AC238 +lbl_805AC238: + .incbin "baserom.dol", 0x3F8AD8, 0x4 +.global lbl_805AC23C +lbl_805AC23C: + .incbin "baserom.dol", 0x3F8ADC, 0x4 +.global lbl_805AC240 +lbl_805AC240: + .incbin "baserom.dol", 0x3F8AE0, 0x4 +.global lbl_805AC244 +lbl_805AC244: + .incbin "baserom.dol", 0x3F8AE4, 0x4 +.global lbl_805AC248 +lbl_805AC248: + .incbin "baserom.dol", 0x3F8AE8, 0x4 +.global lbl_805AC24C +lbl_805AC24C: + .incbin "baserom.dol", 0x3F8AEC, 0x4 +.global lbl_805AC250 +lbl_805AC250: + .incbin "baserom.dol", 0x3F8AF0, 0x4 +.global lbl_805AC254 +lbl_805AC254: + .incbin "baserom.dol", 0x3F8AF4, 0x4 +.global lbl_805AC258 +lbl_805AC258: + .incbin "baserom.dol", 0x3F8AF8, 0x8 +.global lbl_805AC260 +lbl_805AC260: + .incbin "baserom.dol", 0x3F8B00, 0x4 +.global lbl_805AC264 +lbl_805AC264: + .incbin "baserom.dol", 0x3F8B04, 0x4 +.global lbl_805AC268 +lbl_805AC268: + .incbin "baserom.dol", 0x3F8B08, 0x8 +.global lbl_805AC270 +lbl_805AC270: + .incbin "baserom.dol", 0x3F8B10, 0x8 +.global lbl_805AC278 +lbl_805AC278: + .incbin "baserom.dol", 0x3F8B18, 0x4 +.global lbl_805AC27C +lbl_805AC27C: + .incbin "baserom.dol", 0x3F8B1C, 0x4 +.global lbl_805AC280 +lbl_805AC280: + .incbin "baserom.dol", 0x3F8B20, 0x4 +.global lbl_805AC284 +lbl_805AC284: + .incbin "baserom.dol", 0x3F8B24, 0x4 +.global lbl_805AC288 +lbl_805AC288: + .incbin "baserom.dol", 0x3F8B28, 0x4 +.global lbl_805AC28C +lbl_805AC28C: + .incbin "baserom.dol", 0x3F8B2C, 0x4 +.global lbl_805AC290 +lbl_805AC290: + .incbin "baserom.dol", 0x3F8B30, 0x4 +.global lbl_805AC294 +lbl_805AC294: + .incbin "baserom.dol", 0x3F8B34, 0x4 +.global lbl_805AC298 +lbl_805AC298: + .incbin "baserom.dol", 0x3F8B38, 0x4 +.global lbl_805AC29C +lbl_805AC29C: + .incbin "baserom.dol", 0x3F8B3C, 0x4 +.global lbl_805AC2A0 +lbl_805AC2A0: + .incbin "baserom.dol", 0x3F8B40, 0x4 +.global lbl_805AC2A4 +lbl_805AC2A4: + .incbin "baserom.dol", 0x3F8B44, 0x4 +.global lbl_805AC2A8 +lbl_805AC2A8: + .incbin "baserom.dol", 0x3F8B48, 0x8 +.global lbl_805AC2B0 +lbl_805AC2B0: + .incbin "baserom.dol", 0x3F8B50, 0x8 +.global lbl_805AC2B8 +lbl_805AC2B8: + .incbin "baserom.dol", 0x3F8B58, 0x4 +.global lbl_805AC2BC +lbl_805AC2BC: + .incbin "baserom.dol", 0x3F8B5C, 0x4 +.global lbl_805AC2C0 +lbl_805AC2C0: + .incbin "baserom.dol", 0x3F8B60, 0x4 +.global lbl_805AC2C4 +lbl_805AC2C4: + .incbin "baserom.dol", 0x3F8B64, 0x4 +.global lbl_805AC2C8 +lbl_805AC2C8: + .incbin "baserom.dol", 0x3F8B68, 0x8 +.global lbl_805AC2D0 +lbl_805AC2D0: + .incbin "baserom.dol", 0x3F8B70, 0x4 +.global lbl_805AC2D4 +lbl_805AC2D4: + .incbin "baserom.dol", 0x3F8B74, 0x4 +.global lbl_805AC2D8 +lbl_805AC2D8: + .incbin "baserom.dol", 0x3F8B78, 0x4 +.global lbl_805AC2DC +lbl_805AC2DC: + .incbin "baserom.dol", 0x3F8B7C, 0x4 +.global lbl_805AC2E0 +lbl_805AC2E0: + .incbin "baserom.dol", 0x3F8B80, 0x8 +.global lbl_805AC2E8 +lbl_805AC2E8: + .incbin "baserom.dol", 0x3F8B88, 0x4 +.global lbl_805AC2EC +lbl_805AC2EC: + .incbin "baserom.dol", 0x3F8B8C, 0x4 +.global lbl_805AC2F0 +lbl_805AC2F0: + .incbin "baserom.dol", 0x3F8B90, 0x4 +.global lbl_805AC2F4 +lbl_805AC2F4: + .incbin "baserom.dol", 0x3F8B94, 0x4 +.global lbl_805AC2F8 +lbl_805AC2F8: + .incbin "baserom.dol", 0x3F8B98, 0x8 +.global lbl_805AC300 +lbl_805AC300: + .incbin "baserom.dol", 0x3F8BA0, 0x4 +.global lbl_805AC304 +lbl_805AC304: + .incbin "baserom.dol", 0x3F8BA4, 0x4 +.global lbl_805AC308 +lbl_805AC308: + .incbin "baserom.dol", 0x3F8BA8, 0x4 +.global lbl_805AC30C +lbl_805AC30C: + .incbin "baserom.dol", 0x3F8BAC, 0x4 +.global lbl_805AC310 +lbl_805AC310: + .incbin "baserom.dol", 0x3F8BB0, 0x4 +.global lbl_805AC314 +lbl_805AC314: + .incbin "baserom.dol", 0x3F8BB4, 0x4 +.global lbl_805AC318 +lbl_805AC318: + .incbin "baserom.dol", 0x3F8BB8, 0x4 +.global lbl_805AC31C +lbl_805AC31C: + .incbin "baserom.dol", 0x3F8BBC, 0x4 +.global lbl_805AC320 +lbl_805AC320: + .incbin "baserom.dol", 0x3F8BC0, 0x8 +.global lbl_805AC328 +lbl_805AC328: + .incbin "baserom.dol", 0x3F8BC8, 0x8 +.global lbl_805AC330 +lbl_805AC330: + .incbin "baserom.dol", 0x3F8BD0, 0x8 +.global lbl_805AC338 +lbl_805AC338: + .incbin "baserom.dol", 0x3F8BD8, 0x4 +.global lbl_805AC33C +lbl_805AC33C: + .incbin "baserom.dol", 0x3F8BDC, 0x4 +.global lbl_805AC340 +lbl_805AC340: + .incbin "baserom.dol", 0x3F8BE0, 0x4 +.global lbl_805AC344 +lbl_805AC344: + .incbin "baserom.dol", 0x3F8BE4, 0x4 +.global lbl_805AC348 +lbl_805AC348: + .incbin "baserom.dol", 0x3F8BE8, 0x4 +.global lbl_805AC34C +lbl_805AC34C: + .incbin "baserom.dol", 0x3F8BEC, 0x8 +.global lbl_805AC354 +lbl_805AC354: + .incbin "baserom.dol", 0x3F8BF4, 0x8 +.global lbl_805AC35C +lbl_805AC35C: + .incbin "baserom.dol", 0x3F8BFC, 0x4 +.global lbl_805AC360 +lbl_805AC360: + .incbin "baserom.dol", 0x3F8C00, 0x4 +.global lbl_805AC364 +lbl_805AC364: + .incbin "baserom.dol", 0x3F8C04, 0x4 +.global lbl_805AC368 +lbl_805AC368: + .incbin "baserom.dol", 0x3F8C08, 0x8 +.global lbl_805AC370 +lbl_805AC370: + .incbin "baserom.dol", 0x3F8C10, 0x4 +.global lbl_805AC374 +lbl_805AC374: + .incbin "baserom.dol", 0x3F8C14, 0x4 +.global lbl_805AC378 +lbl_805AC378: + .incbin "baserom.dol", 0x3F8C18, 0x4 +.global lbl_805AC37C +lbl_805AC37C: + .incbin "baserom.dol", 0x3F8C1C, 0x4 +.global lbl_805AC380 +lbl_805AC380: + .incbin "baserom.dol", 0x3F8C20, 0x8 +.global lbl_805AC388 +lbl_805AC388: + .incbin "baserom.dol", 0x3F8C28, 0x4 +.global lbl_805AC38C +lbl_805AC38C: + .incbin "baserom.dol", 0x3F8C2C, 0x4 +.global lbl_805AC390 +lbl_805AC390: + .incbin "baserom.dol", 0x3F8C30, 0x4 +.global lbl_805AC394 +lbl_805AC394: + .incbin "baserom.dol", 0x3F8C34, 0x4 +.global lbl_805AC398 +lbl_805AC398: + .incbin "baserom.dol", 0x3F8C38, 0x4 +.global lbl_805AC39C +lbl_805AC39C: + .incbin "baserom.dol", 0x3F8C3C, 0x4 +.global lbl_805AC3A0 +lbl_805AC3A0: + .incbin "baserom.dol", 0x3F8C40, 0x4 +.global lbl_805AC3A4 +lbl_805AC3A4: + .incbin "baserom.dol", 0x3F8C44, 0x4 +.global lbl_805AC3A8 +lbl_805AC3A8: + .incbin "baserom.dol", 0x3F8C48, 0x4 +.global lbl_805AC3AC +lbl_805AC3AC: + .incbin "baserom.dol", 0x3F8C4C, 0x4 +.global lbl_805AC3B0 +lbl_805AC3B0: + .incbin "baserom.dol", 0x3F8C50, 0x4 +.global lbl_805AC3B4 +lbl_805AC3B4: + .incbin "baserom.dol", 0x3F8C54, 0x4 +.global lbl_805AC3B8 +lbl_805AC3B8: + .incbin "baserom.dol", 0x3F8C58, 0x8 +.global lbl_805AC3C0 +lbl_805AC3C0: + .incbin "baserom.dol", 0x3F8C60, 0x4 +.global lbl_805AC3C4 +lbl_805AC3C4: + .incbin "baserom.dol", 0x3F8C64, 0x4 +.global lbl_805AC3C8 +lbl_805AC3C8: + .incbin "baserom.dol", 0x3F8C68, 0x8 +.global lbl_805AC3D0 +lbl_805AC3D0: + .incbin "baserom.dol", 0x3F8C70, 0x8 +.global lbl_805AC3D8 +lbl_805AC3D8: + .incbin "baserom.dol", 0x3F8C78, 0x4 +.global lbl_805AC3DC +lbl_805AC3DC: + .incbin "baserom.dol", 0x3F8C7C, 0x4 +.global lbl_805AC3E0 +lbl_805AC3E0: + .incbin "baserom.dol", 0x3F8C80, 0x4 +.global lbl_805AC3E4 +lbl_805AC3E4: + .incbin "baserom.dol", 0x3F8C84, 0x4 +.global lbl_805AC3E8 +lbl_805AC3E8: + .incbin "baserom.dol", 0x3F8C88, 0x4 +.global lbl_805AC3EC +lbl_805AC3EC: + .incbin "baserom.dol", 0x3F8C8C, 0x4 +.global lbl_805AC3F0 +lbl_805AC3F0: + .incbin "baserom.dol", 0x3F8C90, 0x8 +.global lbl_805AC3F8 +lbl_805AC3F8: + .incbin "baserom.dol", 0x3F8C98, 0x4 +.global lbl_805AC3FC +lbl_805AC3FC: + .incbin "baserom.dol", 0x3F8C9C, 0x4 +.global lbl_805AC400 +lbl_805AC400: + .incbin "baserom.dol", 0x3F8CA0, 0x4 +.global lbl_805AC404 +lbl_805AC404: + .incbin "baserom.dol", 0x3F8CA4, 0x4 +.global lbl_805AC408 +lbl_805AC408: + .incbin "baserom.dol", 0x3F8CA8, 0x8 +.global lbl_805AC410 +lbl_805AC410: + .incbin "baserom.dol", 0x3F8CB0, 0x8 +.global lbl_805AC418 +lbl_805AC418: + .incbin "baserom.dol", 0x3F8CB8, 0x4 +.global lbl_805AC41C +lbl_805AC41C: + .incbin "baserom.dol", 0x3F8CBC, 0x4 +.global lbl_805AC420 +lbl_805AC420: + .incbin "baserom.dol", 0x3F8CC0, 0x8 +.global lbl_805AC428 +lbl_805AC428: + .incbin "baserom.dol", 0x3F8CC8, 0x8 +.global lbl_805AC430 +lbl_805AC430: + .incbin "baserom.dol", 0x3F8CD0, 0x8 +.global lbl_805AC438 +lbl_805AC438: + .incbin "baserom.dol", 0x3F8CD8, 0x4 +.global lbl_805AC43C +lbl_805AC43C: + .incbin "baserom.dol", 0x3F8CDC, 0x4 +.global lbl_805AC440 +lbl_805AC440: + .incbin "baserom.dol", 0x3F8CE0, 0x4 +.global lbl_805AC444 +lbl_805AC444: + .incbin "baserom.dol", 0x3F8CE4, 0x4 +.global lbl_805AC448 +lbl_805AC448: + .incbin "baserom.dol", 0x3F8CE8, 0x8 +.global lbl_805AC450 +lbl_805AC450: + .incbin "baserom.dol", 0x3F8CF0, 0x8 +.global lbl_805AC458 +lbl_805AC458: + .incbin "baserom.dol", 0x3F8CF8, 0x4 +.global lbl_805AC45C +lbl_805AC45C: + .incbin "baserom.dol", 0x3F8CFC, 0x4 +.global lbl_805AC460 +lbl_805AC460: + .incbin "baserom.dol", 0x3F8D00, 0x4 +.global lbl_805AC464 +lbl_805AC464: + .incbin "baserom.dol", 0x3F8D04, 0x4 +.global lbl_805AC468 +lbl_805AC468: + .incbin "baserom.dol", 0x3F8D08, 0x4 +.global lbl_805AC46C +lbl_805AC46C: + .incbin "baserom.dol", 0x3F8D0C, 0x4 +.global lbl_805AC470 +lbl_805AC470: + .incbin "baserom.dol", 0x3F8D10, 0x4 +.global lbl_805AC474 +lbl_805AC474: + .incbin "baserom.dol", 0x3F8D14, 0x4 +.global lbl_805AC478 +lbl_805AC478: + .incbin "baserom.dol", 0x3F8D18, 0x4 +.global lbl_805AC47C +lbl_805AC47C: + .incbin "baserom.dol", 0x3F8D1C, 0x4 +.global lbl_805AC480 +lbl_805AC480: + .incbin "baserom.dol", 0x3F8D20, 0x4 +.global lbl_805AC484 +lbl_805AC484: + .incbin "baserom.dol", 0x3F8D24, 0x4 +.global lbl_805AC488 +lbl_805AC488: + .incbin "baserom.dol", 0x3F8D28, 0x4 +.global lbl_805AC48C +lbl_805AC48C: + .incbin "baserom.dol", 0x3F8D2C, 0x4 +.global lbl_805AC490 +lbl_805AC490: + .incbin "baserom.dol", 0x3F8D30, 0x4 +.global lbl_805AC494 +lbl_805AC494: + .incbin "baserom.dol", 0x3F8D34, 0x4 +.global lbl_805AC498 +lbl_805AC498: + .incbin "baserom.dol", 0x3F8D38, 0x4 +.global lbl_805AC49C +lbl_805AC49C: + .incbin "baserom.dol", 0x3F8D3C, 0x4 +.global lbl_805AC4A0 +lbl_805AC4A0: + .incbin "baserom.dol", 0x3F8D40, 0x4 +.global lbl_805AC4A4 +lbl_805AC4A4: + .incbin "baserom.dol", 0x3F8D44, 0x4 +.global lbl_805AC4A8 +lbl_805AC4A8: + .incbin "baserom.dol", 0x3F8D48, 0x4 +.global lbl_805AC4AC +lbl_805AC4AC: + .incbin "baserom.dol", 0x3F8D4C, 0x4 +.global lbl_805AC4B0 +lbl_805AC4B0: + .incbin "baserom.dol", 0x3F8D50, 0x4 +.global lbl_805AC4B4 +lbl_805AC4B4: + .incbin "baserom.dol", 0x3F8D54, 0x4 +.global lbl_805AC4B8 +lbl_805AC4B8: + .incbin "baserom.dol", 0x3F8D58, 0x4 +.global lbl_805AC4BC +lbl_805AC4BC: + .incbin "baserom.dol", 0x3F8D5C, 0x4 +.global lbl_805AC4C0 +lbl_805AC4C0: + .incbin "baserom.dol", 0x3F8D60, 0x4 +.global lbl_805AC4C4 +lbl_805AC4C4: + .incbin "baserom.dol", 0x3F8D64, 0x4 +.global lbl_805AC4C8 +lbl_805AC4C8: + .incbin "baserom.dol", 0x3F8D68, 0x4 +.global lbl_805AC4CC +lbl_805AC4CC: + .incbin "baserom.dol", 0x3F8D6C, 0x4 +.global lbl_805AC4D0 +lbl_805AC4D0: + .incbin "baserom.dol", 0x3F8D70, 0x4 +.global lbl_805AC4D4 +lbl_805AC4D4: + .incbin "baserom.dol", 0x3F8D74, 0x4 +.global lbl_805AC4D8 +lbl_805AC4D8: + .incbin "baserom.dol", 0x3F8D78, 0x4 +.global lbl_805AC4DC +lbl_805AC4DC: + .incbin "baserom.dol", 0x3F8D7C, 0x4 +.global lbl_805AC4E0 +lbl_805AC4E0: + .incbin "baserom.dol", 0x3F8D80, 0x4 +.global lbl_805AC4E4 +lbl_805AC4E4: + .incbin "baserom.dol", 0x3F8D84, 0x4 +.global lbl_805AC4E8 +lbl_805AC4E8: + .incbin "baserom.dol", 0x3F8D88, 0x4 +.global lbl_805AC4EC +lbl_805AC4EC: + .incbin "baserom.dol", 0x3F8D8C, 0x4 +.global lbl_805AC4F0 +lbl_805AC4F0: + .incbin "baserom.dol", 0x3F8D90, 0x4 +.global lbl_805AC4F4 +lbl_805AC4F4: + .incbin "baserom.dol", 0x3F8D94, 0x4 +.global lbl_805AC4F8 +lbl_805AC4F8: + .incbin "baserom.dol", 0x3F8D98, 0x8 +.global lbl_805AC500 +lbl_805AC500: + .incbin "baserom.dol", 0x3F8DA0, 0x4 +.global lbl_805AC504 +lbl_805AC504: + .incbin "baserom.dol", 0x3F8DA4, 0x4 +.global lbl_805AC508 +lbl_805AC508: + .incbin "baserom.dol", 0x3F8DA8, 0x4 +.global lbl_805AC50C +lbl_805AC50C: + .incbin "baserom.dol", 0x3F8DAC, 0x4 +.global lbl_805AC510 +lbl_805AC510: + .incbin "baserom.dol", 0x3F8DB0, 0x4 +.global lbl_805AC514 +lbl_805AC514: + .incbin "baserom.dol", 0x3F8DB4, 0x4 +.global lbl_805AC518 +lbl_805AC518: + .incbin "baserom.dol", 0x3F8DB8, 0x4 +.global lbl_805AC51C +lbl_805AC51C: + .incbin "baserom.dol", 0x3F8DBC, 0x4 +.global lbl_805AC520 +lbl_805AC520: + .incbin "baserom.dol", 0x3F8DC0, 0x4 +.global lbl_805AC524 +lbl_805AC524: + .incbin "baserom.dol", 0x3F8DC4, 0x4 +.global lbl_805AC528 +lbl_805AC528: + .incbin "baserom.dol", 0x3F8DC8, 0x8 +.global lbl_805AC530 +lbl_805AC530: + .incbin "baserom.dol", 0x3F8DD0, 0x8 +.global lbl_805AC538 +lbl_805AC538: + .incbin "baserom.dol", 0x3F8DD8, 0x8 +.global lbl_805AC540 +lbl_805AC540: + .incbin "baserom.dol", 0x3F8DE0, 0x4 +.global lbl_805AC544 +lbl_805AC544: + .incbin "baserom.dol", 0x3F8DE4, 0x4 +.global lbl_805AC548 +lbl_805AC548: + .incbin "baserom.dol", 0x3F8DE8, 0x4 +.global lbl_805AC54C +lbl_805AC54C: + .incbin "baserom.dol", 0x3F8DEC, 0x4 +.global lbl_805AC550 +lbl_805AC550: + .incbin "baserom.dol", 0x3F8DF0, 0x4 +.global lbl_805AC554 +lbl_805AC554: + .incbin "baserom.dol", 0x3F8DF4, 0x4 +.global lbl_805AC558 +lbl_805AC558: + .incbin "baserom.dol", 0x3F8DF8, 0x4 +.global lbl_805AC55C +lbl_805AC55C: + .incbin "baserom.dol", 0x3F8DFC, 0x4 +.global lbl_805AC560 +lbl_805AC560: + .incbin "baserom.dol", 0x3F8E00, 0x4 +.global lbl_805AC564 +lbl_805AC564: + .incbin "baserom.dol", 0x3F8E04, 0x4 +.global lbl_805AC568 +lbl_805AC568: + .incbin "baserom.dol", 0x3F8E08, 0x4 +.global lbl_805AC56C +lbl_805AC56C: + .incbin "baserom.dol", 0x3F8E0C, 0x4 +.global lbl_805AC570 +lbl_805AC570: + .incbin "baserom.dol", 0x3F8E10, 0x4 +.global lbl_805AC574 +lbl_805AC574: + .incbin "baserom.dol", 0x3F8E14, 0x4 +.global lbl_805AC578 +lbl_805AC578: + .incbin "baserom.dol", 0x3F8E18, 0x4 +.global lbl_805AC57C +lbl_805AC57C: + .incbin "baserom.dol", 0x3F8E1C, 0x4 +.global lbl_805AC580 +lbl_805AC580: + .incbin "baserom.dol", 0x3F8E20, 0x4 +.global lbl_805AC584 +lbl_805AC584: + .incbin "baserom.dol", 0x3F8E24, 0x4 +.global lbl_805AC588 +lbl_805AC588: + .incbin "baserom.dol", 0x3F8E28, 0x8 +.global lbl_805AC590 +lbl_805AC590: + .incbin "baserom.dol", 0x3F8E30, 0x8 +.global lbl_805AC598 +lbl_805AC598: + .incbin "baserom.dol", 0x3F8E38, 0x4 +.global lbl_805AC59C +lbl_805AC59C: + .incbin "baserom.dol", 0x3F8E3C, 0x4 +.global lbl_805AC5A0 +lbl_805AC5A0: + .incbin "baserom.dol", 0x3F8E40, 0x8 +.global lbl_805AC5A8 +lbl_805AC5A8: + .incbin "baserom.dol", 0x3F8E48, 0x8 +.global lbl_805AC5B0 +lbl_805AC5B0: + .incbin "baserom.dol", 0x3F8E50, 0x4 +.global lbl_805AC5B4 +lbl_805AC5B4: + .incbin "baserom.dol", 0x3F8E54, 0x4 +.global lbl_805AC5B8 +lbl_805AC5B8: + .incbin "baserom.dol", 0x3F8E58, 0x4 +.global lbl_805AC5BC +lbl_805AC5BC: + .incbin "baserom.dol", 0x3F8E5C, 0x8 +.global lbl_805AC5C4 +lbl_805AC5C4: + .incbin "baserom.dol", 0x3F8E64, 0x8 +.global lbl_805AC5CC +lbl_805AC5CC: + .incbin "baserom.dol", 0x3F8E6C, 0x4 +.global lbl_805AC5D0 +lbl_805AC5D0: + .incbin "baserom.dol", 0x3F8E70, 0x4 +.global lbl_805AC5D4 +lbl_805AC5D4: + .incbin "baserom.dol", 0x3F8E74, 0x4 +.global lbl_805AC5D8 +lbl_805AC5D8: + .incbin "baserom.dol", 0x3F8E78, 0x4 +.global lbl_805AC5DC +lbl_805AC5DC: + .incbin "baserom.dol", 0x3F8E7C, 0x4 +.global lbl_805AC5E0 +lbl_805AC5E0: + .incbin "baserom.dol", 0x3F8E80, 0x4 +.global lbl_805AC5E4 +lbl_805AC5E4: + .incbin "baserom.dol", 0x3F8E84, 0x4 +.global lbl_805AC5E8 +lbl_805AC5E8: + .incbin "baserom.dol", 0x3F8E88, 0x4 +.global lbl_805AC5EC +lbl_805AC5EC: + .incbin "baserom.dol", 0x3F8E8C, 0x4 +.global lbl_805AC5F0 +lbl_805AC5F0: + .incbin "baserom.dol", 0x3F8E90, 0x4 +.global lbl_805AC5F4 +lbl_805AC5F4: + .incbin "baserom.dol", 0x3F8E94, 0x4 +.global lbl_805AC5F8 +lbl_805AC5F8: + .incbin "baserom.dol", 0x3F8E98, 0x4 +.global lbl_805AC5FC +lbl_805AC5FC: + .incbin "baserom.dol", 0x3F8E9C, 0x4 +.global lbl_805AC600 +lbl_805AC600: + .incbin "baserom.dol", 0x3F8EA0, 0x4 +.global lbl_805AC604 +lbl_805AC604: + .incbin "baserom.dol", 0x3F8EA4, 0x4 +.global lbl_805AC608 +lbl_805AC608: + .incbin "baserom.dol", 0x3F8EA8, 0x4 +.global lbl_805AC60C +lbl_805AC60C: + .incbin "baserom.dol", 0x3F8EAC, 0x4 +.global lbl_805AC610 +lbl_805AC610: + .incbin "baserom.dol", 0x3F8EB0, 0x4 +.global lbl_805AC614 +lbl_805AC614: + .incbin "baserom.dol", 0x3F8EB4, 0x4 +.global lbl_805AC618 +lbl_805AC618: + .incbin "baserom.dol", 0x3F8EB8, 0x4 +.global lbl_805AC61C +lbl_805AC61C: + .incbin "baserom.dol", 0x3F8EBC, 0x4 +.global lbl_805AC620 +lbl_805AC620: + .incbin "baserom.dol", 0x3F8EC0, 0x8 +.global lbl_805AC628 +lbl_805AC628: + .incbin "baserom.dol", 0x3F8EC8, 0x4 +.global lbl_805AC62C +lbl_805AC62C: + .incbin "baserom.dol", 0x3F8ECC, 0x4 +.global lbl_805AC630 +lbl_805AC630: + .incbin "baserom.dol", 0x3F8ED0, 0x4 +.global lbl_805AC634 +lbl_805AC634: + .incbin "baserom.dol", 0x3F8ED4, 0x4 +.global lbl_805AC638 +lbl_805AC638: + .incbin "baserom.dol", 0x3F8ED8, 0x4 +.global lbl_805AC63C +lbl_805AC63C: + .incbin "baserom.dol", 0x3F8EDC, 0x4 +.global lbl_805AC640 +lbl_805AC640: + .incbin "baserom.dol", 0x3F8EE0, 0x4 +.global lbl_805AC644 +lbl_805AC644: + .incbin "baserom.dol", 0x3F8EE4, 0x4 +.global lbl_805AC648 +lbl_805AC648: + .incbin "baserom.dol", 0x3F8EE8, 0x4 +.global lbl_805AC64C +lbl_805AC64C: + .incbin "baserom.dol", 0x3F8EEC, 0x4 +.global lbl_805AC650 +lbl_805AC650: + .incbin "baserom.dol", 0x3F8EF0, 0x4 +.global lbl_805AC654 +lbl_805AC654: + .incbin "baserom.dol", 0x3F8EF4, 0x4 +.global lbl_805AC658 +lbl_805AC658: + .incbin "baserom.dol", 0x3F8EF8, 0x4 +.global lbl_805AC65C +lbl_805AC65C: + .incbin "baserom.dol", 0x3F8EFC, 0x4 +.global lbl_805AC660 +lbl_805AC660: + .incbin "baserom.dol", 0x3F8F00, 0x8 +.global lbl_805AC668 +lbl_805AC668: + .incbin "baserom.dol", 0x3F8F08, 0x4 +.global lbl_805AC66C +lbl_805AC66C: + .incbin "baserom.dol", 0x3F8F0C, 0x4 +.global lbl_805AC670 +lbl_805AC670: + .incbin "baserom.dol", 0x3F8F10, 0x4 +.global lbl_805AC674 +lbl_805AC674: + .incbin "baserom.dol", 0x3F8F14, 0x4 +.global lbl_805AC678 +lbl_805AC678: + .incbin "baserom.dol", 0x3F8F18, 0x4 +.global lbl_805AC67C +lbl_805AC67C: + .incbin "baserom.dol", 0x3F8F1C, 0x4 +.global lbl_805AC680 +lbl_805AC680: + .incbin "baserom.dol", 0x3F8F20, 0x4 +.global lbl_805AC684 +lbl_805AC684: + .incbin "baserom.dol", 0x3F8F24, 0x4 +.global lbl_805AC688 +lbl_805AC688: + .incbin "baserom.dol", 0x3F8F28, 0x4 +.global lbl_805AC68C +lbl_805AC68C: + .incbin "baserom.dol", 0x3F8F2C, 0x4 +.global lbl_805AC690 +lbl_805AC690: + .incbin "baserom.dol", 0x3F8F30, 0x4 +.global lbl_805AC694 +lbl_805AC694: + .incbin "baserom.dol", 0x3F8F34, 0x4 +.global lbl_805AC698 +lbl_805AC698: + .incbin "baserom.dol", 0x3F8F38, 0x8 +.global lbl_805AC6A0 +lbl_805AC6A0: + .incbin "baserom.dol", 0x3F8F40, 0x4 +.global lbl_805AC6A4 +lbl_805AC6A4: + .incbin "baserom.dol", 0x3F8F44, 0x4 +.global lbl_805AC6A8 +lbl_805AC6A8: + .incbin "baserom.dol", 0x3F8F48, 0x4 +.global lbl_805AC6AC +lbl_805AC6AC: + .incbin "baserom.dol", 0x3F8F4C, 0x4 +.global lbl_805AC6B0 +lbl_805AC6B0: + .incbin "baserom.dol", 0x3F8F50, 0x4 +.global lbl_805AC6B4 +lbl_805AC6B4: + .incbin "baserom.dol", 0x3F8F54, 0x4 +.global lbl_805AC6B8 +lbl_805AC6B8: + .incbin "baserom.dol", 0x3F8F58, 0x8 +.global lbl_805AC6C0 +lbl_805AC6C0: + .incbin "baserom.dol", 0x3F8F60, 0x8 +.global lbl_805AC6C8 +lbl_805AC6C8: + .incbin "baserom.dol", 0x3F8F68, 0x8 +.global lbl_805AC6D0 +lbl_805AC6D0: + .incbin "baserom.dol", 0x3F8F70, 0x4 +.global lbl_805AC6D4 +lbl_805AC6D4: + .incbin "baserom.dol", 0x3F8F74, 0x4 +.global lbl_805AC6D8 +lbl_805AC6D8: + .incbin "baserom.dol", 0x3F8F78, 0x4 +.global lbl_805AC6DC +lbl_805AC6DC: + .incbin "baserom.dol", 0x3F8F7C, 0x4 +.global lbl_805AC6E0 +lbl_805AC6E0: + .incbin "baserom.dol", 0x3F8F80, 0x4 +.global lbl_805AC6E4 +lbl_805AC6E4: + .incbin "baserom.dol", 0x3F8F84, 0x4 +.global lbl_805AC6E8 +lbl_805AC6E8: + .incbin "baserom.dol", 0x3F8F88, 0x4 +.global lbl_805AC6EC +lbl_805AC6EC: + .incbin "baserom.dol", 0x3F8F8C, 0x4 +.global lbl_805AC6F0 +lbl_805AC6F0: + .incbin "baserom.dol", 0x3F8F90, 0x8 +.global lbl_805AC6F8 +lbl_805AC6F8: + .incbin "baserom.dol", 0x3F8F98, 0x4 +.global lbl_805AC6FC +lbl_805AC6FC: + .incbin "baserom.dol", 0x3F8F9C, 0x4 +.global lbl_805AC700 +lbl_805AC700: + .incbin "baserom.dol", 0x3F8FA0, 0x8 +.global lbl_805AC708 +lbl_805AC708: + .incbin "baserom.dol", 0x3F8FA8, 0x4 +.global lbl_805AC70C +lbl_805AC70C: + .incbin "baserom.dol", 0x3F8FAC, 0x4 +.global lbl_805AC710 +lbl_805AC710: + .incbin "baserom.dol", 0x3F8FB0, 0x8 +.global lbl_805AC718 +lbl_805AC718: + .incbin "baserom.dol", 0x3F8FB8, 0x4 +.global lbl_805AC71C +lbl_805AC71C: + .incbin "baserom.dol", 0x3F8FBC, 0x4 +.global lbl_805AC720 +lbl_805AC720: + .incbin "baserom.dol", 0x3F8FC0, 0x4 +.global lbl_805AC724 +lbl_805AC724: + .incbin "baserom.dol", 0x3F8FC4, 0x4 +.global lbl_805AC728 +lbl_805AC728: + .incbin "baserom.dol", 0x3F8FC8, 0x4 +.global lbl_805AC72C +lbl_805AC72C: + .incbin "baserom.dol", 0x3F8FCC, 0x4 +.global lbl_805AC730 +lbl_805AC730: + .incbin "baserom.dol", 0x3F8FD0, 0x4 +.global lbl_805AC734 +lbl_805AC734: + .incbin "baserom.dol", 0x3F8FD4, 0x4 +.global lbl_805AC738 +lbl_805AC738: + .incbin "baserom.dol", 0x3F8FD8, 0x4 +.global lbl_805AC73C +lbl_805AC73C: + .incbin "baserom.dol", 0x3F8FDC, 0x4 +.global lbl_805AC740 +lbl_805AC740: + .incbin "baserom.dol", 0x3F8FE0, 0x4 +.global lbl_805AC744 +lbl_805AC744: + .incbin "baserom.dol", 0x3F8FE4, 0x4 +.global lbl_805AC748 +lbl_805AC748: + .incbin "baserom.dol", 0x3F8FE8, 0x4 +.global lbl_805AC74C +lbl_805AC74C: + .incbin "baserom.dol", 0x3F8FEC, 0x4 +.global lbl_805AC750 +lbl_805AC750: + .incbin "baserom.dol", 0x3F8FF0, 0x4 +.global lbl_805AC754 +lbl_805AC754: + .incbin "baserom.dol", 0x3F8FF4, 0x4 +.global lbl_805AC758 +lbl_805AC758: + .incbin "baserom.dol", 0x3F8FF8, 0x4 +.global lbl_805AC75C +lbl_805AC75C: + .incbin "baserom.dol", 0x3F8FFC, 0x4 +.global lbl_805AC760 +lbl_805AC760: + .incbin "baserom.dol", 0x3F9000, 0x4 +.global lbl_805AC764 +lbl_805AC764: + .incbin "baserom.dol", 0x3F9004, 0x4 +.global lbl_805AC768 +lbl_805AC768: + .incbin "baserom.dol", 0x3F9008, 0x4 +.global lbl_805AC76C +lbl_805AC76C: + .incbin "baserom.dol", 0x3F900C, 0x4 +.global lbl_805AC770 +lbl_805AC770: + .incbin "baserom.dol", 0x3F9010, 0x4 +.global lbl_805AC774 +lbl_805AC774: + .incbin "baserom.dol", 0x3F9014, 0x4 +.global lbl_805AC778 +lbl_805AC778: + .incbin "baserom.dol", 0x3F9018, 0x8 +.global lbl_805AC780 +lbl_805AC780: + .incbin "baserom.dol", 0x3F9020, 0x8 +.global lbl_805AC788 +lbl_805AC788: + .incbin "baserom.dol", 0x3F9028, 0x4 +.global lbl_805AC78C +lbl_805AC78C: + .incbin "baserom.dol", 0x3F902C, 0x4 +.global lbl_805AC790 +lbl_805AC790: + .incbin "baserom.dol", 0x3F9030, 0x4 +.global lbl_805AC794 +lbl_805AC794: + .incbin "baserom.dol", 0x3F9034, 0x4 +.global lbl_805AC798 +lbl_805AC798: + .incbin "baserom.dol", 0x3F9038, 0x4 +.global lbl_805AC79C +lbl_805AC79C: + .incbin "baserom.dol", 0x3F903C, 0x4 +.global lbl_805AC7A0 +lbl_805AC7A0: + .incbin "baserom.dol", 0x3F9040, 0x4 +.global lbl_805AC7A4 +lbl_805AC7A4: + .incbin "baserom.dol", 0x3F9044, 0x8 +.global lbl_805AC7AC +lbl_805AC7AC: + .incbin "baserom.dol", 0x3F904C, 0x4 +.global lbl_805AC7B0 +lbl_805AC7B0: + .incbin "baserom.dol", 0x3F9050, 0x4 +.global lbl_805AC7B4 +lbl_805AC7B4: + .incbin "baserom.dol", 0x3F9054, 0x4 +.global lbl_805AC7B8 +lbl_805AC7B8: + .incbin "baserom.dol", 0x3F9058, 0x4 +.global lbl_805AC7BC +lbl_805AC7BC: + .incbin "baserom.dol", 0x3F905C, 0x4 +.global lbl_805AC7C0 +lbl_805AC7C0: + .incbin "baserom.dol", 0x3F9060, 0x4 +.global lbl_805AC7C4 +lbl_805AC7C4: + .incbin "baserom.dol", 0x3F9064, 0x4 +.global lbl_805AC7C8 +lbl_805AC7C8: + .incbin "baserom.dol", 0x3F9068, 0x4 +.global lbl_805AC7CC +lbl_805AC7CC: + .incbin "baserom.dol", 0x3F906C, 0x4 +.global lbl_805AC7D0 +lbl_805AC7D0: + .incbin "baserom.dol", 0x3F9070, 0x4 +.global lbl_805AC7D4 +lbl_805AC7D4: + .incbin "baserom.dol", 0x3F9074, 0x4 +.global lbl_805AC7D8 +lbl_805AC7D8: + .incbin "baserom.dol", 0x3F9078, 0x4 +.global lbl_805AC7DC +lbl_805AC7DC: + .incbin "baserom.dol", 0x3F907C, 0x4 +.global lbl_805AC7E0 +lbl_805AC7E0: + .incbin "baserom.dol", 0x3F9080, 0x4 +.global lbl_805AC7E4 +lbl_805AC7E4: + .incbin "baserom.dol", 0x3F9084, 0x4 +.global lbl_805AC7E8 +lbl_805AC7E8: + .incbin "baserom.dol", 0x3F9088, 0x4 +.global lbl_805AC7EC +lbl_805AC7EC: + .incbin "baserom.dol", 0x3F908C, 0x4 +.global lbl_805AC7F0 +lbl_805AC7F0: + .incbin "baserom.dol", 0x3F9090, 0x4 +.global lbl_805AC7F4 +lbl_805AC7F4: + .incbin "baserom.dol", 0x3F9094, 0x4 +.global lbl_805AC7F8 +lbl_805AC7F8: + .incbin "baserom.dol", 0x3F9098, 0x8 +.global lbl_805AC800 +lbl_805AC800: + .incbin "baserom.dol", 0x3F90A0, 0x8 +.global lbl_805AC808 +lbl_805AC808: + .incbin "baserom.dol", 0x3F90A8, 0x4 +.global lbl_805AC80C +lbl_805AC80C: + .incbin "baserom.dol", 0x3F90AC, 0x4 +.global lbl_805AC810 +lbl_805AC810: + .incbin "baserom.dol", 0x3F90B0, 0x4 +.global lbl_805AC814 +lbl_805AC814: + .incbin "baserom.dol", 0x3F90B4, 0x4 +.global lbl_805AC818 +lbl_805AC818: + .incbin "baserom.dol", 0x3F90B8, 0x4 +.global lbl_805AC81C +lbl_805AC81C: + .incbin "baserom.dol", 0x3F90BC, 0x4 +.global lbl_805AC820 +lbl_805AC820: + .incbin "baserom.dol", 0x3F90C0, 0x4 +.global lbl_805AC824 +lbl_805AC824: + .incbin "baserom.dol", 0x3F90C4, 0x4 +.global lbl_805AC828 +lbl_805AC828: + .incbin "baserom.dol", 0x3F90C8, 0x8 +.global lbl_805AC830 +lbl_805AC830: + .incbin "baserom.dol", 0x3F90D0, 0x8 +.global lbl_805AC838 +lbl_805AC838: + .incbin "baserom.dol", 0x3F90D8, 0x4 +.global lbl_805AC83C +lbl_805AC83C: + .incbin "baserom.dol", 0x3F90DC, 0x4 +.global lbl_805AC840 +lbl_805AC840: + .incbin "baserom.dol", 0x3F90E0, 0x8 +.global lbl_805AC848 +lbl_805AC848: + .incbin "baserom.dol", 0x3F90E8, 0x4 +.global lbl_805AC84C +lbl_805AC84C: + .incbin "baserom.dol", 0x3F90EC, 0x4 +.global lbl_805AC850 +lbl_805AC850: + .incbin "baserom.dol", 0x3F90F0, 0x4 +.global lbl_805AC854 +lbl_805AC854: + .incbin "baserom.dol", 0x3F90F4, 0x4 +.global lbl_805AC858 +lbl_805AC858: + .incbin "baserom.dol", 0x3F90F8, 0x8 +.global lbl_805AC860 +lbl_805AC860: + .incbin "baserom.dol", 0x3F9100, 0x4 +.global lbl_805AC864 +lbl_805AC864: + .incbin "baserom.dol", 0x3F9104, 0x4 +.global lbl_805AC868 +lbl_805AC868: + .incbin "baserom.dol", 0x3F9108, 0x4 +.global lbl_805AC86C +lbl_805AC86C: + .incbin "baserom.dol", 0x3F910C, 0x4 +.global lbl_805AC870 +lbl_805AC870: + .incbin "baserom.dol", 0x3F9110, 0x4 +.global lbl_805AC874 +lbl_805AC874: + .incbin "baserom.dol", 0x3F9114, 0x4 +.global lbl_805AC878 +lbl_805AC878: + .incbin "baserom.dol", 0x3F9118, 0x4 +.global lbl_805AC87C +lbl_805AC87C: + .incbin "baserom.dol", 0x3F911C, 0x4 +.global lbl_805AC880 +lbl_805AC880: + .incbin "baserom.dol", 0x3F9120, 0x4 +.global lbl_805AC884 +lbl_805AC884: + .incbin "baserom.dol", 0x3F9124, 0x4 +.global lbl_805AC888 +lbl_805AC888: + .incbin "baserom.dol", 0x3F9128, 0x8 +.global lbl_805AC890 +lbl_805AC890: + .incbin "baserom.dol", 0x3F9130, 0x4 +.global lbl_805AC894 +lbl_805AC894: + .incbin "baserom.dol", 0x3F9134, 0x4 +.global lbl_805AC898 +lbl_805AC898: + .incbin "baserom.dol", 0x3F9138, 0x8 +.global lbl_805AC8A0 +lbl_805AC8A0: + .incbin "baserom.dol", 0x3F9140, 0x4 +.global lbl_805AC8A4 +lbl_805AC8A4: + .incbin "baserom.dol", 0x3F9144, 0x4 +.global lbl_805AC8A8 +lbl_805AC8A8: + .incbin "baserom.dol", 0x3F9148, 0x8 +.global lbl_805AC8B0 +lbl_805AC8B0: + .incbin "baserom.dol", 0x3F9150, 0x4 +.global lbl_805AC8B4 +lbl_805AC8B4: + .incbin "baserom.dol", 0x3F9154, 0x4 +.global lbl_805AC8B8 +lbl_805AC8B8: + .incbin "baserom.dol", 0x3F9158, 0x8 +.global lbl_805AC8C0 +lbl_805AC8C0: + .incbin "baserom.dol", 0x3F9160, 0x4 +.global lbl_805AC8C4 +lbl_805AC8C4: + .incbin "baserom.dol", 0x3F9164, 0x4 +.global lbl_805AC8C8 +lbl_805AC8C8: + .incbin "baserom.dol", 0x3F9168, 0x8 +.global lbl_805AC8D0 +lbl_805AC8D0: + .incbin "baserom.dol", 0x3F9170, 0x4 +.global lbl_805AC8D4 +lbl_805AC8D4: + .incbin "baserom.dol", 0x3F9174, 0x4 +.global lbl_805AC8D8 +lbl_805AC8D8: + .incbin "baserom.dol", 0x3F9178, 0x4 +.global lbl_805AC8DC +lbl_805AC8DC: + .incbin "baserom.dol", 0x3F917C, 0x4 +.global lbl_805AC8E0 +lbl_805AC8E0: + .incbin "baserom.dol", 0x3F9180, 0x8 +.global lbl_805AC8E8 +lbl_805AC8E8: + .incbin "baserom.dol", 0x3F9188, 0x4 +.global lbl_805AC8EC +lbl_805AC8EC: + .incbin "baserom.dol", 0x3F918C, 0x4 +.global lbl_805AC8F0 +lbl_805AC8F0: + .incbin "baserom.dol", 0x3F9190, 0x4 +.global lbl_805AC8F4 +lbl_805AC8F4: + .incbin "baserom.dol", 0x3F9194, 0x4 +.global lbl_805AC8F8 +lbl_805AC8F8: + .incbin "baserom.dol", 0x3F9198, 0x8 +.global lbl_805AC900 +lbl_805AC900: + .incbin "baserom.dol", 0x3F91A0, 0x4 +.global lbl_805AC904 +lbl_805AC904: + .incbin "baserom.dol", 0x3F91A4, 0x4 +.global lbl_805AC908 +lbl_805AC908: + .incbin "baserom.dol", 0x3F91A8, 0x4 +.global lbl_805AC90C +lbl_805AC90C: + .incbin "baserom.dol", 0x3F91AC, 0x4 +.global lbl_805AC910 +lbl_805AC910: + .incbin "baserom.dol", 0x3F91B0, 0x4 +.global lbl_805AC914 +lbl_805AC914: + .incbin "baserom.dol", 0x3F91B4, 0x4 +.global lbl_805AC918 +lbl_805AC918: + .incbin "baserom.dol", 0x3F91B8, 0x4 +.global lbl_805AC91C +lbl_805AC91C: + .incbin "baserom.dol", 0x3F91BC, 0x4 +.global lbl_805AC920 +lbl_805AC920: + .incbin "baserom.dol", 0x3F91C0, 0x4 +.global lbl_805AC924 +lbl_805AC924: + .incbin "baserom.dol", 0x3F91C4, 0x4 +.global lbl_805AC928 +lbl_805AC928: + .incbin "baserom.dol", 0x3F91C8, 0x8 +.global lbl_805AC930 +lbl_805AC930: + .incbin "baserom.dol", 0x3F91D0, 0x8 +.global lbl_805AC938 +lbl_805AC938: + .incbin "baserom.dol", 0x3F91D8, 0x8 +.global lbl_805AC940 +lbl_805AC940: + .incbin "baserom.dol", 0x3F91E0, 0x8 +.global lbl_805AC948 +lbl_805AC948: + .incbin "baserom.dol", 0x3F91E8, 0x4 +.global lbl_805AC94C +lbl_805AC94C: + .incbin "baserom.dol", 0x3F91EC, 0x4 +.global lbl_805AC950 +lbl_805AC950: + .incbin "baserom.dol", 0x3F91F0, 0x8 +.global lbl_805AC958 +lbl_805AC958: + .incbin "baserom.dol", 0x3F91F8, 0x8 +.global lbl_805AC960 +lbl_805AC960: + .incbin "baserom.dol", 0x3F9200, 0x4 +.global lbl_805AC964 +lbl_805AC964: + .incbin "baserom.dol", 0x3F9204, 0x4 +.global lbl_805AC968 +lbl_805AC968: + .incbin "baserom.dol", 0x3F9208, 0x8 +.global lbl_805AC970 +lbl_805AC970: + .incbin "baserom.dol", 0x3F9210, 0x4 +.global lbl_805AC974 +lbl_805AC974: + .incbin "baserom.dol", 0x3F9214, 0x4 +.global lbl_805AC978 +lbl_805AC978: + .incbin "baserom.dol", 0x3F9218, 0x4 +.global lbl_805AC97C +lbl_805AC97C: + .incbin "baserom.dol", 0x3F921C, 0x4 +.global lbl_805AC980 +lbl_805AC980: + .incbin "baserom.dol", 0x3F9220, 0x4 +.global lbl_805AC984 +lbl_805AC984: + .incbin "baserom.dol", 0x3F9224, 0x4 +.global lbl_805AC988 +lbl_805AC988: + .incbin "baserom.dol", 0x3F9228, 0x4 +.global lbl_805AC98C +lbl_805AC98C: + .incbin "baserom.dol", 0x3F922C, 0x4 +.global lbl_805AC990 +lbl_805AC990: + .incbin "baserom.dol", 0x3F9230, 0x4 +.global lbl_805AC994 +lbl_805AC994: + .incbin "baserom.dol", 0x3F9234, 0x4 +.global lbl_805AC998 +lbl_805AC998: + .incbin "baserom.dol", 0x3F9238, 0x4 +.global lbl_805AC99C +lbl_805AC99C: + .incbin "baserom.dol", 0x3F923C, 0x4 +.global lbl_805AC9A0 +lbl_805AC9A0: + .incbin "baserom.dol", 0x3F9240, 0x4 +.global lbl_805AC9A4 +lbl_805AC9A4: + .incbin "baserom.dol", 0x3F9244, 0x4 +.global lbl_805AC9A8 +lbl_805AC9A8: + .incbin "baserom.dol", 0x3F9248, 0x4 +.global lbl_805AC9AC +lbl_805AC9AC: + .incbin "baserom.dol", 0x3F924C, 0x4 +.global lbl_805AC9B0 +lbl_805AC9B0: + .incbin "baserom.dol", 0x3F9250, 0x4 +.global lbl_805AC9B4 +lbl_805AC9B4: + .incbin "baserom.dol", 0x3F9254, 0x4 +.global lbl_805AC9B8 +lbl_805AC9B8: + .incbin "baserom.dol", 0x3F9258, 0x4 +.global lbl_805AC9BC +lbl_805AC9BC: + .incbin "baserom.dol", 0x3F925C, 0x4 +.global lbl_805AC9C0 +lbl_805AC9C0: + .incbin "baserom.dol", 0x3F9260, 0x4 +.global lbl_805AC9C4 +lbl_805AC9C4: + .incbin "baserom.dol", 0x3F9264, 0x4 +.global lbl_805AC9C8 +lbl_805AC9C8: + .incbin "baserom.dol", 0x3F9268, 0x8 +.global lbl_805AC9D0 +lbl_805AC9D0: + .incbin "baserom.dol", 0x3F9270, 0x4 +.global lbl_805AC9D4 +lbl_805AC9D4: + .incbin "baserom.dol", 0x3F9274, 0x4 +.global lbl_805AC9D8 +lbl_805AC9D8: + .incbin "baserom.dol", 0x3F9278, 0x4 +.global lbl_805AC9DC +lbl_805AC9DC: + .incbin "baserom.dol", 0x3F927C, 0x4 +.global lbl_805AC9E0 +lbl_805AC9E0: + .incbin "baserom.dol", 0x3F9280, 0x4 +.global lbl_805AC9E4 +lbl_805AC9E4: + .incbin "baserom.dol", 0x3F9284, 0x4 +.global lbl_805AC9E8 +lbl_805AC9E8: + .incbin "baserom.dol", 0x3F9288, 0x4 +.global lbl_805AC9EC +lbl_805AC9EC: + .incbin "baserom.dol", 0x3F928C, 0x4 +.global lbl_805AC9F0 +lbl_805AC9F0: + .incbin "baserom.dol", 0x3F9290, 0x4 +.global lbl_805AC9F4 +lbl_805AC9F4: + .incbin "baserom.dol", 0x3F9294, 0x4 +.global lbl_805AC9F8 +lbl_805AC9F8: + .incbin "baserom.dol", 0x3F9298, 0x4 +.global lbl_805AC9FC +lbl_805AC9FC: + .incbin "baserom.dol", 0x3F929C, 0x4 +.global lbl_805ACA00 +lbl_805ACA00: + .incbin "baserom.dol", 0x3F92A0, 0x4 +.global lbl_805ACA04 +lbl_805ACA04: + .incbin "baserom.dol", 0x3F92A4, 0x4 +.global lbl_805ACA08 +lbl_805ACA08: + .incbin "baserom.dol", 0x3F92A8, 0x4 +.global lbl_805ACA0C +lbl_805ACA0C: + .incbin "baserom.dol", 0x3F92AC, 0x4 +.global lbl_805ACA10 +lbl_805ACA10: + .incbin "baserom.dol", 0x3F92B0, 0x4 +.global lbl_805ACA14 +lbl_805ACA14: + .incbin "baserom.dol", 0x3F92B4, 0x4 +.global lbl_805ACA18 +lbl_805ACA18: + .incbin "baserom.dol", 0x3F92B8, 0x4 +.global lbl_805ACA1C +lbl_805ACA1C: + .incbin "baserom.dol", 0x3F92BC, 0x4 +.global lbl_805ACA20 +lbl_805ACA20: + .incbin "baserom.dol", 0x3F92C0, 0x4 +.global lbl_805ACA24 +lbl_805ACA24: + .incbin "baserom.dol", 0x3F92C4, 0x4 +.global lbl_805ACA28 +lbl_805ACA28: + .incbin "baserom.dol", 0x3F92C8, 0x4 +.global lbl_805ACA2C +lbl_805ACA2C: + .incbin "baserom.dol", 0x3F92CC, 0x4 +.global lbl_805ACA30 +lbl_805ACA30: + .incbin "baserom.dol", 0x3F92D0, 0x4 +.global lbl_805ACA34 +lbl_805ACA34: + .incbin "baserom.dol", 0x3F92D4, 0x4 +.global lbl_805ACA38 +lbl_805ACA38: + .incbin "baserom.dol", 0x3F92D8, 0x4 +.global lbl_805ACA3C +lbl_805ACA3C: + .incbin "baserom.dol", 0x3F92DC, 0x4 +.global lbl_805ACA40 +lbl_805ACA40: + .incbin "baserom.dol", 0x3F92E0, 0x8 +.global lbl_805ACA48 +lbl_805ACA48: + .incbin "baserom.dol", 0x3F92E8, 0x4 +.global lbl_805ACA4C +lbl_805ACA4C: + .incbin "baserom.dol", 0x3F92EC, 0x4 +.global lbl_805ACA50 +lbl_805ACA50: + .incbin "baserom.dol", 0x3F92F0, 0x4 +.global lbl_805ACA54 +lbl_805ACA54: + .incbin "baserom.dol", 0x3F92F4, 0x4 +.global lbl_805ACA58 +lbl_805ACA58: + .incbin "baserom.dol", 0x3F92F8, 0x4 +.global lbl_805ACA5C +lbl_805ACA5C: + .incbin "baserom.dol", 0x3F92FC, 0x4 +.global lbl_805ACA60 +lbl_805ACA60: + .incbin "baserom.dol", 0x3F9300, 0x4 +.global lbl_805ACA64 +lbl_805ACA64: + .incbin "baserom.dol", 0x3F9304, 0x4 +.global lbl_805ACA68 +lbl_805ACA68: + .incbin "baserom.dol", 0x3F9308, 0x4 +.global lbl_805ACA6C +lbl_805ACA6C: + .incbin "baserom.dol", 0x3F930C, 0x4 +.global lbl_805ACA70 +lbl_805ACA70: + .incbin "baserom.dol", 0x3F9310, 0x4 +.global lbl_805ACA74 +lbl_805ACA74: + .incbin "baserom.dol", 0x3F9314, 0x4 +.global lbl_805ACA78 +lbl_805ACA78: + .incbin "baserom.dol", 0x3F9318, 0x4 +.global lbl_805ACA7C +lbl_805ACA7C: + .incbin "baserom.dol", 0x3F931C, 0x4 +.global lbl_805ACA80 +lbl_805ACA80: + .incbin "baserom.dol", 0x3F9320, 0x4 +.global lbl_805ACA84 +lbl_805ACA84: + .incbin "baserom.dol", 0x3F9324, 0x4 +.global lbl_805ACA88 +lbl_805ACA88: + .incbin "baserom.dol", 0x3F9328, 0x4 +.global lbl_805ACA8C +lbl_805ACA8C: + .incbin "baserom.dol", 0x3F932C, 0x4 +.global lbl_805ACA90 +lbl_805ACA90: + .incbin "baserom.dol", 0x3F9330, 0x4 +.global lbl_805ACA94 +lbl_805ACA94: + .incbin "baserom.dol", 0x3F9334, 0x4 +.global lbl_805ACA98 +lbl_805ACA98: + .incbin "baserom.dol", 0x3F9338, 0x8 +.global lbl_805ACAA0 +lbl_805ACAA0: + .incbin "baserom.dol", 0x3F9340, 0x8 +.global lbl_805ACAA8 +lbl_805ACAA8: + .incbin "baserom.dol", 0x3F9348, 0x8 +.global lbl_805ACAB0 +lbl_805ACAB0: + .incbin "baserom.dol", 0x3F9350, 0x4 +.global lbl_805ACAB4 +lbl_805ACAB4: + .incbin "baserom.dol", 0x3F9354, 0x4 +.global lbl_805ACAB8 +lbl_805ACAB8: + .incbin "baserom.dol", 0x3F9358, 0x4 +.global lbl_805ACABC +lbl_805ACABC: + .incbin "baserom.dol", 0x3F935C, 0x4 +.global lbl_805ACAC0 +lbl_805ACAC0: + .incbin "baserom.dol", 0x3F9360, 0x4 +.global lbl_805ACAC4 +lbl_805ACAC4: + .incbin "baserom.dol", 0x3F9364, 0x4 +.global lbl_805ACAC8 +lbl_805ACAC8: + .incbin "baserom.dol", 0x3F9368, 0x4 +.global lbl_805ACACC +lbl_805ACACC: + .incbin "baserom.dol", 0x3F936C, 0x4 +.global lbl_805ACAD0 +lbl_805ACAD0: + .incbin "baserom.dol", 0x3F9370, 0x4 +.global lbl_805ACAD4 +lbl_805ACAD4: + .incbin "baserom.dol", 0x3F9374, 0x4 +.global lbl_805ACAD8 +lbl_805ACAD8: + .incbin "baserom.dol", 0x3F9378, 0x8 +.global lbl_805ACAE0 +lbl_805ACAE0: + .incbin "baserom.dol", 0x3F9380, 0x8 +.global lbl_805ACAE8 +lbl_805ACAE8: + .incbin "baserom.dol", 0x3F9388, 0x4 +.global lbl_805ACAEC +lbl_805ACAEC: + .incbin "baserom.dol", 0x3F938C, 0x4 +.global lbl_805ACAF0 +lbl_805ACAF0: + .incbin "baserom.dol", 0x3F9390, 0x4 +.global lbl_805ACAF4 +lbl_805ACAF4: + .incbin "baserom.dol", 0x3F9394, 0x4 +.global lbl_805ACAF8 +lbl_805ACAF8: + .incbin "baserom.dol", 0x3F9398, 0x4 +.global lbl_805ACAFC +lbl_805ACAFC: + .incbin "baserom.dol", 0x3F939C, 0x4 +.global lbl_805ACB00 +lbl_805ACB00: + .incbin "baserom.dol", 0x3F93A0, 0x8 +.global lbl_805ACB08 +lbl_805ACB08: + .incbin "baserom.dol", 0x3F93A8, 0x4 +.global lbl_805ACB0C +lbl_805ACB0C: + .incbin "baserom.dol", 0x3F93AC, 0x4 +.global lbl_805ACB10 +lbl_805ACB10: + .incbin "baserom.dol", 0x3F93B0, 0x4 +.global lbl_805ACB14 +lbl_805ACB14: + .incbin "baserom.dol", 0x3F93B4, 0x4 +.global lbl_805ACB18 +lbl_805ACB18: + .incbin "baserom.dol", 0x3F93B8, 0x4 +.global lbl_805ACB1C +lbl_805ACB1C: + .incbin "baserom.dol", 0x3F93BC, 0x4 +.global lbl_805ACB20 +lbl_805ACB20: + .incbin "baserom.dol", 0x3F93C0, 0x4 +.global lbl_805ACB24 +lbl_805ACB24: + .incbin "baserom.dol", 0x3F93C4, 0x4 +.global lbl_805ACB28 +lbl_805ACB28: + .incbin "baserom.dol", 0x3F93C8, 0x4 +.global lbl_805ACB2C +lbl_805ACB2C: + .incbin "baserom.dol", 0x3F93CC, 0x4 +.global lbl_805ACB30 +lbl_805ACB30: + .incbin "baserom.dol", 0x3F93D0, 0x4 +.global lbl_805ACB34 +lbl_805ACB34: + .incbin "baserom.dol", 0x3F93D4, 0x4 +.global lbl_805ACB38 +lbl_805ACB38: + .incbin "baserom.dol", 0x3F93D8, 0x4 +.global lbl_805ACB3C +lbl_805ACB3C: + .incbin "baserom.dol", 0x3F93DC, 0x4 +.global lbl_805ACB40 +lbl_805ACB40: + .incbin "baserom.dol", 0x3F93E0, 0x4 +.global lbl_805ACB44 +lbl_805ACB44: + .incbin "baserom.dol", 0x3F93E4, 0x4 +.global lbl_805ACB48 +lbl_805ACB48: + .incbin "baserom.dol", 0x3F93E8, 0x4 +.global lbl_805ACB4C +lbl_805ACB4C: + .incbin "baserom.dol", 0x3F93EC, 0x4 +.global lbl_805ACB50 +lbl_805ACB50: + .incbin "baserom.dol", 0x3F93F0, 0x4 +.global lbl_805ACB54 +lbl_805ACB54: + .incbin "baserom.dol", 0x3F93F4, 0x4 +.global lbl_805ACB58 +lbl_805ACB58: + .incbin "baserom.dol", 0x3F93F8, 0x4 +.global lbl_805ACB5C +lbl_805ACB5C: + .incbin "baserom.dol", 0x3F93FC, 0x4 +.global lbl_805ACB60 +lbl_805ACB60: + .incbin "baserom.dol", 0x3F9400, 0x8 +.global lbl_805ACB68 +lbl_805ACB68: + .incbin "baserom.dol", 0x3F9408, 0x4 +.global lbl_805ACB6C +lbl_805ACB6C: + .incbin "baserom.dol", 0x3F940C, 0x4 +.global lbl_805ACB70 +lbl_805ACB70: + .incbin "baserom.dol", 0x3F9410, 0x4 +.global lbl_805ACB74 +lbl_805ACB74: + .incbin "baserom.dol", 0x3F9414, 0x4 +.global lbl_805ACB78 +lbl_805ACB78: + .incbin "baserom.dol", 0x3F9418, 0x4 +.global lbl_805ACB7C +lbl_805ACB7C: + .incbin "baserom.dol", 0x3F941C, 0x4 +.global lbl_805ACB80 +lbl_805ACB80: + .incbin "baserom.dol", 0x3F9420, 0x4 +.global lbl_805ACB84 +lbl_805ACB84: + .incbin "baserom.dol", 0x3F9424, 0x4 +.global lbl_805ACB88 +lbl_805ACB88: + .incbin "baserom.dol", 0x3F9428, 0x4 +.global lbl_805ACB8C +lbl_805ACB8C: + .incbin "baserom.dol", 0x3F942C, 0x4 +.global lbl_805ACB90 +lbl_805ACB90: + .incbin "baserom.dol", 0x3F9430, 0x4 +.global lbl_805ACB94 +lbl_805ACB94: + .incbin "baserom.dol", 0x3F9434, 0x4 +.global lbl_805ACB98 +lbl_805ACB98: + .incbin "baserom.dol", 0x3F9438, 0x4 +.global lbl_805ACB9C +lbl_805ACB9C: + .incbin "baserom.dol", 0x3F943C, 0x4 +.global lbl_805ACBA0 +lbl_805ACBA0: + .incbin "baserom.dol", 0x3F9440, 0x4 +.global lbl_805ACBA4 +lbl_805ACBA4: + .incbin "baserom.dol", 0x3F9444, 0x4 +.global lbl_805ACBA8 +lbl_805ACBA8: + .incbin "baserom.dol", 0x3F9448, 0x4 +.global lbl_805ACBAC +lbl_805ACBAC: + .incbin "baserom.dol", 0x3F944C, 0x4 +.global lbl_805ACBB0 +lbl_805ACBB0: + .incbin "baserom.dol", 0x3F9450, 0x4 +.global lbl_805ACBB4 +lbl_805ACBB4: + .incbin "baserom.dol", 0x3F9454, 0x4 +.global lbl_805ACBB8 +lbl_805ACBB8: + .incbin "baserom.dol", 0x3F9458, 0x4 +.global lbl_805ACBBC +lbl_805ACBBC: + .incbin "baserom.dol", 0x3F945C, 0x4 +.global lbl_805ACBC0 +lbl_805ACBC0: + .incbin "baserom.dol", 0x3F9460, 0x8 +.global lbl_805ACBC8 +lbl_805ACBC8: + .incbin "baserom.dol", 0x3F9468, 0x8 +.global lbl_805ACBD0 +lbl_805ACBD0: + .incbin "baserom.dol", 0x3F9470, 0x4 +.global lbl_805ACBD4 +lbl_805ACBD4: + .incbin "baserom.dol", 0x3F9474, 0x4 +.global lbl_805ACBD8 +lbl_805ACBD8: + .incbin "baserom.dol", 0x3F9478, 0x4 +.global lbl_805ACBDC +lbl_805ACBDC: + .incbin "baserom.dol", 0x3F947C, 0x4 +.global lbl_805ACBE0 +lbl_805ACBE0: + .incbin "baserom.dol", 0x3F9480, 0x8 +.global lbl_805ACBE8 +lbl_805ACBE8: + .incbin "baserom.dol", 0x3F9488, 0x4 +.global lbl_805ACBEC +lbl_805ACBEC: + .incbin "baserom.dol", 0x3F948C, 0x4 +.global lbl_805ACBF0 +lbl_805ACBF0: + .incbin "baserom.dol", 0x3F9490, 0x4 +.global lbl_805ACBF4 +lbl_805ACBF4: + .incbin "baserom.dol", 0x3F9494, 0x4 +.global lbl_805ACBF8 +lbl_805ACBF8: + .incbin "baserom.dol", 0x3F9498, 0x8 +.global lbl_805ACC00 +lbl_805ACC00: + .incbin "baserom.dol", 0x3F94A0, 0x4 +.global lbl_805ACC04 +lbl_805ACC04: + .incbin "baserom.dol", 0x3F94A4, 0x4 +.global lbl_805ACC08 +lbl_805ACC08: + .incbin "baserom.dol", 0x3F94A8, 0x4 +.global lbl_805ACC0C +lbl_805ACC0C: + .incbin "baserom.dol", 0x3F94AC, 0x4 +.global lbl_805ACC10 +lbl_805ACC10: + .incbin "baserom.dol", 0x3F94B0, 0x4 +.global lbl_805ACC14 +lbl_805ACC14: + .incbin "baserom.dol", 0x3F94B4, 0x4 +.global lbl_805ACC18 +lbl_805ACC18: + .incbin "baserom.dol", 0x3F94B8, 0x4 +.global lbl_805ACC1C +lbl_805ACC1C: + .incbin "baserom.dol", 0x3F94BC, 0x4 +.global lbl_805ACC20 +lbl_805ACC20: + .incbin "baserom.dol", 0x3F94C0, 0x4 +.global lbl_805ACC24 +lbl_805ACC24: + .incbin "baserom.dol", 0x3F94C4, 0x4 +.global lbl_805ACC28 +lbl_805ACC28: + .incbin "baserom.dol", 0x3F94C8, 0x4 +.global lbl_805ACC2C +lbl_805ACC2C: + .incbin "baserom.dol", 0x3F94CC, 0x4 +.global lbl_805ACC30 +lbl_805ACC30: + .incbin "baserom.dol", 0x3F94D0, 0x4 +.global lbl_805ACC34 +lbl_805ACC34: + .incbin "baserom.dol", 0x3F94D4, 0x4 +.global lbl_805ACC38 +lbl_805ACC38: + .incbin "baserom.dol", 0x3F94D8, 0x8 +.global lbl_805ACC40 +lbl_805ACC40: + .incbin "baserom.dol", 0x3F94E0, 0x4 +.global lbl_805ACC44 +lbl_805ACC44: + .incbin "baserom.dol", 0x3F94E4, 0x4 +.global lbl_805ACC48 +lbl_805ACC48: + .incbin "baserom.dol", 0x3F94E8, 0x4 +.global lbl_805ACC4C +lbl_805ACC4C: + .incbin "baserom.dol", 0x3F94EC, 0x4 +.global lbl_805ACC50 +lbl_805ACC50: + .incbin "baserom.dol", 0x3F94F0, 0x4 +.global lbl_805ACC54 +lbl_805ACC54: + .incbin "baserom.dol", 0x3F94F4, 0x4 +.global lbl_805ACC58 +lbl_805ACC58: + .incbin "baserom.dol", 0x3F94F8, 0x4 +.global lbl_805ACC5C +lbl_805ACC5C: + .incbin "baserom.dol", 0x3F94FC, 0x4 +.global lbl_805ACC60 +lbl_805ACC60: + .incbin "baserom.dol", 0x3F9500, 0x4 +.global lbl_805ACC64 +lbl_805ACC64: + .incbin "baserom.dol", 0x3F9504, 0x4 +.global lbl_805ACC68 +lbl_805ACC68: + .incbin "baserom.dol", 0x3F9508, 0x4 +.global lbl_805ACC6C +lbl_805ACC6C: + .incbin "baserom.dol", 0x3F950C, 0x4 +.global lbl_805ACC70 +lbl_805ACC70: + .incbin "baserom.dol", 0x3F9510, 0x4 +.global lbl_805ACC74 +lbl_805ACC74: + .incbin "baserom.dol", 0x3F9514, 0x4 +.global lbl_805ACC78 +lbl_805ACC78: + .incbin "baserom.dol", 0x3F9518, 0x4 +.global lbl_805ACC7C +lbl_805ACC7C: + .incbin "baserom.dol", 0x3F951C, 0x4 +.global lbl_805ACC80 +lbl_805ACC80: + .incbin "baserom.dol", 0x3F9520, 0x4 +.global lbl_805ACC84 +lbl_805ACC84: + .incbin "baserom.dol", 0x3F9524, 0x4 +.global lbl_805ACC88 +lbl_805ACC88: + .incbin "baserom.dol", 0x3F9528, 0x4 +.global lbl_805ACC8C +lbl_805ACC8C: + .incbin "baserom.dol", 0x3F952C, 0x4 +.global lbl_805ACC90 +lbl_805ACC90: + .incbin "baserom.dol", 0x3F9530, 0x4 +.global lbl_805ACC94 +lbl_805ACC94: + .incbin "baserom.dol", 0x3F9534, 0x4 +.global lbl_805ACC98 +lbl_805ACC98: + .incbin "baserom.dol", 0x3F9538, 0x4 +.global lbl_805ACC9C +lbl_805ACC9C: + .incbin "baserom.dol", 0x3F953C, 0x4 +.global lbl_805ACCA0 +lbl_805ACCA0: + .incbin "baserom.dol", 0x3F9540, 0x4 +.global lbl_805ACCA4 +lbl_805ACCA4: + .incbin "baserom.dol", 0x3F9544, 0x4 +.global lbl_805ACCA8 +lbl_805ACCA8: + .incbin "baserom.dol", 0x3F9548, 0x4 +.global lbl_805ACCAC +lbl_805ACCAC: + .incbin "baserom.dol", 0x3F954C, 0x4 +.global lbl_805ACCB0 +lbl_805ACCB0: + .incbin "baserom.dol", 0x3F9550, 0x4 +.global lbl_805ACCB4 +lbl_805ACCB4: + .incbin "baserom.dol", 0x3F9554, 0x4 +.global lbl_805ACCB8 +lbl_805ACCB8: + .incbin "baserom.dol", 0x3F9558, 0x4 +.global lbl_805ACCBC +lbl_805ACCBC: + .incbin "baserom.dol", 0x3F955C, 0x4 +.global lbl_805ACCC0 +lbl_805ACCC0: + .incbin "baserom.dol", 0x3F9560, 0x4 +.global lbl_805ACCC4 +lbl_805ACCC4: + .incbin "baserom.dol", 0x3F9564, 0x4 +.global lbl_805ACCC8 +lbl_805ACCC8: + .incbin "baserom.dol", 0x3F9568, 0x4 +.global lbl_805ACCCC +lbl_805ACCCC: + .incbin "baserom.dol", 0x3F956C, 0x4 +.global lbl_805ACCD0 +lbl_805ACCD0: + .incbin "baserom.dol", 0x3F9570, 0x4 +.global lbl_805ACCD4 +lbl_805ACCD4: + .incbin "baserom.dol", 0x3F9574, 0x4 +.global lbl_805ACCD8 +lbl_805ACCD8: + .incbin "baserom.dol", 0x3F9578, 0x4 +.global lbl_805ACCDC +lbl_805ACCDC: + .incbin "baserom.dol", 0x3F957C, 0x4 +.global lbl_805ACCE0 +lbl_805ACCE0: + .incbin "baserom.dol", 0x3F9580, 0x4 +.global lbl_805ACCE4 +lbl_805ACCE4: + .incbin "baserom.dol", 0x3F9584, 0x4 +.global lbl_805ACCE8 +lbl_805ACCE8: + .incbin "baserom.dol", 0x3F9588, 0x4 +.global lbl_805ACCEC +lbl_805ACCEC: + .incbin "baserom.dol", 0x3F958C, 0x4 +.global lbl_805ACCF0 +lbl_805ACCF0: + .incbin "baserom.dol", 0x3F9590, 0x4 +.global lbl_805ACCF4 +lbl_805ACCF4: + .incbin "baserom.dol", 0x3F9594, 0x4 +.global lbl_805ACCF8 +lbl_805ACCF8: + .incbin "baserom.dol", 0x3F9598, 0x4 +.global lbl_805ACCFC +lbl_805ACCFC: + .incbin "baserom.dol", 0x3F959C, 0x4 +.global lbl_805ACD00 +lbl_805ACD00: + .incbin "baserom.dol", 0x3F95A0, 0x4 +.global lbl_805ACD04 +lbl_805ACD04: + .incbin "baserom.dol", 0x3F95A4, 0x4 +.global lbl_805ACD08 +lbl_805ACD08: + .incbin "baserom.dol", 0x3F95A8, 0x4 +.global lbl_805ACD0C +lbl_805ACD0C: + .incbin "baserom.dol", 0x3F95AC, 0x4 +.global lbl_805ACD10 +lbl_805ACD10: + .incbin "baserom.dol", 0x3F95B0, 0x4 +.global lbl_805ACD14 +lbl_805ACD14: + .incbin "baserom.dol", 0x3F95B4, 0x4 +.global lbl_805ACD18 +lbl_805ACD18: + .incbin "baserom.dol", 0x3F95B8, 0x4 +.global lbl_805ACD1C +lbl_805ACD1C: + .incbin "baserom.dol", 0x3F95BC, 0x4 +.global lbl_805ACD20 +lbl_805ACD20: + .incbin "baserom.dol", 0x3F95C0, 0x4 +.global lbl_805ACD24 +lbl_805ACD24: + .incbin "baserom.dol", 0x3F95C4, 0x4 +.global lbl_805ACD28 +lbl_805ACD28: + .incbin "baserom.dol", 0x3F95C8, 0x4 +.global lbl_805ACD2C +lbl_805ACD2C: + .incbin "baserom.dol", 0x3F95CC, 0x4 +.global lbl_805ACD30 +lbl_805ACD30: + .incbin "baserom.dol", 0x3F95D0, 0x4 +.global lbl_805ACD34 +lbl_805ACD34: + .incbin "baserom.dol", 0x3F95D4, 0x4 +.global lbl_805ACD38 +lbl_805ACD38: + .incbin "baserom.dol", 0x3F95D8, 0x4 +.global lbl_805ACD3C +lbl_805ACD3C: + .incbin "baserom.dol", 0x3F95DC, 0x4 +.global lbl_805ACD40 +lbl_805ACD40: + .incbin "baserom.dol", 0x3F95E0, 0x4 +.global lbl_805ACD44 +lbl_805ACD44: + .incbin "baserom.dol", 0x3F95E4, 0x4 +.global lbl_805ACD48 +lbl_805ACD48: + .incbin "baserom.dol", 0x3F95E8, 0x8 +.global lbl_805ACD50 +lbl_805ACD50: + .incbin "baserom.dol", 0x3F95F0, 0x8 +.global lbl_805ACD58 +lbl_805ACD58: + .incbin "baserom.dol", 0x3F95F8, 0x8 +.global lbl_805ACD60 +lbl_805ACD60: + .incbin "baserom.dol", 0x3F9600, 0x8 +.global lbl_805ACD68 +lbl_805ACD68: + .incbin "baserom.dol", 0x3F9608, 0x4 +.global lbl_805ACD6C +lbl_805ACD6C: + .incbin "baserom.dol", 0x3F960C, 0x4 +.global lbl_805ACD70 +lbl_805ACD70: + .incbin "baserom.dol", 0x3F9610, 0x8 +.global lbl_805ACD78 +lbl_805ACD78: + .incbin "baserom.dol", 0x3F9618, 0x8 +.global lbl_805ACD80 +lbl_805ACD80: + .incbin "baserom.dol", 0x3F9620, 0x4 +.global lbl_805ACD84 +lbl_805ACD84: + .incbin "baserom.dol", 0x3F9624, 0x4 +.global lbl_805ACD88 +lbl_805ACD88: + .incbin "baserom.dol", 0x3F9628, 0x8 +.global lbl_805ACD90 +lbl_805ACD90: + .incbin "baserom.dol", 0x3F9630, 0x8 +.global lbl_805ACD98 +lbl_805ACD98: + .incbin "baserom.dol", 0x3F9638, 0x8 +.global lbl_805ACDA0 +lbl_805ACDA0: + .incbin "baserom.dol", 0x3F9640, 0x4 +.global lbl_805ACDA4 +lbl_805ACDA4: + .incbin "baserom.dol", 0x3F9644, 0x4 +.global lbl_805ACDA8 +lbl_805ACDA8: + .incbin "baserom.dol", 0x3F9648, 0x4 +.global lbl_805ACDAC +lbl_805ACDAC: + .incbin "baserom.dol", 0x3F964C, 0x4 +.global lbl_805ACDB0 +lbl_805ACDB0: + .incbin "baserom.dol", 0x3F9650, 0x4 +.global lbl_805ACDB4 +lbl_805ACDB4: + .incbin "baserom.dol", 0x3F9654, 0x4 +.global lbl_805ACDB8 +lbl_805ACDB8: + .incbin "baserom.dol", 0x3F9658, 0x4 +.global lbl_805ACDBC +lbl_805ACDBC: + .incbin "baserom.dol", 0x3F965C, 0x4 +.global lbl_805ACDC0 +lbl_805ACDC0: + .incbin "baserom.dol", 0x3F9660, 0x4 +.global lbl_805ACDC4 +lbl_805ACDC4: + .incbin "baserom.dol", 0x3F9664, 0x4 +.global lbl_805ACDC8 +lbl_805ACDC8: + .incbin "baserom.dol", 0x3F9668, 0x4 +.global lbl_805ACDCC +lbl_805ACDCC: + .incbin "baserom.dol", 0x3F966C, 0x4 +.global lbl_805ACDD0 +lbl_805ACDD0: + .incbin "baserom.dol", 0x3F9670, 0x4 +.global lbl_805ACDD4 +lbl_805ACDD4: + .incbin "baserom.dol", 0x3F9674, 0x4 +.global lbl_805ACDD8 +lbl_805ACDD8: + .incbin "baserom.dol", 0x3F9678, 0x8 +.global lbl_805ACDE0 +lbl_805ACDE0: + .incbin "baserom.dol", 0x3F9680, 0x4 +.global lbl_805ACDE4 +lbl_805ACDE4: + .incbin "baserom.dol", 0x3F9684, 0x4 +.global lbl_805ACDE8 +lbl_805ACDE8: + .incbin "baserom.dol", 0x3F9688, 0x4 +.global lbl_805ACDEC +lbl_805ACDEC: + .incbin "baserom.dol", 0x3F968C, 0x4 +.global lbl_805ACDF0 +lbl_805ACDF0: + .incbin "baserom.dol", 0x3F9690, 0x4 +.global lbl_805ACDF4 +lbl_805ACDF4: + .incbin "baserom.dol", 0x3F9694, 0x4 +.global lbl_805ACDF8 +lbl_805ACDF8: + .incbin "baserom.dol", 0x3F9698, 0x4 +.global lbl_805ACDFC +lbl_805ACDFC: + .incbin "baserom.dol", 0x3F969C, 0x4 +.global lbl_805ACE00 +lbl_805ACE00: + .incbin "baserom.dol", 0x3F96A0, 0x4 +.global lbl_805ACE04 +lbl_805ACE04: + .incbin "baserom.dol", 0x3F96A4, 0x4 +.global lbl_805ACE08 +lbl_805ACE08: + .incbin "baserom.dol", 0x3F96A8, 0x4 +.global lbl_805ACE0C +lbl_805ACE0C: + .incbin "baserom.dol", 0x3F96AC, 0x4 +.global lbl_805ACE10 +lbl_805ACE10: + .incbin "baserom.dol", 0x3F96B0, 0x8 +.global lbl_805ACE18 +lbl_805ACE18: + .incbin "baserom.dol", 0x3F96B8, 0x4 +.global lbl_805ACE1C +lbl_805ACE1C: + .incbin "baserom.dol", 0x3F96BC, 0x4 +.global lbl_805ACE20 +lbl_805ACE20: + .incbin "baserom.dol", 0x3F96C0, 0x4 +.global lbl_805ACE24 +lbl_805ACE24: + .incbin "baserom.dol", 0x3F96C4, 0x4 +.global lbl_805ACE28 +lbl_805ACE28: + .incbin "baserom.dol", 0x3F96C8, 0x8 +.global lbl_805ACE30 +lbl_805ACE30: + .incbin "baserom.dol", 0x3F96D0, 0x4 +.global lbl_805ACE34 +lbl_805ACE34: + .incbin "baserom.dol", 0x3F96D4, 0x4 +.global lbl_805ACE38 +lbl_805ACE38: + .incbin "baserom.dol", 0x3F96D8, 0x4 +.global lbl_805ACE3C +lbl_805ACE3C: + .incbin "baserom.dol", 0x3F96DC, 0x4 +.global lbl_805ACE40 +lbl_805ACE40: + .incbin "baserom.dol", 0x3F96E0, 0x4 +.global lbl_805ACE44 +lbl_805ACE44: + .incbin "baserom.dol", 0x3F96E4, 0x4 +.global lbl_805ACE48 +lbl_805ACE48: + .incbin "baserom.dol", 0x3F96E8, 0x4 +.global lbl_805ACE4C +lbl_805ACE4C: + .incbin "baserom.dol", 0x3F96EC, 0x4 +.global lbl_805ACE50 +lbl_805ACE50: + .incbin "baserom.dol", 0x3F96F0, 0x4 +.global lbl_805ACE54 +lbl_805ACE54: + .incbin "baserom.dol", 0x3F96F4, 0x4 +.global lbl_805ACE58 +lbl_805ACE58: + .incbin "baserom.dol", 0x3F96F8, 0x4 +.global lbl_805ACE5C +lbl_805ACE5C: + .incbin "baserom.dol", 0x3F96FC, 0x4 +.global lbl_805ACE60 +lbl_805ACE60: + .incbin "baserom.dol", 0x3F9700, 0x8 +.global lbl_805ACE68 +lbl_805ACE68: + .incbin "baserom.dol", 0x3F9708, 0x4 +.global lbl_805ACE6C +lbl_805ACE6C: + .incbin "baserom.dol", 0x3F970C, 0x4 +.global lbl_805ACE70 +lbl_805ACE70: + .incbin "baserom.dol", 0x3F9710, 0x4 +.global lbl_805ACE74 +lbl_805ACE74: + .incbin "baserom.dol", 0x3F9714, 0x4 +.global lbl_805ACE78 +lbl_805ACE78: + .incbin "baserom.dol", 0x3F9718, 0x4 +.global lbl_805ACE7C +lbl_805ACE7C: + .incbin "baserom.dol", 0x3F971C, 0x4 +.global lbl_805ACE80 +lbl_805ACE80: + .incbin "baserom.dol", 0x3F9720, 0x4 +.global lbl_805ACE84 +lbl_805ACE84: + .incbin "baserom.dol", 0x3F9724, 0x4 +.global lbl_805ACE88 +lbl_805ACE88: + .incbin "baserom.dol", 0x3F9728, 0x4 +.global lbl_805ACE8C +lbl_805ACE8C: + .incbin "baserom.dol", 0x3F972C, 0x4 +.global lbl_805ACE90 +lbl_805ACE90: + .incbin "baserom.dol", 0x3F9730, 0x4 +.global lbl_805ACE94 +lbl_805ACE94: + .incbin "baserom.dol", 0x3F9734, 0x4 +.global lbl_805ACE98 +lbl_805ACE98: + .incbin "baserom.dol", 0x3F9738, 0x4 +.global lbl_805ACE9C +lbl_805ACE9C: + .incbin "baserom.dol", 0x3F973C, 0x4 +.global lbl_805ACEA0 +lbl_805ACEA0: + .incbin "baserom.dol", 0x3F9740, 0x4 +.global lbl_805ACEA4 +lbl_805ACEA4: + .incbin "baserom.dol", 0x3F9744, 0x4 +.global lbl_805ACEA8 +lbl_805ACEA8: + .incbin "baserom.dol", 0x3F9748, 0x4 +.global lbl_805ACEAC +lbl_805ACEAC: + .incbin "baserom.dol", 0x3F974C, 0x4 +.global lbl_805ACEB0 +lbl_805ACEB0: + .incbin "baserom.dol", 0x3F9750, 0x4 +.global lbl_805ACEB4 +lbl_805ACEB4: + .incbin "baserom.dol", 0x3F9754, 0x4 +.global lbl_805ACEB8 +lbl_805ACEB8: + .incbin "baserom.dol", 0x3F9758, 0x4 +.global lbl_805ACEBC +lbl_805ACEBC: + .incbin "baserom.dol", 0x3F975C, 0x4 +.global lbl_805ACEC0 +lbl_805ACEC0: + .incbin "baserom.dol", 0x3F9760, 0x4 +.global lbl_805ACEC4 +lbl_805ACEC4: + .incbin "baserom.dol", 0x3F9764, 0x4 +.global lbl_805ACEC8 +lbl_805ACEC8: + .incbin "baserom.dol", 0x3F9768, 0x4 +.global lbl_805ACECC +lbl_805ACECC: + .incbin "baserom.dol", 0x3F976C, 0x4 +.global lbl_805ACED0 +lbl_805ACED0: + .incbin "baserom.dol", 0x3F9770, 0x8 +.global lbl_805ACED8 +lbl_805ACED8: + .incbin "baserom.dol", 0x3F9778, 0x8 +.global lbl_805ACEE0 +lbl_805ACEE0: + .incbin "baserom.dol", 0x3F9780, 0x4 +.global lbl_805ACEE4 +lbl_805ACEE4: + .incbin "baserom.dol", 0x3F9784, 0x4 +.global lbl_805ACEE8 +lbl_805ACEE8: + .incbin "baserom.dol", 0x3F9788, 0x4 +.global lbl_805ACEEC +lbl_805ACEEC: + .incbin "baserom.dol", 0x3F978C, 0x4 +.global lbl_805ACEF0 +lbl_805ACEF0: + .incbin "baserom.dol", 0x3F9790, 0x8 +.global lbl_805ACEF8 +lbl_805ACEF8: + .incbin "baserom.dol", 0x3F9798, 0x8 +.global lbl_805ACF00 +lbl_805ACF00: + .incbin "baserom.dol", 0x3F97A0, 0x4 +.global lbl_805ACF04 +lbl_805ACF04: + .incbin "baserom.dol", 0x3F97A4, 0x4 +.global lbl_805ACF08 +lbl_805ACF08: + .incbin "baserom.dol", 0x3F97A8, 0x8 +.global lbl_805ACF10 +lbl_805ACF10: + .incbin "baserom.dol", 0x3F97B0, 0x4 +.global lbl_805ACF14 +lbl_805ACF14: + .incbin "baserom.dol", 0x3F97B4, 0x4 +.global lbl_805ACF18 +lbl_805ACF18: + .incbin "baserom.dol", 0x3F97B8, 0x4 +.global lbl_805ACF1C +lbl_805ACF1C: + .incbin "baserom.dol", 0x3F97BC, 0x4 +.global lbl_805ACF20 +lbl_805ACF20: + .incbin "baserom.dol", 0x3F97C0, 0x4 +.global lbl_805ACF24 +lbl_805ACF24: + .incbin "baserom.dol", 0x3F97C4, 0x4 +.global lbl_805ACF28 +lbl_805ACF28: + .incbin "baserom.dol", 0x3F97C8, 0x4 +.global lbl_805ACF2C +lbl_805ACF2C: + .incbin "baserom.dol", 0x3F97CC, 0x4 +.global lbl_805ACF30 +lbl_805ACF30: + .incbin "baserom.dol", 0x3F97D0, 0x4 +.global lbl_805ACF34 +lbl_805ACF34: + .incbin "baserom.dol", 0x3F97D4, 0x4 +.global lbl_805ACF38 +lbl_805ACF38: + .incbin "baserom.dol", 0x3F97D8, 0x4 +.global lbl_805ACF3C +lbl_805ACF3C: + .incbin "baserom.dol", 0x3F97DC, 0x4 +.global lbl_805ACF40 +lbl_805ACF40: + .incbin "baserom.dol", 0x3F97E0, 0x1 +.global lbl_805ACF41 +lbl_805ACF41: + .incbin "baserom.dol", 0x3F97E1, 0x1 +.global lbl_805ACF42 +lbl_805ACF42: + .incbin "baserom.dol", 0x3F97E2, 0x1 +.global lbl_805ACF43 +lbl_805ACF43: + .incbin "baserom.dol", 0x3F97E3, 0x1 +.global lbl_805ACF44 +lbl_805ACF44: + .incbin "baserom.dol", 0x3F97E4, 0x4 +.global lbl_805ACF48 +lbl_805ACF48: + .incbin "baserom.dol", 0x3F97E8, 0x8 +.global lbl_805ACF50 +lbl_805ACF50: + .incbin "baserom.dol", 0x3F97F0, 0x8 +.global lbl_805ACF58 +lbl_805ACF58: + .incbin "baserom.dol", 0x3F97F8, 0x4 +.global lbl_805ACF5C +lbl_805ACF5C: + .incbin "baserom.dol", 0x3F97FC, 0x4 +.global lbl_805ACF60 +lbl_805ACF60: + .incbin "baserom.dol", 0x3F9800, 0x8 +.global lbl_805ACF68 +lbl_805ACF68: + .incbin "baserom.dol", 0x3F9808, 0x8 +.global lbl_805ACF70 +lbl_805ACF70: + .incbin "baserom.dol", 0x3F9810, 0x4 +.global lbl_805ACF74 +lbl_805ACF74: + .incbin "baserom.dol", 0x3F9814, 0x4 +.global lbl_805ACF78 +lbl_805ACF78: + .incbin "baserom.dol", 0x3F9818, 0x4 +.global lbl_805ACF7C +lbl_805ACF7C: + .incbin "baserom.dol", 0x3F981C, 0x4 +.global lbl_805ACF80 +lbl_805ACF80: + .incbin "baserom.dol", 0x3F9820, 0x4 +.global lbl_805ACF84 +lbl_805ACF84: + .incbin "baserom.dol", 0x3F9824, 0x4 +.global lbl_805ACF88 +lbl_805ACF88: + .incbin "baserom.dol", 0x3F9828, 0x4 +.global lbl_805ACF8C +lbl_805ACF8C: + .incbin "baserom.dol", 0x3F982C, 0x4 +.global lbl_805ACF90 +lbl_805ACF90: + .incbin "baserom.dol", 0x3F9830, 0x4 +.global lbl_805ACF94 +lbl_805ACF94: + .incbin "baserom.dol", 0x3F9834, 0x4 +.global lbl_805ACF98 +lbl_805ACF98: + .incbin "baserom.dol", 0x3F9838, 0x4 +.global lbl_805ACF9C +lbl_805ACF9C: + .incbin "baserom.dol", 0x3F983C, 0x4 +.global lbl_805ACFA0 +lbl_805ACFA0: + .incbin "baserom.dol", 0x3F9840, 0x4 +.global lbl_805ACFA4 +lbl_805ACFA4: + .incbin "baserom.dol", 0x3F9844, 0x4 +.global lbl_805ACFA8 +lbl_805ACFA8: + .incbin "baserom.dol", 0x3F9848, 0x4 +.global lbl_805ACFAC +lbl_805ACFAC: + .incbin "baserom.dol", 0x3F984C, 0x4 +.global lbl_805ACFB0 +lbl_805ACFB0: + .incbin "baserom.dol", 0x3F9850, 0x4 +.global lbl_805ACFB4 +lbl_805ACFB4: + .incbin "baserom.dol", 0x3F9854, 0x4 +.global lbl_805ACFB8 +lbl_805ACFB8: + .incbin "baserom.dol", 0x3F9858, 0x4 +.global lbl_805ACFBC +lbl_805ACFBC: + .incbin "baserom.dol", 0x3F985C, 0x4 +.global lbl_805ACFC0 +lbl_805ACFC0: + .incbin "baserom.dol", 0x3F9860, 0x4 +.global lbl_805ACFC4 +lbl_805ACFC4: + .incbin "baserom.dol", 0x3F9864, 0x4 +.global lbl_805ACFC8 +lbl_805ACFC8: + .incbin "baserom.dol", 0x3F9868, 0x4 +.global lbl_805ACFCC +lbl_805ACFCC: + .incbin "baserom.dol", 0x3F986C, 0x4 +.global lbl_805ACFD0 +lbl_805ACFD0: + .incbin "baserom.dol", 0x3F9870, 0x4 +.global lbl_805ACFD4 +lbl_805ACFD4: + .incbin "baserom.dol", 0x3F9874, 0x4 +.global lbl_805ACFD8 +lbl_805ACFD8: + .incbin "baserom.dol", 0x3F9878, 0x8 +.global lbl_805ACFE0 +lbl_805ACFE0: + .incbin "baserom.dol", 0x3F9880, 0x8 +.global lbl_805ACFE8 +lbl_805ACFE8: + .incbin "baserom.dol", 0x3F9888, 0x8 +.global lbl_805ACFF0 +lbl_805ACFF0: + .incbin "baserom.dol", 0x3F9890, 0x8 +.global lbl_805ACFF8 +lbl_805ACFF8: + .incbin "baserom.dol", 0x3F9898, 0x8 +.global lbl_805AD000 +lbl_805AD000: + .incbin "baserom.dol", 0x3F98A0, 0x8 +.global lbl_805AD008 +lbl_805AD008: + .incbin "baserom.dol", 0x3F98A8, 0x4 +.global lbl_805AD00C +lbl_805AD00C: + .incbin "baserom.dol", 0x3F98AC, 0x4 +.global lbl_805AD010 +lbl_805AD010: + .incbin "baserom.dol", 0x3F98B0, 0x4 +.global lbl_805AD014 +lbl_805AD014: + .incbin "baserom.dol", 0x3F98B4, 0x4 +.global lbl_805AD018 +lbl_805AD018: + .incbin "baserom.dol", 0x3F98B8, 0x4 +.global lbl_805AD01C +lbl_805AD01C: + .incbin "baserom.dol", 0x3F98BC, 0x4 +.global lbl_805AD020 +lbl_805AD020: + .incbin "baserom.dol", 0x3F98C0, 0x4 +.global lbl_805AD024 +lbl_805AD024: + .incbin "baserom.dol", 0x3F98C4, 0x4 +.global lbl_805AD028 +lbl_805AD028: + .incbin "baserom.dol", 0x3F98C8, 0x8 +.global lbl_805AD030 +lbl_805AD030: + .incbin "baserom.dol", 0x3F98D0, 0x4 +.global lbl_805AD034 +lbl_805AD034: + .incbin "baserom.dol", 0x3F98D4, 0x4 +.global lbl_805AD038 +lbl_805AD038: + .incbin "baserom.dol", 0x3F98D8, 0x4 +.global lbl_805AD03C +lbl_805AD03C: + .incbin "baserom.dol", 0x3F98DC, 0x4 +.global lbl_805AD040 +lbl_805AD040: + .incbin "baserom.dol", 0x3F98E0, 0x4 +.global lbl_805AD044 +lbl_805AD044: + .incbin "baserom.dol", 0x3F98E4, 0x4 +.global lbl_805AD048 +lbl_805AD048: + .incbin "baserom.dol", 0x3F98E8, 0x4 +.global lbl_805AD04C +lbl_805AD04C: + .incbin "baserom.dol", 0x3F98EC, 0x4 +.global lbl_805AD050 +lbl_805AD050: + .incbin "baserom.dol", 0x3F98F0, 0x4 +.global lbl_805AD054 +lbl_805AD054: + .incbin "baserom.dol", 0x3F98F4, 0x4 +.global lbl_805AD058 +lbl_805AD058: + .incbin "baserom.dol", 0x3F98F8, 0x4 +.global lbl_805AD05C +lbl_805AD05C: + .incbin "baserom.dol", 0x3F98FC, 0x4 +.global lbl_805AD060 +lbl_805AD060: + .incbin "baserom.dol", 0x3F9900, 0x8 +.global lbl_805AD068 +lbl_805AD068: + .incbin "baserom.dol", 0x3F9908, 0x4 +.global lbl_805AD06C +lbl_805AD06C: + .incbin "baserom.dol", 0x3F990C, 0x4 +.global lbl_805AD070 +lbl_805AD070: + .incbin "baserom.dol", 0x3F9910, 0x4 +.global lbl_805AD074 +lbl_805AD074: + .incbin "baserom.dol", 0x3F9914, 0x4 +.global lbl_805AD078 +lbl_805AD078: + .incbin "baserom.dol", 0x3F9918, 0x4 +.global lbl_805AD07C +lbl_805AD07C: + .incbin "baserom.dol", 0x3F991C, 0x4 +.global lbl_805AD080 +lbl_805AD080: + .incbin "baserom.dol", 0x3F9920, 0x4 +.global lbl_805AD084 +lbl_805AD084: + .incbin "baserom.dol", 0x3F9924, 0x4 +.global lbl_805AD088 +lbl_805AD088: + .incbin "baserom.dol", 0x3F9928, 0x4 +.global lbl_805AD08C +lbl_805AD08C: + .incbin "baserom.dol", 0x3F992C, 0x4 +.global lbl_805AD090 +lbl_805AD090: + .incbin "baserom.dol", 0x3F9930, 0x4 +.global lbl_805AD094 +lbl_805AD094: + .incbin "baserom.dol", 0x3F9934, 0x4 +.global lbl_805AD098 +lbl_805AD098: + .incbin "baserom.dol", 0x3F9938, 0x4 +.global lbl_805AD09C +lbl_805AD09C: + .incbin "baserom.dol", 0x3F993C, 0x4 +.global lbl_805AD0A0 +lbl_805AD0A0: + .incbin "baserom.dol", 0x3F9940, 0x4 +.global lbl_805AD0A4 +lbl_805AD0A4: + .incbin "baserom.dol", 0x3F9944, 0x4 +.global lbl_805AD0A8 +lbl_805AD0A8: + .incbin "baserom.dol", 0x3F9948, 0x4 +.global lbl_805AD0AC +lbl_805AD0AC: + .incbin "baserom.dol", 0x3F994C, 0x4 +.global lbl_805AD0B0 +lbl_805AD0B0: + .incbin "baserom.dol", 0x3F9950, 0x8 +.global lbl_805AD0B8 +lbl_805AD0B8: + .incbin "baserom.dol", 0x3F9958, 0x8 +.global lbl_805AD0C0 +lbl_805AD0C0: + .incbin "baserom.dol", 0x3F9960, 0x8 +.global lbl_805AD0C8 +lbl_805AD0C8: + .incbin "baserom.dol", 0x3F9968, 0x8 +.global lbl_805AD0D0 +lbl_805AD0D0: + .incbin "baserom.dol", 0x3F9970, 0x4 +.global lbl_805AD0D4 +lbl_805AD0D4: + .incbin "baserom.dol", 0x3F9974, 0x4 +.global lbl_805AD0D8 +lbl_805AD0D8: + .incbin "baserom.dol", 0x3F9978, 0x4 +.global lbl_805AD0DC +lbl_805AD0DC: + .incbin "baserom.dol", 0x3F997C, 0x4 +.global lbl_805AD0E0 +lbl_805AD0E0: + .incbin "baserom.dol", 0x3F9980, 0x4 +.global lbl_805AD0E4 +lbl_805AD0E4: + .incbin "baserom.dol", 0x3F9984, 0x4 +.global lbl_805AD0E8 +lbl_805AD0E8: + .incbin "baserom.dol", 0x3F9988, 0x4 +.global lbl_805AD0EC +lbl_805AD0EC: + .incbin "baserom.dol", 0x3F998C, 0x4 +.global lbl_805AD0F0 +lbl_805AD0F0: + .incbin "baserom.dol", 0x3F9990, 0x4 +.global lbl_805AD0F4 +lbl_805AD0F4: + .incbin "baserom.dol", 0x3F9994, 0x4 +.global lbl_805AD0F8 +lbl_805AD0F8: + .incbin "baserom.dol", 0x3F9998, 0x8 +.global lbl_805AD100 +lbl_805AD100: + .incbin "baserom.dol", 0x3F99A0, 0x4 +.global lbl_805AD104 +lbl_805AD104: + .incbin "baserom.dol", 0x3F99A4, 0x4 +.global lbl_805AD108 +lbl_805AD108: + .incbin "baserom.dol", 0x3F99A8, 0x8 +.global lbl_805AD110 +lbl_805AD110: + .incbin "baserom.dol", 0x3F99B0, 0x4 +.global lbl_805AD114 +lbl_805AD114: + .incbin "baserom.dol", 0x3F99B4, 0x4 +.global lbl_805AD118 +lbl_805AD118: + .incbin "baserom.dol", 0x3F99B8, 0x4 +.global lbl_805AD11C +lbl_805AD11C: + .incbin "baserom.dol", 0x3F99BC, 0x4 +.global lbl_805AD120 +lbl_805AD120: + .incbin "baserom.dol", 0x3F99C0, 0x4 +.global lbl_805AD124 +lbl_805AD124: + .incbin "baserom.dol", 0x3F99C4, 0x4 +.global lbl_805AD128 +lbl_805AD128: + .incbin "baserom.dol", 0x3F99C8, 0x4 +.global lbl_805AD12C +lbl_805AD12C: + .incbin "baserom.dol", 0x3F99CC, 0x4 +.global lbl_805AD130 +lbl_805AD130: + .incbin "baserom.dol", 0x3F99D0, 0x4 +.global lbl_805AD134 +lbl_805AD134: + .incbin "baserom.dol", 0x3F99D4, 0x4 +.global lbl_805AD138 +lbl_805AD138: + .incbin "baserom.dol", 0x3F99D8, 0x4 +.global lbl_805AD13C +lbl_805AD13C: + .incbin "baserom.dol", 0x3F99DC, 0x4 +.global lbl_805AD140 +lbl_805AD140: + .incbin "baserom.dol", 0x3F99E0, 0x4 +.global lbl_805AD144 +lbl_805AD144: + .incbin "baserom.dol", 0x3F99E4, 0x4 +.global lbl_805AD148 +lbl_805AD148: + .incbin "baserom.dol", 0x3F99E8, 0x4 +.global lbl_805AD14C +lbl_805AD14C: + .incbin "baserom.dol", 0x3F99EC, 0x4 +.global lbl_805AD150 +lbl_805AD150: + .incbin "baserom.dol", 0x3F99F0, 0x4 +.global lbl_805AD154 +lbl_805AD154: + .incbin "baserom.dol", 0x3F99F4, 0x4 +.global lbl_805AD158 +lbl_805AD158: + .incbin "baserom.dol", 0x3F99F8, 0x4 +.global lbl_805AD15C +lbl_805AD15C: + .incbin "baserom.dol", 0x3F99FC, 0x4 +.global lbl_805AD160 +lbl_805AD160: + .incbin "baserom.dol", 0x3F9A00, 0x4 +.global lbl_805AD164 +lbl_805AD164: + .incbin "baserom.dol", 0x3F9A04, 0x4 +.global lbl_805AD168 +lbl_805AD168: + .incbin "baserom.dol", 0x3F9A08, 0x4 +.global lbl_805AD16C +lbl_805AD16C: + .incbin "baserom.dol", 0x3F9A0C, 0x4 +.global lbl_805AD170 +lbl_805AD170: + .incbin "baserom.dol", 0x3F9A10, 0x8 +.global lbl_805AD178 +lbl_805AD178: + .incbin "baserom.dol", 0x3F9A18, 0x8 +.global lbl_805AD180 +lbl_805AD180: + .incbin "baserom.dol", 0x3F9A20, 0x4 +.global lbl_805AD184 +lbl_805AD184: + .incbin "baserom.dol", 0x3F9A24, 0x4 +.global lbl_805AD188 +lbl_805AD188: + .incbin "baserom.dol", 0x3F9A28, 0x8 +.global lbl_805AD190 +lbl_805AD190: + .incbin "baserom.dol", 0x3F9A30, 0x4 +.global lbl_805AD194 +lbl_805AD194: + .incbin "baserom.dol", 0x3F9A34, 0x4 +.global lbl_805AD198 +lbl_805AD198: + .incbin "baserom.dol", 0x3F9A38, 0x8 +.global lbl_805AD1A0 +lbl_805AD1A0: + .incbin "baserom.dol", 0x3F9A40, 0x8 +.global lbl_805AD1A8 +lbl_805AD1A8: + .incbin "baserom.dol", 0x3F9A48, 0x4 +.global lbl_805AD1AC +lbl_805AD1AC: + .incbin "baserom.dol", 0x3F9A4C, 0x4 +.global lbl_805AD1B0 +lbl_805AD1B0: + .incbin "baserom.dol", 0x3F9A50, 0x4 +.global lbl_805AD1B4 +lbl_805AD1B4: + .incbin "baserom.dol", 0x3F9A54, 0x4 +.global lbl_805AD1B8 +lbl_805AD1B8: + .incbin "baserom.dol", 0x3F9A58, 0x4 +.global lbl_805AD1BC +lbl_805AD1BC: + .incbin "baserom.dol", 0x3F9A5C, 0x4 +.global lbl_805AD1C0 +lbl_805AD1C0: + .incbin "baserom.dol", 0x3F9A60, 0x4 +.global lbl_805AD1C4 +lbl_805AD1C4: + .incbin "baserom.dol", 0x3F9A64, 0x4 +.global lbl_805AD1C8 +lbl_805AD1C8: + .incbin "baserom.dol", 0x3F9A68, 0x4 +.global lbl_805AD1CC +lbl_805AD1CC: + .incbin "baserom.dol", 0x3F9A6C, 0x4 +.global lbl_805AD1D0 +lbl_805AD1D0: + .incbin "baserom.dol", 0x3F9A70, 0x4 +.global lbl_805AD1D4 +lbl_805AD1D4: + .incbin "baserom.dol", 0x3F9A74, 0x4 +.global lbl_805AD1D8 +lbl_805AD1D8: + .incbin "baserom.dol", 0x3F9A78, 0x8 +.global lbl_805AD1E0 +lbl_805AD1E0: + .incbin "baserom.dol", 0x3F9A80, 0x4 +.global lbl_805AD1E4 +lbl_805AD1E4: + .incbin "baserom.dol", 0x3F9A84, 0x4 +.global lbl_805AD1E8 +lbl_805AD1E8: + .incbin "baserom.dol", 0x3F9A88, 0x4 +.global lbl_805AD1EC +lbl_805AD1EC: + .incbin "baserom.dol", 0x3F9A8C, 0x4 +.global lbl_805AD1F0 +lbl_805AD1F0: + .incbin "baserom.dol", 0x3F9A90, 0x4 +.global lbl_805AD1F4 +lbl_805AD1F4: + .incbin "baserom.dol", 0x3F9A94, 0x4 +.global lbl_805AD1F8 +lbl_805AD1F8: + .incbin "baserom.dol", 0x3F9A98, 0x4 +.global lbl_805AD1FC +lbl_805AD1FC: + .incbin "baserom.dol", 0x3F9A9C, 0x4 +.global lbl_805AD200 +lbl_805AD200: + .incbin "baserom.dol", 0x3F9AA0, 0x4 +.global lbl_805AD204 +lbl_805AD204: + .incbin "baserom.dol", 0x3F9AA4, 0x4 +.global lbl_805AD208 +lbl_805AD208: + .incbin "baserom.dol", 0x3F9AA8, 0x4 +.global lbl_805AD20C +lbl_805AD20C: + .incbin "baserom.dol", 0x3F9AAC, 0x4 +.global lbl_805AD210 +lbl_805AD210: + .incbin "baserom.dol", 0x3F9AB0, 0x4 +.global lbl_805AD214 +lbl_805AD214: + .incbin "baserom.dol", 0x3F9AB4, 0x4 +.global lbl_805AD218 +lbl_805AD218: + .incbin "baserom.dol", 0x3F9AB8, 0x4 +.global lbl_805AD21C +lbl_805AD21C: + .incbin "baserom.dol", 0x3F9ABC, 0x4 +.global lbl_805AD220 +lbl_805AD220: + .incbin "baserom.dol", 0x3F9AC0, 0x4 +.global lbl_805AD224 +lbl_805AD224: + .incbin "baserom.dol", 0x3F9AC4, 0x4 +.global lbl_805AD228 +lbl_805AD228: + .incbin "baserom.dol", 0x3F9AC8, 0x4 +.global lbl_805AD22C +lbl_805AD22C: + .incbin "baserom.dol", 0x3F9ACC, 0x4 +.global lbl_805AD230 +lbl_805AD230: + .incbin "baserom.dol", 0x3F9AD0, 0x4 +.global lbl_805AD234 +lbl_805AD234: + .incbin "baserom.dol", 0x3F9AD4, 0x4 +.global lbl_805AD238 +lbl_805AD238: + .incbin "baserom.dol", 0x3F9AD8, 0x4 +.global lbl_805AD23C +lbl_805AD23C: + .incbin "baserom.dol", 0x3F9ADC, 0x4 +.global lbl_805AD240 +lbl_805AD240: + .incbin "baserom.dol", 0x3F9AE0, 0x4 +.global lbl_805AD244 +lbl_805AD244: + .incbin "baserom.dol", 0x3F9AE4, 0x4 +.global lbl_805AD248 +lbl_805AD248: + .incbin "baserom.dol", 0x3F9AE8, 0x4 +.global lbl_805AD24C +lbl_805AD24C: + .incbin "baserom.dol", 0x3F9AEC, 0x4 +.global lbl_805AD250 +lbl_805AD250: + .incbin "baserom.dol", 0x3F9AF0, 0x4 +.global lbl_805AD254 +lbl_805AD254: + .incbin "baserom.dol", 0x3F9AF4, 0x4 +.global lbl_805AD258 +lbl_805AD258: + .incbin "baserom.dol", 0x3F9AF8, 0x4 +.global lbl_805AD25C +lbl_805AD25C: + .incbin "baserom.dol", 0x3F9AFC, 0x4 +.global lbl_805AD260 +lbl_805AD260: + .incbin "baserom.dol", 0x3F9B00, 0x4 +.global lbl_805AD264 +lbl_805AD264: + .incbin "baserom.dol", 0x3F9B04, 0x4 +.global lbl_805AD268 +lbl_805AD268: + .incbin "baserom.dol", 0x3F9B08, 0x4 +.global lbl_805AD26C +lbl_805AD26C: + .incbin "baserom.dol", 0x3F9B0C, 0x4 +.global lbl_805AD270 +lbl_805AD270: + .incbin "baserom.dol", 0x3F9B10, 0x4 +.global lbl_805AD274 +lbl_805AD274: + .incbin "baserom.dol", 0x3F9B14, 0x4 +.global lbl_805AD278 +lbl_805AD278: + .incbin "baserom.dol", 0x3F9B18, 0x4 +.global lbl_805AD27C +lbl_805AD27C: + .incbin "baserom.dol", 0x3F9B1C, 0x4 +.global lbl_805AD280 +lbl_805AD280: + .incbin "baserom.dol", 0x3F9B20, 0x4 +.global lbl_805AD284 +lbl_805AD284: + .incbin "baserom.dol", 0x3F9B24, 0x4 +.global lbl_805AD288 +lbl_805AD288: + .incbin "baserom.dol", 0x3F9B28, 0x4 +.global lbl_805AD28C +lbl_805AD28C: + .incbin "baserom.dol", 0x3F9B2C, 0x4 +.global lbl_805AD290 +lbl_805AD290: + .incbin "baserom.dol", 0x3F9B30, 0x4 +.global lbl_805AD294 +lbl_805AD294: + .incbin "baserom.dol", 0x3F9B34, 0x4 +.global lbl_805AD298 +lbl_805AD298: + .incbin "baserom.dol", 0x3F9B38, 0x4 +.global lbl_805AD29C +lbl_805AD29C: + .incbin "baserom.dol", 0x3F9B3C, 0x4 +.global lbl_805AD2A0 +lbl_805AD2A0: + .incbin "baserom.dol", 0x3F9B40, 0x4 +.global lbl_805AD2A4 +lbl_805AD2A4: + .incbin "baserom.dol", 0x3F9B44, 0x4 +.global lbl_805AD2A8 +lbl_805AD2A8: + .incbin "baserom.dol", 0x3F9B48, 0x4 +.global lbl_805AD2AC +lbl_805AD2AC: + .incbin "baserom.dol", 0x3F9B4C, 0x4 +.global lbl_805AD2B0 +lbl_805AD2B0: + .incbin "baserom.dol", 0x3F9B50, 0x4 +.global lbl_805AD2B4 +lbl_805AD2B4: + .incbin "baserom.dol", 0x3F9B54, 0x4 +.global lbl_805AD2B8 +lbl_805AD2B8: + .incbin "baserom.dol", 0x3F9B58, 0x8 +.global lbl_805AD2C0 +lbl_805AD2C0: + .incbin "baserom.dol", 0x3F9B60, 0x4 +.global lbl_805AD2C4 +lbl_805AD2C4: + .incbin "baserom.dol", 0x3F9B64, 0x4 +.global lbl_805AD2C8 +lbl_805AD2C8: + .incbin "baserom.dol", 0x3F9B68, 0x4 +.global lbl_805AD2CC +lbl_805AD2CC: + .incbin "baserom.dol", 0x3F9B6C, 0x4 +.global lbl_805AD2D0 +lbl_805AD2D0: + .incbin "baserom.dol", 0x3F9B70, 0x4 +.global lbl_805AD2D4 +lbl_805AD2D4: + .incbin "baserom.dol", 0x3F9B74, 0x4 +.global lbl_805AD2D8 +lbl_805AD2D8: + .incbin "baserom.dol", 0x3F9B78, 0x4 +.global lbl_805AD2DC +lbl_805AD2DC: + .incbin "baserom.dol", 0x3F9B7C, 0x4 +.global lbl_805AD2E0 +lbl_805AD2E0: + .incbin "baserom.dol", 0x3F9B80, 0x4 +.global lbl_805AD2E4 +lbl_805AD2E4: + .incbin "baserom.dol", 0x3F9B84, 0x4 +.global lbl_805AD2E8 +lbl_805AD2E8: + .incbin "baserom.dol", 0x3F9B88, 0x4 +.global lbl_805AD2EC +lbl_805AD2EC: + .incbin "baserom.dol", 0x3F9B8C, 0x4 +.global lbl_805AD2F0 +lbl_805AD2F0: + .incbin "baserom.dol", 0x3F9B90, 0x4 +.global lbl_805AD2F4 +lbl_805AD2F4: + .incbin "baserom.dol", 0x3F9B94, 0x4 +.global lbl_805AD2F8 +lbl_805AD2F8: + .incbin "baserom.dol", 0x3F9B98, 0x4 +.global lbl_805AD2FC +lbl_805AD2FC: + .incbin "baserom.dol", 0x3F9B9C, 0x4 +.global lbl_805AD300 +lbl_805AD300: + .incbin "baserom.dol", 0x3F9BA0, 0x4 +.global lbl_805AD304 +lbl_805AD304: + .incbin "baserom.dol", 0x3F9BA4, 0x4 +.global lbl_805AD308 +lbl_805AD308: + .incbin "baserom.dol", 0x3F9BA8, 0x4 +.global lbl_805AD30C +lbl_805AD30C: + .incbin "baserom.dol", 0x3F9BAC, 0x4 +.global lbl_805AD310 +lbl_805AD310: + .incbin "baserom.dol", 0x3F9BB0, 0x4 +.global lbl_805AD314 +lbl_805AD314: + .incbin "baserom.dol", 0x3F9BB4, 0x4 +.global lbl_805AD318 +lbl_805AD318: + .incbin "baserom.dol", 0x3F9BB8, 0x4 +.global lbl_805AD31C +lbl_805AD31C: + .incbin "baserom.dol", 0x3F9BBC, 0x4 +.global lbl_805AD320 +lbl_805AD320: + .incbin "baserom.dol", 0x3F9BC0, 0x4 +.global lbl_805AD324 +lbl_805AD324: + .incbin "baserom.dol", 0x3F9BC4, 0x4 +.global lbl_805AD328 +lbl_805AD328: + .incbin "baserom.dol", 0x3F9BC8, 0x4 +.global lbl_805AD32C +lbl_805AD32C: + .incbin "baserom.dol", 0x3F9BCC, 0x4 +.global lbl_805AD330 +lbl_805AD330: + .incbin "baserom.dol", 0x3F9BD0, 0x4 +.global lbl_805AD334 +lbl_805AD334: + .incbin "baserom.dol", 0x3F9BD4, 0x4 +.global lbl_805AD338 +lbl_805AD338: + .incbin "baserom.dol", 0x3F9BD8, 0x4 +.global lbl_805AD33C +lbl_805AD33C: + .incbin "baserom.dol", 0x3F9BDC, 0x4 +.global lbl_805AD340 +lbl_805AD340: + .incbin "baserom.dol", 0x3F9BE0, 0x4 +.global lbl_805AD344 +lbl_805AD344: + .incbin "baserom.dol", 0x3F9BE4, 0x4 +.global lbl_805AD348 +lbl_805AD348: + .incbin "baserom.dol", 0x3F9BE8, 0x4 +.global lbl_805AD34C +lbl_805AD34C: + .incbin "baserom.dol", 0x3F9BEC, 0x4 +.global lbl_805AD350 +lbl_805AD350: + .incbin "baserom.dol", 0x3F9BF0, 0x8 +.global lbl_805AD358 +lbl_805AD358: + .incbin "baserom.dol", 0x3F9BF8, 0x4 +.global lbl_805AD35C +lbl_805AD35C: + .incbin "baserom.dol", 0x3F9BFC, 0x4 +.global lbl_805AD360 +lbl_805AD360: + .incbin "baserom.dol", 0x3F9C00, 0x4 +.global lbl_805AD364 +lbl_805AD364: + .incbin "baserom.dol", 0x3F9C04, 0x4 +.global lbl_805AD368 +lbl_805AD368: + .incbin "baserom.dol", 0x3F9C08, 0x4 +.global lbl_805AD36C +lbl_805AD36C: + .incbin "baserom.dol", 0x3F9C0C, 0x4 +.global lbl_805AD370 +lbl_805AD370: + .incbin "baserom.dol", 0x3F9C10, 0x8 +.global lbl_805AD378 +lbl_805AD378: + .incbin "baserom.dol", 0x3F9C18, 0x4 +.global lbl_805AD37C +lbl_805AD37C: + .incbin "baserom.dol", 0x3F9C1C, 0x4 +.global lbl_805AD380 +lbl_805AD380: + .incbin "baserom.dol", 0x3F9C20, 0x4 +.global lbl_805AD384 +lbl_805AD384: + .incbin "baserom.dol", 0x3F9C24, 0x4 +.global lbl_805AD388 +lbl_805AD388: + .incbin "baserom.dol", 0x3F9C28, 0x4 +.global lbl_805AD38C +lbl_805AD38C: + .incbin "baserom.dol", 0x3F9C2C, 0x4 +.global lbl_805AD390 +lbl_805AD390: + .incbin "baserom.dol", 0x3F9C30, 0x4 +.global lbl_805AD394 +lbl_805AD394: + .incbin "baserom.dol", 0x3F9C34, 0x4 +.global lbl_805AD398 +lbl_805AD398: + .incbin "baserom.dol", 0x3F9C38, 0x4 +.global lbl_805AD39C +lbl_805AD39C: + .incbin "baserom.dol", 0x3F9C3C, 0x4 +.global lbl_805AD3A0 +lbl_805AD3A0: + .incbin "baserom.dol", 0x3F9C40, 0x4 +.global lbl_805AD3A4 +lbl_805AD3A4: + .incbin "baserom.dol", 0x3F9C44, 0x4 +.global lbl_805AD3A8 +lbl_805AD3A8: + .incbin "baserom.dol", 0x3F9C48, 0x4 +.global lbl_805AD3AC +lbl_805AD3AC: + .incbin "baserom.dol", 0x3F9C4C, 0x4 +.global lbl_805AD3B0 +lbl_805AD3B0: + .incbin "baserom.dol", 0x3F9C50, 0x4 +.global lbl_805AD3B4 +lbl_805AD3B4: + .incbin "baserom.dol", 0x3F9C54, 0x4 +.global lbl_805AD3B8 +lbl_805AD3B8: + .incbin "baserom.dol", 0x3F9C58, 0x4 +.global lbl_805AD3BC +lbl_805AD3BC: + .incbin "baserom.dol", 0x3F9C5C, 0x4 +.global lbl_805AD3C0 +lbl_805AD3C0: + .incbin "baserom.dol", 0x3F9C60, 0x4 +.global lbl_805AD3C4 +lbl_805AD3C4: + .incbin "baserom.dol", 0x3F9C64, 0x4 +.global lbl_805AD3C8 +lbl_805AD3C8: + .incbin "baserom.dol", 0x3F9C68, 0x4 +.global lbl_805AD3CC +lbl_805AD3CC: + .incbin "baserom.dol", 0x3F9C6C, 0x4 +.global lbl_805AD3D0 +lbl_805AD3D0: + .incbin "baserom.dol", 0x3F9C70, 0x4 +.global lbl_805AD3D4 +lbl_805AD3D4: + .incbin "baserom.dol", 0x3F9C74, 0x4 +.global lbl_805AD3D8 +lbl_805AD3D8: + .incbin "baserom.dol", 0x3F9C78, 0x4 +.global lbl_805AD3DC +lbl_805AD3DC: + .incbin "baserom.dol", 0x3F9C7C, 0x4 +.global lbl_805AD3E0 +lbl_805AD3E0: + .incbin "baserom.dol", 0x3F9C80, 0x8 +.global lbl_805AD3E8 +lbl_805AD3E8: + .incbin "baserom.dol", 0x3F9C88, 0x4 +.global lbl_805AD3EC +lbl_805AD3EC: + .incbin "baserom.dol", 0x3F9C8C, 0x4 +.global lbl_805AD3F0 +lbl_805AD3F0: + .incbin "baserom.dol", 0x3F9C90, 0x4 +.global lbl_805AD3F4 +lbl_805AD3F4: + .incbin "baserom.dol", 0x3F9C94, 0x4 +.global lbl_805AD3F8 +lbl_805AD3F8: + .incbin "baserom.dol", 0x3F9C98, 0x8 +.global lbl_805AD400 +lbl_805AD400: + .incbin "baserom.dol", 0x3F9CA0, 0x4 +.global lbl_805AD404 +lbl_805AD404: + .incbin "baserom.dol", 0x3F9CA4, 0x4 +.global lbl_805AD408 +lbl_805AD408: + .incbin "baserom.dol", 0x3F9CA8, 0x8 +.global lbl_805AD410 +lbl_805AD410: + .incbin "baserom.dol", 0x3F9CB0, 0x8 +.global lbl_805AD418 +lbl_805AD418: + .incbin "baserom.dol", 0x3F9CB8, 0x4 +.global lbl_805AD41C +lbl_805AD41C: + .incbin "baserom.dol", 0x3F9CBC, 0x4 +.global lbl_805AD420 +lbl_805AD420: + .incbin "baserom.dol", 0x3F9CC0, 0x4 +.global lbl_805AD424 +lbl_805AD424: + .incbin "baserom.dol", 0x3F9CC4, 0x4 +.global lbl_805AD428 +lbl_805AD428: + .incbin "baserom.dol", 0x3F9CC8, 0x4 +.global lbl_805AD42C +lbl_805AD42C: + .incbin "baserom.dol", 0x3F9CCC, 0x4 +.global lbl_805AD430 +lbl_805AD430: + .incbin "baserom.dol", 0x3F9CD0, 0x4 +.global lbl_805AD434 +lbl_805AD434: + .incbin "baserom.dol", 0x3F9CD4, 0x4 +.global lbl_805AD438 +lbl_805AD438: + .incbin "baserom.dol", 0x3F9CD8, 0x4 +.global lbl_805AD43C +lbl_805AD43C: + .incbin "baserom.dol", 0x3F9CDC, 0x4 +.global lbl_805AD440 +lbl_805AD440: + .incbin "baserom.dol", 0x3F9CE0, 0x4 +.global lbl_805AD444 +lbl_805AD444: + .incbin "baserom.dol", 0x3F9CE4, 0x4 +.global lbl_805AD448 +lbl_805AD448: + .incbin "baserom.dol", 0x3F9CE8, 0x4 +.global lbl_805AD44C +lbl_805AD44C: + .incbin "baserom.dol", 0x3F9CEC, 0x4 +.global lbl_805AD450 +lbl_805AD450: + .incbin "baserom.dol", 0x3F9CF0, 0x4 +.global lbl_805AD454 +lbl_805AD454: + .incbin "baserom.dol", 0x3F9CF4, 0x4 +.global lbl_805AD458 +lbl_805AD458: + .incbin "baserom.dol", 0x3F9CF8, 0x4 +.global lbl_805AD45C +lbl_805AD45C: + .incbin "baserom.dol", 0x3F9CFC, 0x4 +.global lbl_805AD460 +lbl_805AD460: + .incbin "baserom.dol", 0x3F9D00, 0x4 +.global lbl_805AD464 +lbl_805AD464: + .incbin "baserom.dol", 0x3F9D04, 0x4 +.global lbl_805AD468 +lbl_805AD468: + .incbin "baserom.dol", 0x3F9D08, 0x4 +.global lbl_805AD46C +lbl_805AD46C: + .incbin "baserom.dol", 0x3F9D0C, 0x4 +.global lbl_805AD470 +lbl_805AD470: + .incbin "baserom.dol", 0x3F9D10, 0x8 +.global lbl_805AD478 +lbl_805AD478: + .incbin "baserom.dol", 0x3F9D18, 0x4 +.global lbl_805AD47C +lbl_805AD47C: + .incbin "baserom.dol", 0x3F9D1C, 0x4 +.global lbl_805AD480 +lbl_805AD480: + .incbin "baserom.dol", 0x3F9D20, 0x4 +.global lbl_805AD484 +lbl_805AD484: + .incbin "baserom.dol", 0x3F9D24, 0x4 +.global lbl_805AD488 +lbl_805AD488: + .incbin "baserom.dol", 0x3F9D28, 0x4 +.global lbl_805AD48C +lbl_805AD48C: + .incbin "baserom.dol", 0x3F9D2C, 0x4 +.global lbl_805AD490 +lbl_805AD490: + .incbin "baserom.dol", 0x3F9D30, 0x4 +.global lbl_805AD494 +lbl_805AD494: + .incbin "baserom.dol", 0x3F9D34, 0x4 +.global lbl_805AD498 +lbl_805AD498: + .incbin "baserom.dol", 0x3F9D38, 0x4 +.global lbl_805AD49C +lbl_805AD49C: + .incbin "baserom.dol", 0x3F9D3C, 0x4 +.global lbl_805AD4A0 +lbl_805AD4A0: + .incbin "baserom.dol", 0x3F9D40, 0x8 +.global lbl_805AD4A8 +lbl_805AD4A8: + .incbin "baserom.dol", 0x3F9D48, 0x4 +.global lbl_805AD4AC +lbl_805AD4AC: + .incbin "baserom.dol", 0x3F9D4C, 0x4 +.global lbl_805AD4B0 +lbl_805AD4B0: + .incbin "baserom.dol", 0x3F9D50, 0x4 +.global lbl_805AD4B4 +lbl_805AD4B4: + .incbin "baserom.dol", 0x3F9D54, 0x4 +.global lbl_805AD4B8 +lbl_805AD4B8: + .incbin "baserom.dol", 0x3F9D58, 0x8 +.global lbl_805AD4C0 +lbl_805AD4C0: + .incbin "baserom.dol", 0x3F9D60, 0x4 +.global lbl_805AD4C4 +lbl_805AD4C4: + .incbin "baserom.dol", 0x3F9D64, 0x4 +.global lbl_805AD4C8 +lbl_805AD4C8: + .incbin "baserom.dol", 0x3F9D68, 0x4 +.global lbl_805AD4CC +lbl_805AD4CC: + .incbin "baserom.dol", 0x3F9D6C, 0x4 +.global lbl_805AD4D0 +lbl_805AD4D0: + .incbin "baserom.dol", 0x3F9D70, 0x8 +.global lbl_805AD4D8 +lbl_805AD4D8: + .incbin "baserom.dol", 0x3F9D78, 0x8 +.global lbl_805AD4E0 +lbl_805AD4E0: + .incbin "baserom.dol", 0x3F9D80, 0x4 +.global lbl_805AD4E4 +lbl_805AD4E4: + .incbin "baserom.dol", 0x3F9D84, 0x4 +.global lbl_805AD4E8 +lbl_805AD4E8: + .incbin "baserom.dol", 0x3F9D88, 0x4 +.global lbl_805AD4EC +lbl_805AD4EC: + .incbin "baserom.dol", 0x3F9D8C, 0x4 +.global lbl_805AD4F0 +lbl_805AD4F0: + .incbin "baserom.dol", 0x3F9D90, 0x4 +.global lbl_805AD4F4 +lbl_805AD4F4: + .incbin "baserom.dol", 0x3F9D94, 0x4 +.global lbl_805AD4F8 +lbl_805AD4F8: + .incbin "baserom.dol", 0x3F9D98, 0x8 +.global lbl_805AD500 +lbl_805AD500: + .incbin "baserom.dol", 0x3F9DA0, 0x4 +.global lbl_805AD504 +lbl_805AD504: + .incbin "baserom.dol", 0x3F9DA4, 0x4 +.global lbl_805AD508 +lbl_805AD508: + .incbin "baserom.dol", 0x3F9DA8, 0x4 +.global lbl_805AD50C +lbl_805AD50C: + .incbin "baserom.dol", 0x3F9DAC, 0x4 +.global lbl_805AD510 +lbl_805AD510: + .incbin "baserom.dol", 0x3F9DB0, 0x4 +.global lbl_805AD514 +lbl_805AD514: + .incbin "baserom.dol", 0x3F9DB4, 0x4 +.global lbl_805AD518 +lbl_805AD518: + .incbin "baserom.dol", 0x3F9DB8, 0x4 +.global lbl_805AD51C +lbl_805AD51C: + .incbin "baserom.dol", 0x3F9DBC, 0x4 +.global lbl_805AD520 +lbl_805AD520: + .incbin "baserom.dol", 0x3F9DC0, 0x4 +.global lbl_805AD524 +lbl_805AD524: + .incbin "baserom.dol", 0x3F9DC4, 0x4 +.global lbl_805AD528 +lbl_805AD528: + .incbin "baserom.dol", 0x3F9DC8, 0x8 +.global lbl_805AD530 +lbl_805AD530: + .incbin "baserom.dol", 0x3F9DD0, 0x4 +.global lbl_805AD534 +lbl_805AD534: + .incbin "baserom.dol", 0x3F9DD4, 0x4 +.global lbl_805AD538 +lbl_805AD538: + .incbin "baserom.dol", 0x3F9DD8, 0x8 +.global lbl_805AD540 +lbl_805AD540: + .incbin "baserom.dol", 0x3F9DE0, 0x4 +.global lbl_805AD544 +lbl_805AD544: + .incbin "baserom.dol", 0x3F9DE4, 0x4 +.global lbl_805AD548 +lbl_805AD548: + .incbin "baserom.dol", 0x3F9DE8, 0x8 +.global lbl_805AD550 +lbl_805AD550: + .incbin "baserom.dol", 0x3F9DF0, 0x8 +.global lbl_805AD558 +lbl_805AD558: + .incbin "baserom.dol", 0x3F9DF8, 0x8 +.global lbl_805AD560 +lbl_805AD560: + .incbin "baserom.dol", 0x3F9E00, 0x4 +.global lbl_805AD564 +lbl_805AD564: + .incbin "baserom.dol", 0x3F9E04, 0x4 +.global lbl_805AD568 +lbl_805AD568: + .incbin "baserom.dol", 0x3F9E08, 0x4 +.global lbl_805AD56C +lbl_805AD56C: + .incbin "baserom.dol", 0x3F9E0C, 0x4 +.global lbl_805AD570 +lbl_805AD570: + .incbin "baserom.dol", 0x3F9E10, 0x4 +.global lbl_805AD574 +lbl_805AD574: + .incbin "baserom.dol", 0x3F9E14, 0x4 +.global lbl_805AD578 +lbl_805AD578: + .incbin "baserom.dol", 0x3F9E18, 0x4 +.global lbl_805AD57C +lbl_805AD57C: + .incbin "baserom.dol", 0x3F9E1C, 0x4 +.global lbl_805AD580 +lbl_805AD580: + .incbin "baserom.dol", 0x3F9E20, 0x8 +.global lbl_805AD588 +lbl_805AD588: + .incbin "baserom.dol", 0x3F9E28, 0x8 +.global lbl_805AD590 +lbl_805AD590: + .incbin "baserom.dol", 0x3F9E30, 0x4 +.global lbl_805AD594 +lbl_805AD594: + .incbin "baserom.dol", 0x3F9E34, 0x4 +.global lbl_805AD598 +lbl_805AD598: + .incbin "baserom.dol", 0x3F9E38, 0x4 +.global lbl_805AD59C +lbl_805AD59C: + .incbin "baserom.dol", 0x3F9E3C, 0x4 +.global lbl_805AD5A0 +lbl_805AD5A0: + .incbin "baserom.dol", 0x3F9E40, 0x8 +.global lbl_805AD5A8 +lbl_805AD5A8: + .incbin "baserom.dol", 0x3F9E48, 0x8 +.global lbl_805AD5B0 +lbl_805AD5B0: + .incbin "baserom.dol", 0x3F9E50, 0x4 +.global lbl_805AD5B4 +lbl_805AD5B4: + .incbin "baserom.dol", 0x3F9E54, 0x4 +.global lbl_805AD5B8 +lbl_805AD5B8: + .incbin "baserom.dol", 0x3F9E58, 0x4 +.global lbl_805AD5BC +lbl_805AD5BC: + .incbin "baserom.dol", 0x3F9E5C, 0x4 +.global lbl_805AD5C0 +lbl_805AD5C0: + .incbin "baserom.dol", 0x3F9E60, 0x4 +.global lbl_805AD5C4 +lbl_805AD5C4: + .incbin "baserom.dol", 0x3F9E64, 0x4 +.global lbl_805AD5C8 +lbl_805AD5C8: + .incbin "baserom.dol", 0x3F9E68, 0x8 +.global lbl_805AD5D0 +lbl_805AD5D0: + .incbin "baserom.dol", 0x3F9E70, 0x8 +.global lbl_805AD5D8 +lbl_805AD5D8: + .incbin "baserom.dol", 0x3F9E78, 0x4 +.global lbl_805AD5DC +lbl_805AD5DC: + .incbin "baserom.dol", 0x3F9E7C, 0x4 +.global lbl_805AD5E0 +lbl_805AD5E0: + .incbin "baserom.dol", 0x3F9E80, 0x4 +.global lbl_805AD5E4 +lbl_805AD5E4: + .incbin "baserom.dol", 0x3F9E84, 0x4 +.global lbl_805AD5E8 +lbl_805AD5E8: + .incbin "baserom.dol", 0x3F9E88, 0x8 +.global lbl_805AD5F0 +lbl_805AD5F0: + .incbin "baserom.dol", 0x3F9E90, 0x4 +.global lbl_805AD5F4 +lbl_805AD5F4: + .incbin "baserom.dol", 0x3F9E94, 0x4 +.global lbl_805AD5F8 +lbl_805AD5F8: + .incbin "baserom.dol", 0x3F9E98, 0x4 +.global lbl_805AD5FC +lbl_805AD5FC: + .incbin "baserom.dol", 0x3F9E9C, 0x4 +.global lbl_805AD600 +lbl_805AD600: + .incbin "baserom.dol", 0x3F9EA0, 0x4 +.global lbl_805AD604 +lbl_805AD604: + .incbin "baserom.dol", 0x3F9EA4, 0x4 +.global lbl_805AD608 +lbl_805AD608: + .incbin "baserom.dol", 0x3F9EA8, 0x4 +.global lbl_805AD60C +lbl_805AD60C: + .incbin "baserom.dol", 0x3F9EAC, 0x4 +.global lbl_805AD610 +lbl_805AD610: + .incbin "baserom.dol", 0x3F9EB0, 0x4 +.global lbl_805AD614 +lbl_805AD614: + .incbin "baserom.dol", 0x3F9EB4, 0x4 +.global lbl_805AD618 +lbl_805AD618: + .incbin "baserom.dol", 0x3F9EB8, 0x4 +.global lbl_805AD61C +lbl_805AD61C: + .incbin "baserom.dol", 0x3F9EBC, 0x4 +.global lbl_805AD620 +lbl_805AD620: + .incbin "baserom.dol", 0x3F9EC0, 0x8 +.global lbl_805AD628 +lbl_805AD628: + .incbin "baserom.dol", 0x3F9EC8, 0x4 +.global lbl_805AD62C +lbl_805AD62C: + .incbin "baserom.dol", 0x3F9ECC, 0x4 +.global lbl_805AD630 +lbl_805AD630: + .incbin "baserom.dol", 0x3F9ED0, 0x4 +.global lbl_805AD634 +lbl_805AD634: + .incbin "baserom.dol", 0x3F9ED4, 0x4 +.global lbl_805AD638 +lbl_805AD638: + .incbin "baserom.dol", 0x3F9ED8, 0x4 +.global lbl_805AD63C +lbl_805AD63C: + .incbin "baserom.dol", 0x3F9EDC, 0x4 +.global lbl_805AD640 +lbl_805AD640: + .incbin "baserom.dol", 0x3F9EE0, 0x4 +.global lbl_805AD644 +lbl_805AD644: + .incbin "baserom.dol", 0x3F9EE4, 0x4 +.global lbl_805AD648 +lbl_805AD648: + .incbin "baserom.dol", 0x3F9EE8, 0x4 +.global lbl_805AD64C +lbl_805AD64C: + .incbin "baserom.dol", 0x3F9EEC, 0x4 +.global lbl_805AD650 +lbl_805AD650: + .incbin "baserom.dol", 0x3F9EF0, 0x4 +.global lbl_805AD654 +lbl_805AD654: + .incbin "baserom.dol", 0x3F9EF4, 0x4 +.global lbl_805AD658 +lbl_805AD658: + .incbin "baserom.dol", 0x3F9EF8, 0x4 +.global lbl_805AD65C +lbl_805AD65C: + .incbin "baserom.dol", 0x3F9EFC, 0x4 +.global lbl_805AD660 +lbl_805AD660: + .incbin "baserom.dol", 0x3F9F00, 0x4 +.global lbl_805AD664 +lbl_805AD664: + .incbin "baserom.dol", 0x3F9F04, 0x4 +.global lbl_805AD668 +lbl_805AD668: + .incbin "baserom.dol", 0x3F9F08, 0x4 +.global lbl_805AD66C +lbl_805AD66C: + .incbin "baserom.dol", 0x3F9F0C, 0x4 +.global lbl_805AD670 +lbl_805AD670: + .incbin "baserom.dol", 0x3F9F10, 0x4 +.global lbl_805AD674 +lbl_805AD674: + .incbin "baserom.dol", 0x3F9F14, 0x4 +.global lbl_805AD678 +lbl_805AD678: + .incbin "baserom.dol", 0x3F9F18, 0x4 +.global lbl_805AD67C +lbl_805AD67C: + .incbin "baserom.dol", 0x3F9F1C, 0x4 +.global lbl_805AD680 +lbl_805AD680: + .incbin "baserom.dol", 0x3F9F20, 0x4 +.global lbl_805AD684 +lbl_805AD684: + .incbin "baserom.dol", 0x3F9F24, 0x4 +.global lbl_805AD688 +lbl_805AD688: + .incbin "baserom.dol", 0x3F9F28, 0x4 +.global lbl_805AD68C +lbl_805AD68C: + .incbin "baserom.dol", 0x3F9F2C, 0x4 +.global lbl_805AD690 +lbl_805AD690: + .incbin "baserom.dol", 0x3F9F30, 0x4 +.global lbl_805AD694 +lbl_805AD694: + .incbin "baserom.dol", 0x3F9F34, 0x4 +.global lbl_805AD698 +lbl_805AD698: + .incbin "baserom.dol", 0x3F9F38, 0x4 +.global lbl_805AD69C +lbl_805AD69C: + .incbin "baserom.dol", 0x3F9F3C, 0x4 +.global lbl_805AD6A0 +lbl_805AD6A0: + .incbin "baserom.dol", 0x3F9F40, 0x4 +.global lbl_805AD6A4 +lbl_805AD6A4: + .incbin "baserom.dol", 0x3F9F44, 0x4 +.global lbl_805AD6A8 +lbl_805AD6A8: + .incbin "baserom.dol", 0x3F9F48, 0x4 +.global lbl_805AD6AC +lbl_805AD6AC: + .incbin "baserom.dol", 0x3F9F4C, 0x4 +.global lbl_805AD6B0 +lbl_805AD6B0: + .incbin "baserom.dol", 0x3F9F50, 0x4 +.global lbl_805AD6B4 +lbl_805AD6B4: + .incbin "baserom.dol", 0x3F9F54, 0x4 +.global lbl_805AD6B8 +lbl_805AD6B8: + .incbin "baserom.dol", 0x3F9F58, 0x4 +.global lbl_805AD6BC +lbl_805AD6BC: + .incbin "baserom.dol", 0x3F9F5C, 0x4 +.global lbl_805AD6C0 +lbl_805AD6C0: + .incbin "baserom.dol", 0x3F9F60, 0x4 +.global lbl_805AD6C4 +lbl_805AD6C4: + .incbin "baserom.dol", 0x3F9F64, 0x4 +.global lbl_805AD6C8 +lbl_805AD6C8: + .incbin "baserom.dol", 0x3F9F68, 0x4 +.global lbl_805AD6CC +lbl_805AD6CC: + .incbin "baserom.dol", 0x3F9F6C, 0x4 +.global lbl_805AD6D0 +lbl_805AD6D0: + .incbin "baserom.dol", 0x3F9F70, 0x4 +.global lbl_805AD6D4 +lbl_805AD6D4: + .incbin "baserom.dol", 0x3F9F74, 0x4 +.global lbl_805AD6D8 +lbl_805AD6D8: + .incbin "baserom.dol", 0x3F9F78, 0x4 +.global lbl_805AD6DC +lbl_805AD6DC: + .incbin "baserom.dol", 0x3F9F7C, 0x4 +.global lbl_805AD6E0 +lbl_805AD6E0: + .incbin "baserom.dol", 0x3F9F80, 0x8 +.global lbl_805AD6E8 +lbl_805AD6E8: + .incbin "baserom.dol", 0x3F9F88, 0x4 +.global lbl_805AD6EC +lbl_805AD6EC: + .incbin "baserom.dol", 0x3F9F8C, 0x4 +.global lbl_805AD6F0 +lbl_805AD6F0: + .incbin "baserom.dol", 0x3F9F90, 0x4 +.global lbl_805AD6F4 +lbl_805AD6F4: + .incbin "baserom.dol", 0x3F9F94, 0x4 +.global lbl_805AD6F8 +lbl_805AD6F8: + .incbin "baserom.dol", 0x3F9F98, 0x4 +.global lbl_805AD6FC +lbl_805AD6FC: + .incbin "baserom.dol", 0x3F9F9C, 0x4 +.global lbl_805AD700 +lbl_805AD700: + .incbin "baserom.dol", 0x3F9FA0, 0x8 +.global lbl_805AD708 +lbl_805AD708: + .incbin "baserom.dol", 0x3F9FA8, 0x4 +.global lbl_805AD70C +lbl_805AD70C: + .incbin "baserom.dol", 0x3F9FAC, 0x4 +.global lbl_805AD710 +lbl_805AD710: + .incbin "baserom.dol", 0x3F9FB0, 0x4 +.global lbl_805AD714 +lbl_805AD714: + .incbin "baserom.dol", 0x3F9FB4, 0x4 +.global lbl_805AD718 +lbl_805AD718: + .incbin "baserom.dol", 0x3F9FB8, 0x4 +.global lbl_805AD71C +lbl_805AD71C: + .incbin "baserom.dol", 0x3F9FBC, 0x4 +.global lbl_805AD720 +lbl_805AD720: + .incbin "baserom.dol", 0x3F9FC0, 0x4 +.global lbl_805AD724 +lbl_805AD724: + .incbin "baserom.dol", 0x3F9FC4, 0x4 +.global lbl_805AD728 +lbl_805AD728: + .incbin "baserom.dol", 0x3F9FC8, 0x8 +.global lbl_805AD730 +lbl_805AD730: + .incbin "baserom.dol", 0x3F9FD0, 0x4 +.global lbl_805AD734 +lbl_805AD734: + .incbin "baserom.dol", 0x3F9FD4, 0x4 +.global lbl_805AD738 +lbl_805AD738: + .incbin "baserom.dol", 0x3F9FD8, 0x4 +.global lbl_805AD73C +lbl_805AD73C: + .incbin "baserom.dol", 0x3F9FDC, 0x4 +.global lbl_805AD740 +lbl_805AD740: + .incbin "baserom.dol", 0x3F9FE0, 0x8 +.global lbl_805AD748 +lbl_805AD748: + .incbin "baserom.dol", 0x3F9FE8, 0x4 +.global lbl_805AD74C +lbl_805AD74C: + .incbin "baserom.dol", 0x3F9FEC, 0x4 +.global lbl_805AD750 +lbl_805AD750: + .incbin "baserom.dol", 0x3F9FF0, 0x4 +.global lbl_805AD754 +lbl_805AD754: + .incbin "baserom.dol", 0x3F9FF4, 0x4 +.global lbl_805AD758 +lbl_805AD758: + .incbin "baserom.dol", 0x3F9FF8, 0x4 +.global lbl_805AD75C +lbl_805AD75C: + .incbin "baserom.dol", 0x3F9FFC, 0x4 +.global lbl_805AD760 +lbl_805AD760: + .incbin "baserom.dol", 0x3FA000, 0x4 +.global lbl_805AD764 +lbl_805AD764: + .incbin "baserom.dol", 0x3FA004, 0x4 +.global lbl_805AD768 +lbl_805AD768: + .incbin "baserom.dol", 0x3FA008, 0x4 +.global lbl_805AD76C +lbl_805AD76C: + .incbin "baserom.dol", 0x3FA00C, 0x4 +.global lbl_805AD770 +lbl_805AD770: + .incbin "baserom.dol", 0x3FA010, 0x4 +.global lbl_805AD774 +lbl_805AD774: + .incbin "baserom.dol", 0x3FA014, 0x4 +.global lbl_805AD778 +lbl_805AD778: + .incbin "baserom.dol", 0x3FA018, 0x4 +.global lbl_805AD77C +lbl_805AD77C: + .incbin "baserom.dol", 0x3FA01C, 0x4 +.global lbl_805AD780 +lbl_805AD780: + .incbin "baserom.dol", 0x3FA020, 0x4 +.global lbl_805AD784 +lbl_805AD784: + .incbin "baserom.dol", 0x3FA024, 0x4 +.global lbl_805AD788 +lbl_805AD788: + .incbin "baserom.dol", 0x3FA028, 0x4 +.global lbl_805AD78C +lbl_805AD78C: + .incbin "baserom.dol", 0x3FA02C, 0x4 +.global lbl_805AD790 +lbl_805AD790: + .incbin "baserom.dol", 0x3FA030, 0x4 +.global lbl_805AD794 +lbl_805AD794: + .incbin "baserom.dol", 0x3FA034, 0x4 +.global lbl_805AD798 +lbl_805AD798: + .incbin "baserom.dol", 0x3FA038, 0x4 +.global lbl_805AD79C +lbl_805AD79C: + .incbin "baserom.dol", 0x3FA03C, 0x4 +.global lbl_805AD7A0 +lbl_805AD7A0: + .incbin "baserom.dol", 0x3FA040, 0x4 +.global lbl_805AD7A4 +lbl_805AD7A4: + .incbin "baserom.dol", 0x3FA044, 0x4 +.global lbl_805AD7A8 +lbl_805AD7A8: + .incbin "baserom.dol", 0x3FA048, 0x4 +.global lbl_805AD7AC +lbl_805AD7AC: + .incbin "baserom.dol", 0x3FA04C, 0x4 +.global lbl_805AD7B0 +lbl_805AD7B0: + .incbin "baserom.dol", 0x3FA050, 0x4 +.global lbl_805AD7B4 +lbl_805AD7B4: + .incbin "baserom.dol", 0x3FA054, 0x4 +.global lbl_805AD7B8 +lbl_805AD7B8: + .incbin "baserom.dol", 0x3FA058, 0x4 +.global lbl_805AD7BC +lbl_805AD7BC: + .incbin "baserom.dol", 0x3FA05C, 0x4 +.global lbl_805AD7C0 +lbl_805AD7C0: + .incbin "baserom.dol", 0x3FA060, 0x8 +.global lbl_805AD7C8 +lbl_805AD7C8: + .incbin "baserom.dol", 0x3FA068, 0x4 +.global lbl_805AD7CC +lbl_805AD7CC: + .incbin "baserom.dol", 0x3FA06C, 0x4 +.global lbl_805AD7D0 +lbl_805AD7D0: + .incbin "baserom.dol", 0x3FA070, 0x4 +.global lbl_805AD7D4 +lbl_805AD7D4: + .incbin "baserom.dol", 0x3FA074, 0x4 +.global lbl_805AD7D8 +lbl_805AD7D8: + .incbin "baserom.dol", 0x3FA078, 0x4 +.global lbl_805AD7DC +lbl_805AD7DC: + .incbin "baserom.dol", 0x3FA07C, 0x4 +.global lbl_805AD7E0 +lbl_805AD7E0: + .incbin "baserom.dol", 0x3FA080, 0x4 +.global lbl_805AD7E4 +lbl_805AD7E4: + .incbin "baserom.dol", 0x3FA084, 0x4 +.global lbl_805AD7E8 +lbl_805AD7E8: + .incbin "baserom.dol", 0x3FA088, 0x4 +.global lbl_805AD7EC +lbl_805AD7EC: + .incbin "baserom.dol", 0x3FA08C, 0x4 +.global lbl_805AD7F0 +lbl_805AD7F0: + .incbin "baserom.dol", 0x3FA090, 0x4 +.global lbl_805AD7F4 +lbl_805AD7F4: + .incbin "baserom.dol", 0x3FA094, 0x4 +.global lbl_805AD7F8 +lbl_805AD7F8: + .incbin "baserom.dol", 0x3FA098, 0x4 +.global lbl_805AD7FC +lbl_805AD7FC: + .incbin "baserom.dol", 0x3FA09C, 0x4 +.global lbl_805AD800 +lbl_805AD800: + .incbin "baserom.dol", 0x3FA0A0, 0x4 +.global lbl_805AD804 +lbl_805AD804: + .incbin "baserom.dol", 0x3FA0A4, 0x4 +.global lbl_805AD808 +lbl_805AD808: + .incbin "baserom.dol", 0x3FA0A8, 0x4 +.global lbl_805AD80C +lbl_805AD80C: + .incbin "baserom.dol", 0x3FA0AC, 0x4 +.global lbl_805AD810 +lbl_805AD810: + .incbin "baserom.dol", 0x3FA0B0, 0x8 +.global lbl_805AD818 +lbl_805AD818: + .incbin "baserom.dol", 0x3FA0B8, 0x4 +.global lbl_805AD81C +lbl_805AD81C: + .incbin "baserom.dol", 0x3FA0BC, 0x4 +.global lbl_805AD820 +lbl_805AD820: + .incbin "baserom.dol", 0x3FA0C0, 0x4 +.global lbl_805AD824 +lbl_805AD824: + .incbin "baserom.dol", 0x3FA0C4, 0x4 +.global lbl_805AD828 +lbl_805AD828: + .incbin "baserom.dol", 0x3FA0C8, 0x4 +.global lbl_805AD82C +lbl_805AD82C: + .incbin "baserom.dol", 0x3FA0CC, 0x4 +.global lbl_805AD830 +lbl_805AD830: + .incbin "baserom.dol", 0x3FA0D0, 0x4 +.global lbl_805AD834 +lbl_805AD834: + .incbin "baserom.dol", 0x3FA0D4, 0x4 +.global lbl_805AD838 +lbl_805AD838: + .incbin "baserom.dol", 0x3FA0D8, 0x4 +.global lbl_805AD83C +lbl_805AD83C: + .incbin "baserom.dol", 0x3FA0DC, 0x4 +.global lbl_805AD840 +lbl_805AD840: + .incbin "baserom.dol", 0x3FA0E0, 0x4 +.global lbl_805AD844 +lbl_805AD844: + .incbin "baserom.dol", 0x3FA0E4, 0x4 +.global lbl_805AD848 +lbl_805AD848: + .incbin "baserom.dol", 0x3FA0E8, 0x4 +.global lbl_805AD84C +lbl_805AD84C: + .incbin "baserom.dol", 0x3FA0EC, 0x4 +.global lbl_805AD850 +lbl_805AD850: + .incbin "baserom.dol", 0x3FA0F0, 0x4 +.global lbl_805AD854 +lbl_805AD854: + .incbin "baserom.dol", 0x3FA0F4, 0x4 +.global lbl_805AD858 +lbl_805AD858: + .incbin "baserom.dol", 0x3FA0F8, 0x8 +.global lbl_805AD860 +lbl_805AD860: + .incbin "baserom.dol", 0x3FA100, 0x8 +.global lbl_805AD868 +lbl_805AD868: + .incbin "baserom.dol", 0x3FA108, 0x4 +.global lbl_805AD86C +lbl_805AD86C: + .incbin "baserom.dol", 0x3FA10C, 0x4 +.global lbl_805AD870 +lbl_805AD870: + .incbin "baserom.dol", 0x3FA110, 0x4 +.global lbl_805AD874 +lbl_805AD874: + .incbin "baserom.dol", 0x3FA114, 0x4 +.global lbl_805AD878 +lbl_805AD878: + .incbin "baserom.dol", 0x3FA118, 0x4 +.global lbl_805AD87C +lbl_805AD87C: + .incbin "baserom.dol", 0x3FA11C, 0x4 +.global lbl_805AD880 +lbl_805AD880: + .incbin "baserom.dol", 0x3FA120, 0x4 +.global lbl_805AD884 +lbl_805AD884: + .incbin "baserom.dol", 0x3FA124, 0x4 +.global lbl_805AD888 +lbl_805AD888: + .incbin "baserom.dol", 0x3FA128, 0x4 +.global lbl_805AD88C +lbl_805AD88C: + .incbin "baserom.dol", 0x3FA12C, 0x4 +.global lbl_805AD890 +lbl_805AD890: + .incbin "baserom.dol", 0x3FA130, 0x4 +.global lbl_805AD894 +lbl_805AD894: + .incbin "baserom.dol", 0x3FA134, 0x4 +.global lbl_805AD898 +lbl_805AD898: + .incbin "baserom.dol", 0x3FA138, 0x4 +.global lbl_805AD89C +lbl_805AD89C: + .incbin "baserom.dol", 0x3FA13C, 0x4 +.global lbl_805AD8A0 +lbl_805AD8A0: + .incbin "baserom.dol", 0x3FA140, 0x4 +.global lbl_805AD8A4 +lbl_805AD8A4: + .incbin "baserom.dol", 0x3FA144, 0x4 +.global lbl_805AD8A8 +lbl_805AD8A8: + .incbin "baserom.dol", 0x3FA148, 0x8 +.global lbl_805AD8B0 +lbl_805AD8B0: + .incbin "baserom.dol", 0x3FA150, 0x4 +.global lbl_805AD8B4 +lbl_805AD8B4: + .incbin "baserom.dol", 0x3FA154, 0x4 +.global lbl_805AD8B8 +lbl_805AD8B8: + .incbin "baserom.dol", 0x3FA158, 0x8 +.global lbl_805AD8C0 +lbl_805AD8C0: + .incbin "baserom.dol", 0x3FA160, 0x4 +.global lbl_805AD8C4 +lbl_805AD8C4: + .incbin "baserom.dol", 0x3FA164, 0x4 +.global lbl_805AD8C8 +lbl_805AD8C8: + .incbin "baserom.dol", 0x3FA168, 0x4 +.global lbl_805AD8CC +lbl_805AD8CC: + .incbin "baserom.dol", 0x3FA16C, 0x4 +.global lbl_805AD8D0 +lbl_805AD8D0: + .incbin "baserom.dol", 0x3FA170, 0x4 +.global lbl_805AD8D4 +lbl_805AD8D4: + .incbin "baserom.dol", 0x3FA174, 0x4 +.global lbl_805AD8D8 +lbl_805AD8D8: + .incbin "baserom.dol", 0x3FA178, 0x4 +.global lbl_805AD8DC +lbl_805AD8DC: + .incbin "baserom.dol", 0x3FA17C, 0x4 +.global lbl_805AD8E0 +lbl_805AD8E0: + .incbin "baserom.dol", 0x3FA180, 0x4 +.global lbl_805AD8E4 +lbl_805AD8E4: + .incbin "baserom.dol", 0x3FA184, 0x4 +.global lbl_805AD8E8 +lbl_805AD8E8: + .incbin "baserom.dol", 0x3FA188, 0x4 +.global lbl_805AD8EC +lbl_805AD8EC: + .incbin "baserom.dol", 0x3FA18C, 0x4 +.global lbl_805AD8F0 +lbl_805AD8F0: + .incbin "baserom.dol", 0x3FA190, 0x4 +.global lbl_805AD8F4 +lbl_805AD8F4: + .incbin "baserom.dol", 0x3FA194, 0x8 +.global lbl_805AD8FC +lbl_805AD8FC: + .incbin "baserom.dol", 0x3FA19C, 0x8 +.global lbl_805AD904 +lbl_805AD904: + .incbin "baserom.dol", 0x3FA1A4, 0x4 +.global lbl_805AD908 +lbl_805AD908: + .incbin "baserom.dol", 0x3FA1A8, 0x4 +.global lbl_805AD90C +lbl_805AD90C: + .incbin "baserom.dol", 0x3FA1AC, 0x4 +.global lbl_805AD910 +lbl_805AD910: + .incbin "baserom.dol", 0x3FA1B0, 0x4 +.global lbl_805AD914 +lbl_805AD914: + .incbin "baserom.dol", 0x3FA1B4, 0x4 +.global lbl_805AD918 +lbl_805AD918: + .incbin "baserom.dol", 0x3FA1B8, 0x4 +.global lbl_805AD91C +lbl_805AD91C: + .incbin "baserom.dol", 0x3FA1BC, 0x4 +.global lbl_805AD920 +lbl_805AD920: + .incbin "baserom.dol", 0x3FA1C0, 0x4 +.global lbl_805AD924 +lbl_805AD924: + .incbin "baserom.dol", 0x3FA1C4, 0x4 +.global lbl_805AD928 +lbl_805AD928: + .incbin "baserom.dol", 0x3FA1C8, 0x4 +.global lbl_805AD92C +lbl_805AD92C: + .incbin "baserom.dol", 0x3FA1CC, 0x4 +.global lbl_805AD930 +lbl_805AD930: + .incbin "baserom.dol", 0x3FA1D0, 0x4 +.global lbl_805AD934 +lbl_805AD934: + .incbin "baserom.dol", 0x3FA1D4, 0x4 +.global lbl_805AD938 +lbl_805AD938: + .incbin "baserom.dol", 0x3FA1D8, 0x4 +.global lbl_805AD93C +lbl_805AD93C: + .incbin "baserom.dol", 0x3FA1DC, 0x4 +.global lbl_805AD940 +lbl_805AD940: + .incbin "baserom.dol", 0x3FA1E0, 0x4 +.global lbl_805AD944 +lbl_805AD944: + .incbin "baserom.dol", 0x3FA1E4, 0x4 +.global lbl_805AD948 +lbl_805AD948: + .incbin "baserom.dol", 0x3FA1E8, 0x4 +.global lbl_805AD94C +lbl_805AD94C: + .incbin "baserom.dol", 0x3FA1EC, 0x4 +.global lbl_805AD950 +lbl_805AD950: + .incbin "baserom.dol", 0x3FA1F0, 0x4 +.global lbl_805AD954 +lbl_805AD954: + .incbin "baserom.dol", 0x3FA1F4, 0x4 +.global lbl_805AD958 +lbl_805AD958: + .incbin "baserom.dol", 0x3FA1F8, 0x4 +.global lbl_805AD95C +lbl_805AD95C: + .incbin "baserom.dol", 0x3FA1FC, 0x4 +.global lbl_805AD960 +lbl_805AD960: + .incbin "baserom.dol", 0x3FA200, 0x4 +.global lbl_805AD964 +lbl_805AD964: + .incbin "baserom.dol", 0x3FA204, 0x4 +.global lbl_805AD968 +lbl_805AD968: + .incbin "baserom.dol", 0x3FA208, 0x4 +.global lbl_805AD96C +lbl_805AD96C: + .incbin "baserom.dol", 0x3FA20C, 0x4 +.global lbl_805AD970 +lbl_805AD970: + .incbin "baserom.dol", 0x3FA210, 0x4 +.global lbl_805AD974 +lbl_805AD974: + .incbin "baserom.dol", 0x3FA214, 0x4 +.global lbl_805AD978 +lbl_805AD978: + .incbin "baserom.dol", 0x3FA218, 0x4 +.global lbl_805AD97C +lbl_805AD97C: + .incbin "baserom.dol", 0x3FA21C, 0x4 +.global lbl_805AD980 +lbl_805AD980: + .incbin "baserom.dol", 0x3FA220, 0x4 +.global lbl_805AD984 +lbl_805AD984: + .incbin "baserom.dol", 0x3FA224, 0x4 +.global lbl_805AD988 +lbl_805AD988: + .incbin "baserom.dol", 0x3FA228, 0x4 +.global lbl_805AD98C +lbl_805AD98C: + .incbin "baserom.dol", 0x3FA22C, 0x4 +.global lbl_805AD990 +lbl_805AD990: + .incbin "baserom.dol", 0x3FA230, 0x4 +.global lbl_805AD994 +lbl_805AD994: + .incbin "baserom.dol", 0x3FA234, 0x4 +.global lbl_805AD998 +lbl_805AD998: + .incbin "baserom.dol", 0x3FA238, 0x8 +.global lbl_805AD9A0 +lbl_805AD9A0: + .incbin "baserom.dol", 0x3FA240, 0x4 +.global lbl_805AD9A4 +lbl_805AD9A4: + .incbin "baserom.dol", 0x3FA244, 0x4 +.global lbl_805AD9A8 +lbl_805AD9A8: + .incbin "baserom.dol", 0x3FA248, 0x4 +.global lbl_805AD9AC +lbl_805AD9AC: + .incbin "baserom.dol", 0x3FA24C, 0x4 +.global lbl_805AD9B0 +lbl_805AD9B0: + .incbin "baserom.dol", 0x3FA250, 0x4 +.global lbl_805AD9B4 +lbl_805AD9B4: + .incbin "baserom.dol", 0x3FA254, 0x4 +.global lbl_805AD9B8 +lbl_805AD9B8: + .incbin "baserom.dol", 0x3FA258, 0x4 +.global lbl_805AD9BC +lbl_805AD9BC: + .incbin "baserom.dol", 0x3FA25C, 0x4 +.global lbl_805AD9C0 +lbl_805AD9C0: + .incbin "baserom.dol", 0x3FA260, 0x8 +.global lbl_805AD9C8 +lbl_805AD9C8: + .incbin "baserom.dol", 0x3FA268, 0x4 +.global lbl_805AD9CC +lbl_805AD9CC: + .incbin "baserom.dol", 0x3FA26C, 0x4 +.global lbl_805AD9D0 +lbl_805AD9D0: + .incbin "baserom.dol", 0x3FA270, 0x4 +.global lbl_805AD9D4 +lbl_805AD9D4: + .incbin "baserom.dol", 0x3FA274, 0x4 +.global lbl_805AD9D8 +lbl_805AD9D8: + .incbin "baserom.dol", 0x3FA278, 0x4 +.global lbl_805AD9DC +lbl_805AD9DC: + .incbin "baserom.dol", 0x3FA27C, 0x4 +.global lbl_805AD9E0 +lbl_805AD9E0: + .incbin "baserom.dol", 0x3FA280, 0x4 +.global lbl_805AD9E4 +lbl_805AD9E4: + .incbin "baserom.dol", 0x3FA284, 0x4 +.global lbl_805AD9E8 +lbl_805AD9E8: + .incbin "baserom.dol", 0x3FA288, 0x4 +.global lbl_805AD9EC +lbl_805AD9EC: + .incbin "baserom.dol", 0x3FA28C, 0x4 +.global lbl_805AD9F0 +lbl_805AD9F0: + .incbin "baserom.dol", 0x3FA290, 0x4 +.global lbl_805AD9F4 +lbl_805AD9F4: + .incbin "baserom.dol", 0x3FA294, 0x4 +.global lbl_805AD9F8 +lbl_805AD9F8: + .incbin "baserom.dol", 0x3FA298, 0x4 +.global lbl_805AD9FC +lbl_805AD9FC: + .incbin "baserom.dol", 0x3FA29C, 0x4 +.global lbl_805ADA00 +lbl_805ADA00: + .incbin "baserom.dol", 0x3FA2A0, 0x4 +.global lbl_805ADA04 +lbl_805ADA04: + .incbin "baserom.dol", 0x3FA2A4, 0x4 +.global lbl_805ADA08 +lbl_805ADA08: + .incbin "baserom.dol", 0x3FA2A8, 0x4 +.global lbl_805ADA0C +lbl_805ADA0C: + .incbin "baserom.dol", 0x3FA2AC, 0x4 +.global lbl_805ADA10 +lbl_805ADA10: + .incbin "baserom.dol", 0x3FA2B0, 0x4 +.global lbl_805ADA14 +lbl_805ADA14: + .incbin "baserom.dol", 0x3FA2B4, 0x4 +.global lbl_805ADA18 +lbl_805ADA18: + .incbin "baserom.dol", 0x3FA2B8, 0x4 +.global lbl_805ADA1C +lbl_805ADA1C: + .incbin "baserom.dol", 0x3FA2BC, 0x4 +.global lbl_805ADA20 +lbl_805ADA20: + .incbin "baserom.dol", 0x3FA2C0, 0x4 +.global lbl_805ADA24 +lbl_805ADA24: + .incbin "baserom.dol", 0x3FA2C4, 0x4 +.global lbl_805ADA28 +lbl_805ADA28: + .incbin "baserom.dol", 0x3FA2C8, 0x4 +.global lbl_805ADA2C +lbl_805ADA2C: + .incbin "baserom.dol", 0x3FA2CC, 0x4 +.global lbl_805ADA30 +lbl_805ADA30: + .incbin "baserom.dol", 0x3FA2D0, 0x4 +.global lbl_805ADA34 +lbl_805ADA34: + .incbin "baserom.dol", 0x3FA2D4, 0x4 +.global lbl_805ADA38 +lbl_805ADA38: + .incbin "baserom.dol", 0x3FA2D8, 0x8 +.global lbl_805ADA40 +lbl_805ADA40: + .incbin "baserom.dol", 0x3FA2E0, 0x8 +.global lbl_805ADA48 +lbl_805ADA48: + .incbin "baserom.dol", 0x3FA2E8, 0x4 +.global lbl_805ADA4C +lbl_805ADA4C: + .incbin "baserom.dol", 0x3FA2EC, 0x4 +.global lbl_805ADA50 +lbl_805ADA50: + .incbin "baserom.dol", 0x3FA2F0, 0x4 +.global lbl_805ADA54 +lbl_805ADA54: + .incbin "baserom.dol", 0x3FA2F4, 0x4 +.global lbl_805ADA58 +lbl_805ADA58: + .incbin "baserom.dol", 0x3FA2F8, 0x4 +.global lbl_805ADA5C +lbl_805ADA5C: + .incbin "baserom.dol", 0x3FA2FC, 0x4 +.global lbl_805ADA60 +lbl_805ADA60: + .incbin "baserom.dol", 0x3FA300, 0x4 +.global lbl_805ADA64 +lbl_805ADA64: + .incbin "baserom.dol", 0x3FA304, 0x4 +.global lbl_805ADA68 +lbl_805ADA68: + .incbin "baserom.dol", 0x3FA308, 0x4 +.global lbl_805ADA6C +lbl_805ADA6C: + .incbin "baserom.dol", 0x3FA30C, 0x4 +.global lbl_805ADA70 +lbl_805ADA70: + .incbin "baserom.dol", 0x3FA310, 0x4 +.global lbl_805ADA74 +lbl_805ADA74: + .incbin "baserom.dol", 0x3FA314, 0x4 +.global lbl_805ADA78 +lbl_805ADA78: + .incbin "baserom.dol", 0x3FA318, 0x4 +.global lbl_805ADA7C +lbl_805ADA7C: + .incbin "baserom.dol", 0x3FA31C, 0x4 +.global lbl_805ADA80 +lbl_805ADA80: + .incbin "baserom.dol", 0x3FA320, 0x4 +.global lbl_805ADA84 +lbl_805ADA84: + .incbin "baserom.dol", 0x3FA324, 0x4 +.global lbl_805ADA88 +lbl_805ADA88: + .incbin "baserom.dol", 0x3FA328, 0x4 +.global lbl_805ADA8C +lbl_805ADA8C: + .incbin "baserom.dol", 0x3FA32C, 0x4 +.global lbl_805ADA90 +lbl_805ADA90: + .incbin "baserom.dol", 0x3FA330, 0x4 +.global lbl_805ADA94 +lbl_805ADA94: + .incbin "baserom.dol", 0x3FA334, 0x4 +.global lbl_805ADA98 +lbl_805ADA98: + .incbin "baserom.dol", 0x3FA338, 0x4 +.global lbl_805ADA9C +lbl_805ADA9C: + .incbin "baserom.dol", 0x3FA33C, 0x4 +.global lbl_805ADAA0 +lbl_805ADAA0: + .incbin "baserom.dol", 0x3FA340, 0x4 +.global lbl_805ADAA4 +lbl_805ADAA4: + .incbin "baserom.dol", 0x3FA344, 0x4 +.global lbl_805ADAA8 +lbl_805ADAA8: + .incbin "baserom.dol", 0x3FA348, 0x4 +.global lbl_805ADAAC +lbl_805ADAAC: + .incbin "baserom.dol", 0x3FA34C, 0x4 +.global lbl_805ADAB0 +lbl_805ADAB0: + .incbin "baserom.dol", 0x3FA350, 0x4 +.global lbl_805ADAB4 +lbl_805ADAB4: + .incbin "baserom.dol", 0x3FA354, 0x4 +.global lbl_805ADAB8 +lbl_805ADAB8: + .incbin "baserom.dol", 0x3FA358, 0x4 +.global lbl_805ADABC +lbl_805ADABC: + .incbin "baserom.dol", 0x3FA35C, 0x4 +.global lbl_805ADAC0 +lbl_805ADAC0: + .incbin "baserom.dol", 0x3FA360, 0x4 +.global lbl_805ADAC4 +lbl_805ADAC4: + .incbin "baserom.dol", 0x3FA364, 0x4 +.global lbl_805ADAC8 +lbl_805ADAC8: + .incbin "baserom.dol", 0x3FA368, 0x4 +.global lbl_805ADACC +lbl_805ADACC: + .incbin "baserom.dol", 0x3FA36C, 0x4 +.global lbl_805ADAD0 +lbl_805ADAD0: + .incbin "baserom.dol", 0x3FA370, 0x4 +.global lbl_805ADAD4 +lbl_805ADAD4: + .incbin "baserom.dol", 0x3FA374, 0x4 +.global lbl_805ADAD8 +lbl_805ADAD8: + .incbin "baserom.dol", 0x3FA378, 0x8 +.global lbl_805ADAE0 +lbl_805ADAE0: + .incbin "baserom.dol", 0x3FA380, 0x8 +.global lbl_805ADAE8 +lbl_805ADAE8: + .incbin "baserom.dol", 0x3FA388, 0x4 +.global lbl_805ADAEC +lbl_805ADAEC: + .incbin "baserom.dol", 0x3FA38C, 0x4 +.global lbl_805ADAF0 +lbl_805ADAF0: + .incbin "baserom.dol", 0x3FA390, 0x4 +.global lbl_805ADAF4 +lbl_805ADAF4: + .incbin "baserom.dol", 0x3FA394, 0x4 +.global lbl_805ADAF8 +lbl_805ADAF8: + .incbin "baserom.dol", 0x3FA398, 0x4 +.global lbl_805ADAFC +lbl_805ADAFC: + .incbin "baserom.dol", 0x3FA39C, 0x4 +.global lbl_805ADB00 +lbl_805ADB00: + .incbin "baserom.dol", 0x3FA3A0, 0x4 +.global lbl_805ADB04 +lbl_805ADB04: + .incbin "baserom.dol", 0x3FA3A4, 0x4 +.global lbl_805ADB08 +lbl_805ADB08: + .incbin "baserom.dol", 0x3FA3A8, 0x4 +.global lbl_805ADB0C +lbl_805ADB0C: + .incbin "baserom.dol", 0x3FA3AC, 0x4 +.global lbl_805ADB10 +lbl_805ADB10: + .incbin "baserom.dol", 0x3FA3B0, 0x4 +.global lbl_805ADB14 +lbl_805ADB14: + .incbin "baserom.dol", 0x3FA3B4, 0x4 +.global lbl_805ADB18 +lbl_805ADB18: + .incbin "baserom.dol", 0x3FA3B8, 0x8 +.global lbl_805ADB20 +lbl_805ADB20: + .incbin "baserom.dol", 0x3FA3C0, 0x8 +.global lbl_805ADB28 +lbl_805ADB28: + .incbin "baserom.dol", 0x3FA3C8, 0x8 +.global lbl_805ADB30 +lbl_805ADB30: + .incbin "baserom.dol", 0x3FA3D0, 0x8 +.global lbl_805ADB38 +lbl_805ADB38: + .incbin "baserom.dol", 0x3FA3D8, 0x8 +.global lbl_805ADB40 +lbl_805ADB40: + .incbin "baserom.dol", 0x3FA3E0, 0x8 +.global lbl_805ADB48 +lbl_805ADB48: + .incbin "baserom.dol", 0x3FA3E8, 0x4 +.global lbl_805ADB4C +lbl_805ADB4C: + .incbin "baserom.dol", 0x3FA3EC, 0x4 +.global lbl_805ADB50 +lbl_805ADB50: + .incbin "baserom.dol", 0x3FA3F0, 0x4 +.global lbl_805ADB54 +lbl_805ADB54: + .incbin "baserom.dol", 0x3FA3F4, 0x4 +.global lbl_805ADB58 +lbl_805ADB58: + .incbin "baserom.dol", 0x3FA3F8, 0x4 +.global lbl_805ADB5C +lbl_805ADB5C: + .incbin "baserom.dol", 0x3FA3FC, 0x4 +.global lbl_805ADB60 +lbl_805ADB60: + .incbin "baserom.dol", 0x3FA400, 0x4 +.global lbl_805ADB64 +lbl_805ADB64: + .incbin "baserom.dol", 0x3FA404, 0x4 +.global lbl_805ADB68 +lbl_805ADB68: + .incbin "baserom.dol", 0x3FA408, 0x4 +.global lbl_805ADB6C +lbl_805ADB6C: + .incbin "baserom.dol", 0x3FA40C, 0x4 +.global lbl_805ADB70 +lbl_805ADB70: + .incbin "baserom.dol", 0x3FA410, 0x4 +.global lbl_805ADB74 +lbl_805ADB74: + .incbin "baserom.dol", 0x3FA414, 0x4 +.global lbl_805ADB78 +lbl_805ADB78: + .incbin "baserom.dol", 0x3FA418, 0x8 +.global lbl_805ADB80 +lbl_805ADB80: + .incbin "baserom.dol", 0x3FA420, 0x4 +.global lbl_805ADB84 +lbl_805ADB84: + .incbin "baserom.dol", 0x3FA424, 0x4 +.global lbl_805ADB88 +lbl_805ADB88: + .incbin "baserom.dol", 0x3FA428, 0x4 +.global lbl_805ADB8C +lbl_805ADB8C: + .incbin "baserom.dol", 0x3FA42C, 0x4 +.global lbl_805ADB90 +lbl_805ADB90: + .incbin "baserom.dol", 0x3FA430, 0x4 +.global lbl_805ADB94 +lbl_805ADB94: + .incbin "baserom.dol", 0x3FA434, 0x4 +.global lbl_805ADB98 +lbl_805ADB98: + .incbin "baserom.dol", 0x3FA438, 0x4 +.global lbl_805ADB9C +lbl_805ADB9C: + .incbin "baserom.dol", 0x3FA43C, 0x4 +.global lbl_805ADBA0 +lbl_805ADBA0: + .incbin "baserom.dol", 0x3FA440, 0x4 +.global lbl_805ADBA4 +lbl_805ADBA4: + .incbin "baserom.dol", 0x3FA444, 0x4 +.global lbl_805ADBA8 +lbl_805ADBA8: + .incbin "baserom.dol", 0x3FA448, 0x4 +.global lbl_805ADBAC +lbl_805ADBAC: + .incbin "baserom.dol", 0x3FA44C, 0x4 +.global lbl_805ADBB0 +lbl_805ADBB0: + .incbin "baserom.dol", 0x3FA450, 0x4 +.global lbl_805ADBB4 +lbl_805ADBB4: + .incbin "baserom.dol", 0x3FA454, 0x8 +.global lbl_805ADBBC +lbl_805ADBBC: + .incbin "baserom.dol", 0x3FA45C, 0x4 +.global lbl_805ADBC0 +lbl_805ADBC0: + .incbin "baserom.dol", 0x3FA460, 0x4 +.global lbl_805ADBC4 +lbl_805ADBC4: + .incbin "baserom.dol", 0x3FA464, 0x4 +.global lbl_805ADBC8 +lbl_805ADBC8: + .incbin "baserom.dol", 0x3FA468, 0x4 +.global lbl_805ADBCC +lbl_805ADBCC: + .incbin "baserom.dol", 0x3FA46C, 0x4 +.global lbl_805ADBD0 +lbl_805ADBD0: + .incbin "baserom.dol", 0x3FA470, 0x4 +.global lbl_805ADBD4 +lbl_805ADBD4: + .incbin "baserom.dol", 0x3FA474, 0x4 +.global lbl_805ADBD8 +lbl_805ADBD8: + .incbin "baserom.dol", 0x3FA478, 0x4 +.global lbl_805ADBDC +lbl_805ADBDC: + .incbin "baserom.dol", 0x3FA47C, 0x4 +.global lbl_805ADBE0 +lbl_805ADBE0: + .incbin "baserom.dol", 0x3FA480, 0x4 +.global lbl_805ADBE4 +lbl_805ADBE4: + .incbin "baserom.dol", 0x3FA484, 0x4 +.global lbl_805ADBE8 +lbl_805ADBE8: + .incbin "baserom.dol", 0x3FA488, 0x4 +.global lbl_805ADBEC +lbl_805ADBEC: + .incbin "baserom.dol", 0x3FA48C, 0x4 +.global lbl_805ADBF0 +lbl_805ADBF0: + .incbin "baserom.dol", 0x3FA490, 0x4 +.global lbl_805ADBF4 +lbl_805ADBF4: + .incbin "baserom.dol", 0x3FA494, 0x4 +.global lbl_805ADBF8 +lbl_805ADBF8: + .incbin "baserom.dol", 0x3FA498, 0x4 +.global lbl_805ADBFC +lbl_805ADBFC: + .incbin "baserom.dol", 0x3FA49C, 0x4 +.global lbl_805ADC00 +lbl_805ADC00: + .incbin "baserom.dol", 0x3FA4A0, 0x4 +.global lbl_805ADC04 +lbl_805ADC04: + .incbin "baserom.dol", 0x3FA4A4, 0x4 +.global lbl_805ADC08 +lbl_805ADC08: + .incbin "baserom.dol", 0x3FA4A8, 0x4 +.global lbl_805ADC0C +lbl_805ADC0C: + .incbin "baserom.dol", 0x3FA4AC, 0x4 +.global lbl_805ADC10 +lbl_805ADC10: + .incbin "baserom.dol", 0x3FA4B0, 0x4 +.global lbl_805ADC14 +lbl_805ADC14: + .incbin "baserom.dol", 0x3FA4B4, 0x4 +.global lbl_805ADC18 +lbl_805ADC18: + .incbin "baserom.dol", 0x3FA4B8, 0x4 +.global lbl_805ADC1C +lbl_805ADC1C: + .incbin "baserom.dol", 0x3FA4BC, 0x4 +.global lbl_805ADC20 +lbl_805ADC20: + .incbin "baserom.dol", 0x3FA4C0, 0x4 +.global lbl_805ADC24 +lbl_805ADC24: + .incbin "baserom.dol", 0x3FA4C4, 0x4 +.global lbl_805ADC28 +lbl_805ADC28: + .incbin "baserom.dol", 0x3FA4C8, 0x4 +.global lbl_805ADC2C +lbl_805ADC2C: + .incbin "baserom.dol", 0x3FA4CC, 0x4 +.global lbl_805ADC30 +lbl_805ADC30: + .incbin "baserom.dol", 0x3FA4D0, 0x8 +.global lbl_805ADC38 +lbl_805ADC38: + .incbin "baserom.dol", 0x3FA4D8, 0x4 +.global lbl_805ADC3C +lbl_805ADC3C: + .incbin "baserom.dol", 0x3FA4DC, 0x4 +.global lbl_805ADC40 +lbl_805ADC40: + .incbin "baserom.dol", 0x3FA4E0, 0x4 +.global lbl_805ADC44 +lbl_805ADC44: + .incbin "baserom.dol", 0x3FA4E4, 0x4 +.global lbl_805ADC48 +lbl_805ADC48: + .incbin "baserom.dol", 0x3FA4E8, 0x4 +.global lbl_805ADC4C +lbl_805ADC4C: + .incbin "baserom.dol", 0x3FA4EC, 0x4 +.global lbl_805ADC50 +lbl_805ADC50: + .incbin "baserom.dol", 0x3FA4F0, 0x4 +.global lbl_805ADC54 +lbl_805ADC54: + .incbin "baserom.dol", 0x3FA4F4, 0x4 +.global lbl_805ADC58 +lbl_805ADC58: + .incbin "baserom.dol", 0x3FA4F8, 0x8 +.global lbl_805ADC60 +lbl_805ADC60: + .incbin "baserom.dol", 0x3FA500, 0x4 +.global lbl_805ADC64 +lbl_805ADC64: + .incbin "baserom.dol", 0x3FA504, 0x4 +.global lbl_805ADC68 +lbl_805ADC68: + .incbin "baserom.dol", 0x3FA508, 0x4 +.global lbl_805ADC6C +lbl_805ADC6C: + .incbin "baserom.dol", 0x3FA50C, 0x4 +.global lbl_805ADC70 +lbl_805ADC70: + .incbin "baserom.dol", 0x3FA510, 0x4 +.global lbl_805ADC74 +lbl_805ADC74: + .incbin "baserom.dol", 0x3FA514, 0x4 +.global lbl_805ADC78 +lbl_805ADC78: + .incbin "baserom.dol", 0x3FA518, 0x8 +.global lbl_805ADC80 +lbl_805ADC80: + .incbin "baserom.dol", 0x3FA520, 0x8 +.global lbl_805ADC88 +lbl_805ADC88: + .incbin "baserom.dol", 0x3FA528, 0x4 +.global lbl_805ADC8C +lbl_805ADC8C: + .incbin "baserom.dol", 0x3FA52C, 0x4 +.global lbl_805ADC90 +lbl_805ADC90: + .incbin "baserom.dol", 0x3FA530, 0x4 +.global lbl_805ADC94 +lbl_805ADC94: + .incbin "baserom.dol", 0x3FA534, 0x4 +.global lbl_805ADC98 +lbl_805ADC98: + .incbin "baserom.dol", 0x3FA538, 0x4 +.global lbl_805ADC9C +lbl_805ADC9C: + .incbin "baserom.dol", 0x3FA53C, 0x4 +.global lbl_805ADCA0 +lbl_805ADCA0: + .incbin "baserom.dol", 0x3FA540, 0x4 +.global lbl_805ADCA4 +lbl_805ADCA4: + .incbin "baserom.dol", 0x3FA544, 0x4 +.global lbl_805ADCA8 +lbl_805ADCA8: + .incbin "baserom.dol", 0x3FA548, 0x8 +.global lbl_805ADCB0 +lbl_805ADCB0: + .incbin "baserom.dol", 0x3FA550, 0x8 +.global lbl_805ADCB8 +lbl_805ADCB8: + .incbin "baserom.dol", 0x3FA558, 0x4 +.global lbl_805ADCBC +lbl_805ADCBC: + .incbin "baserom.dol", 0x3FA55C, 0x4 +.global lbl_805ADCC0 +lbl_805ADCC0: + .incbin "baserom.dol", 0x3FA560, 0x4 +.global lbl_805ADCC4 +lbl_805ADCC4: + .incbin "baserom.dol", 0x3FA564, 0x4 +.global lbl_805ADCC8 +lbl_805ADCC8: + .incbin "baserom.dol", 0x3FA568, 0x4 +.global lbl_805ADCCC +lbl_805ADCCC: + .incbin "baserom.dol", 0x3FA56C, 0x4 +.global lbl_805ADCD0 +lbl_805ADCD0: + .incbin "baserom.dol", 0x3FA570, 0x4 +.global lbl_805ADCD4 +lbl_805ADCD4: + .incbin "baserom.dol", 0x3FA574, 0x4 +.global lbl_805ADCD8 +lbl_805ADCD8: + .incbin "baserom.dol", 0x3FA578, 0x4 +.global lbl_805ADCDC +lbl_805ADCDC: + .incbin "baserom.dol", 0x3FA57C, 0x4 +.global lbl_805ADCE0 +lbl_805ADCE0: + .incbin "baserom.dol", 0x3FA580, 0x8 +.global lbl_805ADCE8 +lbl_805ADCE8: + .incbin "baserom.dol", 0x3FA588, 0x4 +.global lbl_805ADCEC +lbl_805ADCEC: + .incbin "baserom.dol", 0x3FA58C, 0x4 +.global lbl_805ADCF0 +lbl_805ADCF0: + .incbin "baserom.dol", 0x3FA590, 0x4 +.global lbl_805ADCF4 +lbl_805ADCF4: + .incbin "baserom.dol", 0x3FA594, 0x4 +.global lbl_805ADCF8 +lbl_805ADCF8: + .incbin "baserom.dol", 0x3FA598, 0x4 +.global lbl_805ADCFC +lbl_805ADCFC: + .incbin "baserom.dol", 0x3FA59C, 0x8 +.global lbl_805ADD04 +lbl_805ADD04: + .incbin "baserom.dol", 0x3FA5A4, 0x4 +.global lbl_805ADD08 +lbl_805ADD08: + .incbin "baserom.dol", 0x3FA5A8, 0x8 +.global lbl_805ADD10 +lbl_805ADD10: + .incbin "baserom.dol", 0x3FA5B0, 0x4 +.global lbl_805ADD14 +lbl_805ADD14: + .incbin "baserom.dol", 0x3FA5B4, 0x4 +.global lbl_805ADD18 +lbl_805ADD18: + .incbin "baserom.dol", 0x3FA5B8, 0x8 +.global lbl_805ADD20 +lbl_805ADD20: + .incbin "baserom.dol", 0x3FA5C0, 0x4 +.global lbl_805ADD24 +lbl_805ADD24: + .incbin "baserom.dol", 0x3FA5C4, 0x4 +.global lbl_805ADD28 +lbl_805ADD28: + .incbin "baserom.dol", 0x3FA5C8, 0x4 +.global lbl_805ADD2C +lbl_805ADD2C: + .incbin "baserom.dol", 0x3FA5CC, 0x4 +.global lbl_805ADD30 +lbl_805ADD30: + .incbin "baserom.dol", 0x3FA5D0, 0x4 +.global lbl_805ADD34 +lbl_805ADD34: + .incbin "baserom.dol", 0x3FA5D4, 0x4 +.global lbl_805ADD38 +lbl_805ADD38: + .incbin "baserom.dol", 0x3FA5D8, 0x4 +.global lbl_805ADD3C +lbl_805ADD3C: + .incbin "baserom.dol", 0x3FA5DC, 0x4 +.global lbl_805ADD40 +lbl_805ADD40: + .incbin "baserom.dol", 0x3FA5E0, 0x8 +.global lbl_805ADD48 +lbl_805ADD48: + .incbin "baserom.dol", 0x3FA5E8, 0x4 +.global lbl_805ADD4C +lbl_805ADD4C: + .incbin "baserom.dol", 0x3FA5EC, 0x4 +.global lbl_805ADD50 +lbl_805ADD50: + .incbin "baserom.dol", 0x3FA5F0, 0x8 +.global lbl_805ADD58 +lbl_805ADD58: + .incbin "baserom.dol", 0x3FA5F8, 0x4 +.global lbl_805ADD5C +lbl_805ADD5C: + .incbin "baserom.dol", 0x3FA5FC, 0x4 +.global lbl_805ADD60 +lbl_805ADD60: + .incbin "baserom.dol", 0x3FA600, 0x4 +.global lbl_805ADD64 +lbl_805ADD64: + .incbin "baserom.dol", 0x3FA604, 0x4 +.global lbl_805ADD68 +lbl_805ADD68: + .incbin "baserom.dol", 0x3FA608, 0x4 +.global lbl_805ADD6C +lbl_805ADD6C: + .incbin "baserom.dol", 0x3FA60C, 0x4 +.global lbl_805ADD70 +lbl_805ADD70: + .incbin "baserom.dol", 0x3FA610, 0x4 +.global lbl_805ADD74 +lbl_805ADD74: + .incbin "baserom.dol", 0x3FA614, 0x4 +.global lbl_805ADD78 +lbl_805ADD78: + .incbin "baserom.dol", 0x3FA618, 0x4 +.global lbl_805ADD7C +lbl_805ADD7C: + .incbin "baserom.dol", 0x3FA61C, 0x4 +.global lbl_805ADD80 +lbl_805ADD80: + .incbin "baserom.dol", 0x3FA620, 0x4 +.global lbl_805ADD84 +lbl_805ADD84: + .incbin "baserom.dol", 0x3FA624, 0x4 +.global lbl_805ADD88 +lbl_805ADD88: + .incbin "baserom.dol", 0x3FA628, 0x4 +.global lbl_805ADD8C +lbl_805ADD8C: + .incbin "baserom.dol", 0x3FA62C, 0x4 +.global lbl_805ADD90 +lbl_805ADD90: + .incbin "baserom.dol", 0x3FA630, 0x4 +.global lbl_805ADD94 +lbl_805ADD94: + .incbin "baserom.dol", 0x3FA634, 0x4 +.global lbl_805ADD98 +lbl_805ADD98: + .incbin "baserom.dol", 0x3FA638, 0x8 +.global lbl_805ADDA0 +lbl_805ADDA0: + .incbin "baserom.dol", 0x3FA640, 0x8 +.global lbl_805ADDA8 +lbl_805ADDA8: + .incbin "baserom.dol", 0x3FA648, 0x4 +.global lbl_805ADDAC +lbl_805ADDAC: + .incbin "baserom.dol", 0x3FA64C, 0x4 +.global lbl_805ADDB0 +lbl_805ADDB0: + .incbin "baserom.dol", 0x3FA650, 0x4 +.global lbl_805ADDB4 +lbl_805ADDB4: + .incbin "baserom.dol", 0x3FA654, 0x4 +.global lbl_805ADDB8 +lbl_805ADDB8: + .incbin "baserom.dol", 0x3FA658, 0x4 +.global lbl_805ADDBC +lbl_805ADDBC: + .incbin "baserom.dol", 0x3FA65C, 0x4 +.global lbl_805ADDC0 +lbl_805ADDC0: + .incbin "baserom.dol", 0x3FA660, 0x4 +.global lbl_805ADDC4 +lbl_805ADDC4: + .incbin "baserom.dol", 0x3FA664, 0x4 +.global lbl_805ADDC8 +lbl_805ADDC8: + .incbin "baserom.dol", 0x3FA668, 0x8 +.global lbl_805ADDD0 +lbl_805ADDD0: + .incbin "baserom.dol", 0x3FA670, 0x4 +.global lbl_805ADDD4 +lbl_805ADDD4: + .incbin "baserom.dol", 0x3FA674, 0x4 +.global lbl_805ADDD8 +lbl_805ADDD8: + .incbin "baserom.dol", 0x3FA678, 0x4 +.global lbl_805ADDDC +lbl_805ADDDC: + .incbin "baserom.dol", 0x3FA67C, 0x4 +.global lbl_805ADDE0 +lbl_805ADDE0: + .incbin "baserom.dol", 0x3FA680, 0x4 +.global lbl_805ADDE4 +lbl_805ADDE4: + .incbin "baserom.dol", 0x3FA684, 0x4 +.global lbl_805ADDE8 +lbl_805ADDE8: + .incbin "baserom.dol", 0x3FA688, 0x4 +.global lbl_805ADDEC +lbl_805ADDEC: + .incbin "baserom.dol", 0x3FA68C, 0x4 +.global lbl_805ADDF0 +lbl_805ADDF0: + .incbin "baserom.dol", 0x3FA690, 0x8 +.global lbl_805ADDF8 +lbl_805ADDF8: + .incbin "baserom.dol", 0x3FA698, 0x8 +.global lbl_805ADE00 +lbl_805ADE00: + .incbin "baserom.dol", 0x3FA6A0, 0x4 +.global lbl_805ADE04 +lbl_805ADE04: + .incbin "baserom.dol", 0x3FA6A4, 0x4 +.global lbl_805ADE08 +lbl_805ADE08: + .incbin "baserom.dol", 0x3FA6A8, 0x4 +.global lbl_805ADE0C +lbl_805ADE0C: + .incbin "baserom.dol", 0x3FA6AC, 0x4 +.global lbl_805ADE10 +lbl_805ADE10: + .incbin "baserom.dol", 0x3FA6B0, 0x8 +.global lbl_805ADE18 +lbl_805ADE18: + .incbin "baserom.dol", 0x3FA6B8, 0x4 +.global lbl_805ADE1C +lbl_805ADE1C: + .incbin "baserom.dol", 0x3FA6BC, 0x4 +.global lbl_805ADE20 +lbl_805ADE20: + .incbin "baserom.dol", 0x3FA6C0, 0x4 +.global lbl_805ADE24 +lbl_805ADE24: + .incbin "baserom.dol", 0x3FA6C4, 0x4 +.global lbl_805ADE28 +lbl_805ADE28: + .incbin "baserom.dol", 0x3FA6C8, 0x8 +.global lbl_805ADE30 +lbl_805ADE30: + .incbin "baserom.dol", 0x3FA6D0, 0x4 +.global lbl_805ADE34 +lbl_805ADE34: + .incbin "baserom.dol", 0x3FA6D4, 0x4 +.global lbl_805ADE38 +lbl_805ADE38: + .incbin "baserom.dol", 0x3FA6D8, 0x8 +.global lbl_805ADE40 +lbl_805ADE40: + .incbin "baserom.dol", 0x3FA6E0, 0x4 +.global lbl_805ADE44 +lbl_805ADE44: + .incbin "baserom.dol", 0x3FA6E4, 0x4 +.global lbl_805ADE48 +lbl_805ADE48: + .incbin "baserom.dol", 0x3FA6E8, 0x4 +.global lbl_805ADE4C +lbl_805ADE4C: + .incbin "baserom.dol", 0x3FA6EC, 0x4 +.global lbl_805ADE50 +lbl_805ADE50: + .incbin "baserom.dol", 0x3FA6F0, 0x4 +.global lbl_805ADE54 +lbl_805ADE54: + .incbin "baserom.dol", 0x3FA6F4, 0x4 +.global lbl_805ADE58 +lbl_805ADE58: + .incbin "baserom.dol", 0x3FA6F8, 0x4 +.global lbl_805ADE5C +lbl_805ADE5C: + .incbin "baserom.dol", 0x3FA6FC, 0x4 +.global lbl_805ADE60 +lbl_805ADE60: + .incbin "baserom.dol", 0x3FA700, 0x4 +.global lbl_805ADE64 +lbl_805ADE64: + .incbin "baserom.dol", 0x3FA704, 0x4 +.global lbl_805ADE68 +lbl_805ADE68: + .incbin "baserom.dol", 0x3FA708, 0x2 +.global lbl_805ADE6A +lbl_805ADE6A: + .incbin "baserom.dol", 0x3FA70A, 0x2 +.global lbl_805ADE6C +lbl_805ADE6C: + .incbin "baserom.dol", 0x3FA70C, 0x4 +.global lbl_805ADE70 +lbl_805ADE70: + .incbin "baserom.dol", 0x3FA710, 0x8 +.global lbl_805ADE78 +lbl_805ADE78: + .incbin "baserom.dol", 0x3FA718, 0x8 +.global lbl_805ADE80 +lbl_805ADE80: + .incbin "baserom.dol", 0x3FA720, 0x4 +.global lbl_805ADE84 +lbl_805ADE84: + .incbin "baserom.dol", 0x3FA724, 0x4 +.global lbl_805ADE88 +lbl_805ADE88: + .incbin "baserom.dol", 0x3FA728, 0x4 +.global lbl_805ADE8C +lbl_805ADE8C: + .incbin "baserom.dol", 0x3FA72C, 0x4 +.global lbl_805ADE90 +lbl_805ADE90: + .incbin "baserom.dol", 0x3FA730, 0x8 +.global lbl_805ADE98 +lbl_805ADE98: + .incbin "baserom.dol", 0x3FA738, 0x8 +.global lbl_805ADEA0 +lbl_805ADEA0: + .incbin "baserom.dol", 0x3FA740, 0x4 +.global lbl_805ADEA4 +lbl_805ADEA4: + .incbin "baserom.dol", 0x3FA744, 0x4 +.global lbl_805ADEA8 +lbl_805ADEA8: + .incbin "baserom.dol", 0x3FA748, 0x4 +.global lbl_805ADEAC +lbl_805ADEAC: + .incbin "baserom.dol", 0x3FA74C, 0x4 +.global lbl_805ADEB0 +lbl_805ADEB0: + .incbin "baserom.dol", 0x3FA750, 0x4 +.global lbl_805ADEB4 +lbl_805ADEB4: + .incbin "baserom.dol", 0x3FA754, 0x4 +.global lbl_805ADEB8 +lbl_805ADEB8: + .incbin "baserom.dol", 0x3FA758, 0x4 +.global lbl_805ADEBC +lbl_805ADEBC: + .incbin "baserom.dol", 0x3FA75C, 0x4 +.global lbl_805ADEC0 +lbl_805ADEC0: + .incbin "baserom.dol", 0x3FA760, 0x4 +.global lbl_805ADEC4 +lbl_805ADEC4: + .incbin "baserom.dol", 0x3FA764, 0x4 +.global lbl_805ADEC8 +lbl_805ADEC8: + .incbin "baserom.dol", 0x3FA768, 0x8 +.global lbl_805ADED0 +lbl_805ADED0: + .incbin "baserom.dol", 0x3FA770, 0x2 +.global lbl_805ADED2 +lbl_805ADED2: + .incbin "baserom.dol", 0x3FA772, 0x2 +.global lbl_805ADED4 +lbl_805ADED4: + .incbin "baserom.dol", 0x3FA774, 0x4 +.global lbl_805ADED8 +lbl_805ADED8: + .incbin "baserom.dol", 0x3FA778, 0x4 +.global lbl_805ADEDC +lbl_805ADEDC: + .incbin "baserom.dol", 0x3FA77C, 0x4 +.global lbl_805ADEE0 +lbl_805ADEE0: + .incbin "baserom.dol", 0x3FA780, 0x8 +.global lbl_805ADEE8 +lbl_805ADEE8: + .incbin "baserom.dol", 0x3FA788, 0x4 +.global lbl_805ADEEC +lbl_805ADEEC: + .incbin "baserom.dol", 0x3FA78C, 0x4 +.global lbl_805ADEF0 +lbl_805ADEF0: + .incbin "baserom.dol", 0x3FA790, 0x8 +.global lbl_805ADEF8 +lbl_805ADEF8: + .incbin "baserom.dol", 0x3FA798, 0x8 +.global lbl_805ADF00 +lbl_805ADF00: + .incbin "baserom.dol", 0x3FA7A0, 0x4 +.global lbl_805ADF04 +lbl_805ADF04: + .incbin "baserom.dol", 0x3FA7A4, 0x4 +.global lbl_805ADF08 +lbl_805ADF08: + .incbin "baserom.dol", 0x3FA7A8, 0x8 +.global lbl_805ADF10 +lbl_805ADF10: + .incbin "baserom.dol", 0x3FA7B0, 0x4 +.global lbl_805ADF14 +lbl_805ADF14: + .incbin "baserom.dol", 0x3FA7B4, 0x4 +.global lbl_805ADF18 +lbl_805ADF18: + .incbin "baserom.dol", 0x3FA7B8, 0x4 +.global lbl_805ADF1C +lbl_805ADF1C: + .incbin "baserom.dol", 0x3FA7BC, 0x4 +.global lbl_805ADF20 +lbl_805ADF20: + .incbin "baserom.dol", 0x3FA7C0, 0x8 +.global lbl_805ADF28 +lbl_805ADF28: + .incbin "baserom.dol", 0x3FA7C8, 0x8 +.global lbl_805ADF30 +lbl_805ADF30: + .incbin "baserom.dol", 0x3FA7D0, 0x8 +.global lbl_805ADF38 +lbl_805ADF38: + .incbin "baserom.dol", 0x3FA7D8, 0x8 +.global lbl_805ADF40 +lbl_805ADF40: + .incbin "baserom.dol", 0x3FA7E0, 0x8 +.global lbl_805ADF48 +lbl_805ADF48: + .incbin "baserom.dol", 0x3FA7E8, 0x8 +.global lbl_805ADF50 +lbl_805ADF50: + .incbin "baserom.dol", 0x3FA7F0, 0x8 +.global lbl_805ADF58 +lbl_805ADF58: + .incbin "baserom.dol", 0x3FA7F8, 0x8 +.global lbl_805ADF60 +lbl_805ADF60: + .incbin "baserom.dol", 0x3FA800, 0x4 +.global lbl_805ADF64 +lbl_805ADF64: + .incbin "baserom.dol", 0x3FA804, 0x4 +.global lbl_805ADF68 +lbl_805ADF68: + .incbin "baserom.dol", 0x3FA808, 0x8 +.global lbl_805ADF70 +lbl_805ADF70: + .incbin "baserom.dol", 0x3FA810, 0x4 +.global lbl_805ADF74 +lbl_805ADF74: + .incbin "baserom.dol", 0x3FA814, 0x4 +.global lbl_805ADF78 +lbl_805ADF78: + .incbin "baserom.dol", 0x3FA818, 0x4 +.global lbl_805ADF7C +lbl_805ADF7C: + .incbin "baserom.dol", 0x3FA81C, 0x4 +.global lbl_805ADF80 +lbl_805ADF80: + .incbin "baserom.dol", 0x3FA820, 0x4 +.global lbl_805ADF84 +lbl_805ADF84: + .incbin "baserom.dol", 0x3FA824, 0x4 +.global lbl_805ADF88 +lbl_805ADF88: + .incbin "baserom.dol", 0x3FA828, 0x4 +.global lbl_805ADF8C +lbl_805ADF8C: + .incbin "baserom.dol", 0x3FA82C, 0x4 +.global lbl_805ADF90 +lbl_805ADF90: + .incbin "baserom.dol", 0x3FA830, 0x4 +.global lbl_805ADF94 +lbl_805ADF94: + .incbin "baserom.dol", 0x3FA834, 0x4 +.global lbl_805ADF98 +lbl_805ADF98: + .incbin "baserom.dol", 0x3FA838, 0x4 +.global lbl_805ADF9C +lbl_805ADF9C: + .incbin "baserom.dol", 0x3FA83C, 0x4 +.global lbl_805ADFA0 +lbl_805ADFA0: + .incbin "baserom.dol", 0x3FA840, 0x4 +.global lbl_805ADFA4 +lbl_805ADFA4: + .incbin "baserom.dol", 0x3FA844, 0x4 +.global lbl_805ADFA8 +lbl_805ADFA8: + .incbin "baserom.dol", 0x3FA848, 0x4 +.global lbl_805ADFAC +lbl_805ADFAC: + .incbin "baserom.dol", 0x3FA84C, 0x4 +.global lbl_805ADFB0 +lbl_805ADFB0: + .incbin "baserom.dol", 0x3FA850, 0x4 +.global lbl_805ADFB4 +lbl_805ADFB4: + .incbin "baserom.dol", 0x3FA854, 0x4 +.global lbl_805ADFB8 +lbl_805ADFB8: + .incbin "baserom.dol", 0x3FA858, 0x8 +.global lbl_805ADFC0 +lbl_805ADFC0: + .incbin "baserom.dol", 0x3FA860, 0x8 +.global lbl_805ADFC8 +lbl_805ADFC8: + .incbin "baserom.dol", 0x3FA868, 0x4 +.global lbl_805ADFCC +lbl_805ADFCC: + .incbin "baserom.dol", 0x3FA86C, 0x4 +.global lbl_805ADFD0 +lbl_805ADFD0: + .incbin "baserom.dol", 0x3FA870, 0x4 +.global lbl_805ADFD4 +lbl_805ADFD4: + .incbin "baserom.dol", 0x3FA874, 0x4 +.global lbl_805ADFD8 +lbl_805ADFD8: + .incbin "baserom.dol", 0x3FA878, 0x4 +.global lbl_805ADFDC +lbl_805ADFDC: + .incbin "baserom.dol", 0x3FA87C, 0x4 +.global lbl_805ADFE0 +lbl_805ADFE0: + .incbin "baserom.dol", 0x3FA880, 0x4 +.global lbl_805ADFE4 +lbl_805ADFE4: + .incbin "baserom.dol", 0x3FA884, 0x4 +.global lbl_805ADFE8 +lbl_805ADFE8: + .incbin "baserom.dol", 0x3FA888, 0x4 +.global lbl_805ADFEC +lbl_805ADFEC: + .incbin "baserom.dol", 0x3FA88C, 0x4 +.global lbl_805ADFF0 +lbl_805ADFF0: + .incbin "baserom.dol", 0x3FA890, 0x8 +.global lbl_805ADFF8 +lbl_805ADFF8: + .incbin "baserom.dol", 0x3FA898, 0x8 +.global lbl_805AE000 +lbl_805AE000: + .incbin "baserom.dol", 0x3FA8A0, 0x8 +.global lbl_805AE008 +lbl_805AE008: + .incbin "baserom.dol", 0x3FA8A8, 0x4 +.global lbl_805AE00C +lbl_805AE00C: + .incbin "baserom.dol", 0x3FA8AC, 0x4 +.global lbl_805AE010 +lbl_805AE010: + .incbin "baserom.dol", 0x3FA8B0, 0x8 +.global lbl_805AE018 +lbl_805AE018: + .incbin "baserom.dol", 0x3FA8B8, 0x8 +.global lbl_805AE020 +lbl_805AE020: + .incbin "baserom.dol", 0x3FA8C0, 0x8 +.global lbl_805AE028 +lbl_805AE028: + .incbin "baserom.dol", 0x3FA8C8, 0x4 +.global lbl_805AE02C +lbl_805AE02C: + .incbin "baserom.dol", 0x3FA8CC, 0x4 +.global lbl_805AE030 +lbl_805AE030: + .incbin "baserom.dol", 0x3FA8D0, 0x4 +.global lbl_805AE034 +lbl_805AE034: + .incbin "baserom.dol", 0x3FA8D4, 0x4 +.global lbl_805AE038 +lbl_805AE038: + .incbin "baserom.dol", 0x3FA8D8, 0x8 +.global lbl_805AE040 +lbl_805AE040: + .incbin "baserom.dol", 0x3FA8E0, 0x8 +.global lbl_805AE048 +lbl_805AE048: + .incbin "baserom.dol", 0x3FA8E8, 0x8 +.global lbl_805AE050 +lbl_805AE050: + .incbin "baserom.dol", 0x3FA8F0, 0x8 +.global lbl_805AE058 +lbl_805AE058: + .incbin "baserom.dol", 0x3FA8F8, 0x8 +.global lbl_805AE060 +lbl_805AE060: + .incbin "baserom.dol", 0x3FA900, 0x8 +.global lbl_805AE068 +lbl_805AE068: + .incbin "baserom.dol", 0x3FA908, 0x4 +.global lbl_805AE06C +lbl_805AE06C: + .incbin "baserom.dol", 0x3FA90C, 0x4 +.global lbl_805AE070 +lbl_805AE070: + .incbin "baserom.dol", 0x3FA910, 0x4 +.global lbl_805AE074 +lbl_805AE074: + .incbin "baserom.dol", 0x3FA914, 0x4 +.global lbl_805AE078 +lbl_805AE078: + .incbin "baserom.dol", 0x3FA918, 0x8 +.global lbl_805AE080 +lbl_805AE080: + .incbin "baserom.dol", 0x3FA920, 0x8 +.global lbl_805AE088 +lbl_805AE088: + .incbin "baserom.dol", 0x3FA928, 0x8 +.global lbl_805AE090 +lbl_805AE090: + .incbin "baserom.dol", 0x3FA930, 0x4 +.global lbl_805AE094 +lbl_805AE094: + .incbin "baserom.dol", 0x3FA934, 0x4 +.global lbl_805AE098 +lbl_805AE098: + .incbin "baserom.dol", 0x3FA938, 0x8 +.global lbl_805AE0A0 +lbl_805AE0A0: + .incbin "baserom.dol", 0x3FA940, 0x4 +.global lbl_805AE0A4 +lbl_805AE0A4: + .incbin "baserom.dol", 0x3FA944, 0x4 +.global lbl_805AE0A8 +lbl_805AE0A8: + .incbin "baserom.dol", 0x3FA948, 0x8 +.global lbl_805AE0B0 +lbl_805AE0B0: + .incbin "baserom.dol", 0x3FA950, 0x8 +.global lbl_805AE0B8 +lbl_805AE0B8: + .incbin "baserom.dol", 0x3FA958, 0x4 +.global lbl_805AE0BC +lbl_805AE0BC: + .incbin "baserom.dol", 0x3FA95C, 0x4 +.global lbl_805AE0C0 +lbl_805AE0C0: + .incbin "baserom.dol", 0x3FA960, 0x4 +.global lbl_805AE0C4 +lbl_805AE0C4: + .incbin "baserom.dol", 0x3FA964, 0x4 +.global lbl_805AE0C8 +lbl_805AE0C8: + .incbin "baserom.dol", 0x3FA968, 0x8 +.global lbl_805AE0D0 +lbl_805AE0D0: + .incbin "baserom.dol", 0x3FA970, 0x8 +.global lbl_805AE0D8 +lbl_805AE0D8: + .incbin "baserom.dol", 0x3FA978, 0x4 +.global lbl_805AE0DC +lbl_805AE0DC: + .incbin "baserom.dol", 0x3FA97C, 0x4 +.global lbl_805AE0E0 +lbl_805AE0E0: + .incbin "baserom.dol", 0x3FA980, 0x4 +.global lbl_805AE0E4 +lbl_805AE0E4: + .incbin "baserom.dol", 0x3FA984, 0x4 +.global lbl_805AE0E8 +lbl_805AE0E8: + .incbin "baserom.dol", 0x3FA988, 0x4 +.global lbl_805AE0EC +lbl_805AE0EC: + .incbin "baserom.dol", 0x3FA98C, 0x4 +.global lbl_805AE0F0 +lbl_805AE0F0: + .incbin "baserom.dol", 0x3FA990, 0x8 +.global lbl_805AE0F8 +lbl_805AE0F8: + .incbin "baserom.dol", 0x3FA998, 0x8 +.global lbl_805AE100 +lbl_805AE100: + .incbin "baserom.dol", 0x3FA9A0, 0x8 +.global lbl_805AE108 +lbl_805AE108: + .incbin "baserom.dol", 0x3FA9A8, 0x8 +.global lbl_805AE110 +lbl_805AE110: + .incbin "baserom.dol", 0x3FA9B0, 0x4 +.global lbl_805AE114 +lbl_805AE114: + .incbin "baserom.dol", 0x3FA9B4, 0x4 +.global lbl_805AE118 +lbl_805AE118: + .incbin "baserom.dol", 0x3FA9B8, 0x8 +.global lbl_805AE120 +lbl_805AE120: + .incbin "baserom.dol", 0x3FA9C0, 0x4 +.global lbl_805AE124 +lbl_805AE124: + .incbin "baserom.dol", 0x3FA9C4, 0x4 +.global lbl_805AE128 +lbl_805AE128: + .incbin "baserom.dol", 0x3FA9C8, 0x4 +.global lbl_805AE12C +lbl_805AE12C: + .incbin "baserom.dol", 0x3FA9CC, 0x4 +.global lbl_805AE130 +lbl_805AE130: + .incbin "baserom.dol", 0x3FA9D0, 0x2 +.global lbl_805AE132 +lbl_805AE132: + .incbin "baserom.dol", 0x3FA9D2, 0x6 +.global lbl_805AE138 +lbl_805AE138: + .incbin "baserom.dol", 0x3FA9D8, 0x4 +.global lbl_805AE13C +lbl_805AE13C: + .incbin "baserom.dol", 0x3FA9DC, 0x4 +.global lbl_805AE140 +lbl_805AE140: + .incbin "baserom.dol", 0x3FA9E0, 0x4 +.global lbl_805AE144 +lbl_805AE144: + .incbin "baserom.dol", 0x3FA9E4, 0x4 +.global lbl_805AE148 +lbl_805AE148: + .incbin "baserom.dol", 0x3FA9E8, 0x8 +.global lbl_805AE150 +lbl_805AE150: + .incbin "baserom.dol", 0x3FA9F0, 0x4 +.global lbl_805AE154 +lbl_805AE154: + .incbin "baserom.dol", 0x3FA9F4, 0x4 +.global lbl_805AE158 +lbl_805AE158: + .incbin "baserom.dol", 0x3FA9F8, 0x4 +.global lbl_805AE15C +lbl_805AE15C: + .incbin "baserom.dol", 0x3FA9FC, 0x4 +.global lbl_805AE160 +lbl_805AE160: + .incbin "baserom.dol", 0x3FAA00, 0x8 +.global lbl_805AE168 +lbl_805AE168: + .incbin "baserom.dol", 0x3FAA08, 0x4 +.global lbl_805AE16C +lbl_805AE16C: + .incbin "baserom.dol", 0x3FAA0C, 0x4 +.global lbl_805AE170 +lbl_805AE170: + .incbin "baserom.dol", 0x3FAA10, 0x8 +.global lbl_805AE178 +lbl_805AE178: + .incbin "baserom.dol", 0x3FAA18, 0x8 +.global lbl_805AE180 +lbl_805AE180: + .incbin "baserom.dol", 0x3FAA20, 0x4 +.global lbl_805AE184 +lbl_805AE184: + .incbin "baserom.dol", 0x3FAA24, 0x4 +.global lbl_805AE188 +lbl_805AE188: + .incbin "baserom.dol", 0x3FAA28, 0x8 +.global lbl_805AE190 +lbl_805AE190: + .incbin "baserom.dol", 0x3FAA30, 0x4 +.global lbl_805AE194 +lbl_805AE194: + .incbin "baserom.dol", 0x3FAA34, 0x4 +.global lbl_805AE198 +lbl_805AE198: + .incbin "baserom.dol", 0x3FAA38, 0x8 +.global lbl_805AE1A0 +lbl_805AE1A0: + .incbin "baserom.dol", 0x3FAA40, 0x4 +.global lbl_805AE1A4 +lbl_805AE1A4: + .incbin "baserom.dol", 0x3FAA44, 0x4 +.global lbl_805AE1A8 +lbl_805AE1A8: + .incbin "baserom.dol", 0x3FAA48, 0x8 +.global lbl_805AE1B0 +lbl_805AE1B0: + .incbin "baserom.dol", 0x3FAA50, 0x8 +.global lbl_805AE1B8 +lbl_805AE1B8: + .incbin "baserom.dol", 0x3FAA58, 0x8 +.global lbl_805AE1C0 +lbl_805AE1C0: + .incbin "baserom.dol", 0x3FAA60, 0x8 +.global lbl_805AE1C8 +lbl_805AE1C8: + .incbin "baserom.dol", 0x3FAA68, 0x8 +.global lbl_805AE1D0 +lbl_805AE1D0: + .incbin "baserom.dol", 0x3FAA70, 0x8 +.global lbl_805AE1D8 +lbl_805AE1D8: + .incbin "baserom.dol", 0x3FAA78, 0x4 +.global lbl_805AE1DC +lbl_805AE1DC: + .incbin "baserom.dol", 0x3FAA7C, 0x4 +.global lbl_805AE1E0 +lbl_805AE1E0: + .incbin "baserom.dol", 0x3FAA80, 0x4 +.global lbl_805AE1E4 +lbl_805AE1E4: + .incbin "baserom.dol", 0x3FAA84, 0x4 +.global lbl_805AE1E8 +lbl_805AE1E8: + .incbin "baserom.dol", 0x3FAA88, 0x4 +.global lbl_805AE1EC +lbl_805AE1EC: + .incbin "baserom.dol", 0x3FAA8C, 0x4 +.global lbl_805AE1F0 +lbl_805AE1F0: + .incbin "baserom.dol", 0x3FAA90, 0x8 +.global lbl_805AE1F8 +lbl_805AE1F8: + .incbin "baserom.dol", 0x3FAA98, 0x8 +.global lbl_805AE200 +lbl_805AE200: + .incbin "baserom.dol", 0x3FAAA0, 0x8 +.global lbl_805AE208 +lbl_805AE208: + .incbin "baserom.dol", 0x3FAAA8, 0x8 +.global lbl_805AE210 +lbl_805AE210: + .incbin "baserom.dol", 0x3FAAB0, 0x4 +.global lbl_805AE214 +lbl_805AE214: + .incbin "baserom.dol", 0x3FAAB4, 0x4 +.global lbl_805AE218 +lbl_805AE218: + .incbin "baserom.dol", 0x3FAAB8, 0x8 +.global lbl_805AE220 +lbl_805AE220: + .incbin "baserom.dol", 0x3FAAC0, 0x4 +.global lbl_805AE224 +lbl_805AE224: + .incbin "baserom.dol", 0x3FAAC4, 0x4 +.global lbl_805AE228 +lbl_805AE228: + .incbin "baserom.dol", 0x3FAAC8, 0x8 +.global lbl_805AE230 +lbl_805AE230: + .incbin "baserom.dol", 0x3FAAD0, 0x8 +.global lbl_805AE238 +lbl_805AE238: + .incbin "baserom.dol", 0x3FAAD8, 0x4 +.global lbl_805AE23C +lbl_805AE23C: + .incbin "baserom.dol", 0x3FAADC, 0x4 +.global lbl_805AE240 +lbl_805AE240: + .incbin "baserom.dol", 0x3FAAE0, 0x8 +.global lbl_805AE248 +lbl_805AE248: + .incbin "baserom.dol", 0x3FAAE8, 0x8 +.global lbl_805AE250 +lbl_805AE250: + .incbin "baserom.dol", 0x3FAAF0, 0x4 +.global lbl_805AE254 +lbl_805AE254: + .incbin "baserom.dol", 0x3FAAF4, 0x4 +.global lbl_805AE258 +lbl_805AE258: + .incbin "baserom.dol", 0x3FAAF8, 0x4 +.global lbl_805AE25C +lbl_805AE25C: + .incbin "baserom.dol", 0x3FAAFC, 0x4 +.global lbl_805AE260 +lbl_805AE260: + .incbin "baserom.dol", 0x3FAB00, 0x4 +.global lbl_805AE264 +lbl_805AE264: + .incbin "baserom.dol", 0x3FAB04, 0x4 +.global lbl_805AE268 +lbl_805AE268: + .incbin "baserom.dol", 0x3FAB08, 0x8 +.global lbl_805AE270 +lbl_805AE270: + .incbin "baserom.dol", 0x3FAB10, 0x8 +.global lbl_805AE278 +lbl_805AE278: + .incbin "baserom.dol", 0x3FAB18, 0x8 +.global lbl_805AE280 +lbl_805AE280: + .incbin "baserom.dol", 0x3FAB20, 0x8 +.global lbl_805AE288 +lbl_805AE288: + .incbin "baserom.dol", 0x3FAB28, 0x4 +.global lbl_805AE28C +lbl_805AE28C: + .incbin "baserom.dol", 0x3FAB2C, 0x2 +.global lbl_805AE28E +lbl_805AE28E: + .incbin "baserom.dol", 0x3FAB2E, 0x2 +.global lbl_805AE290 +lbl_805AE290: + .incbin "baserom.dol", 0x3FAB30, 0x8 +.global lbl_805AE298 +lbl_805AE298: + .incbin "baserom.dol", 0x3FAB38, 0x8 +.global lbl_805AE2A0 +lbl_805AE2A0: + .incbin "baserom.dol", 0x3FAB40, 0x4 +.global lbl_805AE2A4 +lbl_805AE2A4: + .incbin "baserom.dol", 0x3FAB44, 0x4 +.global lbl_805AE2A8 +lbl_805AE2A8: + .incbin "baserom.dol", 0x3FAB48, 0x8 +.global lbl_805AE2B0 +lbl_805AE2B0: + .incbin "baserom.dol", 0x3FAB50, 0x8 +.global lbl_805AE2B8 +lbl_805AE2B8: + .incbin "baserom.dol", 0x3FAB58, 0x4 +.global lbl_805AE2BC +lbl_805AE2BC: + .incbin "baserom.dol", 0x3FAB5C, 0x4 +.global lbl_805AE2C0 +lbl_805AE2C0: + .incbin "baserom.dol", 0x3FAB60, 0x8 +.global lbl_805AE2C8 +lbl_805AE2C8: + .incbin "baserom.dol", 0x3FAB68, 0x4 +.global lbl_805AE2CC +lbl_805AE2CC: + .incbin "baserom.dol", 0x3FAB6C, 0x4 +.global lbl_805AE2D0 +lbl_805AE2D0: + .incbin "baserom.dol", 0x3FAB70, 0x4 +.global lbl_805AE2D4 +lbl_805AE2D4: + .incbin "baserom.dol", 0x3FAB74, 0x4 +.global lbl_805AE2D8 +lbl_805AE2D8: + .incbin "baserom.dol", 0x3FAB78, 0x8 +.global lbl_805AE2E0 +lbl_805AE2E0: + .incbin "baserom.dol", 0x3FAB80, 0x4 +.global lbl_805AE2E4 +lbl_805AE2E4: + .incbin "baserom.dol", 0x3FAB84, 0x4 +.global lbl_805AE2E8 +lbl_805AE2E8: + .incbin "baserom.dol", 0x3FAB88, 0x4 +.global lbl_805AE2EC +lbl_805AE2EC: + .incbin "baserom.dol", 0x3FAB8C, 0x4 +.global lbl_805AE2F0 +lbl_805AE2F0: + .incbin "baserom.dol", 0x3FAB90, 0x8 +.global lbl_805AE2F8 +lbl_805AE2F8: + .incbin "baserom.dol", 0x3FAB98, 0x8 +.global lbl_805AE300 +lbl_805AE300: + .incbin "baserom.dol", 0x3FABA0, 0x8 +.global lbl_805AE308 +lbl_805AE308: + .incbin "baserom.dol", 0x3FABA8, 0x4 +.global lbl_805AE30C +lbl_805AE30C: + .incbin "baserom.dol", 0x3FABAC, 0x4 +.global lbl_805AE310 +lbl_805AE310: + .incbin "baserom.dol", 0x3FABB0, 0x8 +.global lbl_805AE318 +lbl_805AE318: + .incbin "baserom.dol", 0x3FABB8, 0x2 +.global lbl_805AE31A +lbl_805AE31A: + .incbin "baserom.dol", 0x3FABBA, 0x2 +.global lbl_805AE31C +lbl_805AE31C: + .incbin "baserom.dol", 0x3FABBC, 0x4 +.global lbl_805AE320 +lbl_805AE320: + .incbin "baserom.dol", 0x3FABC0, 0x4 +.global lbl_805AE324 +lbl_805AE324: + .incbin "baserom.dol", 0x3FABC4, 0x4 +.global lbl_805AE328 +lbl_805AE328: + .incbin "baserom.dol", 0x3FABC8, 0x4 +.global lbl_805AE32C +lbl_805AE32C: + .incbin "baserom.dol", 0x3FABCC, 0x4 +.global lbl_805AE330 +lbl_805AE330: + .incbin "baserom.dol", 0x3FABD0, 0x4 +.global lbl_805AE334 +lbl_805AE334: + .incbin "baserom.dol", 0x3FABD4, 0x4 +.global lbl_805AE338 +lbl_805AE338: + .incbin "baserom.dol", 0x3FABD8, 0x4 +.global lbl_805AE33C +lbl_805AE33C: + .incbin "baserom.dol", 0x3FABDC, 0x4 +.global lbl_805AE340 +lbl_805AE340: + .incbin "baserom.dol", 0x3FABE0, 0x4 +.global lbl_805AE344 +lbl_805AE344: + .incbin "baserom.dol", 0x3FABE4, 0x4 +.global lbl_805AE348 +lbl_805AE348: + .incbin "baserom.dol", 0x3FABE8, 0x4 +.global lbl_805AE34C +lbl_805AE34C: + .incbin "baserom.dol", 0x3FABEC, 0x4 +.global lbl_805AE350 +lbl_805AE350: + .incbin "baserom.dol", 0x3FABF0, 0x8 +.global lbl_805AE358 +lbl_805AE358: + .incbin "baserom.dol", 0x3FABF8, 0x4 +.global lbl_805AE35C +lbl_805AE35C: + .incbin "baserom.dol", 0x3FABFC, 0x4 +.global lbl_805AE360 +lbl_805AE360: + .incbin "baserom.dol", 0x3FAC00, 0x4 +.global lbl_805AE364 +lbl_805AE364: + .incbin "baserom.dol", 0x3FAC04, 0x4 +.global lbl_805AE368 +lbl_805AE368: + .incbin "baserom.dol", 0x3FAC08, 0x4 +.global lbl_805AE36C +lbl_805AE36C: + .incbin "baserom.dol", 0x3FAC0C, 0x4 +.global lbl_805AE370 +lbl_805AE370: + .incbin "baserom.dol", 0x3FAC10, 0x8 +.global lbl_805AE378 +lbl_805AE378: + .incbin "baserom.dol", 0x3FAC18, 0x8 +.global lbl_805AE380 +lbl_805AE380: + .incbin "baserom.dol", 0x3FAC20, 0x8 +.global lbl_805AE388 +lbl_805AE388: + .incbin "baserom.dol", 0x3FAC28, 0x8 +.global lbl_805AE390 +lbl_805AE390: + .incbin "baserom.dol", 0x3FAC30, 0x8 +.global lbl_805AE398 +lbl_805AE398: + .incbin "baserom.dol", 0x3FAC38, 0x8 +.global lbl_805AE3A0 +lbl_805AE3A0: + .incbin "baserom.dol", 0x3FAC40, 0x8 +.global lbl_805AE3A8 +lbl_805AE3A8: + .incbin "baserom.dol", 0x3FAC48, 0x4 +.global lbl_805AE3AC +lbl_805AE3AC: + .incbin "baserom.dol", 0x3FAC4C, 0x4 +.global lbl_805AE3B0 +lbl_805AE3B0: + .incbin "baserom.dol", 0x3FAC50, 0x4 +.global lbl_805AE3B4 +lbl_805AE3B4: + .incbin "baserom.dol", 0x3FAC54, 0x4 +.global lbl_805AE3B8 +lbl_805AE3B8: + .incbin "baserom.dol", 0x3FAC58, 0x4 +.global lbl_805AE3BC +lbl_805AE3BC: + .incbin "baserom.dol", 0x3FAC5C, 0x4 +.global lbl_805AE3C0 +lbl_805AE3C0: + .incbin "baserom.dol", 0x3FAC60, 0x8 +.global lbl_805AE3C8 +lbl_805AE3C8: + .incbin "baserom.dol", 0x3FAC68, 0x4 +.global lbl_805AE3CC +lbl_805AE3CC: + .incbin "baserom.dol", 0x3FAC6C, 0x4 +.global lbl_805AE3D0 +lbl_805AE3D0: + .incbin "baserom.dol", 0x3FAC70, 0x4 +.global lbl_805AE3D4 +lbl_805AE3D4: + .incbin "baserom.dol", 0x3FAC74, 0x4 +.global lbl_805AE3D8 +lbl_805AE3D8: + .incbin "baserom.dol", 0x3FAC78, 0x4 +.global lbl_805AE3DC +lbl_805AE3DC: + .incbin "baserom.dol", 0x3FAC7C, 0x4 +.global lbl_805AE3E0 +lbl_805AE3E0: + .incbin "baserom.dol", 0x3FAC80, 0x8 +.global lbl_805AE3E8 +lbl_805AE3E8: + .incbin "baserom.dol", 0x3FAC88, 0x8 +.global lbl_805AE3F0 +lbl_805AE3F0: + .incbin "baserom.dol", 0x3FAC90, 0x8 +.global lbl_805AE3F8 +lbl_805AE3F8: + .incbin "baserom.dol", 0x3FAC98, 0x4 +.global lbl_805AE3FC +lbl_805AE3FC: + .incbin "baserom.dol", 0x3FAC9C, 0x4 +.global lbl_805AE400 +lbl_805AE400: + .incbin "baserom.dol", 0x3FACA0, 0x8 +.global lbl_805AE408 +lbl_805AE408: + .incbin "baserom.dol", 0x3FACA8, 0x4 +.global lbl_805AE40C +lbl_805AE40C: + .incbin "baserom.dol", 0x3FACAC, 0x4 +.global lbl_805AE410 +lbl_805AE410: + .incbin "baserom.dol", 0x3FACB0, 0x8 +.global lbl_805AE418 +lbl_805AE418: + .incbin "baserom.dol", 0x3FACB8, 0x4 +.global lbl_805AE41C +lbl_805AE41C: + .incbin "baserom.dol", 0x3FACBC, 0x4 +.global lbl_805AE420 +lbl_805AE420: + .incbin "baserom.dol", 0x3FACC0, 0x8 +.global lbl_805AE428 +lbl_805AE428: + .incbin "baserom.dol", 0x3FACC8, 0x8 +.global lbl_805AE430 +lbl_805AE430: + .incbin "baserom.dol", 0x3FACD0, 0x4 +.global lbl_805AE434 +lbl_805AE434: + .incbin "baserom.dol", 0x3FACD4, 0x4 +.global lbl_805AE438 +lbl_805AE438: + .incbin "baserom.dol", 0x3FACD8, 0x4 +.global lbl_805AE43C +lbl_805AE43C: + .incbin "baserom.dol", 0x3FACDC, 0x4 +.global lbl_805AE440 +lbl_805AE440: + .incbin "baserom.dol", 0x3FACE0, 0x8 +.global lbl_805AE448 +lbl_805AE448: + .incbin "baserom.dol", 0x3FACE8, 0x8 +.global lbl_805AE450 +lbl_805AE450: + .incbin "baserom.dol", 0x3FACF0, 0x8 +.global lbl_805AE458 +lbl_805AE458: + .incbin "baserom.dol", 0x3FACF8, 0x8 +.global lbl_805AE460 +lbl_805AE460: + .incbin "baserom.dol", 0x3FAD00, 0x8 +.global lbl_805AE468 +lbl_805AE468: + .incbin "baserom.dol", 0x3FAD08, 0x8 +.global lbl_805AE470 +lbl_805AE470: + .incbin "baserom.dol", 0x3FAD10, 0x8 +.global lbl_805AE478 +lbl_805AE478: + .incbin "baserom.dol", 0x3FAD18, 0x8 +.global lbl_805AE480 +lbl_805AE480: + .incbin "baserom.dol", 0x3FAD20, 0x8 +.global lbl_805AE488 +lbl_805AE488: + .incbin "baserom.dol", 0x3FAD28, 0x8 +.global lbl_805AE490 +lbl_805AE490: + .incbin "baserom.dol", 0x3FAD30, 0x4 +.global lbl_805AE494 +lbl_805AE494: + .incbin "baserom.dol", 0x3FAD34, 0x4 +.global lbl_805AE498 +lbl_805AE498: + .incbin "baserom.dol", 0x3FAD38, 0x4 +.global lbl_805AE49C +lbl_805AE49C: + .incbin "baserom.dol", 0x3FAD3C, 0x4 +.global lbl_805AE4A0 +lbl_805AE4A0: + .incbin "baserom.dol", 0x3FAD40, 0x4 +.global lbl_805AE4A4 +lbl_805AE4A4: + .incbin "baserom.dol", 0x3FAD44, 0x4 +.global lbl_805AE4A8 +lbl_805AE4A8: + .incbin "baserom.dol", 0x3FAD48, 0x4 +.global lbl_805AE4AC +lbl_805AE4AC: + .incbin "baserom.dol", 0x3FAD4C, 0x4 +.global lbl_805AE4B0 +lbl_805AE4B0: + .incbin "baserom.dol", 0x3FAD50, 0x4 +.global lbl_805AE4B4 +lbl_805AE4B4: + .incbin "baserom.dol", 0x3FAD54, 0x4 +.global lbl_805AE4B8 +lbl_805AE4B8: + .incbin "baserom.dol", 0x3FAD58, 0x4 +.global lbl_805AE4BC +lbl_805AE4BC: + .incbin "baserom.dol", 0x3FAD5C, 0x4 +.global lbl_805AE4C0 +lbl_805AE4C0: + .incbin "baserom.dol", 0x3FAD60, 0x4 +.global lbl_805AE4C4 +lbl_805AE4C4: + .incbin "baserom.dol", 0x3FAD64, 0x4 +.global lbl_805AE4C8 +lbl_805AE4C8: + .incbin "baserom.dol", 0x3FAD68, 0x4 +.global lbl_805AE4CC +lbl_805AE4CC: + .incbin "baserom.dol", 0x3FAD6C, 0x4 +.global lbl_805AE4D0 +lbl_805AE4D0: + .incbin "baserom.dol", 0x3FAD70, 0x8 +.global lbl_805AE4D8 +lbl_805AE4D8: + .incbin "baserom.dol", 0x3FAD78, 0x4 +.global lbl_805AE4DC +lbl_805AE4DC: + .incbin "baserom.dol", 0x3FAD7C, 0x4 +.global lbl_805AE4E0 +lbl_805AE4E0: + .incbin "baserom.dol", 0x3FAD80, 0x4 +.global lbl_805AE4E4 +lbl_805AE4E4: + .incbin "baserom.dol", 0x3FAD84, 0x4 +.global lbl_805AE4E8 +lbl_805AE4E8: + .incbin "baserom.dol", 0x3FAD88, 0x4 +.global lbl_805AE4EC +lbl_805AE4EC: + .incbin "baserom.dol", 0x3FAD8C, 0x4 +.global lbl_805AE4F0 +lbl_805AE4F0: + .incbin "baserom.dol", 0x3FAD90, 0x4 +.global lbl_805AE4F4 +lbl_805AE4F4: + .incbin "baserom.dol", 0x3FAD94, 0x4 +.global lbl_805AE4F8 +lbl_805AE4F8: + .incbin "baserom.dol", 0x3FAD98, 0x4 +.global lbl_805AE4FC +lbl_805AE4FC: + .incbin "baserom.dol", 0x3FAD9C, 0x4 +.global lbl_805AE500 +lbl_805AE500: + .incbin "baserom.dol", 0x3FADA0, 0x4 +.global lbl_805AE504 +lbl_805AE504: + .incbin "baserom.dol", 0x3FADA4, 0x2 +.global lbl_805AE506 +lbl_805AE506: + .incbin "baserom.dol", 0x3FADA6, 0x2 +.global lbl_805AE508 +lbl_805AE508: + .incbin "baserom.dol", 0x3FADA8, 0x8 +.global lbl_805AE510 +lbl_805AE510: + .incbin "baserom.dol", 0x3FADB0, 0x4 +.global lbl_805AE514 +lbl_805AE514: + .incbin "baserom.dol", 0x3FADB4, 0x4 +.global lbl_805AE518 +lbl_805AE518: + .incbin "baserom.dol", 0x3FADB8, 0x8 +.global lbl_805AE520 +lbl_805AE520: + .incbin "baserom.dol", 0x3FADC0, 0x4 +.global lbl_805AE524 +lbl_805AE524: + .incbin "baserom.dol", 0x3FADC4, 0x1 +.global lbl_805AE525 +lbl_805AE525: + .incbin "baserom.dol", 0x3FADC5, 0x3 +.global lbl_805AE528 +lbl_805AE528: + .incbin "baserom.dol", 0x3FADC8, 0x4 +.global lbl_805AE52C +lbl_805AE52C: + .incbin "baserom.dol", 0x3FADCC, 0x4 +.global lbl_805AE530 +lbl_805AE530: + .incbin "baserom.dol", 0x3FADD0, 0x4 +.global lbl_805AE534 +lbl_805AE534: + .incbin "baserom.dol", 0x3FADD4, 0x4 +.global lbl_805AE538 +lbl_805AE538: + .incbin "baserom.dol", 0x3FADD8, 0x4 +.global lbl_805AE53C +lbl_805AE53C: + .incbin "baserom.dol", 0x3FADDC, 0x4 +.global lbl_805AE540 +lbl_805AE540: + .incbin "baserom.dol", 0x3FADE0, 0x4 +.global lbl_805AE544 +lbl_805AE544: + .incbin "baserom.dol", 0x3FADE4, 0x4 +.global lbl_805AE548 +lbl_805AE548: + .incbin "baserom.dol", 0x3FADE8, 0x4 +.global lbl_805AE54C +lbl_805AE54C: + .incbin "baserom.dol", 0x3FADEC, 0x4 +.global lbl_805AE550 +lbl_805AE550: + .incbin "baserom.dol", 0x3FADF0, 0x4 +.global lbl_805AE554 +lbl_805AE554: + .incbin "baserom.dol", 0x3FADF4, 0x4 +.global lbl_805AE558 +lbl_805AE558: + .incbin "baserom.dol", 0x3FADF8, 0x4 +.global lbl_805AE55C +lbl_805AE55C: + .incbin "baserom.dol", 0x3FADFC, 0x4 +.global lbl_805AE560 +lbl_805AE560: + .incbin "baserom.dol", 0x3FAE00, 0x8 +.global lbl_805AE568 +lbl_805AE568: + .incbin "baserom.dol", 0x3FAE08, 0x8 +.global lbl_805AE570 +lbl_805AE570: + .incbin "baserom.dol", 0x3FAE10, 0x4 +.global lbl_805AE574 +lbl_805AE574: + .incbin "baserom.dol", 0x3FAE14, 0x4 +.global lbl_805AE578 +lbl_805AE578: + .incbin "baserom.dol", 0x3FAE18, 0x4 +.global lbl_805AE57C +lbl_805AE57C: + .incbin "baserom.dol", 0x3FAE1C, 0x4 +.global lbl_805AE580 +lbl_805AE580: + .incbin "baserom.dol", 0x3FAE20, 0x4 +.global lbl_805AE584 +lbl_805AE584: + .incbin "baserom.dol", 0x3FAE24, 0x4 +.global lbl_805AE588 +lbl_805AE588: + .incbin "baserom.dol", 0x3FAE28, 0x8 +.global lbl_805AE590 +lbl_805AE590: + .incbin "baserom.dol", 0x3FAE30, 0x4 +.global lbl_805AE594 +lbl_805AE594: + .incbin "baserom.dol", 0x3FAE34, 0x4 +.global lbl_805AE598 +lbl_805AE598: + .incbin "baserom.dol", 0x3FAE38, 0x4 +.global lbl_805AE59C +lbl_805AE59C: + .incbin "baserom.dol", 0x3FAE3C, 0x4 +.global lbl_805AE5A0 +lbl_805AE5A0: + .incbin "baserom.dol", 0x3FAE40, 0x8 +.global lbl_805AE5A8 +lbl_805AE5A8: + .incbin "baserom.dol", 0x3FAE48, 0x8 +.global lbl_805AE5B0 +lbl_805AE5B0: + .incbin "baserom.dol", 0x3FAE50, 0x8 +.global lbl_805AE5B8 +lbl_805AE5B8: + .incbin "baserom.dol", 0x3FAE58, 0x8 +.global lbl_805AE5C0 +lbl_805AE5C0: + .incbin "baserom.dol", 0x3FAE60, 0x4 +.global lbl_805AE5C4 +lbl_805AE5C4: + .incbin "baserom.dol", 0x3FAE64, 0x4 +.global lbl_805AE5C8 +lbl_805AE5C8: + .incbin "baserom.dol", 0x3FAE68, 0x4 +.global lbl_805AE5CC +lbl_805AE5CC: + .incbin "baserom.dol", 0x3FAE6C, 0x4 +.global lbl_805AE5D0 +lbl_805AE5D0: + .incbin "baserom.dol", 0x3FAE70, 0x8 +.global lbl_805AE5D8 +lbl_805AE5D8: + .incbin "baserom.dol", 0x3FAE78, 0x8 +.global lbl_805AE5E0 +lbl_805AE5E0: + .incbin "baserom.dol", 0x3FAE80, 0x8 +.global lbl_805AE5E8 +lbl_805AE5E8: + .incbin "baserom.dol", 0x3FAE88, 0x8 +.global lbl_805AE5F0 +lbl_805AE5F0: + .incbin "baserom.dol", 0x3FAE90, 0x4 +.global lbl_805AE5F4 +lbl_805AE5F4: + .incbin "baserom.dol", 0x3FAE94, 0x4 +.global lbl_805AE5F8 +lbl_805AE5F8: + .incbin "baserom.dol", 0x3FAE98, 0x8 +.global lbl_805AE600 +lbl_805AE600: + .incbin "baserom.dol", 0x3FAEA0, 0x8 +.global lbl_805AE608 +lbl_805AE608: + .incbin "baserom.dol", 0x3FAEA8, 0x8 +.global lbl_805AE610 +lbl_805AE610: + .incbin "baserom.dol", 0x3FAEB0, 0x8 +.global lbl_805AE618 +lbl_805AE618: + .incbin "baserom.dol", 0x3FAEB8, 0x4 +.global lbl_805AE61C +lbl_805AE61C: + .incbin "baserom.dol", 0x3FAEBC, 0x4 +.global lbl_805AE620 +lbl_805AE620: + .incbin "baserom.dol", 0x3FAEC0, 0x4 +.global lbl_805AE624 +lbl_805AE624: + .incbin "baserom.dol", 0x3FAEC4, 0x4 +.global lbl_805AE628 +lbl_805AE628: + .incbin "baserom.dol", 0x3FAEC8, 0x8 +.global lbl_805AE630 +lbl_805AE630: + .incbin "baserom.dol", 0x3FAED0, 0x4 +.global lbl_805AE634 +lbl_805AE634: + .incbin "baserom.dol", 0x3FAED4, 0x4 +.global lbl_805AE638 +lbl_805AE638: + .incbin "baserom.dol", 0x3FAED8, 0x4 +.global lbl_805AE63C +lbl_805AE63C: + .incbin "baserom.dol", 0x3FAEDC, 0x4 +.global lbl_805AE640 +lbl_805AE640: + .incbin "baserom.dol", 0x3FAEE0, 0x8 +.global lbl_805AE648 +lbl_805AE648: + .incbin "baserom.dol", 0x3FAEE8, 0x4 +.global lbl_805AE64C +lbl_805AE64C: + .incbin "baserom.dol", 0x3FAEEC, 0x4 +.global lbl_805AE650 +lbl_805AE650: + .incbin "baserom.dol", 0x3FAEF0, 0x4 +.global lbl_805AE654 +lbl_805AE654: + .incbin "baserom.dol", 0x3FAEF4, 0x4 +.global lbl_805AE658 +lbl_805AE658: + .incbin "baserom.dol", 0x3FAEF8, 0x8 +.global lbl_805AE660 +lbl_805AE660: + .incbin "baserom.dol", 0x3FAF00, 0x8 +.global lbl_805AE668 +lbl_805AE668: + .incbin "baserom.dol", 0x3FAF08, 0x4 +.global lbl_805AE66C +lbl_805AE66C: + .incbin "baserom.dol", 0x3FAF0C, 0x4 +.global lbl_805AE670 +lbl_805AE670: + .incbin "baserom.dol", 0x3FAF10, 0x4 +.global lbl_805AE674 +lbl_805AE674: + .incbin "baserom.dol", 0x3FAF14, 0x4 +.global lbl_805AE678 +lbl_805AE678: + .incbin "baserom.dol", 0x3FAF18, 0x8 +.global lbl_805AE680 +lbl_805AE680: + .incbin "baserom.dol", 0x3FAF20, 0x8 +.global lbl_805AE688 +lbl_805AE688: + .incbin "baserom.dol", 0x3FAF28, 0x4 +.global lbl_805AE68C +lbl_805AE68C: + .incbin "baserom.dol", 0x3FAF2C, 0x4 +.global lbl_805AE690 +lbl_805AE690: + .incbin "baserom.dol", 0x3FAF30, 0x4 +.global lbl_805AE694 +lbl_805AE694: + .incbin "baserom.dol", 0x3FAF34, 0x4 +.global lbl_805AE698 +lbl_805AE698: + .incbin "baserom.dol", 0x3FAF38, 0x8 +.global lbl_805AE6A0 +lbl_805AE6A0: + .incbin "baserom.dol", 0x3FAF40, 0x4 +.global lbl_805AE6A4 +lbl_805AE6A4: + .incbin "baserom.dol", 0x3FAF44, 0x4 +.global lbl_805AE6A8 +lbl_805AE6A8: + .incbin "baserom.dol", 0x3FAF48, 0x4 +.global lbl_805AE6AC +lbl_805AE6AC: + .incbin "baserom.dol", 0x3FAF4C, 0x4 +.global lbl_805AE6B0 +lbl_805AE6B0: + .incbin "baserom.dol", 0x3FAF50, 0x4 +.global lbl_805AE6B4 +lbl_805AE6B4: + .incbin "baserom.dol", 0x3FAF54, 0x4 +.global lbl_805AE6B8 +lbl_805AE6B8: + .incbin "baserom.dol", 0x3FAF58, 0x4 +.global lbl_805AE6BC +lbl_805AE6BC: + .incbin "baserom.dol", 0x3FAF5C, 0x4 +.global lbl_805AE6C0 +lbl_805AE6C0: + .incbin "baserom.dol", 0x3FAF60, 0x4 +.global lbl_805AE6C4 +lbl_805AE6C4: + .incbin "baserom.dol", 0x3FAF64, 0x4 +.global lbl_805AE6C8 +lbl_805AE6C8: + .incbin "baserom.dol", 0x3FAF68, 0x4 +.global lbl_805AE6CC +lbl_805AE6CC: + .incbin "baserom.dol", 0x3FAF6C, 0x4 +.global lbl_805AE6D0 +lbl_805AE6D0: + .incbin "baserom.dol", 0x3FAF70, 0x8 +.global lbl_805AE6D8 +lbl_805AE6D8: + .incbin "baserom.dol", 0x3FAF78, 0x8 +.global lbl_805AE6E0 +lbl_805AE6E0: + .incbin "baserom.dol", 0x3FAF80, 0x8 +.global lbl_805AE6E8 +lbl_805AE6E8: + .incbin "baserom.dol", 0x3FAF88, 0x8 +.global lbl_805AE6F0 +lbl_805AE6F0: + .incbin "baserom.dol", 0x3FAF90, 0x8 +.global lbl_805AE6F8 +lbl_805AE6F8: + .incbin "baserom.dol", 0x3FAF98, 0x8 +.global lbl_805AE700 +lbl_805AE700: + .incbin "baserom.dol", 0x3FAFA0, 0x8 +.global lbl_805AE708 +lbl_805AE708: + .incbin "baserom.dol", 0x3FAFA8, 0x4 +.global lbl_805AE70C +lbl_805AE70C: + .incbin "baserom.dol", 0x3FAFAC, 0x4 +.global lbl_805AE710 +lbl_805AE710: + .incbin "baserom.dol", 0x3FAFB0, 0x4 +.global lbl_805AE714 +lbl_805AE714: + .incbin "baserom.dol", 0x3FAFB4, 0x4 +.global lbl_805AE718 +lbl_805AE718: + .incbin "baserom.dol", 0x3FAFB8, 0x4 +.global lbl_805AE71C +lbl_805AE71C: + .incbin "baserom.dol", 0x3FAFBC, 0x4 +.global lbl_805AE720 +lbl_805AE720: + .incbin "baserom.dol", 0x3FAFC0, 0x4 +.global lbl_805AE724 +lbl_805AE724: + .incbin "baserom.dol", 0x3FAFC4, 0x4 +.global lbl_805AE728 +lbl_805AE728: + .incbin "baserom.dol", 0x3FAFC8, 0x8 +.global lbl_805AE730 +lbl_805AE730: + .incbin "baserom.dol", 0x3FAFD0, 0x4 +.global lbl_805AE734 +lbl_805AE734: + .incbin "baserom.dol", 0x3FAFD4, 0x4 +.global lbl_805AE738 +lbl_805AE738: + .incbin "baserom.dol", 0x3FAFD8, 0x8 +.global lbl_805AE740 +lbl_805AE740: + .incbin "baserom.dol", 0x3FAFE0, 0x8 +.global lbl_805AE748 +lbl_805AE748: + .incbin "baserom.dol", 0x3FAFE8, 0x8 +.global lbl_805AE750 +lbl_805AE750: + .incbin "baserom.dol", 0x3FAFF0, 0x8 +.global lbl_805AE758 +lbl_805AE758: + .incbin "baserom.dol", 0x3FAFF8, 0x8 +.global lbl_805AE760 +lbl_805AE760: + .incbin "baserom.dol", 0x3FB000, 0x4 +.global lbl_805AE764 +lbl_805AE764: + .incbin "baserom.dol", 0x3FB004, 0x4 +.global lbl_805AE768 +lbl_805AE768: + .incbin "baserom.dol", 0x3FB008, 0x8 +.global lbl_805AE770 +lbl_805AE770: + .incbin "baserom.dol", 0x3FB010, 0x4 +.global lbl_805AE774 +lbl_805AE774: + .incbin "baserom.dol", 0x3FB014, 0x4 +.global lbl_805AE778 +lbl_805AE778: + .incbin "baserom.dol", 0x3FB018, 0x8 +.global lbl_805AE780 +lbl_805AE780: + .incbin "baserom.dol", 0x3FB020, 0x4 +.global lbl_805AE784 +lbl_805AE784: + .incbin "baserom.dol", 0x3FB024, 0x4 +.global lbl_805AE788 +lbl_805AE788: + .incbin "baserom.dol", 0x3FB028, 0x4 +.global lbl_805AE78C +lbl_805AE78C: + .incbin "baserom.dol", 0x3FB02C, 0x4 +.global lbl_805AE790 +lbl_805AE790: + .incbin "baserom.dol", 0x3FB030, 0x8 +.global lbl_805AE798 +lbl_805AE798: + .incbin "baserom.dol", 0x3FB038, 0x4 +.global lbl_805AE79C +lbl_805AE79C: + .incbin "baserom.dol", 0x3FB03C, 0x4 +.global lbl_805AE7A0 +lbl_805AE7A0: + .incbin "baserom.dol", 0x3FB040, 0x8 +.global lbl_805AE7A8 +lbl_805AE7A8: + .incbin "baserom.dol", 0x3FB048, 0x8 +.global lbl_805AE7B0 +lbl_805AE7B0: + .incbin "baserom.dol", 0x3FB050, 0x4 +.global lbl_805AE7B4 +lbl_805AE7B4: + .incbin "baserom.dol", 0x3FB054, 0x4 +.global lbl_805AE7B8 +lbl_805AE7B8: + .incbin "baserom.dol", 0x3FB058, 0x4 +.global lbl_805AE7BC +lbl_805AE7BC: + .incbin "baserom.dol", 0x3FB05C, 0x4 +.global lbl_805AE7C0 +lbl_805AE7C0: + .incbin "baserom.dol", 0x3FB060, 0x4 +.global lbl_805AE7C4 +lbl_805AE7C4: + .incbin "baserom.dol", 0x3FB064, 0x4 +.global lbl_805AE7C8 +lbl_805AE7C8: + .incbin "baserom.dol", 0x3FB068, 0x4 +.global lbl_805AE7CC +lbl_805AE7CC: + .incbin "baserom.dol", 0x3FB06C, 0x4 +.global lbl_805AE7D0 +lbl_805AE7D0: + .incbin "baserom.dol", 0x3FB070, 0x4 +.global lbl_805AE7D4 +lbl_805AE7D4: + .incbin "baserom.dol", 0x3FB074, 0x4 +.global lbl_805AE7D8 +lbl_805AE7D8: + .incbin "baserom.dol", 0x3FB078, 0x4 +.global lbl_805AE7DC +lbl_805AE7DC: + .incbin "baserom.dol", 0x3FB07C, 0x4 +.global lbl_805AE7E0 +lbl_805AE7E0: + .incbin "baserom.dol", 0x3FB080, 0x4 +.global lbl_805AE7E4 +lbl_805AE7E4: + .incbin "baserom.dol", 0x3FB084, 0x4 +.global lbl_805AE7E8 +lbl_805AE7E8: + .incbin "baserom.dol", 0x3FB088, 0x4 +.global lbl_805AE7EC +lbl_805AE7EC: + .incbin "baserom.dol", 0x3FB08C, 0x4 +.global lbl_805AE7F0 +lbl_805AE7F0: + .incbin "baserom.dol", 0x3FB090, 0x4 +.global lbl_805AE7F4 +lbl_805AE7F4: + .incbin "baserom.dol", 0x3FB094, 0x4 +.global lbl_805AE7F8 +lbl_805AE7F8: + .incbin "baserom.dol", 0x3FB098, 0x8 +.global lbl_805AE800 +lbl_805AE800: + .incbin "baserom.dol", 0x3FB0A0, 0x4 +.global lbl_805AE804 +lbl_805AE804: + .incbin "baserom.dol", 0x3FB0A4, 0x4 +.global lbl_805AE808 +lbl_805AE808: + .incbin "baserom.dol", 0x3FB0A8, 0x8 +.global lbl_805AE810 +lbl_805AE810: + .incbin "baserom.dol", 0x3FB0B0, 0x8 +.global lbl_805AE818 +lbl_805AE818: + .incbin "baserom.dol", 0x3FB0B8, 0x4 +.global lbl_805AE81C +lbl_805AE81C: + .incbin "baserom.dol", 0x3FB0BC, 0x4 +.global lbl_805AE820 +lbl_805AE820: + .incbin "baserom.dol", 0x3FB0C0, 0x4 +.global lbl_805AE824 +lbl_805AE824: + .incbin "baserom.dol", 0x3FB0C4, 0x4 +.global lbl_805AE828 +lbl_805AE828: + .incbin "baserom.dol", 0x3FB0C8, 0x8 +.global lbl_805AE830 +lbl_805AE830: + .incbin "baserom.dol", 0x3FB0D0, 0x8 +.global lbl_805AE838 +lbl_805AE838: + .incbin "baserom.dol", 0x3FB0D8, 0x8 +.global lbl_805AE840 +lbl_805AE840: + .incbin "baserom.dol", 0x3FB0E0, 0x8 +.global lbl_805AE848 +lbl_805AE848: + .incbin "baserom.dol", 0x3FB0E8, 0x4 +.global lbl_805AE84C +lbl_805AE84C: + .incbin "baserom.dol", 0x3FB0EC, 0x4 +.global lbl_805AE850 +lbl_805AE850: + .incbin "baserom.dol", 0x3FB0F0, 0x4 +.global lbl_805AE854 +lbl_805AE854: + .incbin "baserom.dol", 0x3FB0F4, 0x4 +.global lbl_805AE858 +lbl_805AE858: + .incbin "baserom.dol", 0x3FB0F8, 0x8 +.global lbl_805AE860 +lbl_805AE860: + .incbin "baserom.dol", 0x3FB100, 0x8 +.global lbl_805AE868 +lbl_805AE868: + .incbin "baserom.dol", 0x3FB108, 0x4 +.global lbl_805AE86C +lbl_805AE86C: + .incbin "baserom.dol", 0x3FB10C, 0x4 +.global lbl_805AE870 +lbl_805AE870: + .incbin "baserom.dol", 0x3FB110, 0x4 +.global lbl_805AE874 +lbl_805AE874: + .incbin "baserom.dol", 0x3FB114, 0x4 +.global lbl_805AE878 +lbl_805AE878: + .incbin "baserom.dol", 0x3FB118, 0x8 +.global lbl_805AE880 +lbl_805AE880: + .incbin "baserom.dol", 0x3FB120, 0x8 +.global lbl_805AE888 +lbl_805AE888: + .incbin "baserom.dol", 0x3FB128, 0x4 +.global lbl_805AE88C +lbl_805AE88C: + .incbin "baserom.dol", 0x3FB12C, 0x4 +.global lbl_805AE890 +lbl_805AE890: + .incbin "baserom.dol", 0x3FB130, 0x4 +.global lbl_805AE894 +lbl_805AE894: + .incbin "baserom.dol", 0x3FB134, 0x4 +.global lbl_805AE898 +lbl_805AE898: + .incbin "baserom.dol", 0x3FB138, 0x8 +.global lbl_805AE8A0 +lbl_805AE8A0: + .incbin "baserom.dol", 0x3FB140, 0x4 +.global lbl_805AE8A4 +lbl_805AE8A4: + .incbin "baserom.dol", 0x3FB144, 0x4 +.global lbl_805AE8A8 +lbl_805AE8A8: + .incbin "baserom.dol", 0x3FB148, 0x4 +.global lbl_805AE8AC +lbl_805AE8AC: + .incbin "baserom.dol", 0x3FB14C, 0x4 +.global lbl_805AE8B0 +lbl_805AE8B0: + .incbin "baserom.dol", 0x3FB150, 0x4 +.global lbl_805AE8B4 +lbl_805AE8B4: + .incbin "baserom.dol", 0x3FB154, 0x4 +.global lbl_805AE8B8 +lbl_805AE8B8: + .incbin "baserom.dol", 0x3FB158, 0x8 +.global lbl_805AE8C0 +lbl_805AE8C0: + .incbin "baserom.dol", 0x3FB160, 0x8 +.global lbl_805AE8C8 +lbl_805AE8C8: + .incbin "baserom.dol", 0x3FB168, 0x4 +.global lbl_805AE8CC +lbl_805AE8CC: + .incbin "baserom.dol", 0x3FB16C, 0x4 +.global lbl_805AE8D0 +lbl_805AE8D0: + .incbin "baserom.dol", 0x3FB170, 0x4 +.global lbl_805AE8D4 +lbl_805AE8D4: + .incbin "baserom.dol", 0x3FB174, 0x4 +.global lbl_805AE8D8 +lbl_805AE8D8: + .incbin "baserom.dol", 0x3FB178, 0x4 +.global lbl_805AE8DC +lbl_805AE8DC: + .incbin "baserom.dol", 0x3FB17C, 0x4 +.global lbl_805AE8E0 +lbl_805AE8E0: + .incbin "baserom.dol", 0x3FB180, 0x4 +.global lbl_805AE8E4 +lbl_805AE8E4: + .incbin "baserom.dol", 0x3FB184, 0x4 +.global lbl_805AE8E8 +lbl_805AE8E8: + .incbin "baserom.dol", 0x3FB188, 0x4 +.global lbl_805AE8EC +lbl_805AE8EC: + .incbin "baserom.dol", 0x3FB18C, 0x4 +.global lbl_805AE8F0 +lbl_805AE8F0: + .incbin "baserom.dol", 0x3FB190, 0x8 +.global lbl_805AE8F8 +lbl_805AE8F8: + .incbin "baserom.dol", 0x3FB198, 0x4 +.global lbl_805AE8FC +lbl_805AE8FC: + .incbin "baserom.dol", 0x3FB19C, 0x4 +.global lbl_805AE900 +lbl_805AE900: + .incbin "baserom.dol", 0x3FB1A0, 0x4 +.global lbl_805AE904 +lbl_805AE904: + .incbin "baserom.dol", 0x3FB1A4, 0x4 +.global lbl_805AE908 +lbl_805AE908: + .incbin "baserom.dol", 0x3FB1A8, 0x8 +.global lbl_805AE910 +lbl_805AE910: + .incbin "baserom.dol", 0x3FB1B0, 0x8 +.global lbl_805AE918 +lbl_805AE918: + .incbin "baserom.dol", 0x3FB1B8, 0x4 +.global lbl_805AE91C +lbl_805AE91C: + .incbin "baserom.dol", 0x3FB1BC, 0x4 +.global lbl_805AE920 +lbl_805AE920: + .incbin "baserom.dol", 0x3FB1C0, 0x4 +.global lbl_805AE924 +lbl_805AE924: + .incbin "baserom.dol", 0x3FB1C4, 0x4 +.global lbl_805AE928 +lbl_805AE928: + .incbin "baserom.dol", 0x3FB1C8, 0x4 +.global lbl_805AE92C +lbl_805AE92C: + .incbin "baserom.dol", 0x3FB1CC, 0x4 +.global lbl_805AE930 +lbl_805AE930: + .incbin "baserom.dol", 0x3FB1D0, 0x8 +.global lbl_805AE938 +lbl_805AE938: + .incbin "baserom.dol", 0x3FB1D8, 0x4 +.global lbl_805AE93C +lbl_805AE93C: + .incbin "baserom.dol", 0x3FB1DC, 0x4 +.global lbl_805AE940 +lbl_805AE940: + .incbin "baserom.dol", 0x3FB1E0, 0x8 +.global lbl_805AE948 +lbl_805AE948: + .incbin "baserom.dol", 0x3FB1E8, 0x4 +.global lbl_805AE94C +lbl_805AE94C: + .incbin "baserom.dol", 0x3FB1EC, 0x4 +.global lbl_805AE950 +lbl_805AE950: + .incbin "baserom.dol", 0x3FB1F0, 0x4 +.global lbl_805AE954 +lbl_805AE954: + .incbin "baserom.dol", 0x3FB1F4, 0x4 +.global lbl_805AE958 +lbl_805AE958: + .incbin "baserom.dol", 0x3FB1F8, 0x8 +.global lbl_805AE960 +lbl_805AE960: + .incbin "baserom.dol", 0x3FB200, 0x1 +.global lbl_805AE961 +lbl_805AE961: + .incbin "baserom.dol", 0x3FB201, 0x3 +.global lbl_805AE964 +lbl_805AE964: + .incbin "baserom.dol", 0x3FB204, 0x4 +.global lbl_805AE968 +lbl_805AE968: + .incbin "baserom.dol", 0x3FB208, 0x8 +.global lbl_805AE970 +lbl_805AE970: + .incbin "baserom.dol", 0x3FB210, 0x4 +.global lbl_805AE974 +lbl_805AE974: + .incbin "baserom.dol", 0x3FB214, 0x4 +.global lbl_805AE978 +lbl_805AE978: + .incbin "baserom.dol", 0x3FB218, 0x4 +.global lbl_805AE97C +lbl_805AE97C: + .incbin "baserom.dol", 0x3FB21C, 0x4 +.global lbl_805AE980 +lbl_805AE980: + .incbin "baserom.dol", 0x3FB220, 0x4 +.global lbl_805AE984 +lbl_805AE984: + .incbin "baserom.dol", 0x3FB224, 0x4 +.global lbl_805AE988 +lbl_805AE988: + .incbin "baserom.dol", 0x3FB228, 0x4 +.global lbl_805AE98C +lbl_805AE98C: + .incbin "baserom.dol", 0x3FB22C, 0x4 +.global lbl_805AE990 +lbl_805AE990: + .incbin "baserom.dol", 0x3FB230, 0x4 +.global lbl_805AE994 +lbl_805AE994: + .incbin "baserom.dol", 0x3FB234, 0x4 +.global lbl_805AE998 +lbl_805AE998: + .incbin "baserom.dol", 0x3FB238, 0x4 +.global lbl_805AE99C +lbl_805AE99C: + .incbin "baserom.dol", 0x3FB23C, 0x4 +.global lbl_805AE9A0 +lbl_805AE9A0: + .incbin "baserom.dol", 0x3FB240, 0x8 +.global lbl_805AE9A8 +lbl_805AE9A8: + .incbin "baserom.dol", 0x3FB248, 0x8 +.global lbl_805AE9B0 +lbl_805AE9B0: + .incbin "baserom.dol", 0x3FB250, 0x8 +.global lbl_805AE9B8 +lbl_805AE9B8: + .incbin "baserom.dol", 0x3FB258, 0x8 +.global lbl_805AE9C0 +lbl_805AE9C0: + .incbin "baserom.dol", 0x3FB260, 0x8 +.global lbl_805AE9C8 +lbl_805AE9C8: + .incbin "baserom.dol", 0x3FB268, 0x4 +.global lbl_805AE9CC +lbl_805AE9CC: + .incbin "baserom.dol", 0x3FB26C, 0x4 +.global lbl_805AE9D0 +lbl_805AE9D0: + .incbin "baserom.dol", 0x3FB270, 0x8 +.global lbl_805AE9D8 +lbl_805AE9D8: + .incbin "baserom.dol", 0x3FB278, 0x8 +.global lbl_805AE9E0 +lbl_805AE9E0: + .incbin "baserom.dol", 0x3FB280, 0x4 +.global lbl_805AE9E4 +lbl_805AE9E4: + .incbin "baserom.dol", 0x3FB284, 0x4 +.global lbl_805AE9E8 +lbl_805AE9E8: + .incbin "baserom.dol", 0x3FB288, 0x8 +.global lbl_805AE9F0 +lbl_805AE9F0: + .incbin "baserom.dol", 0x3FB290, 0x8 +.global lbl_805AE9F8 +lbl_805AE9F8: + .incbin "baserom.dol", 0x3FB298, 0x4 +.global lbl_805AE9FC +lbl_805AE9FC: + .incbin "baserom.dol", 0x3FB29C, 0x4 +.global lbl_805AEA00 +lbl_805AEA00: + .incbin "baserom.dol", 0x3FB2A0, 0x4 +.global lbl_805AEA04 +lbl_805AEA04: + .incbin "baserom.dol", 0x3FB2A4, 0x4 +.global lbl_805AEA08 +lbl_805AEA08: + .incbin "baserom.dol", 0x3FB2A8, 0x8 +.global lbl_805AEA10 +lbl_805AEA10: + .incbin "baserom.dol", 0x3FB2B0, 0x8 +.global lbl_805AEA18 +lbl_805AEA18: + .incbin "baserom.dol", 0x3FB2B8, 0x8 +.global lbl_805AEA20 +lbl_805AEA20: + .incbin "baserom.dol", 0x3FB2C0, 0x8 +.global lbl_805AEA28 +lbl_805AEA28: + .incbin "baserom.dol", 0x3FB2C8, 0x4 +.global lbl_805AEA2C +lbl_805AEA2C: + .incbin "baserom.dol", 0x3FB2CC, 0x4 +.global lbl_805AEA30 +lbl_805AEA30: + .incbin "baserom.dol", 0x3FB2D0, 0x4 +.global lbl_805AEA34 +lbl_805AEA34: + .incbin "baserom.dol", 0x3FB2D4, 0x4 +.global lbl_805AEA38 +lbl_805AEA38: + .incbin "baserom.dol", 0x3FB2D8, 0x4 +.global lbl_805AEA3C +lbl_805AEA3C: + .incbin "baserom.dol", 0x3FB2DC, 0x4 +.global lbl_805AEA40 +lbl_805AEA40: + .incbin "baserom.dol", 0x3FB2E0, 0x4 +.global lbl_805AEA44 +lbl_805AEA44: + .incbin "baserom.dol", 0x3FB2E4, 0x4 +.global lbl_805AEA48 +lbl_805AEA48: + .incbin "baserom.dol", 0x3FB2E8, 0x8 +.global lbl_805AEA50 +lbl_805AEA50: + .incbin "baserom.dol", 0x3FB2F0, 0x8 +.global lbl_805AEA58 +lbl_805AEA58: + .incbin "baserom.dol", 0x3FB2F8, 0x8 +.global lbl_805AEA60 +lbl_805AEA60: + .incbin "baserom.dol", 0x3FB300, 0x4 +.global lbl_805AEA64 +lbl_805AEA64: + .incbin "baserom.dol", 0x3FB304, 0x4 +.global lbl_805AEA68 +lbl_805AEA68: + .incbin "baserom.dol", 0x3FB308, 0x4 +.global lbl_805AEA6C +lbl_805AEA6C: + .incbin "baserom.dol", 0x3FB30C, 0x4 +.global lbl_805AEA70 +lbl_805AEA70: + .incbin "baserom.dol", 0x3FB310, 0x4 +.global lbl_805AEA74 +lbl_805AEA74: + .incbin "baserom.dol", 0x3FB314, 0x4 +.global lbl_805AEA78 +lbl_805AEA78: + .incbin "baserom.dol", 0x3FB318, 0x8 +.global lbl_805AEA80 +lbl_805AEA80: + .incbin "baserom.dol", 0x3FB320, 0x8 +.global lbl_805AEA88 +lbl_805AEA88: + .incbin "baserom.dol", 0x3FB328, 0x4 +.global lbl_805AEA8C +lbl_805AEA8C: + .incbin "baserom.dol", 0x3FB32C, 0x4 +.global lbl_805AEA90 +lbl_805AEA90: + .incbin "baserom.dol", 0x3FB330, 0x4 +.global lbl_805AEA94 +lbl_805AEA94: + .incbin "baserom.dol", 0x3FB334, 0x4 +.global lbl_805AEA98 +lbl_805AEA98: + .incbin "baserom.dol", 0x3FB338, 0x4 +.global lbl_805AEA9C +lbl_805AEA9C: + .incbin "baserom.dol", 0x3FB33C, 0x4 +.global lbl_805AEAA0 +lbl_805AEAA0: + .incbin "baserom.dol", 0x3FB340, 0x4 +.global lbl_805AEAA4 +lbl_805AEAA4: + .incbin "baserom.dol", 0x3FB344, 0x4 +.global lbl_805AEAA8 +lbl_805AEAA8: + .incbin "baserom.dol", 0x3FB348, 0x8 +.global lbl_805AEAB0 +lbl_805AEAB0: + .incbin "baserom.dol", 0x3FB350, 0x8 +.global lbl_805AEAB8 +lbl_805AEAB8: + .incbin "baserom.dol", 0x3FB358, 0x8 +.global lbl_805AEAC0 +lbl_805AEAC0: + .incbin "baserom.dol", 0x3FB360, 0x4 +.global lbl_805AEAC4 +lbl_805AEAC4: + .incbin "baserom.dol", 0x3FB364, 0x4 +.global lbl_805AEAC8 +lbl_805AEAC8: + .incbin "baserom.dol", 0x3FB368, 0x4 +.global lbl_805AEACC +lbl_805AEACC: + .incbin "baserom.dol", 0x3FB36C, 0x4 +.global lbl_805AEAD0 +lbl_805AEAD0: + .incbin "baserom.dol", 0x3FB370, 0x4 +.global lbl_805AEAD4 +lbl_805AEAD4: + .incbin "baserom.dol", 0x3FB374, 0x4 +.global lbl_805AEAD8 +lbl_805AEAD8: + .incbin "baserom.dol", 0x3FB378, 0x4 +.global lbl_805AEADC +lbl_805AEADC: + .incbin "baserom.dol", 0x3FB37C, 0x4 +.global lbl_805AEAE0 +lbl_805AEAE0: + .incbin "baserom.dol", 0x3FB380, 0x8 +.global lbl_805AEAE8 +lbl_805AEAE8: + .incbin "baserom.dol", 0x3FB388, 0x8 +.global lbl_805AEAF0 +lbl_805AEAF0: + .incbin "baserom.dol", 0x3FB390, 0x4 +.global lbl_805AEAF4 +lbl_805AEAF4: + .incbin "baserom.dol", 0x3FB394, 0x4 +.global lbl_805AEAF8 +lbl_805AEAF8: + .incbin "baserom.dol", 0x3FB398, 0x4 +.global lbl_805AEAFC +lbl_805AEAFC: + .incbin "baserom.dol", 0x3FB39C, 0x4 +.global lbl_805AEB00 +lbl_805AEB00: + .incbin "baserom.dol", 0x3FB3A0, 0x4 +.global lbl_805AEB04 +lbl_805AEB04: + .incbin "baserom.dol", 0x3FB3A4, 0x4 +.global lbl_805AEB08 +lbl_805AEB08: + .incbin "baserom.dol", 0x3FB3A8, 0x4 +.global lbl_805AEB0C +lbl_805AEB0C: + .incbin "baserom.dol", 0x3FB3AC, 0x4 +.global lbl_805AEB10 +lbl_805AEB10: + .incbin "baserom.dol", 0x3FB3B0, 0x4 +.global lbl_805AEB14 +lbl_805AEB14: + .incbin "baserom.dol", 0x3FB3B4, 0x4 +.global lbl_805AEB18 +lbl_805AEB18: + .incbin "baserom.dol", 0x3FB3B8, 0x4 +.global lbl_805AEB1C +lbl_805AEB1C: + .incbin "baserom.dol", 0x3FB3BC, 0x4 +.global lbl_805AEB20 +lbl_805AEB20: + .incbin "baserom.dol", 0x3FB3C0, 0x4 +.global lbl_805AEB24 +lbl_805AEB24: + .incbin "baserom.dol", 0x3FB3C4, 0x4 +.global lbl_805AEB28 +lbl_805AEB28: + .incbin "baserom.dol", 0x3FB3C8, 0x4 +.global lbl_805AEB2C +lbl_805AEB2C: + .incbin "baserom.dol", 0x3FB3CC, 0x4 +.global lbl_805AEB30 +lbl_805AEB30: + .incbin "baserom.dol", 0x3FB3D0, 0x4 +.global lbl_805AEB34 +lbl_805AEB34: + .incbin "baserom.dol", 0x3FB3D4, 0x4 +.global lbl_805AEB38 +lbl_805AEB38: + .incbin "baserom.dol", 0x3FB3D8, 0x4 +.global lbl_805AEB3C +lbl_805AEB3C: + .incbin "baserom.dol", 0x3FB3DC, 0x4 +.global lbl_805AEB40 +lbl_805AEB40: + .incbin "baserom.dol", 0x3FB3E0, 0x8 +.global lbl_805AEB48 +lbl_805AEB48: + .incbin "baserom.dol", 0x3FB3E8, 0x8 +.global lbl_805AEB50 +lbl_805AEB50: + .incbin "baserom.dol", 0x3FB3F0, 0x8 +.global lbl_805AEB58 +lbl_805AEB58: + .incbin "baserom.dol", 0x3FB3F8, 0x4 +.global lbl_805AEB5C +lbl_805AEB5C: + .incbin "baserom.dol", 0x3FB3FC, 0x4 +.global lbl_805AEB60 +lbl_805AEB60: + .incbin "baserom.dol", 0x3FB400, 0x4 +.global lbl_805AEB64 +lbl_805AEB64: + .incbin "baserom.dol", 0x3FB404, 0x4 +.global lbl_805AEB68 +lbl_805AEB68: + .incbin "baserom.dol", 0x3FB408, 0x4 +.global lbl_805AEB6C +lbl_805AEB6C: + .incbin "baserom.dol", 0x3FB40C, 0x4 +.global lbl_805AEB70 +lbl_805AEB70: + .incbin "baserom.dol", 0x3FB410, 0x4 +.global lbl_805AEB74 +lbl_805AEB74: + .incbin "baserom.dol", 0x3FB414, 0x4 +.global lbl_805AEB78 +lbl_805AEB78: + .incbin "baserom.dol", 0x3FB418, 0x4 +.global lbl_805AEB7C +lbl_805AEB7C: + .incbin "baserom.dol", 0x3FB41C, 0x4 +.global lbl_805AEB80 +lbl_805AEB80: + .incbin "baserom.dol", 0x3FB420, 0x8 +.global lbl_805AEB88 +lbl_805AEB88: + .incbin "baserom.dol", 0x3FB428, 0x8 +.global lbl_805AEB90 +lbl_805AEB90: + .incbin "baserom.dol", 0x3FB430, 0x8 +.global lbl_805AEB98 +lbl_805AEB98: + .incbin "baserom.dol", 0x3FB438, 0x4 +.global lbl_805AEB9C +lbl_805AEB9C: + .incbin "baserom.dol", 0x3FB43C, 0x4 +.global lbl_805AEBA0 +lbl_805AEBA0: + .incbin "baserom.dol", 0x3FB440, 0x4 +.global lbl_805AEBA4 +lbl_805AEBA4: + .incbin "baserom.dol", 0x3FB444, 0x4 +.global lbl_805AEBA8 +lbl_805AEBA8: + .incbin "baserom.dol", 0x3FB448, 0x4 +.global lbl_805AEBAC +lbl_805AEBAC: + .incbin "baserom.dol", 0x3FB44C, 0x4 +.global lbl_805AEBB0 +lbl_805AEBB0: + .incbin "baserom.dol", 0x3FB450, 0x8 +.global lbl_805AEBB8 +lbl_805AEBB8: + .incbin "baserom.dol", 0x3FB458, 0x4 +.global lbl_805AEBBC +lbl_805AEBBC: + .incbin "baserom.dol", 0x3FB45C, 0x4 +.global lbl_805AEBC0 +lbl_805AEBC0: + .incbin "baserom.dol", 0x3FB460, 0x8 +.global lbl_805AEBC8 +lbl_805AEBC8: + .incbin "baserom.dol", 0x3FB468, 0x8 +.global lbl_805AEBD0 +lbl_805AEBD0: + .incbin "baserom.dol", 0x3FB470, 0x8 +.global lbl_805AEBD8 +lbl_805AEBD8: + .incbin "baserom.dol", 0x3FB478, 0x8 +.global lbl_805AEBE0 +lbl_805AEBE0: + .incbin "baserom.dol", 0x3FB480, 0x8 +.global lbl_805AEBE8 +lbl_805AEBE8: + .incbin "baserom.dol", 0x3FB488, 0x4 +.global lbl_805AEBEC +lbl_805AEBEC: + .incbin "baserom.dol", 0x3FB48C, 0x4 +.global lbl_805AEBF0 +lbl_805AEBF0: + .incbin "baserom.dol", 0x3FB490, 0x8 +.global lbl_805AEBF8 +lbl_805AEBF8: + .incbin "baserom.dol", 0x3FB498, 0x4 +.global lbl_805AEBFC +lbl_805AEBFC: + .incbin "baserom.dol", 0x3FB49C, 0x4 +.global lbl_805AEC00 +lbl_805AEC00: + .incbin "baserom.dol", 0x3FB4A0, 0x4 +.global lbl_805AEC04 +lbl_805AEC04: + .incbin "baserom.dol", 0x3FB4A4, 0x4 +.global lbl_805AEC08 +lbl_805AEC08: + .incbin "baserom.dol", 0x3FB4A8, 0x4 +.global lbl_805AEC0C +lbl_805AEC0C: + .incbin "baserom.dol", 0x3FB4AC, 0x4 +.global lbl_805AEC10 +lbl_805AEC10: + .incbin "baserom.dol", 0x3FB4B0, 0x4 +.global lbl_805AEC14 +lbl_805AEC14: + .incbin "baserom.dol", 0x3FB4B4, 0x4 +.global lbl_805AEC18 +lbl_805AEC18: + .incbin "baserom.dol", 0x3FB4B8, 0x4 +.global lbl_805AEC1C +lbl_805AEC1C: + .incbin "baserom.dol", 0x3FB4BC, 0x4 +.global lbl_805AEC20 +lbl_805AEC20: + .incbin "baserom.dol", 0x3FB4C0, 0x4 +.global lbl_805AEC24 +lbl_805AEC24: + .incbin "baserom.dol", 0x3FB4C4, 0x4 +.global lbl_805AEC28 +lbl_805AEC28: + .incbin "baserom.dol", 0x3FB4C8, 0x4 +.global lbl_805AEC2C +lbl_805AEC2C: + .incbin "baserom.dol", 0x3FB4CC, 0x4 +.global lbl_805AEC30 +lbl_805AEC30: + .incbin "baserom.dol", 0x3FB4D0, 0x4 +.global lbl_805AEC34 +lbl_805AEC34: + .incbin "baserom.dol", 0x3FB4D4, 0x4 +.global lbl_805AEC38 +lbl_805AEC38: + .incbin "baserom.dol", 0x3FB4D8, 0x4 +.global lbl_805AEC3C +lbl_805AEC3C: + .incbin "baserom.dol", 0x3FB4DC, 0x4 +.global lbl_805AEC40 +lbl_805AEC40: + .incbin "baserom.dol", 0x3FB4E0, 0x4 +.global lbl_805AEC44 +lbl_805AEC44: + .incbin "baserom.dol", 0x3FB4E4, 0x4 +.global lbl_805AEC48 +lbl_805AEC48: + .incbin "baserom.dol", 0x3FB4E8, 0x8 +.global lbl_805AEC50 +lbl_805AEC50: + .incbin "baserom.dol", 0x3FB4F0, 0x8 +.global lbl_805AEC58 +lbl_805AEC58: + .incbin "baserom.dol", 0x3FB4F8, 0x4 +.global lbl_805AEC5C +lbl_805AEC5C: + .incbin "baserom.dol", 0x3FB4FC, 0x4 +.global lbl_805AEC60 +lbl_805AEC60: + .incbin "baserom.dol", 0x3FB500, 0x8 +.global lbl_805AEC68 +lbl_805AEC68: + .incbin "baserom.dol", 0x3FB508, 0x8 +.global lbl_805AEC70 +lbl_805AEC70: + .incbin "baserom.dol", 0x3FB510, 0x8 +.global lbl_805AEC78 +lbl_805AEC78: + .incbin "baserom.dol", 0x3FB518, 0x8 +.global lbl_805AEC80 +lbl_805AEC80: + .incbin "baserom.dol", 0x3FB520, 0x8 +.global lbl_805AEC88 +lbl_805AEC88: + .incbin "baserom.dol", 0x3FB528, 0x8 +.global lbl_805AEC90 +lbl_805AEC90: + .incbin "baserom.dol", 0x3FB530, 0x8 +.global lbl_805AEC98 +lbl_805AEC98: + .incbin "baserom.dol", 0x3FB538, 0x8 +.global lbl_805AECA0 +lbl_805AECA0: + .incbin "baserom.dol", 0x3FB540, 0x4 +.global lbl_805AECA4 +lbl_805AECA4: + .incbin "baserom.dol", 0x3FB544, 0x4 +.global lbl_805AECA8 +lbl_805AECA8: + .incbin "baserom.dol", 0x3FB548, 0x8 +.global lbl_805AECB0 +lbl_805AECB0: + .incbin "baserom.dol", 0x3FB550, 0x8 +.global lbl_805AECB8 +lbl_805AECB8: + .incbin "baserom.dol", 0x3FB558, 0x8 +.global lbl_805AECC0 +lbl_805AECC0: + .incbin "baserom.dol", 0x3FB560, 0x8 +.global lbl_805AECC8 +lbl_805AECC8: + .incbin "baserom.dol", 0x3FB568, 0x8 +.global lbl_805AECD0 +lbl_805AECD0: + .incbin "baserom.dol", 0x3FB570, 0x8 +.global lbl_805AECD8 +lbl_805AECD8: + .incbin "baserom.dol", 0x3FB578, 0x8 +.global lbl_805AECE0 +lbl_805AECE0: + .incbin "baserom.dol", 0x3FB580, 0x8 +.global lbl_805AECE8 +lbl_805AECE8: + .incbin "baserom.dol", 0x3FB588, 0x8 +.global lbl_805AECF0 +lbl_805AECF0: + .incbin "baserom.dol", 0x3FB590, 0x8 +.global lbl_805AECF8 +lbl_805AECF8: + .incbin "baserom.dol", 0x3FB598, 0x8 +.global lbl_805AED00 +lbl_805AED00: + .incbin "baserom.dol", 0x3FB5A0, 0x8 +.global lbl_805AED08 +lbl_805AED08: + .incbin "baserom.dol", 0x3FB5A8, 0x8 +.global lbl_805AED10 +lbl_805AED10: + .incbin "baserom.dol", 0x3FB5B0, 0x8 +.global lbl_805AED18 +lbl_805AED18: + .incbin "baserom.dol", 0x3FB5B8, 0x8 +.global lbl_805AED20 +lbl_805AED20: + .incbin "baserom.dol", 0x3FB5C0, 0x8 +.global lbl_805AED28 +lbl_805AED28: + .incbin "baserom.dol", 0x3FB5C8, 0x8 +.global lbl_805AED30 +lbl_805AED30: + .incbin "baserom.dol", 0x3FB5D0, 0x8 +.global lbl_805AED38 +lbl_805AED38: + .incbin "baserom.dol", 0x3FB5D8, 0x8 +.global lbl_805AED40 +lbl_805AED40: + .incbin "baserom.dol", 0x3FB5E0, 0x8 +.global lbl_805AED48 +lbl_805AED48: + .incbin "baserom.dol", 0x3FB5E8, 0x8 +.global lbl_805AED50 +lbl_805AED50: + .incbin "baserom.dol", 0x3FB5F0, 0x8 +.global lbl_805AED58 +lbl_805AED58: + .incbin "baserom.dol", 0x3FB5F8, 0x8 +.global lbl_805AED60 +lbl_805AED60: + .incbin "baserom.dol", 0x3FB600, 0x8 +.global lbl_805AED68 +lbl_805AED68: + .incbin "baserom.dol", 0x3FB608, 0x8 +.global lbl_805AED70 +lbl_805AED70: + .incbin "baserom.dol", 0x3FB610, 0x8 +.global lbl_805AED78 +lbl_805AED78: + .incbin "baserom.dol", 0x3FB618, 0x8 +.global lbl_805AED80 +lbl_805AED80: + .incbin "baserom.dol", 0x3FB620, 0x8 +.global lbl_805AED88 +lbl_805AED88: + .incbin "baserom.dol", 0x3FB628, 0x8 +.global lbl_805AED90 +lbl_805AED90: + .incbin "baserom.dol", 0x3FB630, 0x8 +.global lbl_805AED98 +lbl_805AED98: + .incbin "baserom.dol", 0x3FB638, 0x8 +.global lbl_805AEDA0 +lbl_805AEDA0: + .incbin "baserom.dol", 0x3FB640, 0x8 +.global lbl_805AEDA8 +lbl_805AEDA8: + .incbin "baserom.dol", 0x3FB648, 0x8 +.global lbl_805AEDB0 +lbl_805AEDB0: + .incbin "baserom.dol", 0x3FB650, 0x8 +.global lbl_805AEDB8 +lbl_805AEDB8: + .incbin "baserom.dol", 0x3FB658, 0x8 +.global lbl_805AEDC0 +lbl_805AEDC0: + .incbin "baserom.dol", 0x3FB660, 0x8 +.global lbl_805AEDC8 +lbl_805AEDC8: + .incbin "baserom.dol", 0x3FB668, 0x8 +.global lbl_805AEDD0 +lbl_805AEDD0: + .incbin "baserom.dol", 0x3FB670, 0x8 +.global lbl_805AEDD8 +lbl_805AEDD8: + .incbin "baserom.dol", 0x3FB678, 0x8 +.global lbl_805AEDE0 +lbl_805AEDE0: + .incbin "baserom.dol", 0x3FB680, 0x8 +.global lbl_805AEDE8 +lbl_805AEDE8: + .incbin "baserom.dol", 0x3FB688, 0x8 +.global lbl_805AEDF0 +lbl_805AEDF0: + .incbin "baserom.dol", 0x3FB690, 0x8 +.global lbl_805AEDF8 +lbl_805AEDF8: + .incbin "baserom.dol", 0x3FB698, 0x8 +.global lbl_805AEE00 +lbl_805AEE00: + .incbin "baserom.dol", 0x3FB6A0, 0x8 +.global lbl_805AEE08 +lbl_805AEE08: + .incbin "baserom.dol", 0x3FB6A8, 0x8 +.global lbl_805AEE10 +lbl_805AEE10: + .incbin "baserom.dol", 0x3FB6B0, 0x8 +.global lbl_805AEE18 +lbl_805AEE18: + .incbin "baserom.dol", 0x3FB6B8, 0x8 +.global lbl_805AEE20 +lbl_805AEE20: + .incbin "baserom.dol", 0x3FB6C0, 0x8 +.global lbl_805AEE28 +lbl_805AEE28: + .incbin "baserom.dol", 0x3FB6C8, 0x8 +.global lbl_805AEE30 +lbl_805AEE30: + .incbin "baserom.dol", 0x3FB6D0, 0x8 +.global lbl_805AEE38 +lbl_805AEE38: + .incbin "baserom.dol", 0x3FB6D8, 0x8 +.global lbl_805AEE40 +lbl_805AEE40: + .incbin "baserom.dol", 0x3FB6E0, 0x8 +.global lbl_805AEE48 +lbl_805AEE48: + .incbin "baserom.dol", 0x3FB6E8, 0x8 +.global lbl_805AEE50 +lbl_805AEE50: + .incbin "baserom.dol", 0x3FB6F0, 0x8 +.global lbl_805AEE58 +lbl_805AEE58: + .incbin "baserom.dol", 0x3FB6F8, 0x8 +.global lbl_805AEE60 +lbl_805AEE60: + .incbin "baserom.dol", 0x3FB700, 0x8 +.global lbl_805AEE68 +lbl_805AEE68: + .incbin "baserom.dol", 0x3FB708, 0x8 +.global lbl_805AEE70 +lbl_805AEE70: + .incbin "baserom.dol", 0x3FB710, 0x8 +.global lbl_805AEE78 +lbl_805AEE78: + .incbin "baserom.dol", 0x3FB718, 0x8 +.global lbl_805AEE80 +lbl_805AEE80: + .incbin "baserom.dol", 0x3FB720, 0x8 +.global lbl_805AEE88 +lbl_805AEE88: + .incbin "baserom.dol", 0x3FB728, 0x8 +.global lbl_805AEE90 +lbl_805AEE90: + .incbin "baserom.dol", 0x3FB730, 0x8 +.global lbl_805AEE98 +lbl_805AEE98: + .incbin "baserom.dol", 0x3FB738, 0x8 +.global lbl_805AEEA0 +lbl_805AEEA0: + .incbin "baserom.dol", 0x3FB740, 0x8 +.global lbl_805AEEA8 +lbl_805AEEA8: + .incbin "baserom.dol", 0x3FB748, 0x8 +.global lbl_805AEEB0 +lbl_805AEEB0: + .incbin "baserom.dol", 0x3FB750, 0x8 +.global lbl_805AEEB8 +lbl_805AEEB8: + .incbin "baserom.dol", 0x3FB758, 0x8 +.global lbl_805AEEC0 +lbl_805AEEC0: + .incbin "baserom.dol", 0x3FB760, 0x8 +.global lbl_805AEEC8 +lbl_805AEEC8: + .incbin "baserom.dol", 0x3FB768, 0x8 +.global lbl_805AEED0 +lbl_805AEED0: + .incbin "baserom.dol", 0x3FB770, 0x8 +.global lbl_805AEED8 +lbl_805AEED8: + .incbin "baserom.dol", 0x3FB778, 0x8 +.global lbl_805AEEE0 +lbl_805AEEE0: + .incbin "baserom.dol", 0x3FB780, 0x8 +.global lbl_805AEEE8 +lbl_805AEEE8: + .incbin "baserom.dol", 0x3FB788, 0x8 +.global lbl_805AEEF0 +lbl_805AEEF0: + .incbin "baserom.dol", 0x3FB790, 0x8 +.global lbl_805AEEF8 +lbl_805AEEF8: + .incbin "baserom.dol", 0x3FB798, 0x8 +.global lbl_805AEF00 +lbl_805AEF00: + .incbin "baserom.dol", 0x3FB7A0, 0x8 +.global lbl_805AEF08 +lbl_805AEF08: + .incbin "baserom.dol", 0x3FB7A8, 0x8 +.global lbl_805AEF10 +lbl_805AEF10: + .incbin "baserom.dol", 0x3FB7B0, 0x8 +.global lbl_805AEF18 +lbl_805AEF18: + .incbin "baserom.dol", 0x3FB7B8, 0x8 +.global lbl_805AEF20 +lbl_805AEF20: + .incbin "baserom.dol", 0x3FB7C0, 0x8 +.global lbl_805AEF28 +lbl_805AEF28: + .incbin "baserom.dol", 0x3FB7C8, 0x8 +.global lbl_805AEF30 +lbl_805AEF30: + .incbin "baserom.dol", 0x3FB7D0, 0x8 +.global lbl_805AEF38 +lbl_805AEF38: + .incbin "baserom.dol", 0x3FB7D8, 0x8 +.global lbl_805AEF40 +lbl_805AEF40: + .incbin "baserom.dol", 0x3FB7E0, 0x8 +.global lbl_805AEF48 +lbl_805AEF48: + .incbin "baserom.dol", 0x3FB7E8, 0x8 +.global lbl_805AEF50 +lbl_805AEF50: + .incbin "baserom.dol", 0x3FB7F0, 0x8 +.global lbl_805AEF58 +lbl_805AEF58: + .incbin "baserom.dol", 0x3FB7F8, 0x8 +.global lbl_805AEF60 +lbl_805AEF60: + .incbin "baserom.dol", 0x3FB800, 0x8 +.global lbl_805AEF68 +lbl_805AEF68: + .incbin "baserom.dol", 0x3FB808, 0x8 +.global lbl_805AEF70 +lbl_805AEF70: + .incbin "baserom.dol", 0x3FB810, 0x8 +.global lbl_805AEF78 +lbl_805AEF78: + .incbin "baserom.dol", 0x3FB818, 0x8 +.global lbl_805AEF80 +lbl_805AEF80: + .incbin "baserom.dol", 0x3FB820, 0x8 +.global lbl_805AEF88 +lbl_805AEF88: + .incbin "baserom.dol", 0x3FB828, 0x8 +.global lbl_805AEF90 +lbl_805AEF90: + .incbin "baserom.dol", 0x3FB830, 0x8 +.global lbl_805AEF98 +lbl_805AEF98: + .incbin "baserom.dol", 0x3FB838, 0x8 +.global lbl_805AEFA0 +lbl_805AEFA0: + .incbin "baserom.dol", 0x3FB840, 0x8 +.global lbl_805AEFA8 +lbl_805AEFA8: + .incbin "baserom.dol", 0x3FB848, 0x8 +.global lbl_805AEFB0 +lbl_805AEFB0: + .incbin "baserom.dol", 0x3FB850, 0x8 +.global lbl_805AEFB8 +lbl_805AEFB8: + .incbin "baserom.dol", 0x3FB858, 0x8 +.global lbl_805AEFC0 +lbl_805AEFC0: + .incbin "baserom.dol", 0x3FB860, 0x8 +.global lbl_805AEFC8 +lbl_805AEFC8: + .incbin "baserom.dol", 0x3FB868, 0x8 +.global lbl_805AEFD0 +lbl_805AEFD0: + .incbin "baserom.dol", 0x3FB870, 0x8 +.global lbl_805AEFD8 +lbl_805AEFD8: + .incbin "baserom.dol", 0x3FB878, 0x8 +.global lbl_805AEFE0 +lbl_805AEFE0: + .incbin "baserom.dol", 0x3FB880, 0x8 +.global lbl_805AEFE8 +lbl_805AEFE8: + .incbin "baserom.dol", 0x3FB888, 0x8 +.global lbl_805AEFF0 +lbl_805AEFF0: + .incbin "baserom.dol", 0x3FB890, 0x8 +.global lbl_805AEFF8 +lbl_805AEFF8: + .incbin "baserom.dol", 0x3FB898, 0x8 +.global lbl_805AF000 +lbl_805AF000: + .incbin "baserom.dol", 0x3FB8A0, 0x8 +.global lbl_805AF008 +lbl_805AF008: + .incbin "baserom.dol", 0x3FB8A8, 0x8 +.global lbl_805AF010 +lbl_805AF010: + .incbin "baserom.dol", 0x3FB8B0, 0x8 +.global lbl_805AF018 +lbl_805AF018: + .incbin "baserom.dol", 0x3FB8B8, 0x8 +.global lbl_805AF020 +lbl_805AF020: + .incbin "baserom.dol", 0x3FB8C0, 0x8 +.global lbl_805AF028 +lbl_805AF028: + .incbin "baserom.dol", 0x3FB8C8, 0x8 +.global lbl_805AF030 +lbl_805AF030: + .incbin "baserom.dol", 0x3FB8D0, 0x8 +.global lbl_805AF038 +lbl_805AF038: + .incbin "baserom.dol", 0x3FB8D8, 0x8 +.global lbl_805AF040 +lbl_805AF040: + .incbin "baserom.dol", 0x3FB8E0, 0x8 +.global lbl_805AF048 +lbl_805AF048: + .incbin "baserom.dol", 0x3FB8E8, 0x8 +.global lbl_805AF050 +lbl_805AF050: + .incbin "baserom.dol", 0x3FB8F0, 0x8 +.global lbl_805AF058 +lbl_805AF058: + .incbin "baserom.dol", 0x3FB8F8, 0x8 +.global lbl_805AF060 +lbl_805AF060: + .incbin "baserom.dol", 0x3FB900, 0x8 +.global lbl_805AF068 +lbl_805AF068: + .incbin "baserom.dol", 0x3FB908, 0x8 +.global lbl_805AF070 +lbl_805AF070: + .incbin "baserom.dol", 0x3FB910, 0x8 +.global lbl_805AF078 +lbl_805AF078: + .incbin "baserom.dol", 0x3FB918, 0x8 +.global lbl_805AF080 +lbl_805AF080: + .incbin "baserom.dol", 0x3FB920, 0x8 +.global lbl_805AF088 +lbl_805AF088: + .incbin "baserom.dol", 0x3FB928, 0x8 +.global lbl_805AF090 +lbl_805AF090: + .incbin "baserom.dol", 0x3FB930, 0x8 +.global lbl_805AF098 +lbl_805AF098: + .incbin "baserom.dol", 0x3FB938, 0x8 +.global lbl_805AF0A0 +lbl_805AF0A0: + .incbin "baserom.dol", 0x3FB940, 0x8 +.global lbl_805AF0A8 +lbl_805AF0A8: + .incbin "baserom.dol", 0x3FB948, 0x8 +.global lbl_805AF0B0 +lbl_805AF0B0: + .incbin "baserom.dol", 0x3FB950, 0x8 +.global lbl_805AF0B8 +lbl_805AF0B8: + .incbin "baserom.dol", 0x3FB958, 0x8 +.global lbl_805AF0C0 +lbl_805AF0C0: + .incbin "baserom.dol", 0x3FB960, 0x8 +.global lbl_805AF0C8 +lbl_805AF0C8: + .incbin "baserom.dol", 0x3FB968, 0x8 +.global lbl_805AF0D0 +lbl_805AF0D0: + .incbin "baserom.dol", 0x3FB970, 0x8 +.global lbl_805AF0D8 +lbl_805AF0D8: + .incbin "baserom.dol", 0x3FB978, 0x8 +.global lbl_805AF0E0 +lbl_805AF0E0: + .incbin "baserom.dol", 0x3FB980, 0x8 +.global lbl_805AF0E8 +lbl_805AF0E8: + .incbin "baserom.dol", 0x3FB988, 0x8 +.global lbl_805AF0F0 +lbl_805AF0F0: + .incbin "baserom.dol", 0x3FB990, 0x8 +.global lbl_805AF0F8 +lbl_805AF0F8: + .incbin "baserom.dol", 0x3FB998, 0x8 +.global lbl_805AF100 +lbl_805AF100: + .incbin "baserom.dol", 0x3FB9A0, 0x8 +.global lbl_805AF108 +lbl_805AF108: + .incbin "baserom.dol", 0x3FB9A8, 0x8 +.global lbl_805AF110 +lbl_805AF110: + .incbin "baserom.dol", 0x3FB9B0, 0x8 +.global lbl_805AF118 +lbl_805AF118: + .incbin "baserom.dol", 0x3FB9B8, 0x8 +.global lbl_805AF120 +lbl_805AF120: + .incbin "baserom.dol", 0x3FB9C0, 0x8 +.global lbl_805AF128 +lbl_805AF128: + .incbin "baserom.dol", 0x3FB9C8, 0x8 +.global lbl_805AF130 +lbl_805AF130: + .incbin "baserom.dol", 0x3FB9D0, 0x8 +.global lbl_805AF138 +lbl_805AF138: + .incbin "baserom.dol", 0x3FB9D8, 0x8 +.global lbl_805AF140 +lbl_805AF140: + .incbin "baserom.dol", 0x3FB9E0, 0x8 +.global lbl_805AF148 +lbl_805AF148: + .incbin "baserom.dol", 0x3FB9E8, 0x8 +.global lbl_805AF150 +lbl_805AF150: + .incbin "baserom.dol", 0x3FB9F0, 0x8 +.global lbl_805AF158 +lbl_805AF158: + .incbin "baserom.dol", 0x3FB9F8, 0x8 +.global lbl_805AF160 +lbl_805AF160: + .incbin "baserom.dol", 0x3FBA00, 0x8 +.global lbl_805AF168 +lbl_805AF168: + .incbin "baserom.dol", 0x3FBA08, 0x8 +.global lbl_805AF170 +lbl_805AF170: + .incbin "baserom.dol", 0x3FBA10, 0x8 +.global lbl_805AF178 +lbl_805AF178: + .incbin "baserom.dol", 0x3FBA18, 0x8 +.global lbl_805AF180 +lbl_805AF180: + .incbin "baserom.dol", 0x3FBA20, 0x8 +.global lbl_805AF188 +lbl_805AF188: + .incbin "baserom.dol", 0x3FBA28, 0x8 +.global lbl_805AF190 +lbl_805AF190: + .incbin "baserom.dol", 0x3FBA30, 0x8 +.global lbl_805AF198 +lbl_805AF198: + .incbin "baserom.dol", 0x3FBA38, 0x8 +.global lbl_805AF1A0 +lbl_805AF1A0: + .incbin "baserom.dol", 0x3FBA40, 0x8 +.global lbl_805AF1A8 +lbl_805AF1A8: + .incbin "baserom.dol", 0x3FBA48, 0x8 +.global lbl_805AF1B0 +lbl_805AF1B0: + .incbin "baserom.dol", 0x3FBA50, 0x8 +.global lbl_805AF1B8 +lbl_805AF1B8: + .incbin "baserom.dol", 0x3FBA58, 0x8 +.global lbl_805AF1C0 +lbl_805AF1C0: + .incbin "baserom.dol", 0x3FBA60, 0x8 +.global lbl_805AF1C8 +lbl_805AF1C8: + .incbin "baserom.dol", 0x3FBA68, 0x8 +.global lbl_805AF1D0 +lbl_805AF1D0: + .incbin "baserom.dol", 0x3FBA70, 0x8 +.global lbl_805AF1D8 +lbl_805AF1D8: + .incbin "baserom.dol", 0x3FBA78, 0x8 +.global lbl_805AF1E0 +lbl_805AF1E0: + .incbin "baserom.dol", 0x3FBA80, 0x8 +.global lbl_805AF1E8 +lbl_805AF1E8: + .incbin "baserom.dol", 0x3FBA88, 0x8 +.global lbl_805AF1F0 +lbl_805AF1F0: + .incbin "baserom.dol", 0x3FBA90, 0x8 +.global lbl_805AF1F8 +lbl_805AF1F8: + .incbin "baserom.dol", 0x3FBA98, 0x8 +.global lbl_805AF200 +lbl_805AF200: + .incbin "baserom.dol", 0x3FBAA0, 0x8 +.global lbl_805AF208 +lbl_805AF208: + .incbin "baserom.dol", 0x3FBAA8, 0x8 +.global lbl_805AF210 +lbl_805AF210: + .incbin "baserom.dol", 0x3FBAB0, 0x4 +.global lbl_805AF214 +lbl_805AF214: + .incbin "baserom.dol", 0x3FBAB4, 0x4 +.global lbl_805AF218 +lbl_805AF218: + .incbin "baserom.dol", 0x3FBAB8, 0x8 +.global lbl_805AF220 +lbl_805AF220: + .incbin "baserom.dol", 0x3FBAC0, 0x8 +.global lbl_805AF228 +lbl_805AF228: + .incbin "baserom.dol", 0x3FBAC8, 0x8 +.global lbl_805AF230 +lbl_805AF230: + .incbin "baserom.dol", 0x3FBAD0, 0x4 +.global lbl_805AF234 +lbl_805AF234: + .incbin "baserom.dol", 0x3FBAD4, 0x4 +.global lbl_805AF238 +lbl_805AF238: + .incbin "baserom.dol", 0x3FBAD8, 0x4 +.global lbl_805AF23C +lbl_805AF23C: + .incbin "baserom.dol", 0x3FBADC, 0x4 +.global lbl_805AF240 +lbl_805AF240: + .incbin "baserom.dol", 0x3FBAE0, 0x4 +.global lbl_805AF244 +lbl_805AF244: + .incbin "baserom.dol", 0x3FBAE4, 0x4 +.global lbl_805AF248 +lbl_805AF248: + .incbin "baserom.dol", 0x3FBAE8, 0x4 +.global lbl_805AF24C +lbl_805AF24C: + .incbin "baserom.dol", 0x3FBAEC, 0x4 +.global lbl_805AF250 +lbl_805AF250: + .incbin "baserom.dol", 0x3FBAF0, 0x8 +.global lbl_805AF258 +lbl_805AF258: + .incbin "baserom.dol", 0x3FBAF8, 0x8 +.global lbl_805AF260 +lbl_805AF260: + .incbin "baserom.dol", 0x3FBB00, 0x8 +.global lbl_805AF268 +lbl_805AF268: + .incbin "baserom.dol", 0x3FBB08, 0x4 +.global lbl_805AF26C +lbl_805AF26C: + .incbin "baserom.dol", 0x3FBB0C, 0x4 +.global lbl_805AF270 +lbl_805AF270: + .incbin "baserom.dol", 0x3FBB10, 0x8 +.global lbl_805AF278 +lbl_805AF278: + .incbin "baserom.dol", 0x3FBB18, 0x8 +.global lbl_805AF280 +lbl_805AF280: + .incbin "baserom.dol", 0x3FBB20, 0x8 +.global lbl_805AF288 +lbl_805AF288: + .incbin "baserom.dol", 0x3FBB28, 0x4 +.global lbl_805AF28C +lbl_805AF28C: + .incbin "baserom.dol", 0x3FBB2C, 0x4 +.global lbl_805AF290 +lbl_805AF290: + .incbin "baserom.dol", 0x3FBB30, 0x8 +.global lbl_805AF298 +lbl_805AF298: + .incbin "baserom.dol", 0x3FBB38, 0x8 +.global lbl_805AF2A0 +lbl_805AF2A0: + .incbin "baserom.dol", 0x3FBB40, 0x8 +.global lbl_805AF2A8 +lbl_805AF2A8: + .incbin "baserom.dol", 0x3FBB48, 0x4 +.global lbl_805AF2AC +lbl_805AF2AC: + .incbin "baserom.dol", 0x3FBB4C, 0x4 +.global lbl_805AF2B0 +lbl_805AF2B0: + .incbin "baserom.dol", 0x3FBB50, 0x8 +.global lbl_805AF2B8 +lbl_805AF2B8: + .incbin "baserom.dol", 0x3FBB58, 0x8 +.global lbl_805AF2C0 +lbl_805AF2C0: + .incbin "baserom.dol", 0x3FBB60, 0x8 +.global lbl_805AF2C8 +lbl_805AF2C8: + .incbin "baserom.dol", 0x3FBB68, 0x8 +.global lbl_805AF2D0 +lbl_805AF2D0: + .incbin "baserom.dol", 0x3FBB70, 0x4 +.global lbl_805AF2D4 +lbl_805AF2D4: + .incbin "baserom.dol", 0x3FBB74, 0x4 +.global lbl_805AF2D8 +lbl_805AF2D8: + .incbin "baserom.dol", 0x3FBB78, 0x8 +.global lbl_805AF2E0 +lbl_805AF2E0: + .incbin "baserom.dol", 0x3FBB80, 0x8 +.global lbl_805AF2E8 +lbl_805AF2E8: + .incbin "baserom.dol", 0x3FBB88, 0x8 +.global lbl_805AF2F0 +lbl_805AF2F0: + .incbin "baserom.dol", 0x3FBB90, 0x4 +.global lbl_805AF2F4 +lbl_805AF2F4: + .incbin "baserom.dol", 0x3FBB94, 0x4 +.global lbl_805AF2F8 +lbl_805AF2F8: + .incbin "baserom.dol", 0x3FBB98, 0x8 +.global lbl_805AF300 +lbl_805AF300: + .incbin "baserom.dol", 0x3FBBA0, 0x8 +.global lbl_805AF308 +lbl_805AF308: + .incbin "baserom.dol", 0x3FBBA8, 0x8 +.global lbl_805AF310 +lbl_805AF310: + .incbin "baserom.dol", 0x3FBBB0, 0x8 +.global lbl_805AF318 +lbl_805AF318: + .incbin "baserom.dol", 0x3FBBB8, 0x4 +.global lbl_805AF31C +lbl_805AF31C: + .incbin "baserom.dol", 0x3FBBBC, 0x4 +.global lbl_805AF320 +lbl_805AF320: + .incbin "baserom.dol", 0x3FBBC0, 0x8 +.global lbl_805AF328 +lbl_805AF328: + .incbin "baserom.dol", 0x3FBBC8, 0x8 +.global lbl_805AF330 +lbl_805AF330: + .incbin "baserom.dol", 0x3FBBD0, 0x8 +.global lbl_805AF338 +lbl_805AF338: + .incbin "baserom.dol", 0x3FBBD8, 0x4 +.global lbl_805AF33C +lbl_805AF33C: + .incbin "baserom.dol", 0x3FBBDC, 0x4 +.global lbl_805AF340 +lbl_805AF340: + .incbin "baserom.dol", 0x3FBBE0, 0x8 +.global lbl_805AF348 +lbl_805AF348: + .incbin "baserom.dol", 0x3FBBE8, 0x4 +.global lbl_805AF34C +lbl_805AF34C: + .incbin "baserom.dol", 0x3FBBEC, 0x4 +.global lbl_805AF350 +lbl_805AF350: + .incbin "baserom.dol", 0x3FBBF0, 0x8 +.global lbl_805AF358 +lbl_805AF358: + .incbin "baserom.dol", 0x3FBBF8, 0x4 +.global lbl_805AF35C +lbl_805AF35C: + .incbin "baserom.dol", 0x3FBBFC, 0x4 +.global lbl_805AF360 +lbl_805AF360: + .incbin "baserom.dol", 0x3FBC00, 0x4 +.global lbl_805AF364 +lbl_805AF364: + .incbin "baserom.dol", 0x3FBC04, 0x4 +.global lbl_805AF368 +lbl_805AF368: + .incbin "baserom.dol", 0x3FBC08, 0x4 +.global lbl_805AF36C +lbl_805AF36C: + .incbin "baserom.dol", 0x3FBC0C, 0x4 +.global lbl_805AF370 +lbl_805AF370: + .incbin "baserom.dol", 0x3FBC10, 0x8 +.global lbl_805AF378 +lbl_805AF378: + .incbin "baserom.dol", 0x3FBC18, 0x8 +.global lbl_805AF380 +lbl_805AF380: + .incbin "baserom.dol", 0x3FBC20, 0x8 +.global lbl_805AF388 +lbl_805AF388: + .incbin "baserom.dol", 0x3FBC28, 0x8 +.global lbl_805AF390 +lbl_805AF390: + .incbin "baserom.dol", 0x3FBC30, 0x8 +.global lbl_805AF398 +lbl_805AF398: + .incbin "baserom.dol", 0x3FBC38, 0x4 +.global lbl_805AF39C +lbl_805AF39C: + .incbin "baserom.dol", 0x3FBC3C, 0x4 +.global lbl_805AF3A0 +lbl_805AF3A0: + .incbin "baserom.dol", 0x3FBC40, 0x8 +.global lbl_805AF3A8 +lbl_805AF3A8: + .incbin "baserom.dol", 0x3FBC48, 0x8 +.global lbl_805AF3B0 +lbl_805AF3B0: + .incbin "baserom.dol", 0x3FBC50, 0x4 +.global lbl_805AF3B4 +lbl_805AF3B4: + .incbin "baserom.dol", 0x3FBC54, 0x4 +.global lbl_805AF3B8 +lbl_805AF3B8: + .incbin "baserom.dol", 0x3FBC58, 0x4 +.global lbl_805AF3BC +lbl_805AF3BC: + .incbin "baserom.dol", 0x3FBC5C, 0x4 +.global lbl_805AF3C0 +lbl_805AF3C0: + .incbin "baserom.dol", 0x3FBC60, 0x4 +.global lbl_805AF3C4 +lbl_805AF3C4: + .incbin "baserom.dol", 0x3FBC64, 0x4 +.global lbl_805AF3C8 +lbl_805AF3C8: + .incbin "baserom.dol", 0x3FBC68, 0x8 +.global lbl_805AF3D0 +lbl_805AF3D0: + .incbin "baserom.dol", 0x3FBC70, 0x4 +.global lbl_805AF3D4 +lbl_805AF3D4: + .incbin "baserom.dol", 0x3FBC74, 0x4 +.global lbl_805AF3D8 +lbl_805AF3D8: + .incbin "baserom.dol", 0x3FBC78, 0x8 +.global lbl_805AF3E0 +lbl_805AF3E0: + .incbin "baserom.dol", 0x3FBC80, 0x4 +.global lbl_805AF3E4 +lbl_805AF3E4: + .incbin "baserom.dol", 0x3FBC84, 0x4 +.global lbl_805AF3E8 +lbl_805AF3E8: + .incbin "baserom.dol", 0x3FBC88, 0x8 +.global lbl_805AF3F0 +lbl_805AF3F0: + .incbin "baserom.dol", 0x3FBC90, 0x4 +.global lbl_805AF3F4 +lbl_805AF3F4: + .incbin "baserom.dol", 0x3FBC94, 0x4 +.global lbl_805AF3F8 +lbl_805AF3F8: + .incbin "baserom.dol", 0x3FBC98, 0x4 +.global lbl_805AF3FC +lbl_805AF3FC: + .incbin "baserom.dol", 0x3FBC9C, 0x4 +.global lbl_805AF400 +lbl_805AF400: + .incbin "baserom.dol", 0x3FBCA0, 0x4 +.global lbl_805AF404 +lbl_805AF404: + .incbin "baserom.dol", 0x3FBCA4, 0x4 +.global lbl_805AF408 +lbl_805AF408: + .incbin "baserom.dol", 0x3FBCA8, 0x8 +.global lbl_805AF410 +lbl_805AF410: + .incbin "baserom.dol", 0x3FBCB0, 0x4 +.global lbl_805AF414 +lbl_805AF414: + .incbin "baserom.dol", 0x3FBCB4, 0x4 +.global lbl_805AF418 +lbl_805AF418: + .incbin "baserom.dol", 0x3FBCB8, 0x8 +.global lbl_805AF420 +lbl_805AF420: + .incbin "baserom.dol", 0x3FBCC0, 0x8 +.global lbl_805AF428 +lbl_805AF428: + .incbin "baserom.dol", 0x3FBCC8, 0x4 +.global lbl_805AF42C +lbl_805AF42C: + .incbin "baserom.dol", 0x3FBCCC, 0x4 +.global lbl_805AF430 +lbl_805AF430: + .incbin "baserom.dol", 0x3FBCD0, 0x8 +.global lbl_805AF438 +lbl_805AF438: + .incbin "baserom.dol", 0x3FBCD8, 0x8 +.global lbl_805AF440 +lbl_805AF440: + .incbin "baserom.dol", 0x3FBCE0, 0x8 +.global lbl_805AF448 +lbl_805AF448: + .incbin "baserom.dol", 0x3FBCE8, 0x4 +.global lbl_805AF44C +lbl_805AF44C: + .incbin "baserom.dol", 0x3FBCEC, 0x4 +.global lbl_805AF450 +lbl_805AF450: + .incbin "baserom.dol", 0x3FBCF0, 0x4 +.global lbl_805AF454 +lbl_805AF454: + .incbin "baserom.dol", 0x3FBCF4, 0x4 +.global lbl_805AF458 +lbl_805AF458: + .incbin "baserom.dol", 0x3FBCF8, 0x4 diff --git a/asm/text.s.REMOVED.git-id b/asm/text.s.REMOVED.git-id new file mode 100644 index 00000000..795b656a --- /dev/null +++ b/asm/text.s.REMOVED.git-id @@ -0,0 +1 @@ +4d836df38a8442529f8552aaca041fcfbcec58ac \ No newline at end of file diff --git a/asmdiff.sh b/asmdiff.sh new file mode 100755 index 00000000..98d720bf --- /dev/null +++ b/asmdiff.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +OBJDUMP="$DEVKITPPC/bin/powerpc-eabi-objdump -D -bbinary -EB -mpowerpc -M gekko" +OPTIONS="--start-address=$(($1)) --stop-address=$(($1 + $2))" +$OBJDUMP $OPTIONS baserom.dol > baserom.dump +$OBJDUMP $OPTIONS build/mp1.0/main.dol > main.dump +diff -u --color=always baserom.dump main.dump diff --git a/include/Dolphin/__start.h b/include/Dolphin/__start.h new file mode 100644 index 00000000..67eff06b --- /dev/null +++ b/include/Dolphin/__start.h @@ -0,0 +1,56 @@ +#include "types.h" +#include "Dolphin/db.h" + +#define PAD3_BUTTON_ADDR 0x800030E4 +#define OS_RESET_RESTART 0 +#define FALSE 0 +#define TRUE 1 +#define EXCEPTIONMASK_ADDR 0x80000044 +#define BOOTINFO2_ADDR 0x800000F4 +#define OS_BI2_DEBUGFLAG_OFFSET 0xC +#define ARENAHI_ADDR 0x80000034 +#define DEBUGFLAG_ADDR 0x800030E8 +#define DVD_DEVICECODE_ADDR 0x800030E6 + +#define MSR_FP 0x2000 + +extern void InitMetroTRK(); + +u16 Pad3Button : PAD3_BUTTON_ADDR; +static u8 Debug_BBA = 0; + +extern void memset(void*,int,int); +extern int main(int argc, char* argv[]); +extern void exit(int); +extern void __init_user(void); +extern void OSInit(void); +extern void DBInit(void); +extern void OSResetSystem(BOOL reset, u32 resetCode, BOOL forceMenu); +extern void __OSCacheInit ( void ); +extern void __OSPSInit ( void ); + +__declspec(section ".init") extern void __check_pad3(void); +__declspec(section ".init") extern void __start(void); +__declspec(section ".init") extern void __init_registers(void); +__declspec(section ".init") extern void __init_data(void); +__declspec(section ".init") extern void __init_hardware(void); +__declspec(section ".init") extern void __flush_cache(void *address, unsigned int size); + +__declspec(section ".init") extern char _stack_addr[]; +__declspec(section ".init") extern char _SDA_BASE_[]; +__declspec(section ".init") extern char _SDA2_BASE_[]; + +typedef struct __rom_copy_info { + char* rom; + char* addr; + unsigned int size; +} __rom_copy_info; + +__declspec(section ".init") extern __rom_copy_info _rom_copy_info[]; + +typedef struct __bss_init_info { + char* addr; + unsigned int size; +} __bss_init_info; + +__declspec(section ".init") extern __bss_init_info _bss_init_info[]; diff --git a/include/Dolphin/db.h b/include/Dolphin/db.h new file mode 100644 index 00000000..ff7dee06 --- /dev/null +++ b/include/Dolphin/db.h @@ -0,0 +1,23 @@ +#ifndef _DOLPHIN_DB_H +#define _DOLPHIN_DB_H + +#include "types.h" + +#define ExceptionHookDestination 0x80000048 +#define IsDebuggerPresent 0x80000040 + +// static int __DBInterface; + +struct DBInterface { + u8 filler0[4]; + u32 unk4; +}; + +static struct DBInterface* __DBInterface; +static int DBVerbose; + +void DBInit(void); +void DBInitComm(int* inputFlagPtr, int* mtrCallback); +static void __DBExceptionDestination(void); + +#endif diff --git a/include/macros.inc b/include/macros.inc new file mode 100644 index 00000000..ce08f098 --- /dev/null +++ b/include/macros.inc @@ -0,0 +1,92 @@ +/* +Code sections: + .init: 0x00000100 0x80003100 0x800035A0 + .text: 0x000005A0 0x80003640 0x803CB1C0 +Data sections: + extab_: 0x003C8120 0x800035A0 0x800035E0 + extabindex_: 0x003C8160 0x800035E0 0x80003640 + .ctors: 0x003C81C0 0x803CB1C0 0x803CB380 + .dtors: 0x003C8380 0x803CB380 0x803CB3A0 + .rodata: 0x003C83A0 0x803CB3A0 0x803D8D60 + .data: 0x003D5D60 0x803D8D60 0x803F7560 + .sdata: 0x003F4560 0x805A6BC0 0x805A8C20 + .sbss: + .sdata2: 0x003F65C0 0x805A9D20 0x805AF460 + .sbss2: +BSS section: + .bss: 0x00000000 0x803F7560 0x805A6BBF +Entry Point: 0x80003140 +*/ +# PowerPC Register Constants +.set r0, 0 +.set r1, 1 +.set r2, 2 +.set r3, 3 +.set r4, 4 +.set r5, 5 +.set r6, 6 +.set r7, 7 +.set r8, 8 +.set r9, 9 +.set r10, 10 +.set r11, 11 +.set r12, 12 +.set r13, 13 +.set r14, 14 +.set r15, 15 +.set r16, 16 +.set r17, 17 +.set r18, 18 +.set r19, 19 +.set r20, 20 +.set r21, 21 +.set r22, 22 +.set r23, 23 +.set r24, 24 +.set r25, 25 +.set r26, 26 +.set r27, 27 +.set r28, 28 +.set r29, 29 +.set r30, 30 +.set r31, 31 +.set f0, 0 +.set f1, 1 +.set f2, 2 +.set f3, 3 +.set f4, 4 +.set f5, 5 +.set f6, 6 +.set f7, 7 +.set f8, 8 +.set f9, 9 +.set f10, 10 +.set f11, 11 +.set f12, 12 +.set f13, 13 +.set f14, 14 +.set f15, 15 +.set f16, 16 +.set f17, 17 +.set f18, 18 +.set f19, 19 +.set f20, 20 +.set f21, 21 +.set f22, 22 +.set f23, 23 +.set f24, 24 +.set f25, 25 +.set f26, 26 +.set f27, 27 +.set f28, 28 +.set f29, 29 +.set f30, 30 +.set f31, 31 +.set qr0, 0 +.set qr1, 1 +.set qr2, 2 +.set qr3, 3 +.set qr4, 4 +.set qr5, 5 +.set qr6, 6 +.set qr7, 7 diff --git a/include/types.h b/include/types.h new file mode 100644 index 00000000..3ed8ec7d --- /dev/null +++ b/include/types.h @@ -0,0 +1,71 @@ +#ifndef _TYPES_H +#define _TYPES_H + +//#include "BuildSettings.h" + +// r2 is 801DC960 +// r13 is 801DB420 + +typedef signed char s8; +typedef signed short s16; +typedef signed long s32; +typedef signed long long s64; +typedef unsigned char u8; +typedef unsigned short u16; +typedef unsigned long u32; +typedef unsigned long size_t; +typedef unsigned long long u64; + +typedef unsigned int uint; + +typedef volatile u8 vu8; +typedef volatile u16 vu16; +typedef volatile u32 vu32; +typedef volatile u64 vu64; +typedef volatile s8 vs8; +typedef volatile s16 vs16; +typedef volatile s32 vs32; +typedef volatile s64 vs64; + +typedef float f32; +typedef double f64; +typedef volatile f32 vf32; +typedef volatile f64 vf64; + +typedef int BOOL; + +typedef unsigned int uintptr_t; // Manually added + +// Pointer to unknown, to be determined at a later date. +typedef void* unkptr; + +typedef u32 unknown; + +#ifndef TRUE +#define TRUE 1 +#endif // ifndef TRUE + +#ifndef FALSE +#define FALSE 0 +#endif // ifndef FALSE + +#ifndef NULL +#define NULL ((void*)0) +#endif // ifndef NULL + +#ifndef nullptr +#define nullptr 0 +#endif // ifndef nullptr + +// For functions that return 0 on a success and -1 on failure +#ifndef EXIT_SUCCESS +#define EXIT_SUCCESS 0 +#define EXIT_FAILURE -1 +#endif // ifndef EXIT_SUCCESS + +#define ASSERT_HANG(cond) \ + if (!(cond)) { \ + while (true) { } \ + } + +#endif diff --git a/ldscript.lcf b/ldscript.lcf new file mode 100644 index 00000000..ef8f3e73 --- /dev/null +++ b/ldscript.lcf @@ -0,0 +1,42 @@ +MEMORY +{ + text : origin = 0x80003100 +} + +SECTIONS +{ + GROUP: + { + .init ALIGN(0x20):{} + /* TODO: should be extab and extabindex */ + extab_ ALIGN(0x20):{} + extabindex_ ALIGN(0x20):{} + .text ALIGN(0x20):{} + .ctors ALIGN(0x20):{} + .dtors ALIGN(0x20):{} + .rodata ALIGN(0x20):{} + .data ALIGN(0x20):{} + .bss ALIGN(0x20):{} + .sdata ALIGN(0x20):{} + .sbss ALIGN(0x20):{} + .sdata2 ALIGN(0x20):{} + .sbss2 ALIGN(0x20):{} + .stack ALIGN(0x100):{} + } > text + + /* Stack size upped from the default of 65535 */ + _stack_addr = (_f_sbss2 + SIZEOF(.sbss2) + 68608 + 0x7) & ~0x7; + _stack_end = _f_sbss2 + SIZEOF(.sbss2); + _db_stack_addr = (_stack_addr + 0x2000); + _db_stack_end = _stack_addr; + __ArenaLo = (_db_stack_addr + 0x1f) & ~0x1f; + __ArenaHi = 0x81700000; +} + +FORCEFILES +{ + ctors.o + dtors.o + extab.o + extabindex.o +} \ No newline at end of file diff --git a/ldscript.ld b/ldscript.ld new file mode 100644 index 00000000..70f50cfd --- /dev/null +++ b/ldscript.ld @@ -0,0 +1,35 @@ +ENTRY(__start) +_SDA_BASE_ = 0x805AEBC0; +_SDA2_BASE_ = 0x805B1D20; +PHDRS +{ + init PT_LOAD; + text PT_LOAD; + extab_ PT_LOAD; + extabindex_ PT_LOAD; + ctors PT_LOAD; + dtors PT_LOAD; + rodata PT_LOAD; + data PT_LOAD; + bss PT_LOAD; + sdata PT_LOAD; + sbss PT_LOAD; + sdata2 PT_LOAD; + sbss2 PT_LOAD; +} +SECTIONS +{ + .init 0x80003100 : { *(.init) } : init + .text 0x80003640 : { *(.text) } : text + extab_ 0x800035A0 : { *(extab_) } : extab_ + extabindex_ 0x800035E0 : { *(extabindex_) } : extabindex_ + .ctors 0x803CB1C0 : { *(.ctors) } : ctors + .dtors 0x803CB380 : { *(.dtors) } : dtors + .rodata 0x803CB3A0 : { *(.rodata) } : rodata + .data 0x803D8D60 : { *(.data) } : data + .bss 0x803F7560c (NOLOAD) : { *(.bss) } : bss + .sdata 0x805A6BC0 : { *(.sdata) } : sdata + .sbss 0x805A8C20 (NOLOAD) : { *(.sbss) } : sbss + .sdata2 0x805A9D20 : { *(.sdata2) } : sdata2 + .sbss2 0x805AF460 (NOLOAD) : { *(.sbss2) } : sbss2 +} diff --git a/obj_files.mk b/obj_files.mk new file mode 100644 index 00000000..a27315f1 --- /dev/null +++ b/obj_files.mk @@ -0,0 +1,40 @@ +INIT_O_FILES :=\ + $(BUILD_DIR)/src/os/__start.o\ + $(BUILD_DIR)/asm/os/__ppc_eabi_init.o\ + $(BUILD_DIR)/asm/Runtime/PPCEABI/H/__mem.o + +TEXT_O_FILES :=\ + $(BUILD_DIR)/asm/text.o + +EXTAB_O_FILES :=\ + $(BUILD_DIR)/asm/extab.o + +EXTABINDEX_O_FILES :=\ + $(BUILD_DIR)/asm/extabindex.o + +CTORS_O_FILES :=\ + $(BUILD_DIR)/asm/ctors.o + +DTORS_O_FILES :=\ + $(BUILD_DIR)/asm/dtors.o + +RODATA_O_FILES :=\ + $(BUILD_DIR)/asm/rodata.o + +DATA_O_FILES :=\ + $(BUILD_DIR)/asm/data.o + +BSS_O_FILES :=\ + $(BUILD_DIR)/asm/bss.o + +SDATA_O_FILES :=\ + $(BUILD_DIR)/asm/sdata.o + +SBSS_O_FILES :=\ + $(BUILD_DIR)/asm/sbss.o + +SDATA2_O_FILES :=\ + $(BUILD_DIR)/asm/sdata2.o + +SBSS2_O_FILES :=\ + $(BUILD_DIR)/asm/sbss2.o diff --git a/sha1/mp1.0.sha1 b/sha1/mp1.0.sha1 new file mode 100644 index 00000000..22d121ce --- /dev/null +++ b/sha1/mp1.0.sha1 @@ -0,0 +1 @@ +949c5ed7368aef547e0b0db1c3678f466e2afbff build/mp1.0/main.dol \ No newline at end of file diff --git a/src/os/__start.c b/src/os/__start.c new file mode 100644 index 00000000..094043bb --- /dev/null +++ b/src/os/__start.c @@ -0,0 +1,171 @@ +#include "Dolphin/__start.h" + +#pragma section code_type ".init" + +void __check_pad3(void) +{ + if ((Pad3Button & 0x0eef) == 0x0eef) { + OSResetSystem(OS_RESET_RESTART, 0, FALSE); + } + return; +} + +// clang-format off + +__declspec (weak) asm void __start(void) +{ + nofralloc + bl __init_registers + bl __init_hardware + li r0, -1 + stwu r1, -8(r1) + stw r0, 4(r1) + stw r0, 0(r1) + bl __init_data + li r0, 0 + lis r6, EXCEPTIONMASK_ADDR@ha + addi r6, r6, EXCEPTIONMASK_ADDR@l + stw r0, 0(r6) + lis r6, BOOTINFO2_ADDR@ha + addi r6, r6, BOOTINFO2_ADDR@l + lwz r6, 0(r6) + +_check_TRK: + cmplwi r6, 0 + beq _load_lomem_debug_flag + lwz r7, OS_BI2_DEBUGFLAG_OFFSET(r6) + b _check_debug_flag + +_load_lomem_debug_flag: + lis r5, ARENAHI_ADDR@ha + addi r5, r5, ARENAHI_ADDR@l + lwz r5, 0(r5) + cmplwi r5, 0 + beq _goto_main + lis r7, DEBUGFLAG_ADDR@ha + addi r7, r7, DEBUGFLAG_ADDR@l + lwz r7, 0(r7) + +_check_debug_flag: + li r5, 0 + cmplwi r7, 2 + beq _goto_inittrk + cmplwi r7, 3 + bne _goto_main + li r5, 1 + +_goto_inittrk: + lis r6, InitMetroTRK@ha + addi r6, r6, InitMetroTRK@l + mtlr r6 + blrl + +_goto_main: + lis r6, BOOTINFO2_ADDR@ha + addi r6, r6, BOOTINFO2_ADDR@l + lwz r5, 0(r6) + cmplwi r5, 0 + beq+ _no_args + lwz r6, 8(r5) + cmplwi r6, 0 + beq+ _no_args + add r6, r5, r6 + lwz r14, 0(r6) + cmplwi r14, 0 + beq _no_args + addi r15, r6, 4 + mtctr r14 + +_loop: + addi r6, r6, 4 + lwz r7, 0(r6) + add r7, r7, r5 + stw r7, 0(r6) + bdnz _loop + lis r5, ARENAHI_ADDR@ha + addi r5, r5, ARENAHI_ADDR@l + rlwinm r7, r15, 0, 0, 0x1a + stw r7, 0(r5) + b _end_of_parseargs + +_no_args: + li r14, 0 + li r15, 0 + +_end_of_parseargs: + bl DBInit + bl OSInit + lis r4, DVD_DEVICECODE_ADDR@ha + addi r4, r4, DVD_DEVICECODE_ADDR@l + lhz r3, 0(r4) + andi. r5, r3, 0x8000 + beq _check_pad3 + andi. r3, r3, 0x7fff + cmplwi r3, 1 + bne _goto_skip_init_bba + +_check_pad3: + bl __check_pad3 + +_goto_skip_init_bba: + bl __init_user + mr r3, r14 + mr r4, r15 + bl main + b exit +} + +asm static void __init_registers(void) +{ + nofralloc + lis r1, _stack_addr@h + ori r1, r1, _stack_addr@l + lis r2, _SDA2_BASE_@h + ori r2, r2, _SDA2_BASE_@l + lis r13, _SDA_BASE_@h + ori r13, r13, _SDA_BASE_@l + blr +} + +__declspec(section ".init") extern __rom_copy_info _rom_copy_info[]; +__declspec(section ".init") extern __bss_init_info _bss_init_info[]; + +// clang-format on + +inline static void __copy_rom_section(void* dst, const void* src, unsigned long size) +{ + if (size && (dst != src)) { + memcpy(dst, src, size); + __flush_cache(dst, size); + } +} + +inline static void __init_bss_section(void* dst, unsigned long size) +{ + if (size) { + memset(dst, 0, size); + } +} + +#pragma scheduling off +void __init_data(void) +{ + __rom_copy_info* dci; + __bss_init_info* bii; + + dci = _rom_copy_info; + while (TRUE) { + if (dci->size == 0) + break; + __copy_rom_section(dci->addr, dci->rom, dci->size); + dci++; + } + + bii = _bss_init_info; + while (TRUE) { + if (bii->size == 0) + break; + __init_bss_section(bii->addr, bii->size); + bii++; + } +} diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 00000000..70505067 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,16 @@ +CC := gcc +CFLAGS := -O3 -Wall -s + +default: all + +all: elf2dol elf2rel + +elf2dol: elf2dol.c + $(CC) $(CFLAGS) -o $@ $^ + +elf2rel: elf2rel.c + $(CC) $(CFLAGS) -o $@ $^ + +clean: + $(RM) elf2dol + $(RM) elf2rel diff --git a/tools/deincbin.py b/tools/deincbin.py new file mode 100644 index 00000000..300fc043 --- /dev/null +++ b/tools/deincbin.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python3 +# +# Usage: dump_common_data.py file.s +# Dumps all incbin data and prints the revised file to stdout. + +import os +import re +import sys + +# Reads a bytearray from baserom.dol +def read_baserom(start, size): + with open('baserom.dol', 'rb') as f: + f.seek(start, os.SEEK_SET) + return bytearray(f.read(size)) + +if len(sys.argv) != 2: + print('Usage: %s ASM_FILE' % sys.argv[0]) + exit() + +# reads a 32-bit big endian value starting at pos +def read_u32(data, pos): + return (data[pos]<<24) | (data[pos+1]<<16) | (data[pos+2]<<8) | (data[pos+3]) + +def is_ascii(code): + if code >= 0x20 and code <= 0x7E: # normal characters + return True + if code in [0x09, 0x0A]: # tab, newline + return True + return False + +# reads a string starting at pos +def read_string(data, pos): + text = '' + while pos < len(data) and is_ascii(data[pos]): + text += chr(data[pos]) + pos += 1 + if pos < len(data) and data[pos] == 0: + return text + return '' + +# escapes special characters in the string for use in a C string literal +def escape_string(text): + return text.replace('\\','\\\\').replace('"','\\"').replace('\n','\\n').replace('\t','\\t') + +# returns True if value is 4-byte aligned +def is_aligned(num): + return num % 4 == 0 + +# returns True if value is a possible pointer +def is_pointer(num): + return num >= 0x80003100 and num <= 0x802F6C80 + +# returns True if all elements are zero +def is_all_zero(arr): + for val in arr: + if val != 0: + return False + return True + +# returns string of comma-separated hex bytes +def hex_bytes(data): + return ', '.join('0x%02X' % n for n in data) + +def convert_data(data, offset): + text = '' + size = len(data) + pos = 0 + while pos < size: + # pad unaligned + pad = [] + while not is_aligned(offset + pos) and pos < size: + pad.append(data[pos]) + pos += 1 + if len(pad) > 0: + if is_all_zero(pad): + text += '\t.balign 4\n' + else: + text += '\t.byte %s\n' % hex_bytes(pad) + + # string? + string = read_string(data, pos) + if len(string) > 3: + text += '\t.asciz "%s"\n' % escape_string(string) + pos += len(string) + 1 + continue + + assert(is_aligned(offset + pos)) + + if pos + 4 <= size: + val = read_u32(data, pos) + if is_pointer(val): + text += '\t.4byte 0x%08X ;# ptr\n' % val + elif val == 0: + text += '\t.4byte 0\n' + else: + text += '\t.4byte 0x%08X\n' % val + pos += 4 + return text + +currSection = '' + +with open(sys.argv[1], 'rt') as f: + for line in f.readlines(): + line = line.rstrip() + # Section directive + m = re.match(r'\s*\.section\s+([\._A-Za-z0-9]+)', line) + if m: + currSection = m.groups()[0] + elif currSection in ['.rodata', '.data', '.sdata', '.sdata2', '.ctors', '.dtors', 'extab_', 'extabindex_']: + # Incbin directive + m = re.match(r'\s*\.incbin\s+"baserom.dol"\s*,\s*([^,]+),\s*([^,]+)', line) + if m: + g = m.groups() + start = int(g[0], 0) + size = int(g[1], 0) + data = read_baserom(start, size) + print('\t# ROM: 0x%X' % start) + print(convert_data(data, start)) + continue + print(line) diff --git a/tools/elf2dol.c b/tools/elf2dol.c new file mode 100644 index 00000000..b4dc72f8 --- /dev/null +++ b/tools/elf2dol.c @@ -0,0 +1,497 @@ +#include +#include +#include +#include +#include +#include + +#ifndef MAX +//! Get the maximum of two values +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif + +#ifndef MIN +//! Get the minimum of two values +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#define ARRAY_COUNT(arr) (sizeof(arr)/sizeof((arr)[0])) + +#define EI_NIDENT 16 + +typedef struct { + unsigned char e_ident[EI_NIDENT]; + uint16_t e_type; + uint16_t e_machine; + uint32_t e_version; + uint32_t e_entry; + uint32_t e_phoff; + uint32_t e_shoff; + uint32_t e_flags; + uint16_t e_ehsize; + uint16_t e_phentsize; + uint16_t e_phnum; + uint16_t e_shentsize; + uint16_t e_shnum; + uint16_t e_shstrndx; +} Elf32_Ehdr; + +#define EI_CLASS 4 +#define EI_DATA 5 +#define EI_VERSION 6 +#define EI_PAD 7 +#define EI_NIDENT 16 + +#define ELFCLASS32 1 +#define ELFDATA2MSB 2 +#define EV_CURRENT 1 + +#define ET_EXEC 2 +#define EM_PPC 20 + +typedef struct { + uint32_t p_type; + uint32_t p_offset; + uint32_t p_vaddr; + uint32_t p_paddr; + uint32_t p_filesz; + uint32_t p_memsz; + uint32_t p_flags; + uint32_t p_align; +} Elf32_Phdr; + +#define PT_LOAD 1 +#define PF_R 4 +#define PF_W 2 +#define PF_X 1 + +int verbosity = 0; + +#if BYTE_ORDER == BIG_ENDIAN + +#define swap32(x) (x) +#define swap16(x) (x) + +#else + +static inline uint32_t swap32(uint32_t v) +{ + return (v >> 24) | + ((v >> 8) & 0x0000FF00) | + ((v << 8) & 0x00FF0000) | + (v << 24); +} + +static inline uint16_t swap16(uint16_t v) +{ + return (v >> 8) | (v << 8); +} + +#endif /* BIG_ENDIAN */ + +typedef struct { + + uint32_t text_off[7]; + uint32_t data_off[11]; + uint32_t text_addr[7]; + uint32_t data_addr[11]; + uint32_t text_size[7]; + uint32_t data_size[11]; + uint32_t bss_addr; + uint32_t bss_size; + uint32_t entry; + uint32_t pad[7]; +} DOL_hdr; + +#define HAVE_BSS 1 + +#define MAX_TEXT_SEGMENTS 7 +#define MAX_DATA_SEGMENTS 11 + +#define DOL_ALIGNMENT 32 + +#define DOL_ALIGN(x) (((x) + DOL_ALIGNMENT - 1) & ~(DOL_ALIGNMENT - 1)) + +typedef struct { + DOL_hdr header; + int text_cnt; + int data_cnt; + uint32_t text_elf_off[7]; + uint32_t data_elf_off[11]; + uint32_t flags; + FILE *elf; +} DOL_map; + +void usage(const char *name) +{ + fprintf(stderr, "Usage: %s [-h] [-v] [--] elf-file dol-file\n", name); + fprintf(stderr, " Convert an ELF file to a DOL file (by segments)\n"); + fprintf(stderr, " Options:\n"); + fprintf(stderr, " -h Show this help\n"); + fprintf(stderr, " -v Be more verbose (twice for even more)\n"); +} + +#define die(x) { fprintf(stderr, x "\n"); exit(1); } +#define perrordie(x) { perror(x); exit(1); } + +void ferrordie(FILE *f, const char *str) +{ + if(ferror(f)) { + fprintf(stderr, "Error while "); + perrordie(str); + } else if(feof(f)) { + fprintf(stderr, "EOF while %s\n", str); + exit(1); + } else { + fprintf(stderr, "Unknown error while %s\n", str); + exit(1); + } +} + +void add_bss(DOL_map *map, uint32_t paddr, uint32_t memsz) +{ + if(map->flags & HAVE_BSS) { + uint32_t curr_start = swap32(map->header.bss_addr); + uint32_t curr_size = swap32(map->header.bss_size); + if (paddr < curr_start) + map->header.bss_addr = swap32(paddr); + // Total BSS size should be the end of the last bss section minus the + // start of the first bss section. + if (paddr + memsz > curr_start + curr_size) + map->header.bss_size = swap32(paddr + memsz - curr_start); + } else { + map->header.bss_addr = swap32(paddr); + map->header.bss_size = swap32(memsz); + map->flags |= HAVE_BSS; + } +} + +void read_elf_segments(DOL_map *map, const char *elf) +{ + int read, i; + Elf32_Ehdr ehdr; + + if(verbosity >= 2) + fprintf(stderr, "Reading ELF file...\n"); + + map->elf = fopen(elf, "rb"); + if(!map->elf) + perrordie("Could not open ELF file"); + + read = fread(&ehdr, sizeof(ehdr), 1, map->elf); + if(read != 1) + ferrordie(map->elf, "reading ELF header"); + + if(memcmp(&ehdr.e_ident[0], "\177ELF", 4)) + die("Invalid ELF header"); + if(ehdr.e_ident[EI_CLASS] != ELFCLASS32) + die("Invalid ELF class"); + if(ehdr.e_ident[EI_DATA] != ELFDATA2MSB) + die("Invalid ELF byte order"); + if(ehdr.e_ident[EI_VERSION] != EV_CURRENT) + die("Invalid ELF ident version"); + if(swap32(ehdr.e_version) != EV_CURRENT) + die("Invalid ELF version"); + if(swap16(ehdr.e_type) != ET_EXEC) + die("ELF is not an executable"); + if(swap16(ehdr.e_machine) != EM_PPC) + die("Machine is not PowerPC"); + if(!swap32(ehdr.e_entry)) + die("ELF has no entrypoint"); + + map->header.entry = ehdr.e_entry; + + if(verbosity >= 2) + fprintf(stderr, "Valid ELF header found\n"); + + uint16_t phnum = swap16(ehdr.e_phnum); + uint32_t phoff = swap32(ehdr.e_phoff); + Elf32_Phdr *phdrs; + + if(!phnum || !phoff) + die("ELF has no program headers"); + + if(swap16(ehdr.e_phentsize) != sizeof(Elf32_Phdr)) + die("Invalid program header entry size"); + + phdrs = malloc(phnum * sizeof(Elf32_Phdr)); + + if(fseek(map->elf, phoff, SEEK_SET) < 0) + ferrordie(map->elf, "reading ELF program headers"); + read = fread(phdrs, sizeof(Elf32_Phdr), phnum, map->elf); + if(read != phnum) + ferrordie(map->elf, "reading ELF program headers"); + + for(i=0; i= 2) + fprintf(stderr, "PHDR %d: 0x%x [0x%x] -> 0x%08x [0x%x] flags 0x%x\n", + i, offset, filesz, paddr, memsz, flags); + if(flags & PF_X) { + // TEXT segment + if(!(flags & PF_R)) + fprintf(stderr, "Warning: non-readable segment %d\n", i); + if(flags & PF_W) + fprintf(stderr, "Warning: writable and executable segment %d\n", i); + if(filesz > memsz) { + fprintf(stderr, "Error: TEXT segment %d memory size (0x%x) smaller than file size (0x%x)\n", + i, memsz, filesz); + exit(1); + } else if (memsz > filesz) { + add_bss(map, paddr + filesz, memsz - filesz); + } + if(map->text_cnt >= MAX_TEXT_SEGMENTS) { + die("Error: Too many TEXT segments"); + } + map->header.text_addr[map->text_cnt] = swap32(paddr); + map->header.text_size[map->text_cnt] = swap32(filesz); + map->text_elf_off[map->text_cnt] = offset; + map->text_cnt++; + } else { + // DATA or BSS segment + if(!(flags & PF_R)) + fprintf(stderr, "Warning: non-readable segment %d\n", i); + if(filesz == 0) { + // BSS segment + add_bss(map, paddr, memsz); + } else { + // DATA segment + if(filesz > memsz) { + fprintf(stderr, "Error: segment %d memory size (0x%x) is smaller than file size (0x%x)\n", + i, memsz, filesz); + exit(1); + } + if(map->data_cnt >= MAX_DATA_SEGMENTS) { + die("Error: Too many DATA segments"); + } + map->header.data_addr[map->data_cnt] = swap32(paddr); + map->header.data_size[map->data_cnt] = swap32(filesz); + map->data_elf_off[map->data_cnt] = offset; + map->data_cnt++; + } + } + + } else { + if(verbosity >= 1) + fprintf(stderr, "Skipping empty program header %d\n", i); + } + } else if(verbosity >= 1) { + fprintf(stderr, "Skipping program header %d of type %d\n", i, swap32(phdrs[i].p_type)); + } + } + if(verbosity >= 2) { + fprintf(stderr, "Segments:\n"); + for(i=0; itext_cnt; i++) { + fprintf(stderr, " TEXT %d: 0x%08x [0x%x] from ELF offset 0x%x\n", + i, swap32(map->header.text_addr[i]), swap32(map->header.text_size[i]), + map->text_elf_off[i]); + } + for(i=0; idata_cnt; i++) { + fprintf(stderr, " DATA %d: 0x%08x [0x%x] from ELF offset 0x%x\n", + i, swap32(map->header.data_addr[i]), swap32(map->header.data_size[i]), + map->data_elf_off[i]); + } + if(map->flags & HAVE_BSS) + fprintf(stderr, " BSS segment: 0x%08x [0x%x]\n", swap32(map->header.bss_addr), + swap32(map->header.bss_size)); + } +} + +void map_dol(DOL_map *map) +{ + uint32_t fpos; + int i; + + if(verbosity >= 2) + fprintf(stderr, "Laying out DOL file...\n"); + + fpos = DOL_ALIGN(sizeof(DOL_hdr)); + + for(i=0; itext_cnt; i++) { + if(verbosity >= 2) + fprintf(stderr, " TEXT segment %d at 0x%x\n", i, fpos); + map->header.text_off[i] = swap32(fpos); + fpos = DOL_ALIGN(fpos + swap32(map->header.text_size[i])); + } + for(i=0; idata_cnt; i++) { + if(verbosity >= 2) + fprintf(stderr, " DATA segment %d at 0x%x\n", i, fpos); + map->header.data_off[i] = swap32(fpos); + fpos = DOL_ALIGN(fpos + swap32(map->header.data_size[i])); + } + + if(map->text_cnt == 0) { + if(verbosity >= 1) + fprintf(stderr, "Note: adding dummy TEXT segment to work around IOS bug\n"); + map->header.text_off[0] = swap32(DOL_ALIGN(sizeof(DOL_hdr))); + } + if(map->data_cnt == 0) { + if(verbosity >= 1) + fprintf(stderr, "Note: adding dummy DATA segment to work around IOS bug\n"); + map->header.data_off[0] = swap32(DOL_ALIGN(sizeof(DOL_hdr))); + } +} + +#define BLOCK (1024*1024) + +void fcpy(FILE *dst, FILE *src, uint32_t dst_off, uint32_t src_off, uint32_t size) +{ + int left = size; + int read; + int written; + int block; + void *blockbuf; + + if(fseek(src, src_off, SEEK_SET) < 0) + ferrordie(src, "reading ELF segment data"); + if(fseek(dst, dst_off, SEEK_SET) < 0) + ferrordie(dst, "writing DOL segment data"); + + blockbuf = malloc(MIN(BLOCK, left)); + + while(left) { + block = MIN(BLOCK, left); + read = fread(blockbuf, 1, block, src); + if(read != block) { + free(blockbuf); + ferrordie(src, "reading ELF segment data"); + } + written = fwrite(blockbuf, 1, block, dst); + if(written != block) { + free(blockbuf); + ferrordie(dst, "writing DOL segment data"); + } + left -= block; + } + free(blockbuf); +} + +void fpad(FILE *dst, uint32_t dst_off, uint32_t size) +{ + uint32_t i; + + if(fseek(dst, dst_off, SEEK_SET) < 0) + ferrordie(dst, "writing DOL segment data"); + for(i=0; i= 2) + fprintf(stderr, "Writing DOL file...\n"); + + dolf = fopen(dol, "wb"); + if(!dolf) + perrordie("Could not open DOL file"); + + if(verbosity >= 2) { + fprintf(stderr, "DOL header:\n"); + for(i=0; itext_cnt); i++) + fprintf(stderr, " TEXT %d @ 0x%08x [0x%x] off 0x%x\n", i, + swap32(map->header.text_addr[i]), swap32(map->header.text_size[i]), + swap32(map->header.text_off[i])); + for(i=0; idata_cnt); i++) + fprintf(stderr, " DATA %d @ 0x%08x [0x%x] off 0x%x\n", i, + swap32(map->header.data_addr[i]), swap32(map->header.data_size[i]), + swap32(map->header.data_off[i])); + if(swap32(map->header.bss_addr) && swap32(map->header.bss_size)) + fprintf(stderr, " BSS @ 0x%08x [0x%x]\n", swap32(map->header.bss_addr), + swap32(map->header.bss_size)); + fprintf(stderr, " Entry: 0x%08x\n", swap32(map->header.entry)); + fprintf(stderr, "Writing DOL header...\n"); + } + + // Write DOL header with aligned text and data section sizes + DOL_hdr aligned_header = map->header; + for(i=0; itext_cnt; i++) { + uint32_t size = swap32(map->header.text_size[i]); + uint32_t padded_size = DOL_ALIGN(size); + if(verbosity >= 2) + fprintf(stderr, "Writing TEXT segment %d...\n", i); + fcpy(dolf, map->elf, swap32(map->header.text_off[i]), map->text_elf_off[i], size); + if (padded_size > size) + fpad(dolf, swap32(map->header.text_off[i]) + size, padded_size - size); + } + for(i=0; idata_cnt; i++) { + uint32_t size = swap32(map->header.data_size[i]); + uint32_t padded_size = DOL_ALIGN(size); + if(verbosity >= 2) + fprintf(stderr, "Writing DATA segment %d...\n", i); + fcpy(dolf, map->elf, swap32(map->header.data_off[i]), map->data_elf_off[i], size); + if (padded_size > size) + fpad(dolf, swap32(map->header.data_off[i]) + size, padded_size - size); + } + + if(verbosity >= 2) + fprintf(stderr, "All done!\n"); + + fclose(map->elf); + fclose(dolf); +} + +int main(int argc, char **argv) +{ + char **arg; + + if(argc < 2) { + usage(argv[0]); + return 1; + } + arg = &argv[1]; + argc--; + + while(argc && *arg[0] == '-') { + if(!strcmp(*arg, "-h")) { + usage(argv[0]); + return 1; + } else if(!strcmp(*arg, "-v")) { + verbosity++; + } else if(!strcmp(*arg, "--")) { + arg++; + argc--; + break; + } else { + fprintf(stderr, "Unrecognized option %s\n", *arg); + usage(argv[0]); + return 1; + } + arg++; + argc--; + } + if(argc < 2) { + usage(argv[0]); + exit(1); + } + + const char *elf_file = arg[0]; + const char *dol_file = arg[1]; + + DOL_map map; + + memset(&map, 0, sizeof(map)); + + read_elf_segments(&map, elf_file); + map_dol(&map); + write_dol(&map, dol_file); + + return 0; +} diff --git a/tools/elf2rel.c b/tools/elf2rel.c new file mode 100644 index 00000000..7de25a47 --- /dev/null +++ b/tools/elf2rel.c @@ -0,0 +1,866 @@ +#include +#include +#include +#include +#include +#include +#include + +#ifndef MAX +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif + +#ifndef MIN +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#define ARRAY_COUNT(arr) (sizeof(arr)/sizeof((arr)[0])) + +#define IS_LITTLE_ENDIAN (((char *)((uint32_t[]){1}))[0] == 1) + +// Relevant portions of elf.h + +typedef uint32_t Elf32_Addr; +typedef uint32_t Elf32_Off; +typedef uint32_t Elf32_Word; +typedef int32_t Elf32_Sword; +typedef uint16_t Elf32_Half; +typedef uint16_t Elf32_Section; + +#define EI_NIDENT (16) + +typedef struct +{ + unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ + Elf32_Half e_type; /* Object file type */ + Elf32_Half e_machine; /* Architecture */ + Elf32_Word e_version; /* Object file version */ + Elf32_Addr e_entry; /* Entry point virtual address */ + Elf32_Off e_phoff; /* Program header table file offset */ + Elf32_Off e_shoff; /* Section header table file offset */ + Elf32_Word e_flags; /* Processor-specific flags */ + Elf32_Half e_ehsize; /* ELF header size in bytes */ + Elf32_Half e_phentsize; /* Program header table entry size */ + Elf32_Half e_phnum; /* Program header table entry count */ + Elf32_Half e_shentsize; /* Section header table entry size */ + Elf32_Half e_shnum; /* Section header table entry count */ + Elf32_Half e_shstrndx; /* Section header string table index */ +} Elf32_Ehdr; + +#define EI_CLASS 4 /* File class byte index */ +#define ELFCLASS32 1 /* 32-bit objects */ + +#define EI_DATA 5 /* Data encoding byte index */ +#define ELFDATA2MSB 2 /* 2's complement, big endian */ + +#define EM_PPC 20 /* PowerPC */ + +typedef struct +{ + Elf32_Word sh_name; /* Section name (string tbl index) */ + Elf32_Word sh_type; /* Section type */ + Elf32_Word sh_flags; /* Section flags */ + Elf32_Addr sh_addr; /* Section virtual addr at execution */ + Elf32_Off sh_offset; /* Section file offset */ + Elf32_Word sh_size; /* Section size in bytes */ + Elf32_Word sh_link; /* Link to another section */ + Elf32_Word sh_info; /* Additional section information */ + Elf32_Word sh_addralign; /* Section alignment */ + Elf32_Word sh_entsize; /* Entry size if section holds table */ +} Elf32_Shdr; + +#define SHT_PROGBITS 1 /* Program data */ +#define SHT_SYMTAB 2 /* Symbol table */ +#define SHT_STRTAB 3 /* String table */ +#define SHT_RELA 4 /* Relocation entries with addends */ +#define SHT_NOBITS 8 /* Program space with no data (bss) */ + +#define SHF_ALLOC (1 << 1) /* Occupies memory during execution */ +#define SHF_EXECINSTR (1 << 2) /* Executable */ + +typedef struct +{ + Elf32_Word st_name; /* Symbol name (string tbl index) */ + Elf32_Addr st_value; /* Symbol value */ + Elf32_Word st_size; /* Symbol size */ + unsigned char st_info; /* Symbol type and binding */ + unsigned char st_other; /* Symbol visibility */ + Elf32_Section st_shndx; /* Section index */ +} Elf32_Sym; + +#define ELF32_ST_TYPE(val) ((val) & 0xf) + +/* Legal values for ST_TYPE subfield of st_info (symbol type). */ + +#define STT_NOTYPE 0 /* Symbol type is unspecified */ +#define STT_FUNC 2 /* Symbol is a code object */ + +typedef struct +{ + Elf32_Addr r_offset; /* Address */ + Elf32_Word r_info; /* Relocation type and symbol index */ + Elf32_Sword r_addend; /* Addend */ +} Elf32_Rela; + +/* How to extract and insert information held in the r_info field. */ + +#define ELF32_R_SYM(val) ((val) >> 8) +#define ELF32_R_TYPE(val) ((val) & 0xff) + +#define R_PPC_NONE 0 +#define R_PPC_ADDR32 1 /* 32bit absolute address */ +#define R_PPC_ADDR24 2 /* 26bit address, 2 bits ignored. */ +#define R_PPC_ADDR16 3 /* 16bit absolute address */ +#define R_PPC_ADDR16_LO 4 /* lower 16bit of absolute address */ +#define R_PPC_ADDR16_HI 5 /* high 16bit of absolute address */ +#define R_PPC_ADDR16_HA 6 /* adjusted high 16bit */ +#define R_PPC_ADDR14 7 /* 16bit address, 2 bits ignored */ +#define R_PPC_ADDR14_BRTAKEN 8 +#define R_PPC_ADDR14_BRNTAKEN 9 +#define R_PPC_REL24 10 /* PC relative 26 bit */ +#define R_PPC_REL14 11 /* PC relative 16 bit */ + +#define R_DOLPHIN_SECTION 202 +#define R_DOLPHIN_END 203 + +// end elf.h + +struct RelHeader +{ + uint32_t moduleId; // unique module identifier + uint32_t nextModule; // always 0; filled in at runtime + uint32_t prevModule; // always 0; filled in at runtime + uint32_t sectionCount; // number of sections in the section table + uint32_t sectionTableOffset; // file position of section table + uint32_t moduleNameOffset; // offset of the module name in the string table (not in this file) + uint32_t moduleNameSize; // size of the module name in the string table (not in this file) + uint32_t formatVersion; // REL format version + uint32_t bssSize; // size of the BSS section + uint32_t relocationTableOffset; // file position of relocation entries + uint32_t importTableOffset; // file position of import table + uint32_t importTableSize; // size of import table + uint8_t prologSection; // section in which the _prolog function is in, or 0 if absent + uint8_t epilogSection; // section in which the _epilog function is in, or 0 if absent + uint8_t unresolvedSection; // section in which the _unresolved function is in, or 0 if absent + uint8_t pad33; + uint32_t prologOffset; // offset of the _prolog function in its section + uint32_t epilogOffset; // offset of the _epilog function in its section + uint32_t unresolvedOffset; // offset of the _unresolved function in its section +}; + +struct RelRelocEntry +{ + int type; // relocation type + int patchSection; // section which relocation patch applies to + uint32_t patchOffset; // offset where this relocation patch applies + int symbolSection; // section of symbol + uint32_t symbolAddr; // for dol symbols, absolute address. for rel symbols, section offset +}; + +struct RelImportEntry +{ + int moduleId; // ID of module from which the relocation symbols are imported from + struct RelRelocEntry *relocs; // relocation entries + int relocsCount; // number of relocation entries + size_t relocsOffset; // file offset to relocation entries +}; + +struct Module +{ + int moduleId; // unique identifier of the module; the id of the DOL is always 0 + const char *filename; // name of the module's ELF file + FILE *file; // ELF file + Elf32_Ehdr ehdr; // ELF header + Elf32_Sym *symtab; // ELF symbol table entries + int symtabCount; // number of ELF symbol table entries + char *strtab; // ELF string table + size_t strtabSize; // size of ELF string table +}; + +static struct Module dolModule; +static struct Module relModule; +static struct RelImportEntry *imports; +static int importsCount = 0; +static int minSectionCount = 0; +static int undefinedSymError = 0; + +static void fatal_error(const char *msg, ...) +{ + va_list args; + + va_start(args, msg); + vfprintf(stderr, msg, args); + va_end(args); + exit(1); +} + +// Swaps byte order if the system is little endian + +static void bswap32(uint32_t *ptr) +{ + if (IS_LITTLE_ENDIAN) + *ptr = (((*ptr >> 24) & 0xFF) << 0) + | (((*ptr >> 16) & 0xFF) << 8) + | (((*ptr >> 8) & 0xFF) << 16) + | (((*ptr >> 0) & 0xFF) << 24); +} + +static void bswap16(uint16_t *ptr) +{ + if (IS_LITTLE_ENDIAN) + *ptr = (((*ptr >> 8) & 0xFF) << 0) + | (((*ptr >> 0) & 0xFF) << 8); +} + +static int read_checked(FILE *f, size_t offset, void *out, size_t size) +{ + return fseek(f, offset, SEEK_SET) == 0 + && fread(out, size, 1, f) == 1; +} + +static int write_checked(FILE *f, size_t offset, const void *in, size_t size) +{ + return fseek(f, offset, SEEK_SET) == 0 + && fwrite(in, size, 1, f) == 1; +} + +static uint32_t align(uint32_t n, unsigned int alignment) +{ + if (alignment == 0 || n % alignment == 0) + return n; + return n + alignment - (n % alignment); +} + +static int is_supported_reloc_type(int type) +{ + switch (type) + { + case R_PPC_ADDR32: + case R_PPC_ADDR24: + case R_PPC_ADDR16_LO: + case R_PPC_ADDR16_HA: + case R_PPC_REL24: + case R_PPC_REL14: + return 1; + } + return 0; +} + +static const char *symbol_name(const struct Module *module, const Elf32_Sym *sym) +{ + if (sym->st_name >= module->strtabSize) + return NULL; + return module->strtab + sym->st_name; +} + +static int get_symtab_entry(const struct Module *module, int index, Elf32_Sym *sym) +{ + if (index >= module->symtabCount) + return 0; + *sym = module->symtab[index]; + bswap32(&sym->st_name); + bswap32(&sym->st_value); + bswap32(&sym->st_size); + bswap16(&sym->st_shndx); + return 1; +} + +static int lookup_symbol_by_name(const struct Module *module, const char *name, Elf32_Sym *sym) +{ + int i; + + for (i = 0; i < module->symtabCount; i++) + { + get_symtab_entry(module, i, sym); + const char *n = symbol_name(module, sym); + if (n != NULL && strcmp(name, n) == 0) + return 1; + } + return 0; +} + +static struct RelImportEntry *get_import_for_module_id(int moduleId) +{ + int i; + + for (i = 0; i < importsCount; i++) + { + if (imports[i].moduleId == moduleId) + return &imports[i]; + } + return NULL; +} + +static void add_reloc_entry(const struct Module *module, const Elf32_Rela *reloc, int relocSection) +{ + Elf32_Sym sym; + int symIdx = ELF32_R_SYM(reloc->r_info); + int relocType = ELF32_R_TYPE(reloc->r_info); + struct RelRelocEntry rentry; + struct RelImportEntry *import; + int moduleId; // module containing the symbol + + if (!is_supported_reloc_type(relocType)) + fatal_error("relocation type %i not supported\n", relocType); + + rentry.patchSection = relocSection; + rentry.patchOffset = reloc->r_offset; + rentry.type = relocType; + + // look for symbol in this module + if (!get_symtab_entry(module, symIdx, &sym)) + fatal_error("couldn't find symbol index %i\n", symIdx); + if (sym.st_shndx != 0) // symbol is in this module + { + rentry.symbolSection = sym.st_shndx; + rentry.symbolAddr = sym.st_value + reloc->r_addend; + moduleId = module->moduleId; + } + else // symbol is in another module (the DOL) + { + const char *name = symbol_name(&relModule, &sym); + if (!lookup_symbol_by_name(&dolModule, name, &sym)) + { + undefinedSymError = 1; + fprintf(stderr, "could not find symbol '%s' in any module\n", name); + return; + } + if (sym.st_shndx >= dolModule.ehdr.e_shnum) + fatal_error("bad section index %i\n", sym.st_shndx); + + rentry.symbolSection = sym.st_shndx; + rentry.symbolAddr = sym.st_value + reloc->r_addend; + moduleId = dolModule.moduleId; + } + + import = get_import_for_module_id(moduleId); + // add import entry if it does not exist. + if (import == NULL) + { + imports = realloc(imports, (importsCount + 1) * sizeof(*imports)); + import = &imports[importsCount++]; + import->moduleId = moduleId; + import->relocs = NULL; + import->relocsCount = 0; + } + + // add relocation entry + import->relocs = realloc(import->relocs, (import->relocsCount + 1) * sizeof(*import->relocs)); + import->relocs[import->relocsCount++] = rentry; +} + +static void module_get_section_header(const struct Module *module, int secNum, Elf32_Shdr *shdr) +{ + size_t offset = module->ehdr.e_shoff + secNum * module->ehdr.e_shentsize; + + if (secNum >= module->ehdr.e_shnum) + fatal_error("no such section index %i\n", secNum); + if (!read_checked(module->file, offset, shdr, sizeof(*shdr))) + fatal_error("error reading section header\n"); + + // convert from big endian + bswap32(&shdr->sh_name); + bswap32(&shdr->sh_type); + bswap32(&shdr->sh_flags); + bswap32(&shdr->sh_addr); + bswap32(&shdr->sh_offset); + bswap32(&shdr->sh_size); + bswap32(&shdr->sh_link); + bswap32(&shdr->sh_info); + bswap32(&shdr->sh_addralign); + bswap32(&shdr->sh_entsize); +} + +static void module_read_relocs(struct Module *module) +{ + int i; + int j; + + undefinedSymError = 0; + + for (i = 0; i < (int)module->ehdr.e_shnum; i++) + { + Elf32_Shdr shdr; + Elf32_Shdr forSection; + + module_get_section_header(module, i, &shdr); + if (shdr.sh_type == SHT_RELA) + { + module_get_section_header(module, shdr.sh_info, &forSection); + if (!(forSection.sh_flags & SHF_ALLOC)) + continue; + for (j = 0; j < shdr.sh_size / sizeof(Elf32_Rela); j++) + { + Elf32_Rela reloc; + + read_checked(module->file, shdr.sh_offset + j * sizeof(Elf32_Rela), &reloc, sizeof(reloc)); + // convert from big endian + bswap32(&reloc.r_offset); + bswap32(&reloc.r_info); + bswap32((uint32_t *)&reloc.r_addend); + + add_reloc_entry(&relModule, &reloc, shdr.sh_info); + } + } + } + + if (undefinedSymError) + exit(1); +} + +static int open_module(struct Module *module) +{ + int i; + + // open file + module->file = fopen(module->filename, "rb"); + if (module->file == NULL) + fatal_error("could not open %s for reading: %s\n", module->filename, strerror(errno)); + + // read and verify ELF header + if (!read_checked(module->file, 0, &module->ehdr, sizeof(module->ehdr))) + fatal_error("error reading ELF header\n"); + if (memcmp(module->ehdr.e_ident, "\x7F""ELF", 4) != 0) + fatal_error("%s is not a valid ELF file\n", module->filename); + + // convert from big endian + bswap16(&module->ehdr.e_type); + bswap16(&module->ehdr.e_machine); + bswap32(&module->ehdr.e_version); + bswap32(&module->ehdr.e_entry); + bswap32(&module->ehdr.e_phoff); + bswap32(&module->ehdr.e_shoff); + bswap32(&module->ehdr.e_flags); + bswap16(&module->ehdr.e_ehsize); + bswap16(&module->ehdr.e_phentsize); + bswap16(&module->ehdr.e_phnum); + bswap16(&module->ehdr.e_shentsize); + bswap16(&module->ehdr.e_shnum); + bswap16(&module->ehdr.e_shstrndx); + + if (module->ehdr.e_shentsize < sizeof(Elf32_Shdr)) + fatal_error("invalid section header size"); + + // Verify architecture + if (module->ehdr.e_ident[EI_CLASS] != ELFCLASS32 + || module->ehdr.e_ident[EI_DATA] != ELFDATA2MSB + || module->ehdr.e_machine != EM_PPC) + fatal_error("%s: wrong architecture. expected PowerPC 32-bit big endian.\n", module->filename); + + // Read symbol table and string table + for (i = 0; i < (int)module->ehdr.e_shnum; i++) + { + Elf32_Shdr shdr; + + module_get_section_header(module, i, &shdr); + if (shdr.sh_type == SHT_SYMTAB && module->symtab == NULL) + { + module->symtabCount = shdr.sh_size / sizeof(Elf32_Sym); + module->symtab = malloc(shdr.sh_size); + if (!read_checked(module->file, shdr.sh_offset, module->symtab, shdr.sh_size)) + fatal_error("error reading symbol table\n"); + } + else if (shdr.sh_type == SHT_STRTAB && i != module->ehdr.e_shstrndx && module->strtab == NULL) + { + module->strtabSize = shdr.sh_size; + module->strtab = malloc(shdr.sh_size); + if (!read_checked(module->file, shdr.sh_offset, module->strtab, shdr.sh_size)) + fatal_error("error reading string table\n"); + } + } + if (module->symtab == NULL) + fatal_error("%s does not have a symbol table.\n", module->filename); + if (module->strtab == NULL) + fatal_error("%s does not have a string table.\n", module->filename); + + return 1; +} + +// searches for the special functions "_prolog", "_epliog", and "_unresolved" +static void find_rel_entry_functions(const struct Module *module, struct RelHeader *relHdr) +{ + int i; + + //puts("finding entry points"); + for (i = 0; i < module->symtabCount; i++) + { + Elf32_Sym sym; + Elf32_Shdr shdr; + const char *name; + + get_symtab_entry(module, i, &sym); + name = symbol_name(module, &sym); + if (name == NULL) + continue; + if (strcmp(name, "_prolog") == 0) + { + module_get_section_header(module, sym.st_shndx, &shdr); + relHdr->prologSection = sym.st_shndx; + relHdr->prologOffset = sym.st_value - shdr.sh_addr; + } + else if (strcmp(name, "_epilog") == 0) + { + module_get_section_header(module, sym.st_shndx, &shdr); + relHdr->epilogSection = sym.st_shndx; + relHdr->epilogOffset = sym.st_value - shdr.sh_addr; + } + else if (strcmp(name, "_unresolved") == 0) + { + module_get_section_header(module, sym.st_shndx, &shdr); + relHdr->unresolvedSection = sym.st_shndx; + relHdr->unresolvedOffset = sym.st_value - shdr.sh_addr; + } + } +} + +// patches the bl instruction at insnp to jump to offset +static void patch_rel24_branch_offset(uint8_t *insnp, int32_t branchOffset) +{ + const uint32_t offsetMask = 0x03FFFFFC; // bits of instruction that contain the offset + uint32_t insn = (insnp[0] << 24) // read instruction + | (insnp[1] << 16) + | (insnp[2] << 8) + | (insnp[3] << 0); + + assert(((insn >> 26) & 0x3F) == 18); // TODO: do other instructions besides bl use R_PPC_REL24? + insn = (insn & ~offsetMask) | (branchOffset & offsetMask); // patch instruction + // write instruction + insnp[0] = (insn >> 24) & 0xFF; + insnp[1] = (insn >> 16) & 0xFF; + insnp[2] = (insn >> 8) & 0xFF; + insnp[3] = (insn >> 0) & 0xFF; +} + +static void patch_code_relocs(struct RelHeader *relHdr, int sectionId, uint8_t *code, size_t size) +{ + struct RelImportEntry *import; + struct RelRelocEntry *reloc; + int i; + + // Remove redundant R_PPC_REL24 relocations for calls to functions within + // the same module + import = get_import_for_module_id(relModule.moduleId); + assert(import != NULL); + for (i = 0, reloc = &import->relocs[0]; i < import->relocsCount; i++, reloc++) + { + if (reloc->patchSection == sectionId && reloc->type == R_PPC_REL24) + { + assert(reloc->patchOffset < size); + patch_rel24_branch_offset( + code + reloc->patchOffset, + reloc->symbolAddr - reloc->patchOffset); + // remove the relocation + reloc->type = R_PPC_NONE; + } + } + + // Patch all calls to functions outside this module to jump to _unresolved + // by default. + if (relHdr->unresolvedSection == 0) + return; + import = get_import_for_module_id(0); + assert(import != NULL); + for (i = 0, reloc = &import->relocs[0]; i < import->relocsCount; i++, reloc++) + { + if (reloc->patchSection == sectionId && reloc->type == R_PPC_REL24) + { + assert(reloc->patchOffset < size); + patch_rel24_branch_offset( + code + reloc->patchOffset, + relHdr->unresolvedOffset - reloc->patchOffset); + } + } +} + +static int compare_relocs(const void *a, const void *b) +{ + const struct RelRelocEntry *relocA = a; + const struct RelRelocEntry *relocB = b; + + // Sort by sections to which these relocations apply + if (relocA->patchSection != relocB->patchSection) + return relocA->patchSection - relocB->patchSection; + // Sort by patch offset + if (relocA->patchOffset != relocB->patchOffset) + return relocA->patchOffset - relocB->patchOffset; + // Otherwise, leave the order alone + return (uintptr_t)a - (uintptr_t)b; +} + +static int compare_imports(const void *a, const void *b) +{ + const struct RelImportEntry *impA = a; + const struct RelImportEntry *impB = b; + + return impA->moduleId - impB->moduleId; +} + +static void write_rel_file(struct Module *module, struct RelHeader *relHdr, const char *filename) +{ + int i, j; + size_t filePos = sizeof(struct RelHeader); // skip over header for now + struct RelImportEntry *imp; + FILE *fout = fopen(filename, "wb"); + + if (fout == NULL) + fatal_error("could not open %s for writing: %s\n", filename, strerror(errno)); + + relHdr->moduleId = module->moduleId; + relHdr->formatVersion = 1; + + find_rel_entry_functions(module, relHdr); + + // 1. Write section table and section contents + + relHdr->sectionTableOffset = filePos; + relHdr->sectionCount = MAX(module->ehdr.e_shnum, minSectionCount); + // section contents follow section info table + filePos = relHdr->sectionTableOffset + relHdr->sectionCount * 8; + relHdr->bssSize = 0; + for (i = 0; i < module->ehdr.e_shnum; i++) + { + Elf32_Shdr shdr; + struct { uint32_t offset; uint32_t size; } secEntry = {0}; + + module_get_section_header(module, i, &shdr); + // write section contents + if (shdr.sh_type == SHT_PROGBITS && (shdr.sh_flags & SHF_ALLOC)) + { + size_t sizeAligned = align(shdr.sh_size, 4); + uint32_t execflg = (shdr.sh_flags & SHF_EXECINSTR) ? 1 : 0; + + filePos = align(filePos, shdr.sh_addralign); + if (shdr.sh_size > 0) + { + uint8_t *data = calloc(sizeAligned, 1); + + if (!read_checked(module->file, shdr.sh_offset, data, shdr.sh_size)) + fatal_error("error reading section\n"); + if (execflg) + patch_code_relocs(relHdr, i, data, sizeAligned); + if (!write_checked(fout, filePos, data, shdr.sh_size)) + fatal_error("error writing rel section\n"); + free(data); + } + secEntry.offset = filePos | execflg; + filePos += shdr.sh_size; + } + if (shdr.sh_flags & SHF_ALLOC) + secEntry.size = shdr.sh_size; + + // write section table entry + bswap32(&secEntry.offset); + bswap32(&secEntry.size); + write_checked(fout, relHdr->sectionTableOffset + i * 8, &secEntry, sizeof(secEntry)); + + // calculate total BSS size + if ((shdr.sh_flags & SHF_ALLOC) && shdr.sh_type == SHT_NOBITS) + relHdr->bssSize += shdr.sh_size; + } + + // 2. Write relocation data + + relHdr->relocationTableOffset = filePos; + // sort imports by module id + qsort(imports, importsCount, sizeof(struct RelImportEntry), compare_imports); + for (i = 0, imp = &imports[0]; i < importsCount; i++, imp++) + { + struct RelRelocEntry *reloc; + int currSection = -1; + uint32_t prevOffset = 0; + struct + { + uint16_t offset; + uint8_t type; + uint8_t section; + uint32_t symaddr; + } ent; + + imp->relocsOffset = filePos; + // sort relocation entries by section + qsort(imp->relocs, imp->relocsCount, sizeof(struct RelRelocEntry), compare_relocs); + for (j = 0, reloc = &imp->relocs[0]; j < imp->relocsCount; j++, reloc++) + { + if (reloc->type == R_PPC_NONE) // ignore null relocations + continue; + + if (reloc->patchSection != currSection) // section changed + { + currSection = reloc->patchSection; + + // write section change + ent.offset = 0; + ent.type = R_DOLPHIN_SECTION; + ent.section = reloc->patchSection; + ent.symaddr = 0; + bswap16(&ent.offset); + bswap32(&ent.symaddr); + if (!write_checked(fout, filePos, &ent, sizeof(ent))) + fatal_error("error writing relocation entry"); + + filePos += sizeof(ent); + prevOffset = 0; + } + + // write relocation + assert(reloc->patchOffset >= prevOffset); + ent.offset = reloc->patchOffset - prevOffset; + ent.type = reloc->type; + ent.section = reloc->symbolSection; + ent.symaddr = reloc->symbolAddr; + bswap16(&ent.offset); + bswap32(&ent.symaddr); + if (!write_checked(fout, filePos, &ent, sizeof(ent))) + fatal_error("error writing relocation entry"); + + filePos += sizeof(ent); + prevOffset = reloc->patchOffset; + } + + // write end + ent.offset = 0; + ent.type = R_DOLPHIN_END; + ent.section = 0; + ent.symaddr = 0; + bswap16(&ent.offset); + bswap32(&ent.symaddr); + if (!write_checked(fout, filePos, &ent, sizeof(ent))) + fatal_error("error writing relocation entry"); + + filePos += sizeof(ent); + } + + // 3. Write module import table + + relHdr->importTableOffset = filePos; + for (i = 0, imp = &imports[0]; i < importsCount; i++, imp++) + { + // write import table entry + struct { uint32_t moduleId; uint32_t relocsOffset; } ent; + ent.moduleId = imp->moduleId; + ent.relocsOffset = imp->relocsOffset; + bswap32(&ent.moduleId); + bswap32(&ent.relocsOffset); + write_checked(fout, relHdr->importTableOffset + i * 8, &ent, sizeof(ent)); + } + relHdr->importTableSize = importsCount * 8; + + // 4. Write REL header. + + // convert to big endian + bswap32(&relHdr->moduleId); + bswap32(&relHdr->sectionCount); + bswap32(&relHdr->sectionTableOffset); + bswap32(&relHdr->moduleNameOffset); + bswap32(&relHdr->moduleNameSize); + bswap32(&relHdr->formatVersion); + bswap32(&relHdr->bssSize); + bswap32(&relHdr->relocationTableOffset); + bswap32(&relHdr->importTableOffset); + bswap32(&relHdr->importTableSize); + bswap32(&relHdr->prologOffset); + bswap32(&relHdr->epilogOffset); + bswap32(&relHdr->unresolvedOffset); + write_checked(fout, 0, relHdr, sizeof(*relHdr)); + + fclose(fout); +} + +static int parse_number(const char *str, int *n) +{ + char *end; + *n = strtol(str, &end, 0); + return end > str && *end == 0; +} + +int main(int argc, char **argv) +{ + int i; + int moduleId = -1; + int nameOffset = 0; + int nameLen = 0; + const char *relName = NULL; + struct RelHeader relHdr = {0}; + + // Read command-line args + for (i = 1; i < argc; i++) + { + if (strcmp(argv[i], "-c") == 0 || strcmp(argv[i], "--pad-section-count") == 0) + { + if (i + 1 < argc && parse_number(argv[i + 1], &minSectionCount)) + i++; + else + goto usage; + } + else if (strcmp(argv[i], "-i") == 0 || strcmp(argv[i], "--module-id") == 0) + { + if (i + 1 < argc && parse_number(argv[i + 1], &moduleId)) + i++; + else + goto usage; + } + else if (strcmp(argv[i], "-o") == 0 || strcmp(argv[i], "--name-offset") == 0) + { + if (i + 1 < argc && parse_number(argv[i + 1], &nameOffset)) + i++; + else + goto usage; + } + else if (strcmp(argv[i], "-l") == 0 || strcmp(argv[i], "--name-length") == 0) + { + if (i + 1 < argc && parse_number(argv[i + 1], &nameLen)) + i++; + else + goto usage; + } + else + { + if (relModule.filename == NULL) + relModule.filename = argv[i]; + else if (dolModule.filename == NULL) + dolModule.filename = argv[i]; + else if (relName == NULL) + relName = argv[i]; + else + goto usage; + } + } + if (relModule.filename == NULL || dolModule.filename == NULL || relName == NULL) + goto usage; + + open_module(&relModule); + open_module(&dolModule); + + dolModule.moduleId = 0; + relModule.moduleId = moduleId; + + module_read_relocs(&relModule); + + // TODO: Read this information from string table + relHdr.moduleNameOffset = nameOffset; + relHdr.moduleNameSize = nameLen; + write_rel_file(&relModule, &relHdr, relName); + + fclose(relModule.file); + fclose(dolModule.file); + + free(dolModule.strtab); + free(dolModule.symtab); + for (i = 0; i < importsCount; i++) + free(imports[i].relocs); + free(imports); + return 0; + +usage: + fprintf(stderr, + "usage: %s reloc_elf static_elf rel_file\n" + "options:\n" + " -i, --module-id sets the module ID in the rel header to \n" + " -c, --pad-section-count ensures that the rel will have at least \n" + " sections\n" + " -o, --name-offset sets the name offset in the rel header to\n" + " \n" + " -l, --name-length sets the name length in the rel header to \n", + argv[0]); + return 1; +} diff --git a/tools/reldisasm.py b/tools/reldisasm.py new file mode 100755 index 00000000..9b5eb800 --- /dev/null +++ b/tools/reldisasm.py @@ -0,0 +1,490 @@ +#!/usr/bin/env python3 + +from capstone import * +from capstone.ppc import * +from elftools.elf.elffile import * +from elftools.elf.sections import * +import sys + +# addr -> name +labels = {} + +# fileOffset -> {addr, type} +relocations = {} + +# index -> {offset, flags, length, is_bss, name} +sectionInfo = [] + +R_PPC_NONE = 0 +R_PPC_ADDR32 = 1 +R_PPC_ADDR24 = 2 +R_PPC_ADDR16_LO = 4 +R_PPC_ADDR16_HA = 6 +R_PPC_REL24 = 10 +R_DOLPHIN_SECTION = 202 +R_DOLPHIN_END = 203 + +relocationTypeNames = { + R_PPC_NONE: 'R_PPC_NONE', + R_PPC_ADDR32: 'R_PPC_ADDR32', + R_PPC_ADDR24: 'R_PPC_ADDR24', + R_PPC_ADDR16_LO: 'R_PPC_ADDR16_LO', + R_PPC_ADDR16_HA: 'R_PPC_ADDR16_HA', + R_PPC_REL24: 'R_PPC_REL24', + R_DOLPHIN_SECTION: 'R_DOLPHIN_SECTION', + R_DOLPHIN_END: 'R_DOLPHIN_END' +} + +def read_u8(offset): + return filecontent[offset] + +def read_u16(offset): + return (filecontent[offset + 0] << 8) | filecontent[offset + 1] + +def read_u32(offset): + return (filecontent[offset + 0] << 24) | (filecontent[offset + 1] << 16) | (filecontent[offset + 2] << 8) | filecontent[offset + 3] + +def add_label(addr, name=None): + if addr in labels: + return labels[addr] + if name == None: + name = 'lbl_%08X' % addr + labels[addr] = name + return name + +with open(sys.argv[1], 'rb') as file: + filecontent = bytearray(file.read()) + +if len(sys.argv) >= 3: + # Why is this so slow? + with open(sys.argv[2], 'rb') as f: + elf = ELFFile(f) + elfsymtab = elf.get_section_by_name('.symtab') + for i in range(0, elfsymtab.num_symbols()): + sym = elfsymtab.get_symbol(i) + if len(sym.name) > 0 and not sym.name[0] in {'.', '@'}: + add_label(sym['st_value'], sym.name) + +id = read_u32(0) +numSections = read_u32(0x0C) +sectionInfoOffset = read_u32(0x10) +nameOffset = read_u32(0x14) +nameSize = read_u32(0x18) +version = read_u32(0x1C) +bssSize = read_u32(0x20) +relOffset = read_u32(0x24) +impOffset = read_u32(0x28) +impSize = read_u32(0x2C) +prologSection = read_u8(0x30) +epilogSection = read_u8(0x31) +unresolvedSection = read_u8(0x32) +prolog = read_u32(0x34) +epilog = read_u32(0x38) +unresolved = read_u32(0x3C) + +print("# id: %i" % id) +print("# version: %i" % version) +print("# nameoffset: 0x%X, size: 0x%X" % (nameOffset, nameSize)) +print("# section table: 0x%X, size: 0x%X" % (sectionInfoOffset, numSections*8)) +print("# imp table: 0x%X" % impOffset) +print("# relocs offset: 0x%X" % relOffset) +print("# _prolog: %i:0x%X" % (prologSection, prolog)) +print("# _epilog: %i:0x%X" % (epilogSection, epilog)) +print("# _unresolved: %i:0x%X" % (unresolvedSection, unresolved)) +print("# num sections: %i" % numSections) +print('.include "macros.inc"') + +#print("%i sections:" % numSections) +# Read sections +for i in range(0, numSections): + o = sectionInfoOffset + i * 8 + section = { + 'offset': read_u32(o + 0) & ~3, + 'flags': read_u32(o + 0) & 3, + 'length': read_u32(o + 4) + } + if section['offset'] == 0 and section['length'] > 0: + section['is_bss'] = True + else: + section['is_bss'] = False + # Hack: if bss, then set file offset to something unique as to not + # clash with other symbols + if section['is_bss']: + section['offset'] = 0x10000000 + # Determine name + if section['is_bss']: + section['name'] = '.bss%i' % i + elif section['flags'] & 1: + section['name'] = '.text%i' % i + else: + section['name'] = '.data%i' % i + sectionInfo.append(section) + print("# offset: 0x%08X\tlength: 0x%08X\tflags: %i" % + (section['offset'], section['length'], section['flags'])) + + +sectionInfo[1]['name'] = '.text' +sectionInfo[2]['name'] = '.ctors' +sectionInfo[3]['name'] = '.dtors' +sectionInfo[4]['name'] = '.rodata' +sectionInfo[5]['name'] = '.data' +sectionInfo[6]['name'] = '.bss' + +# Add labels for prologue and epilogue +if prologSection != 0: + labels[sectionInfo[prologSection]['offset'] + prolog] = '_prolog' +if epilogSection != 0: + labels[sectionInfo[epilogSection]['offset'] + epilog] = '_epilog' +if unresolvedSection != 0: + labels[sectionInfo[unresolvedSection]['offset'] + unresolved] = '_unresolved' + +def read_relocation_info(module, o): + currSection = None + missingSymbols = False + while True: + offset = read_u16(o + 0) + type = read_u8(o + 2) + section = read_u8(o + 3) + addend = read_u32(o + 4) + + # Get address of symbol and add label + symAddr = 0 + if type == R_DOLPHIN_SECTION: # R_DOLPHIN_SECTION + currSection = sectionInfo[section] + relocOffset = currSection['offset'] + if type < 200: + if module == 0: # dol + symAddr = addend + if symAddr not in labels: + print('error: symbol for 0x%08X not found' % symAddr) + missingSymbols = True + else: # rel + symAddr = sectionInfo[section]['offset'] + addend + labels[symAddr] = 'lbl_%08X' % symAddr + + # Get file offset for relocation + relocOffset += offset + + if type < 200: + reloc = { + 'addr': symAddr, + 'type': type, + } + relocations[relocOffset] = reloc + + #print(" offset: 0x%04X(+0x%X)\ttype: %s\tsection: %i\tsym_addr: 0x%08X" % (relocOffset, offset, relocationTypeNames[type], section, symAddr)) + #print(" offset: 0x%04X(+0x%X)\ttype: %s\tsection: %i\tsym_addr: ?" % (relocOffset, offset, relocationTypeNames[type], section)) + if type == R_DOLPHIN_END: + break + o += 8 + if missingSymbols: + exit(1) + +numImpEntries = impSize / 8 +#print("%i imports" % numImpEntries) +for i in range(0, int(numImpEntries)): + o = impOffset + i * 8 + module = read_u32(o + 0) + relocation = read_u32(o + 4) + #print("module: %i, offset: 0x%08X" % (module, relocation)) + read_relocation_info(module, relocation) + + +cs = Cs(CS_ARCH_PPC, CS_MODE_32 | CS_MODE_BIG_ENDIAN) +cs.detail = True +cs.imm_unsigned = False + +def get_relocation_for_offset(o): + for i in range(o, o + 4): + if i in relocations: + return relocations[i] + return None + + +def get_label(addr): + if addr in labels: + return labels[addr] + return '0x%08X' % addr + +def print_label(label): + if label in ['_prolog', '_epilog', '_unresolved']: + label = '.global %s\n%s' % (label, label) + print('%s:' % label) + +def sign_extend_16(value): + if value > 0 and (value & 0x8000): + value -= 0x10000 + return value + +def disasm_fcmp(inst): + crd = (inst & 0x03800000) >> 23 + a = (inst & 0x001f0000) >> 16 + b = (inst & 0x0000f800) >> 11 + return 'fcmpo cr%i, f%i, f%i' % (crd, a, b) + +def disasm_mspr(inst, mode): + if (inst & 1): + return None + d = (inst & 0x03e00000) >> 21 + a = (inst & 0x001f0000) >> 16 + b = (inst & 0x0000f800) >>11 + spr = (b << 5) + a + if mode: + return 'mtspr 0x%X, r%i' % (spr, d) + else: + return 'mfspr r%i, 0x%X' % (d, spr) + +def disasm_mcrxr(inst): + if (inst & 0x007ff801): + return None + crd = (inst & 0x03800000) >> 23 + return 'mcrxr cr%i' % crd + +def disassemble_insn_that_capstone_cant_handle(o, reloc): + if reloc: + relocComment = '\t;# %s:%s' % (get_label(reloc['addr']), relocationTypeNames[reloc['type']]) + else: + relocComment = '' + raw = read_u32(o) + asm = None + idx = (raw & 0xfc000000) >> 26 + idx2 = (raw & 0x000007fe) >> 1 + # mtspr + if idx == 31 and idx2 == 467: + asm = disasm_mspr(raw, 1) + # mfspr + elif idx == 31 and idx2 == 339: + asm = disasm_mspr(raw, 0) + # mcrxr + elif idx == 31 and idx2 == 512: + asm = disasm_mcrxr(raw) + # fcmpo + elif idx == 63 and idx2 == 32: + asm = disasm_fcmp(raw) + # Paired singles + #elif idx == 4: + # asm = disasm_ps(raw) + #elif idx in {56, 57, 60, 61}: + # asm = disasm_ps_mem(raw, idx) + if asm: + return asm + return '.4byte 0x%08X ;# (error: unknown instruction) %s' % (read_u32(o), relocComment) + +def disassemble_insn(o, reloc): + if reloc: + relocComment = '\t;# %s:%s' % (get_label(reloc['addr']), relocationTypeNames[reloc['type']]) + else: + relocComment = '' + try: + insn = next(cs.disasm(filecontent[o : o+4], o)) + except StopIteration: + return disassemble_insn_that_capstone_cant_handle(o, reloc) + if reloc: + relocType = reloc['type'] + else: + relocType = -1 + + # handle relocs label + if insn.id in {PPC_INS_BL, PPC_INS_BC} and relocType == R_PPC_REL24: + return '%s %s' % (insn.mnemonic, get_label(reloc['addr'])) + if insn.id == PPC_INS_LIS and relocType == R_PPC_ADDR16_HA: + return '%s %s, %s@ha' % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), get_label(reloc['addr'])) + if insn.id == PPC_INS_ADDI and relocType == R_PPC_ADDR16_LO: + return '%s %s, %s, %s@l' % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.reg_name(insn.operands[1].reg), get_label(reloc['addr'])) + if insn.id in { + PPC_INS_LWZ, PPC_INS_LHZ, PPC_INS_LHA, PPC_INS_LBZ, + PPC_INS_LWZU, PPC_INS_LHZU, PPC_INS_LHAU, PPC_INS_LBZU, + PPC_INS_LFS, PPC_INS_LFD, + PPC_INS_LFSU, PPC_INS_LFDU, + PPC_INS_STW, PPC_INS_STH, PPC_INS_STB, + PPC_INS_STWU, PPC_INS_STHU, PPC_INS_STBU, + PPC_INS_STFS, PPC_INS_STFD, + PPC_INS_STFSU, PPC_INS_STFDU} \ + and relocType == R_PPC_ADDR16_LO: + return '%s %s, %s@l(%s)' % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), get_label(reloc['addr']), insn.reg_name(insn.operands[1].mem.base)) + + # branch target labels + if insn.id in {PPC_INS_B, PPC_INS_BL, PPC_INS_BDZ, PPC_INS_BDNZ, PPC_INS_BC}: + if reloc: + return '%s %s' % (insn.mnemonic, get_label(reloc['addr'])) + #add_label(insn.operands[0].imm) + #label = labels[insn.operands[0].imm] + #if label: + # WTF, capstone? + if o == 0xAD8C: + return '%s lbl_0000ADB0' % insn.mnemonic + return '%s %s' % (insn.mnemonic, get_label(insn.operands[0].imm)) + + # misc. fixes + + # Sign-extend immediate values because Capstone is an idiot and thinks all immediates are unsigned + if insn.id in {PPC_INS_ADDI, PPC_INS_ADDIC, PPC_INS_SUBFIC, PPC_INS_MULLI} and (insn.operands[2].imm & 0x8000): + return "%s %s, %s, %i ;# fixed addi" % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.reg_name(insn.operands[1].value.reg), insn.operands[2].imm - 0x10000) + if (insn.id == PPC_INS_LI or insn.id == PPC_INS_CMPWI) and (insn.operands[1].imm & 0x8000): + return "%s %s, %i" % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.operands[1].imm - 0x10000) + # cntlz -> cntlzw + if insn.id == PPC_INS_CNTLZW: + return "cntlzw %s" % insn.op_str + + return '%s %s%s' % (insn.mnemonic, insn.op_str, relocComment) + +def scan_local_labels(o, size): + end = o + size + while o < end: + reloc = get_relocation_for_offset(o) + if reloc: + pass + else: + try: + insn = next(cs.disasm(filecontent[o:o+4], o)) + if insn.id in {PPC_INS_B, PPC_INS_BL, PPC_INS_BC, PPC_INS_BDZ, PPC_INS_BDNZ}: + for op in insn.operands: + if op.type == PPC_OP_IMM: + l = add_label(op.imm) + #print('adding local label %s(0x%X) from offset 0x%X' % (l, op.imm, o)) + except StopIteration: + pass + o += 4 + #for insn in cs.disasm(filecontent[o:o+size], o): + # # branch labels + # if insn.id in {PPC_INS_B, PPC_INS_BL, PPC_INS_BC, PPC_INS_BDZ, PPC_INS_BDNZ}: + # for op in insn.operands: + # if op.type == PPC_OP_IMM: + # l = add_label(op.imm) + # print('adding local label %s(0x%X) from offset 0x%X' % (l, op.imm, o)) + +def dump_code(o, size): + scan_local_labels(o, size) + end = o + size + code = filecontent[o : end] + while o < end: + if o in labels: + print_label(labels[o]) + asm = disassemble_insn(o, get_relocation_for_offset(o)) + print('/* %08X %08X */ %s' % (o, read_u32(o), asm)) + #print('/* %08X */ %s' % (read_u32(o), asm)) + o += 4 + if o < end: + print('incomplete') + +# returns True if value is 4-byte aligned +def is_aligned(num): + return num % 4 == 0 + +def align(num): + return (num + 3) & ~3 + +def is_ascii(code): + if code >= 0x20 and code <= 0x7E: # normal characters + return True + if code in [0x09, 0x0A]: # tab, newline + return True + return False + +# returns True if all elements are zero +def is_all_zero(arr): + for val in arr: + if val != 0: + return False + return True + +# returns string of comma-separated hex bytes +def hex_bytes(data): + return ', '.join('0x%02X' % n for n in data) + +# reads a string starting at pos +def read_string(data, pos): + text = '' + while pos < len(data) and is_ascii(data[pos]): + text += chr(data[pos]) + pos += 1 + if pos < len(data) and data[pos] == 0: + return text + return '' + +# escapes special characters in the string for use in a C string literal +def escape_string(text): + return text.replace('\\','\\\\').replace('"','\\"').replace('\n','\\n').replace('\t','\\t') + +def output_data_range(secNum, o, end): + print(' # 0x%X' % o) + if not is_aligned(o): + print(' .byte ' + hex_bytes(filecontent[o:align(o)])) + o = align(o) + while o < (end & ~3): + # Try to see if this is a string. + string = read_string(filecontent, o) + if len(string) >= 4 and secNum == 5: # strings are only in .data + strEnd = o + len(string)+1 + if is_aligned(strEnd) or is_all_zero(filecontent[strEnd : align(strEnd)-strEnd]): + print(' .asciz \"%s"' % escape_string(string)) + if not is_aligned(strEnd): + print(' .balign 4') + o = align(strEnd) + continue + # Not a string + reloc = get_relocation_for_offset(o) + if reloc: + type = reloc['type'] + if type == R_PPC_ADDR32: + value = labels[reloc['addr']] + else: + print('dunno what to do about %s here' % relocationTypeNames[type]) + else: + value = '0x%08X' % read_u32(o) + print(' .4byte %s' % value) + o += 4 + if o < end: + print(' .byte ' + hex_bytes(filecontent[o:end])) + return + + +def dump_data(secNum, o, size): + end = o + size + lastPos = o + while o < end: + if o in labels: + if o - lastPos > 0: + output_data_range(secNum, lastPos, o) + print_label(labels[o]) + lastPos = o + o += 1 + if o - lastPos > 0: + output_data_range(secNum, lastPos, o) + return + + +def output_bss_range(start, end): + print(' .skip 0x%X' % (end - start)) + +def dump_bss(o, size): + end = o + size + lastPos = o + while o < end: + if o in labels: + if o - lastPos > 0: + output_bss_range(lastPos, o) + print_label(labels[o]) + lastPos = o + o += 1 + if o - lastPos > 0: + output_bss_range(lastPos, o) + return + + +for i in range(0, numSections): + section = sectionInfo[i] + if section['offset'] == 0 and section['length'] == 0: + continue + print('# %i' % i) + print('.section %s' % section['name']) + if section['is_bss']: + # bss section + dump_bss(section['offset'], section['length']) + elif section['flags'] & 1: + # code section + dump_code(section['offset'], section['length']) + elif section['offset'] != 0: + # data section + dump_data(i, section['offset'], section['length']) + print('')