From 050b90f097f54c7ebc808d36ebb683f14b968fe5 Mon Sep 17 00:00:00 2001 From: Luciano Ciccariello Date: Wed, 21 Dec 2022 16:33:15 +0000 Subject: [PATCH] Add SEL overlay --- .github/workflows/report.yml | 1 + Makefile | 8 +- README.md | 9 +- config/splat.stsel.yaml | 28 + config/symbols.stsel.txt | 1684 ++++++++++++++++++++++++++++++++++ slus00067.sha | 1 + src/st/sel/2C048.c | 335 +++++++ 7 files changed, 2060 insertions(+), 6 deletions(-) create mode 100644 config/splat.stsel.yaml create mode 100644 config/symbols.stsel.txt create mode 100644 src/st/sel/2C048.c diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index ec3f1e8e5..83f00f4e3 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -52,6 +52,7 @@ jobs: python tools/report_progress.py NO3.BIN 210 src/st/no3 > gh-report/assets/progress-no3.json python tools/report_progress.py NP3.BIN 214 src/st/np3 > gh-report/assets/progress-np3.json python tools/report_progress.py NZ0.BIN 135 src/st/nz0 > gh-report/assets/progress-nz0.json + python tools/report_progress.py SEL.BIN 164 src/st/sel > gh-report/assets/progress-sel.json python tools/report_progress.py ST0.BIN 160 src/st/st0 > gh-report/assets/progress-st0.json python tools/report_progress.py WRP.BIN 110 src/st/wrp > gh-report/assets/progress-wrp.json python tools/report_progress.py RWRP.BIN 110 src/st/rwrp > gh-report/assets/progress-rwrp.json diff --git a/Makefile b/Makefile index cf3fdc267..0d65c97d7 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ define link endef all: build check -build: main dra ric cen dre mad no3 np3 nz0 st0 wrp rwrp +build: main dra ric cen dre mad no3 np3 nz0 sel st0 wrp rwrp clean: git clean -fdx asm/ git clean -fdx $(BUILD_DIR) @@ -142,6 +142,10 @@ nz0: stnz0_dirs $(BUILD_DIR)/NZ0.BIN $(BUILD_DIR)/NZ0.BIN: $(BUILD_DIR)/stnz0.elf $(OBJCOPY) -O binary $< $@ +sel: stsel_dirs $(BUILD_DIR)/SEL.BIN +$(BUILD_DIR)/SEL.BIN: $(BUILD_DIR)/stsel.elf + $(OBJCOPY) -O binary $< $@ + st0: stst0_dirs $(BUILD_DIR)/ST0.BIN $(BUILD_DIR)/ST0.BIN: $(BUILD_DIR)/stst0.elf $(OBJCOPY) -O binary $< $@ @@ -207,7 +211,7 @@ st%_dirs: $(BUILD_DIR)/st%.elf: $$(call list_o_files,st/$$*) $(call link,st$*,$@) -extract: extract_main extract_dra extract_ric extract_stcen extract_stdre extract_stmad extract_stno3 extract_stnp3 extract_stnz0 extract_stst0 extract_stwrp extract_strwrp +extract: extract_main extract_dra extract_ric extract_stcen extract_stdre extract_stmad extract_stno3 extract_stnp3 extract_stnz0 extract_stsel extract_stst0 extract_stwrp extract_strwrp extract_main: require-tools $(SPLAT) $(CONFIG_DIR)/splat.$(MAIN).yaml extract_dra: require-tools diff --git a/README.md b/README.md index 8990668e6..9fb6be771 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ This repo does not include any assets or assembly code necessary for compiling t | `5d06216b895ab5ff892c88b0d9eff67ff16e2bd1` | ST/NO3.BIN | ![progress NO3.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-no3.json) | `7c78a2bec6a26acfb62456e7f517915fe0c0e3f5` | ST/NP3.BIN | ![progress NP3.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-np3.json) | `b10b9c2be721cf9cbed3aa94be468ba9e23bc68b` | ST/NZ0.BIN | ![progress NZ0.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-nz0.json) +| `a919a53a760107972049bfdeadde33376428eace` | ST/SEL.BIN | ![progress SEL.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-sel.json) | `bc2fabbe5ef0d1288490b6f1ddbf11092a2c0c57` | ST/ST0.BIN | ![progress ST0.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-st0.json) | `2ae313f4e394422e4c5f37a2d8e976e92f9e3cda` | ST/WRP.BIN | ![progress WRP.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-wrp.json) | `3bbdd3b73f8f86cf5f6c88652e9e6452a7fb5992` | ST/RWRP.BIN | ![progress RWRP.BIN](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Xeeynamo/sotn-decomp/gh-report/assets/progress-rwrp.json) @@ -32,10 +33,10 @@ This repo does not include any assets or assembly code necessary for compiling t This assumes you have Ubuntu 20.04 or Debian 11, either as a primary OS or within WSL in Windows. - 1. Inside the folder of your choice `git clone https://github.com/Xeeynamo/sotn-decomp.git` - 1. Run `sudo apt-get install -y $(cat tools/requirements-debian.txt)` - 1. Run `make update-dependencies` - 1. Inside the newly created repo, create a new `iso/` folder, and extract the contents of the game disc +1. Inside the folder of your choice `git clone https://github.com/Xeeynamo/sotn-decomp.git` +1. Run `sudo apt-get install -y $(cat tools/requirements-debian.txt)` +1. Run `make update-dependencies` +1. Inside the newly created repo, create a new `iso/` folder, and extract the contents of the game disc ## Build diff --git a/config/splat.stsel.yaml b/config/splat.stsel.yaml new file mode 100644 index 000000000..8c78916fe --- /dev/null +++ b/config/splat.stsel.yaml @@ -0,0 +1,28 @@ +options: + platform: psx + basename: stsel + base_path: .. + target_path: iso/ST/SEL/SEL.BIN + asm_path: asm/st/sel + asset_path: assets/st/sel + src_path: src/st/sel + compiler: GCC + symbol_addrs_path: config/generated.symbols.stsel.txt + undefined_syms_path: config/undefined_syms.stsel.txt + undefined_funcs_auto_path: config/undefined_funcs_auto.stsel.txt + undefined_syms_auto_path: config/undefined_syms_auto.stsel.txt + find_file_boundaries: yes + enable_ld_alignment_hack: yes + use_legacy_include_asm: no + migrate_rodata_to_functions: no +segments: + - name: stsel + type: code + start: 0x00000000 + vram: 0x80180000 + subalign: 2 + subsegments: + - [0x0, rodata] + - [0x2C048, c] + - [0x3AEE4, data] + - [0x56B28] diff --git a/config/symbols.stsel.txt b/config/symbols.stsel.txt new file mode 100644 index 000000000..8a9df20af --- /dev/null +++ b/config/symbols.stsel.txt @@ -0,0 +1,1684 @@ +D_801800B8 = 0x801800B8; +D_801800C8 = 0x801800C8; +D_801800D8 = 0x801800D8; +D_801800E8 = 0x801800E8; +D_801800F8 = 0x801800F8; +D_80180108 = 0x80180108; +D_80180118 = 0x80180118; +D_80180128 = 0x80180128; +D_80180138 = 0x80180138; +D_80180148 = 0x80180148; +D_80180158 = 0x80180158; +D_801801B8 = 0x801801B8; +D_8018059C = 0x8018059C; +D_801805FC = 0x801805FC; +D_8018061C = 0x8018061C; +D_8018063C = 0x8018063C; +D_8018068C = 0x8018068C; +D_801806A0 = 0x801806A0; +D_801806C0 = 0x801806C0; +D_801806D8 = 0x801806D8; +D_801806F8 = 0x801806F8; +D_8018070C = 0x8018070C; +D_80180728 = 0x80180728; +D_80180760 = 0x80180760; +D_80180764 = 0x80180764; +D_80180784 = 0x80180784; +D_801807A4 = 0x801807A4; +D_801807C4 = 0x801807C4; +D_801807E4 = 0x801807E4; +D_80180804 = 0x80180804; +D_80180AE4 = 0x80180AE4; +D_80180C64 = 0x80180C64; +D_80180DE4 = 0x80180DE4; +D_80180F64 = 0x80180F64; +D_801810E4 = 0x801810E4; +D_80181264 = 0x80181264; +D_801813E4 = 0x801813E4; +D_80181564 = 0x80181564; +D_801816E4 = 0x801816E4; +D_80181864 = 0x80181864; +D_801819E4 = 0x801819E4; +D_80181B64 = 0x80181B64; +D_80181CE4 = 0x80181CE4; +D_80181E64 = 0x80181E64; +D_80181FE4 = 0x80181FE4; +D_80182164 = 0x80182164; +D_8018B2CC = 0x8018B2CC; +D_8018B2D4 = 0x8018B2D4; +D_8018B2DC = 0x8018B2DC; +D_8018B2E4 = 0x8018B2E4; +D_8018C404 = 0x8018C404; +D_8018C718 = 0x8018C718; +D_8018C92C = 0x8018C92C; +D_8018CB4C = 0x8018CB4C; +D_8018CD54 = 0x8018CD54; +D_8018CDB4 = 0x8018CDB4; +D_8018CFB4 = 0x8018CFB4; +D_8018D1B4 = 0x8018D1B4; +D_8018D3B4 = 0x8018D3B4; +D_8018D5B4 = 0x8018D5B4; +D_8018D5D4 = 0x8018D5D4; +D_8018DBD4 = 0x8018DBD4; +D_8018DBE4 = 0x8018DBE4; +D_8018DC14 = 0x8018DC14; +D_8018DC30 = 0x8018DC30; +D_8018DCE0 = 0x8018DCE0; +D_8018DD10 = 0x8018DD10; +D_8018DD40 = 0x8018DD40; +D_8018DD5C = 0x8018DD5C; +D_8018DD78 = 0x8018DD78; +D_8018DD94 = 0x8018DD94; +D_8018DDB0 = 0x8018DDB0; +D_8018DDCC = 0x8018DDCC; +D_8018DDE8 = 0x8018DDE8; +D_8018DE04 = 0x8018DE04; +D_8018DE34 = 0x8018DE34; +D_8018DE64 = 0x8018DE64; +D_8018DE94 = 0x8018DE94; +D_8018DEC4 = 0x8018DEC4; +D_8018DEF4 = 0x8018DEF4; +D_8018DF24 = 0x8018DF24; +D_8018DF54 = 0x8018DF54; +D_8018DF84 = 0x8018DF84; +D_8018DFB4 = 0x8018DFB4; +D_8018DFE4 = 0x8018DFE4; +D_8018E014 = 0x8018E014; +D_8018E044 = 0x8018E044; +D_8018E074 = 0x8018E074; +D_8018E090 = 0x8018E090; +D_8018E0D8 = 0x8018E0D8; +D_8018E120 = 0x8018E120; +D_8018E150 = 0x8018E150; +D_8018E180 = 0x8018E180; +D_8018E1B0 = 0x8018E1B0; +D_8018E1E0 = 0x8018E1E0; +D_8018E210 = 0x8018E210; +D_8018E22C = 0x8018E22C; +D_8018E248 = 0x8018E248; +D_8018E264 = 0x8018E264; +D_8018E280 = 0x8018E280; +D_8018E29C = 0x8018E29C; +D_8018E2B8 = 0x8018E2B8; +D_8018E2D4 = 0x8018E2D4; +D_8018E2F0 = 0x8018E2F0; +D_8018E30C = 0x8018E30C; +D_8018E354 = 0x8018E354; +D_8018E384 = 0x8018E384; +D_8018E3B4 = 0x8018E3B4; +D_8018E4AC = 0x8018E4AC; +D_8018E4DC = 0x8018E4DC; +D_8018E50C = 0x8018E50C; +D_8018E554 = 0x8018E554; +D_8018E59C = 0x8018E59C; +D_8018E5E4 = 0x8018E5E4; +D_8018E614 = 0x8018E614; +D_8018E65C = 0x8018E65C; +D_8018E6A4 = 0x8018E6A4; +D_8018E6EC = 0x8018E6EC; +D_8018E734 = 0x8018E734; +D_8018E77C = 0x8018E77C; +D_8018E7AC = 0x8018E7AC; +D_8018E7C8 = 0x8018E7C8; +D_8018E7E4 = 0x8018E7E4; +D_8018E800 = 0x8018E800; +D_8018E81C = 0x8018E81C; +D_8018E838 = 0x8018E838; +D_8018E868 = 0x8018E868; +D_8018E898 = 0x8018E898; +D_8018E8C8 = 0x8018E8C8; +D_8018E8F8 = 0x8018E8F8; +D_8018E928 = 0x8018E928; +D_8018E958 = 0x8018E958; +D_8018E988 = 0x8018E988; +D_8018E9B8 = 0x8018E9B8; +D_8018E9E8 = 0x8018E9E8; +D_8018EA18 = 0x8018EA18; +D_8018EA60 = 0x8018EA60; +D_8018EA90 = 0x8018EA90; +D_8018EAC0 = 0x8018EAC0; +D_8018EAF0 = 0x8018EAF0; +D_8018EB38 = 0x8018EB38; +D_8018EB80 = 0x8018EB80; +D_8018EBB0 = 0x8018EBB0; +D_8018EBE0 = 0x8018EBE0; +D_8018EC28 = 0x8018EC28; +D_8018EC70 = 0x8018EC70; +D_8018ECB8 = 0x8018ECB8; +D_8018ED00 = 0x8018ED00; +D_8018ED48 = 0x8018ED48; +D_8018ED78 = 0x8018ED78; +D_8018EDA8 = 0x8018EDA8; +D_8018EDD8 = 0x8018EDD8; +D_8018EDF4 = 0x8018EDF4; +D_8018EE10 = 0x8018EE10; +D_8018EE2C = 0x8018EE2C; +D_8018EE48 = 0x8018EE48; +D_8018EE64 = 0x8018EE64; +D_8018EE80 = 0x8018EE80; +D_8018EE9C = 0x8018EE9C; +D_8018EEB8 = 0x8018EEB8; +D_8018EED4 = 0x8018EED4; +D_8018EEF0 = 0x8018EEF0; +D_8018EF0C = 0x8018EF0C; +D_8018EF28 = 0x8018EF28; +D_8018EF44 = 0x8018EF44; +D_8018EF60 = 0x8018EF60; +D_8018EF7C = 0x8018EF7C; +D_8018EF98 = 0x8018EF98; +D_8018EFB4 = 0x8018EFB4; +D_8018F308 = 0x8018F308; +D_8018F310 = 0x8018F310; +D_8018F318 = 0x8018F318; +D_8018F320 = 0x8018F320; +D_8018F328 = 0x8018F328; +D_8018F330 = 0x8018F330; +D_8018F338 = 0x8018F338; +D_8018F340 = 0x8018F340; +D_8018F348 = 0x8018F348; +D_8018F350 = 0x8018F350; +D_8018F358 = 0x8018F358; +D_8018F360 = 0x8018F360; +D_8018F368 = 0x8018F368; +D_8018F370 = 0x8018F370; +D_8018F378 = 0x8018F378; +D_8018F380 = 0x8018F380; +D_8018F388 = 0x8018F388; +D_8018F390 = 0x8018F390; +D_8018F398 = 0x8018F398; +D_8018F3A0 = 0x8018F3A0; +D_8018F3A8 = 0x8018F3A8; +D_8018F3B0 = 0x8018F3B0; +D_8018F3B8 = 0x8018F3B8; +D_8018F3C0 = 0x8018F3C0; +D_8018F3C8 = 0x8018F3C8; +D_8018F3D0 = 0x8018F3D0; +D_8018F3D8 = 0x8018F3D8; +D_8018F3E0 = 0x8018F3E0; +D_8018F3E8 = 0x8018F3E8; +D_8018F3F0 = 0x8018F3F0; +D_8018F3F8 = 0x8018F3F8; +D_8018F400 = 0x8018F400; +D_8018F408 = 0x8018F408; +D_8018F410 = 0x8018F410; +D_8018F418 = 0x8018F418; +D_8018F420 = 0x8018F420; +D_8018F428 = 0x8018F428; +D_8018F430 = 0x8018F430; +D_8018F438 = 0x8018F438; +D_8018F440 = 0x8018F440; +D_8018F448 = 0x8018F448; +D_8018F450 = 0x8018F450; +D_8018F458 = 0x8018F458; +D_8018F460 = 0x8018F460; +D_8018F468 = 0x8018F468; +D_8018F470 = 0x8018F470; +D_8018F478 = 0x8018F478; +D_8018F480 = 0x8018F480; +D_8018F488 = 0x8018F488; +D_8018F490 = 0x8018F490; +D_8018F498 = 0x8018F498; +D_8018F4A0 = 0x8018F4A0; +D_8018F4A8 = 0x8018F4A8; +D_8018F4B0 = 0x8018F4B0; +D_8018F4B8 = 0x8018F4B8; +D_8018F4C0 = 0x8018F4C0; +D_8018F4C8 = 0x8018F4C8; +D_8018F4D0 = 0x8018F4D0; +D_8018F4D8 = 0x8018F4D8; +D_8018F4E0 = 0x8018F4E0; +D_8018F4E8 = 0x8018F4E8; +D_8018F4F0 = 0x8018F4F0; +D_8018F4F8 = 0x8018F4F8; +D_8018F500 = 0x8018F500; +D_8018F508 = 0x8018F508; +D_8018F510 = 0x8018F510; +D_8018F518 = 0x8018F518; +D_8018F520 = 0x8018F520; +D_8018F528 = 0x8018F528; +D_8018F530 = 0x8018F530; +D_8018F538 = 0x8018F538; +D_8018F540 = 0x8018F540; +D_8018F548 = 0x8018F548; +D_8018F550 = 0x8018F550; +D_8018F558 = 0x8018F558; +D_8018F560 = 0x8018F560; +D_8018F568 = 0x8018F568; +D_8018F570 = 0x8018F570; +D_8018F578 = 0x8018F578; +D_8018F580 = 0x8018F580; +D_8018F588 = 0x8018F588; +D_8018F590 = 0x8018F590; +D_8018F598 = 0x8018F598; +D_8018F5A0 = 0x8018F5A0; +D_8018F5A8 = 0x8018F5A8; +D_8018F5B0 = 0x8018F5B0; +D_8018F5B8 = 0x8018F5B8; +D_8018F5C0 = 0x8018F5C0; +D_8018F5C8 = 0x8018F5C8; +D_8018F5D0 = 0x8018F5D0; +D_8018F5D8 = 0x8018F5D8; +D_8018F5E0 = 0x8018F5E0; +D_8018F5E8 = 0x8018F5E8; +D_8018F5F0 = 0x8018F5F0; +D_8018F5F8 = 0x8018F5F8; +D_8018F600 = 0x8018F600; +D_8018F608 = 0x8018F608; +D_8018F610 = 0x8018F610; +D_8018F618 = 0x8018F618; +D_8018F620 = 0x8018F620; +D_8018F628 = 0x8018F628; +D_8018F630 = 0x8018F630; +D_8018F638 = 0x8018F638; +D_8018F640 = 0x8018F640; +D_8018F648 = 0x8018F648; +D_8018F650 = 0x8018F650; +D_8018F658 = 0x8018F658; +D_8018F660 = 0x8018F660; +D_8018F668 = 0x8018F668; +D_8018F670 = 0x8018F670; +D_8018F678 = 0x8018F678; +D_8018F680 = 0x8018F680; +D_8018F688 = 0x8018F688; +D_8018F690 = 0x8018F690; +D_8018F698 = 0x8018F698; +D_8018F6A0 = 0x8018F6A0; +D_8018F6A8 = 0x8018F6A8; +D_8018F6B0 = 0x8018F6B0; +D_8018F6B8 = 0x8018F6B8; +D_8018F6C0 = 0x8018F6C0; +D_8018F6C8 = 0x8018F6C8; +D_8018F6D0 = 0x8018F6D0; +D_8018F6D8 = 0x8018F6D8; +D_8018F6E0 = 0x8018F6E0; +D_8018F6E8 = 0x8018F6E8; +D_8018F6F0 = 0x8018F6F0; +D_8018F6F8 = 0x8018F6F8; +D_8018F700 = 0x8018F700; +D_8018F708 = 0x8018F708; +D_8018F710 = 0x8018F710; +D_8018F718 = 0x8018F718; +D_8018F720 = 0x8018F720; +D_8018F728 = 0x8018F728; +D_8018F730 = 0x8018F730; +D_8018F738 = 0x8018F738; +D_8018F740 = 0x8018F740; +D_8018F748 = 0x8018F748; +D_8018F750 = 0x8018F750; +D_8018F758 = 0x8018F758; +D_8018F760 = 0x8018F760; +D_8018F768 = 0x8018F768; +D_8018F770 = 0x8018F770; +D_8018F778 = 0x8018F778; +D_8018F780 = 0x8018F780; +D_8018F788 = 0x8018F788; +D_8018F790 = 0x8018F790; +D_8018F798 = 0x8018F798; +D_8018F7A0 = 0x8018F7A0; +D_8018F7A8 = 0x8018F7A8; +D_8018F7B0 = 0x8018F7B0; +D_8018F7B8 = 0x8018F7B8; +D_8018F7C0 = 0x8018F7C0; +D_8018F7C8 = 0x8018F7C8; +D_8018F7D0 = 0x8018F7D0; +D_8018F7D8 = 0x8018F7D8; +D_8018F7E0 = 0x8018F7E0; +D_8018F7E8 = 0x8018F7E8; +D_8018F7F0 = 0x8018F7F0; +D_8018F7F8 = 0x8018F7F8; +D_8018F800 = 0x8018F800; +D_8018F808 = 0x8018F808; +D_8018F810 = 0x8018F810; +D_8018F818 = 0x8018F818; +D_8018F820 = 0x8018F820; +D_8018F828 = 0x8018F828; +D_8018F830 = 0x8018F830; +D_8018F838 = 0x8018F838; +D_8018F840 = 0x8018F840; +D_8018F848 = 0x8018F848; +D_8018F850 = 0x8018F850; +D_8018F858 = 0x8018F858; +D_8018F860 = 0x8018F860; +D_8018F868 = 0x8018F868; +D_8018F870 = 0x8018F870; +D_8018F878 = 0x8018F878; +D_8018F880 = 0x8018F880; +D_8018F888 = 0x8018F888; +D_8018F890 = 0x8018F890; +D_8018F898 = 0x8018F898; +D_8018F8A0 = 0x8018F8A0; +D_8018F8A8 = 0x8018F8A8; +D_8018F8B0 = 0x8018F8B0; +D_8018F8B8 = 0x8018F8B8; +D_8018F8C0 = 0x8018F8C0; +D_8018F8C8 = 0x8018F8C8; +D_8018F8D0 = 0x8018F8D0; +D_8018F8D8 = 0x8018F8D8; +D_8018F8E0 = 0x8018F8E0; +D_8018F8E8 = 0x8018F8E8; +D_8018F8F0 = 0x8018F8F0; +D_8018F8F8 = 0x8018F8F8; +D_8018F900 = 0x8018F900; +D_8018F908 = 0x8018F908; +D_8018F910 = 0x8018F910; +D_8018F918 = 0x8018F918; +D_8018F920 = 0x8018F920; +D_8018F928 = 0x8018F928; +D_8018F930 = 0x8018F930; +D_8018F938 = 0x8018F938; +D_8018F940 = 0x8018F940; +D_8018F948 = 0x8018F948; +D_8018F950 = 0x8018F950; +D_8018F958 = 0x8018F958; +D_8018F960 = 0x8018F960; +D_8018F968 = 0x8018F968; +D_8018F970 = 0x8018F970; +D_8018F978 = 0x8018F978; +D_8018F980 = 0x8018F980; +D_8018F988 = 0x8018F988; +D_8018F990 = 0x8018F990; +D_8018F998 = 0x8018F998; +D_8018F9A0 = 0x8018F9A0; +D_80192228 = 0x80192228; +D_80193358 = 0x80193358; +D_80194018 = 0x80194018; +D_80195274 = 0x80195274; +D_801A7438 = 0x801A7438; +D_801A7444 = 0x801A7444; +D_801A7450 = 0x801A7450; +D_801A7460 = 0x801A7460; +D_801A7468 = 0x801A7468; +D_801A7470 = 0x801A7470; +D_801A7480 = 0x801A7480; +D_801A748C = 0x801A748C; +D_801A7498 = 0x801A7498; +D_801A74A4 = 0x801A74A4; +D_801A74B0 = 0x801A74B0; +D_801A74C0 = 0x801A74C0; +D_801A74CC = 0x801A74CC; +D_801A74D8 = 0x801A74D8; +D_801A74E0 = 0x801A74E0; +D_801A74E8 = 0x801A74E8; +D_801A74F4 = 0x801A74F4; +D_801A7500 = 0x801A7500; +D_801A7510 = 0x801A7510; +D_801A751C = 0x801A751C; +D_801A7524 = 0x801A7524; +D_801A752C = 0x801A752C; +D_801A7534 = 0x801A7534; +D_801A7540 = 0x801A7540; +D_801A754C = 0x801A754C; +D_801A7558 = 0x801A7558; +D_801A755C = 0x801A755C; +D_801A7568 = 0x801A7568; +D_801A7574 = 0x801A7574; +D_801A757C = 0x801A757C; +D_801A7584 = 0x801A7584; +D_801A758C = 0x801A758C; +D_801A7598 = 0x801A7598; +D_801A75CC = 0x801A75CC; +D_801A75D4 = 0x801A75D4; +D_801A75DC = 0x801A75DC; +D_801A75E8 = 0x801A75E8; +D_801A75EC = 0x801A75EC; +D_801A75F4 = 0x801A75F4; +D_801A7600 = 0x801A7600; +D_801A7608 = 0x801A7608; +D_801A7610 = 0x801A7610; +D_801A7618 = 0x801A7618; +D_801A7624 = 0x801A7624; +D_801A7628 = 0x801A7628; +D_801A762C = 0x801A762C; +D_801A7630 = 0x801A7630; +D_801A7634 = 0x801A7634; +D_801A7638 = 0x801A7638; +D_801A763C = 0x801A763C; +D_801A7640 = 0x801A7640; +D_801A7644 = 0x801A7644; +D_801A7648 = 0x801A7648; +D_801A764C = 0x801A764C; +D_801A7650 = 0x801A7650; +D_801A7654 = 0x801A7654; +D_801A7658 = 0x801A7658; +D_801A765C = 0x801A765C; +D_801A7660 = 0x801A7660; +D_801A7664 = 0x801A7664; +D_801A7668 = 0x801A7668; +D_801A766C = 0x801A766C; +D_801A7670 = 0x801A7670; +D_801A7674 = 0x801A7674; +D_801A7678 = 0x801A7678; +D_801A767C = 0x801A767C; +D_801A7680 = 0x801A7680; +D_801A7684 = 0x801A7684; +D_801A7688 = 0x801A7688; +D_801A768C = 0x801A768C; +D_801A7690 = 0x801A7690; +D_801A7694 = 0x801A7694; +D_801A7698 = 0x801A7698; +D_801A769C = 0x801A769C; +D_801A76A0 = 0x801A76A0; +D_801A76F0 = 0x801A76F0; +D_801A7704 = 0x801A7704; +D_801A7714 = 0x801A7714; +D_801A7728 = 0x801A7728; +D_801A7738 = 0x801A7738; +D_801A7748 = 0x801A7748; +D_801A7B60 = 0x801A7B60; +D_801A7B70 = 0x801A7B70; +D_801A7CD4 = 0x801A7CD4; +D_801A7CE0 = 0x801A7CE0; +D_801A7CE8 = 0x801A7CE8; +D_801A7DD4 = 0x801A7DD4; +D_801A7DDC = 0x801A7DDC; +D_801A7DE4 = 0x801A7DE4; +D_801A7DEC = 0x801A7DEC; +D_801A7DF4 = 0x801A7DF4; +D_801A7DFC = 0x801A7DFC; +D_801A7E04 = 0x801A7E04; +D_801A7E0C = 0x801A7E0C; +D_801A7E14 = 0x801A7E14; +D_801A7E1C = 0x801A7E1C; +D_801A7E24 = 0x801A7E24; +D_801A7E2C = 0x801A7E2C; +D_801A7E34 = 0x801A7E34; +D_801A7E3C = 0x801A7E3C; +D_801A7E44 = 0x801A7E44; +D_801A7E50 = 0x801A7E50; +D_801A7E54 = 0x801A7E54; +D_801A7E58 = 0x801A7E58; +D_801A7E5C = 0x801A7E5C; +D_801A7E60 = 0x801A7E60; +D_801A7E64 = 0x801A7E64; +D_801A7E68 = 0x801A7E68; +D_801A7E6C = 0x801A7E6C; +D_801A7E70 = 0x801A7E70; +D_801A7E74 = 0x801A7E74; +D_801A7E78 = 0x801A7E78; +D_801A7E7C = 0x801A7E7C; +D_801A7E80 = 0x801A7E80; +D_801A7E84 = 0x801A7E84; +D_801A7E88 = 0x801A7E88; +D_801A7E8C = 0x801A7E8C; +D_801A7E90 = 0x801A7E90; +D_801A7E94 = 0x801A7E94; +D_801A7E98 = 0x801A7E98; +D_801A7E9C = 0x801A7E9C; +D_801A7EA0 = 0x801A7EA0; +D_801A7EA4 = 0x801A7EA4; +D_801A7EA8 = 0x801A7EA8; +D_801A7EAC = 0x801A7EAC; +D_801A7EB0 = 0x801A7EB0; +D_801A7EB4 = 0x801A7EB4; +D_801A7EB8 = 0x801A7EB8; +D_801A7EBC = 0x801A7EBC; +D_801A7EC0 = 0x801A7EC0; +D_801A7EC4 = 0x801A7EC4; +D_801A7EC8 = 0x801A7EC8; +D_801A7ECC = 0x801A7ECC; +D_801A7EDC = 0x801A7EDC; +D_801A7EEC = 0x801A7EEC; +D_801A7EF8 = 0x801A7EF8; +D_801A7F04 = 0x801A7F04; +D_801A7F14 = 0x801A7F14; +D_801A7F20 = 0x801A7F20; +D_801A7F28 = 0x801A7F28; +D_801A7F34 = 0x801A7F34; +D_801A7F40 = 0x801A7F40; +D_801A7F4C = 0x801A7F4C; +D_801A7F58 = 0x801A7F58; +D_801A7F68 = 0x801A7F68; +D_801A7F74 = 0x801A7F74; +D_801A7F84 = 0x801A7F84; +D_801A7F8C = 0x801A7F8C; +D_801A7F98 = 0x801A7F98; +D_801A7F9C = 0x801A7F9C; +D_801A7FA8 = 0x801A7FA8; +D_801A7FB0 = 0x801A7FB0; +D_801A7FB8 = 0x801A7FB8; +D_801A7FC8 = 0x801A7FC8; +D_801A7FD4 = 0x801A7FD4; +D_801A7FDC = 0x801A7FDC; +D_801A7FE8 = 0x801A7FE8; +D_801A8040 = 0x801A8040; +D_801A8044 = 0x801A8044; +D_801A8048 = 0x801A8048; +D_801A8060 = 0x801A8060; +D_801A8070 = 0x801A8070; +D_801A8088 = 0x801A8088; +D_801A8098 = 0x801A8098; +D_801A80B8 = 0x801A80B8; +D_801A80C8 = 0x801A80C8; +D_801A80EC = 0x801A80EC; +D_801A80F8 = 0x801A80F8; +D_801A8114 = 0x801A8114; +D_801A8124 = 0x801A8124; +D_801A8144 = 0x801A8144; +D_801A8154 = 0x801A8154; +D_801A816C = 0x801A816C; +D_801A817C = 0x801A817C; +D_801A8194 = 0x801A8194; +D_801A819C = 0x801A819C; +D_801A81BC = 0x801A81BC; +D_801A81CC = 0x801A81CC; +D_801A81E8 = 0x801A81E8; +D_801A81F0 = 0x801A81F0; +D_801A8210 = 0x801A8210; +D_801A8220 = 0x801A8220; +D_801A823C = 0x801A823C; +D_801A824C = 0x801A824C; +D_801A8268 = 0x801A8268; +D_801A8278 = 0x801A8278; +D_801A8298 = 0x801A8298; +D_801A82A8 = 0x801A82A8; +D_801A82C8 = 0x801A82C8; +D_801A82D8 = 0x801A82D8; +D_801A82FC = 0x801A82FC; +D_801A830C = 0x801A830C; +D_801A832C = 0x801A832C; +D_801A833C = 0x801A833C; +D_801A835C = 0x801A835C; +D_801A836C = 0x801A836C; +D_801A838C = 0x801A838C; +D_801A839C = 0x801A839C; +D_801A83BC = 0x801A83BC; +D_801A83CC = 0x801A83CC; +D_801A83EC = 0x801A83EC; +D_801A83FC = 0x801A83FC; +D_801A841C = 0x801A841C; +D_801A8424 = 0x801A8424; +D_801A8440 = 0x801A8440; +D_801A844C = 0x801A844C; +D_801A8464 = 0x801A8464; +D_801A8470 = 0x801A8470; +D_801A848C = 0x801A848C; +D_801A8498 = 0x801A8498; +D_801A84B8 = 0x801A84B8; +D_801A84C4 = 0x801A84C4; +D_801A84E4 = 0x801A84E4; +D_801A84F4 = 0x801A84F4; +D_801A8514 = 0x801A8514; +D_801A8520 = 0x801A8520; +D_801A8544 = 0x801A8544; +D_801A8550 = 0x801A8550; +D_801A8574 = 0x801A8574; +D_801A8584 = 0x801A8584; +D_801A85A8 = 0x801A85A8; +D_801A85B4 = 0x801A85B4; +D_801A85D0 = 0x801A85D0; +D_801A85E0 = 0x801A85E0; +D_801A85FC = 0x801A85FC; +D_801A860C = 0x801A860C; +D_801A862C = 0x801A862C; +D_801A8638 = 0x801A8638; +D_801A8654 = 0x801A8654; +D_801A8664 = 0x801A8664; +D_801A8680 = 0x801A8680; +D_801A868C = 0x801A868C; +D_801A86A4 = 0x801A86A4; +D_801A86B0 = 0x801A86B0; +D_801A86CC = 0x801A86CC; +D_801A86D8 = 0x801A86D8; +D_801A86E8 = 0x801A86E8; +D_801A86F4 = 0x801A86F4; +D_801A8708 = 0x801A8708; +D_801A8718 = 0x801A8718; +D_801A8724 = 0x801A8724; +D_801A872C = 0x801A872C; +D_801A8748 = 0x801A8748; +D_801A8758 = 0x801A8758; +D_801A8770 = 0x801A8770; +D_801A8780 = 0x801A8780; +D_801A87A0 = 0x801A87A0; +D_801A87AC = 0x801A87AC; +D_801A87CC = 0x801A87CC; +D_801A87DC = 0x801A87DC; +D_801A87F8 = 0x801A87F8; +D_801A8808 = 0x801A8808; +D_801A8824 = 0x801A8824; +D_801A8834 = 0x801A8834; +D_801A8850 = 0x801A8850; +D_801A885C = 0x801A885C; +D_801A8878 = 0x801A8878; +D_801A8888 = 0x801A8888; +D_801A88A4 = 0x801A88A4; +D_801A88B4 = 0x801A88B4; +D_801A88C0 = 0x801A88C0; +D_801A88D8 = 0x801A88D8; +D_801A88E0 = 0x801A88E0; +D_801A8900 = 0x801A8900; +D_801A8910 = 0x801A8910; +D_801A8934 = 0x801A8934; +D_801A8940 = 0x801A8940; +D_801A8964 = 0x801A8964; +D_801A8974 = 0x801A8974; +D_801A8988 = 0x801A8988; +D_801A8994 = 0x801A8994; +D_801A89B0 = 0x801A89B0; +D_801A89C0 = 0x801A89C0; +D_801A89D8 = 0x801A89D8; +D_801A89E4 = 0x801A89E4; +D_801A8A04 = 0x801A8A04; +D_801A8A10 = 0x801A8A10; +D_801A8A30 = 0x801A8A30; +D_801A8A40 = 0x801A8A40; +D_801A8A58 = 0x801A8A58; +D_801A8A60 = 0x801A8A60; +D_801A8A7C = 0x801A8A7C; +D_801A8A8C = 0x801A8A8C; +D_801A8AA4 = 0x801A8AA4; +D_801A8AAC = 0x801A8AAC; +D_801A8AC4 = 0x801A8AC4; +D_801A8AD0 = 0x801A8AD0; +D_801A8AE8 = 0x801A8AE8; +D_801A8AF8 = 0x801A8AF8; +D_801A8B14 = 0x801A8B14; +D_801A8B24 = 0x801A8B24; +D_801A8B3C = 0x801A8B3C; +D_801A8B48 = 0x801A8B48; +D_801A8B68 = 0x801A8B68; +D_801A8B74 = 0x801A8B74; +D_801A8B90 = 0x801A8B90; +D_801A8B98 = 0x801A8B98; +D_801A8BAC = 0x801A8BAC; +D_801A8BB4 = 0x801A8BB4; +D_801A8BD0 = 0x801A8BD0; +D_801A8BDC = 0x801A8BDC; +D_801A8BF8 = 0x801A8BF8; +D_801A8C08 = 0x801A8C08; +D_801A8C18 = 0x801A8C18; +D_801A8C28 = 0x801A8C28; +D_801A8C48 = 0x801A8C48; +D_801A8C50 = 0x801A8C50; +D_801A8C6C = 0x801A8C6C; +D_801A8C7C = 0x801A8C7C; +D_801A8C9C = 0x801A8C9C; +D_801A8CAC = 0x801A8CAC; +D_801A8CD0 = 0x801A8CD0; +D_801A8CDC = 0x801A8CDC; +D_801A8CF8 = 0x801A8CF8; +D_801A8D04 = 0x801A8D04; +D_801A8D18 = 0x801A8D18; +D_801A8D24 = 0x801A8D24; +D_801A8D38 = 0x801A8D38; +D_801A8D40 = 0x801A8D40; +D_801A8D5C = 0x801A8D5C; +D_801A8D68 = 0x801A8D68; +D_801A8D84 = 0x801A8D84; +D_801A8D90 = 0x801A8D90; +D_801A8DA8 = 0x801A8DA8; +D_801A8DB4 = 0x801A8DB4; +D_801A8DD0 = 0x801A8DD0; +D_801A8DE0 = 0x801A8DE0; +D_801A8E00 = 0x801A8E00; +D_801A8E0C = 0x801A8E0C; +D_801A8E20 = 0x801A8E20; +D_801A8E2C = 0x801A8E2C; +D_801A8E44 = 0x801A8E44; +D_801A8E50 = 0x801A8E50; +D_801A8E6C = 0x801A8E6C; +D_801A8E78 = 0x801A8E78; +D_801A8E98 = 0x801A8E98; +D_801A8EA8 = 0x801A8EA8; +D_801A8EC8 = 0x801A8EC8; +D_801A8ED0 = 0x801A8ED0; +D_801A8EF0 = 0x801A8EF0; +D_801A8EFC = 0x801A8EFC; +D_801A8F20 = 0x801A8F20; +D_801A8F30 = 0x801A8F30; +D_801A8F50 = 0x801A8F50; +D_801A8F60 = 0x801A8F60; +D_801A8F80 = 0x801A8F80; +D_801A8F8C = 0x801A8F8C; +D_801A8F9C = 0x801A8F9C; +D_801A8FA8 = 0x801A8FA8; +D_801A8FB8 = 0x801A8FB8; +D_801A8FD4 = 0x801A8FD4; +D_801A8FE4 = 0x801A8FE4; +D_801A9000 = 0x801A9000; +D_801A9010 = 0x801A9010; +D_801A9028 = 0x801A9028; +D_801A9030 = 0x801A9030; +D_801A9048 = 0x801A9048; +D_801A9054 = 0x801A9054; +D_801A9074 = 0x801A9074; +D_801A9080 = 0x801A9080; +D_801A909C = 0x801A909C; +D_801A90AC = 0x801A90AC; +D_801A90CC = 0x801A90CC; +D_801A90DC = 0x801A90DC; +D_801A90FC = 0x801A90FC; +D_801A910C = 0x801A910C; +D_801A9128 = 0x801A9128; +D_801A9134 = 0x801A9134; +D_801A9150 = 0x801A9150; +D_801A9158 = 0x801A9158; +D_801A9174 = 0x801A9174; +D_801A9180 = 0x801A9180; +D_801A91A0 = 0x801A91A0; +D_801A91A8 = 0x801A91A8; +D_801A91CC = 0x801A91CC; +D_801A91D4 = 0x801A91D4; +D_801A91F0 = 0x801A91F0; +D_801A91FC = 0x801A91FC; +D_801A9214 = 0x801A9214; +D_801A9220 = 0x801A9220; +D_801A9238 = 0x801A9238; +D_801A9248 = 0x801A9248; +D_801A9264 = 0x801A9264; +D_801A9270 = 0x801A9270; +D_801A9284 = 0x801A9284; +D_801A9294 = 0x801A9294; +D_801A92B8 = 0x801A92B8; +D_801A92C4 = 0x801A92C4; +D_801A92D8 = 0x801A92D8; +D_801A92E4 = 0x801A92E4; +D_801A92F8 = 0x801A92F8; +D_801A9304 = 0x801A9304; +D_801A9324 = 0x801A9324; +D_801A9334 = 0x801A9334; +D_801A9350 = 0x801A9350; +D_801A935C = 0x801A935C; +D_801A937C = 0x801A937C; +D_801A938C = 0x801A938C; +D_801A93A8 = 0x801A93A8; +D_801A93B0 = 0x801A93B0; +D_801A93CC = 0x801A93CC; +D_801A93D4 = 0x801A93D4; +D_801A93F0 = 0x801A93F0; +D_801A93FC = 0x801A93FC; +D_801A9414 = 0x801A9414; +D_801A9424 = 0x801A9424; +D_801A9440 = 0x801A9440; +D_801A944C = 0x801A944C; +D_801A9460 = 0x801A9460; +D_801A946C = 0x801A946C; +D_801A9488 = 0x801A9488; +D_801A9494 = 0x801A9494; +D_801A94AC = 0x801A94AC; +D_801A94B4 = 0x801A94B4; +D_801A94D4 = 0x801A94D4; +D_801A94E0 = 0x801A94E0; +D_801A9500 = 0x801A9500; +D_801A950C = 0x801A950C; +D_801A9528 = 0x801A9528; +D_801A9534 = 0x801A9534; +D_801A9550 = 0x801A9550; +D_801A955C = 0x801A955C; +D_801A9578 = 0x801A9578; +D_801A9584 = 0x801A9584; +D_801A95A0 = 0x801A95A0; +D_801A95AC = 0x801A95AC; +D_801A95C8 = 0x801A95C8; +D_801A95D4 = 0x801A95D4; +D_801A95F4 = 0x801A95F4; +D_801A95FC = 0x801A95FC; +D_801A961C = 0x801A961C; +D_801A9624 = 0x801A9624; +D_801A9644 = 0x801A9644; +D_801A964C = 0x801A964C; +D_801A9668 = 0x801A9668; +D_801A9670 = 0x801A9670; +D_801A9688 = 0x801A9688; +D_801A9690 = 0x801A9690; +D_801A96AC = 0x801A96AC; +D_801A96B8 = 0x801A96B8; +D_801A96D4 = 0x801A96D4; +D_801A96E0 = 0x801A96E0; +D_801A9700 = 0x801A9700; +D_801A9710 = 0x801A9710; +D_801A9730 = 0x801A9730; +D_801A973C = 0x801A973C; +D_801A9750 = 0x801A9750; +D_801A9758 = 0x801A9758; +D_801A9778 = 0x801A9778; +D_801A9784 = 0x801A9784; +D_801A97A4 = 0x801A97A4; +D_801A97B0 = 0x801A97B0; +D_801A97C4 = 0x801A97C4; +D_801A97D4 = 0x801A97D4; +D_801A97E8 = 0x801A97E8; +D_801A97F8 = 0x801A97F8; +D_801A980C = 0x801A980C; +D_801A9818 = 0x801A9818; +D_801A9838 = 0x801A9838; +D_801A9848 = 0x801A9848; +D_801A9860 = 0x801A9860; +D_801A9870 = 0x801A9870; +D_801A988C = 0x801A988C; +D_801A989C = 0x801A989C; +D_801A98B8 = 0x801A98B8; +D_801A98C8 = 0x801A98C8; +D_801A98E0 = 0x801A98E0; +D_801A98F0 = 0x801A98F0; +D_801A990C = 0x801A990C; +D_801A991C = 0x801A991C; +D_801A9938 = 0x801A9938; +D_801A9948 = 0x801A9948; +D_801A995C = 0x801A995C; +D_801A996C = 0x801A996C; +D_801A9984 = 0x801A9984; +D_801A9994 = 0x801A9994; +D_801A99B4 = 0x801A99B4; +D_801A99C4 = 0x801A99C4; +D_801A99D8 = 0x801A99D8; +D_801A99E8 = 0x801A99E8; +D_801A9A04 = 0x801A9A04; +D_801A9A14 = 0x801A9A14; +D_801A9A30 = 0x801A9A30; +D_801A9A40 = 0x801A9A40; +D_801A9A5C = 0x801A9A5C; +D_801A9A68 = 0x801A9A68; +D_801A9A88 = 0x801A9A88; +D_801A9A98 = 0x801A9A98; +D_801A9AB4 = 0x801A9AB4; +D_801A9AC4 = 0x801A9AC4; +D_801A9AE0 = 0x801A9AE0; +D_801A9AF0 = 0x801A9AF0; +D_801A9B0C = 0x801A9B0C; +D_801A9B18 = 0x801A9B18; +D_801A9B3C = 0x801A9B3C; +D_801A9B4C = 0x801A9B4C; +D_801A9B6C = 0x801A9B6C; +D_801A9B7C = 0x801A9B7C; +D_801A9B98 = 0x801A9B98; +D_801A9BA4 = 0x801A9BA4; +D_801A9BC0 = 0x801A9BC0; +D_801A9BD0 = 0x801A9BD0; +D_801A9BEC = 0x801A9BEC; +D_801A9BFC = 0x801A9BFC; +D_801A9C18 = 0x801A9C18; +D_801A9C24 = 0x801A9C24; +D_801A9C3C = 0x801A9C3C; +D_801A9C48 = 0x801A9C48; +D_801A9C5C = 0x801A9C5C; +D_801A9C64 = 0x801A9C64; +D_801A9C80 = 0x801A9C80; +D_801A9C90 = 0x801A9C90; +D_801A9CAC = 0x801A9CAC; +D_801A9CBC = 0x801A9CBC; +D_801A9CC4 = 0x801A9CC4; +D_801A9CD0 = 0x801A9CD0; +D_801A9CD8 = 0x801A9CD8; +D_801A9CE8 = 0x801A9CE8; +D_801A9D04 = 0x801A9D04; +D_801A9D14 = 0x801A9D14; +D_801A9D34 = 0x801A9D34; +D_801A9D44 = 0x801A9D44; +D_801A9D64 = 0x801A9D64; +D_801A9D74 = 0x801A9D74; +D_801A9D94 = 0x801A9D94; +D_801A9DA4 = 0x801A9DA4; +D_801A9DCC = 0x801A9DCC; +D_801A9DDC = 0x801A9DDC; +D_801A9E08 = 0x801A9E08; +D_801A9E14 = 0x801A9E14; +D_801A9E34 = 0x801A9E34; +D_801A9E44 = 0x801A9E44; +D_801A9E5C = 0x801A9E5C; +D_801A9E6C = 0x801A9E6C; +D_801A9E90 = 0x801A9E90; +D_801A9E9C = 0x801A9E9C; +D_801A9EA4 = 0x801A9EA4; +D_801A9EAC = 0x801A9EAC; +D_801A9EC8 = 0x801A9EC8; +D_801A9ED0 = 0x801A9ED0; +D_801A9EDC = 0x801A9EDC; +D_801A9F00 = 0x801A9F00; +D_801A9F0C = 0x801A9F0C; +D_801A9F28 = 0x801A9F28; +D_801A9F30 = 0x801A9F30; +D_801A9F48 = 0x801A9F48; +D_801A9F58 = 0x801A9F58; +D_801A9F74 = 0x801A9F74; +D_801A9F80 = 0x801A9F80; +D_801A9FA0 = 0x801A9FA0; +D_801A9FAC = 0x801A9FAC; +D_801A9FCC = 0x801A9FCC; +D_801A9FD8 = 0x801A9FD8; +D_801A9FF8 = 0x801A9FF8; +D_801AA004 = 0x801AA004; +D_801AA01C = 0x801AA01C; +D_801AA02C = 0x801AA02C; +D_801AA04C = 0x801AA04C; +D_801AA05C = 0x801AA05C; +D_801AA078 = 0x801AA078; +D_801AA088 = 0x801AA088; +D_801AA09C = 0x801AA09C; +D_801AA0AC = 0x801AA0AC; +D_801AA0CC = 0x801AA0CC; +D_801AA0DC = 0x801AA0DC; +D_801AA0FC = 0x801AA0FC; +D_801AA10C = 0x801AA10C; +D_801AA12C = 0x801AA12C; +D_801AA13C = 0x801AA13C; +D_801AA15C = 0x801AA15C; +D_801AA168 = 0x801AA168; +D_801AA188 = 0x801AA188; +D_801AA194 = 0x801AA194; +D_801AA1AC = 0x801AA1AC; +D_801AA1BC = 0x801AA1BC; +D_801AA1DC = 0x801AA1DC; +D_801AA1EC = 0x801AA1EC; +D_801AA200 = 0x801AA200; +D_801AA210 = 0x801AA210; +D_801AA230 = 0x801AA230; +D_801AA240 = 0x801AA240; +D_801AA260 = 0x801AA260; +D_801AA270 = 0x801AA270; +D_801AA290 = 0x801AA290; +D_801AA2A0 = 0x801AA2A0; +D_801AA2BC = 0x801AA2BC; +D_801AA2CC = 0x801AA2CC; +D_801AA2E8 = 0x801AA2E8; +D_801AA2F8 = 0x801AA2F8; +D_801AA314 = 0x801AA314; +D_801AA324 = 0x801AA324; +D_801AA32C = 0x801AA32C; +D_801AA338 = 0x801AA338; +D_801AA358 = 0x801AA358; +D_801AA364 = 0x801AA364; +D_801AA380 = 0x801AA380; +D_801AA38C = 0x801AA38C; +D_801AA3A8 = 0x801AA3A8; +D_801AA3B8 = 0x801AA3B8; +D_801AA3CC = 0x801AA3CC; +D_801AA3DC = 0x801AA3DC; +D_801AA3F8 = 0x801AA3F8; +D_801AA404 = 0x801AA404; +D_801AA410 = 0x801AA410; +D_801AA41C = 0x801AA41C; +D_801AA428 = 0x801AA428; +D_801AA434 = 0x801AA434; +D_801AA454 = 0x801AA454; +D_801AA460 = 0x801AA460; +D_801AA474 = 0x801AA474; +D_801AA484 = 0x801AA484; +D_801AA49C = 0x801AA49C; +D_801AA4A8 = 0x801AA4A8; +D_801AA4C8 = 0x801AA4C8; +D_801AA4D8 = 0x801AA4D8; +D_801AA4F0 = 0x801AA4F0; +D_801AA4FC = 0x801AA4FC; +D_801AA51C = 0x801AA51C; +D_801AA52C = 0x801AA52C; +D_801AA54C = 0x801AA54C; +D_801AA558 = 0x801AA558; +D_801AA578 = 0x801AA578; +D_801AA584 = 0x801AA584; +D_801AA5A4 = 0x801AA5A4; +D_801AA5B4 = 0x801AA5B4; +D_801AA5D4 = 0x801AA5D4; +D_801AA5E0 = 0x801AA5E0; +D_801AA5FC = 0x801AA5FC; +D_801AA608 = 0x801AA608; +D_801AA624 = 0x801AA624; +D_801AA634 = 0x801AA634; +D_801AA650 = 0x801AA650; +D_801AA65C = 0x801AA65C; +D_801AA67C = 0x801AA67C; +D_801AA68C = 0x801AA68C; +D_801AA6A4 = 0x801AA6A4; +D_801AA6B4 = 0x801AA6B4; +D_801AA6D0 = 0x801AA6D0; +D_801AA6E0 = 0x801AA6E0; +D_801AA700 = 0x801AA700; +D_801AA70C = 0x801AA70C; +D_801AA72C = 0x801AA72C; +D_801AA73C = 0x801AA73C; +D_801AA75C = 0x801AA75C; +D_801AA768 = 0x801AA768; +D_801AA77C = 0x801AA77C; +D_801AA78C = 0x801AA78C; +D_801AA7A4 = 0x801AA7A4; +D_801AA7B4 = 0x801AA7B4; +D_801AA7C8 = 0x801AA7C8; +D_801AA7D4 = 0x801AA7D4; +D_801AA7E8 = 0x801AA7E8; +D_801AA7F8 = 0x801AA7F8; +D_801AA808 = 0x801AA808; +D_801AA818 = 0x801AA818; +D_801AA828 = 0x801AA828; +D_801AA838 = 0x801AA838; +D_801AA848 = 0x801AA848; +D_801AA858 = 0x801AA858; +D_801AA870 = 0x801AA870; +D_801AA880 = 0x801AA880; +D_801AA894 = 0x801AA894; +D_801AA8A4 = 0x801AA8A4; +D_801AA8AC = 0x801AA8AC; +D_801AA8B4 = 0x801AA8B4; +D_801AA8C0 = 0x801AA8C0; +D_801AA8C8 = 0x801AA8C8; +D_801AA8D4 = 0x801AA8D4; +D_801AA8DC = 0x801AA8DC; +D_801AA8E4 = 0x801AA8E4; +D_801AA8F0 = 0x801AA8F0; +D_801AA8F8 = 0x801AA8F8; +D_801AA900 = 0x801AA900; +D_801AA90C = 0x801AA90C; +D_801AA918 = 0x801AA918; +D_801AA92C = 0x801AA92C; +D_801AA93C = 0x801AA93C; +D_801AA948 = 0x801AA948; +D_801AA950 = 0x801AA950; +D_801AA958 = 0x801AA958; +D_801AA960 = 0x801AA960; +D_801AA968 = 0x801AA968; +D_801AA974 = 0x801AA974; +D_801AA980 = 0x801AA980; +D_801AA98C = 0x801AA98C; +D_801AA998 = 0x801AA998; +D_801AA9A4 = 0x801AA9A4; +D_801AA9BC = 0x801AA9BC; +D_801AA9DC = 0x801AA9DC; +D_801AA9FC = 0x801AA9FC; +D_801AAA10 = 0x801AAA10; +D_801AAA24 = 0x801AAA24; +D_801AAA38 = 0x801AAA38; +D_801AAA50 = 0x801AAA50; +D_801AAA64 = 0x801AAA64; +D_801AAA7C = 0x801AAA7C; +D_801AAA94 = 0x801AAA94; +D_801AAAAC = 0x801AAAAC; +D_801AAABC = 0x801AAABC; +D_801AAAD4 = 0x801AAAD4; +D_801AAAE8 = 0x801AAAE8; +D_801AAAF8 = 0x801AAAF8; +D_801AAB18 = 0x801AAB18; +D_801AAB2C = 0x801AAB2C; +D_801AAB40 = 0x801AAB40; +D_801AAB54 = 0x801AAB54; +D_801AAB68 = 0x801AAB68; +D_801AAB84 = 0x801AAB84; +D_801AAB94 = 0x801AAB94; +D_801AABB4 = 0x801AABB4; +D_801AABC8 = 0x801AABC8; +D_801AABE0 = 0x801AABE0; +D_801AABF0 = 0x801AABF0; +D_801AAC0C = 0x801AAC0C; +D_801AAC14 = 0x801AAC14; +D_801AAC1C = 0x801AAC1C; +D_801AAC24 = 0x801AAC24; +D_801AAC2C = 0x801AAC2C; +D_801AAC34 = 0x801AAC34; +D_801AAC3C = 0x801AAC3C; +D_801AAC48 = 0x801AAC48; +D_801AAC50 = 0x801AAC50; +D_801AAC58 = 0x801AAC58; +D_801AAC64 = 0x801AAC64; +D_801AAC84 = 0x801AAC84; +D_801AAC8C = 0x801AAC8C; +D_801AAC94 = 0x801AAC94; +D_801AAC9C = 0x801AAC9C; +D_801AACA4 = 0x801AACA4; +D_801AACB4 = 0x801AACB4; +D_801AACC4 = 0x801AACC4; +D_801AACCC = 0x801AACCC; +D_801AACD4 = 0x801AACD4; +D_801AACDC = 0x801AACDC; +D_801AACE8 = 0x801AACE8; +D_801AACF0 = 0x801AACF0; +D_801AACF8 = 0x801AACF8; +D_801AAD00 = 0x801AAD00; +D_801AAD08 = 0x801AAD08; +D_801AAD10 = 0x801AAD10; +D_801AAD1C = 0x801AAD1C; +D_801AAD24 = 0x801AAD24; +D_801AAD30 = 0x801AAD30; +D_801AAD3C = 0x801AAD3C; +D_801AAD44 = 0x801AAD44; +D_801AAD50 = 0x801AAD50; +D_801AAD58 = 0x801AAD58; +D_801AAD68 = 0x801AAD68; +D_801AAD78 = 0x801AAD78; +D_801AAD8C = 0x801AAD8C; +D_801AAD94 = 0x801AAD94; +D_801AAD9C = 0x801AAD9C; +D_801AADA0 = 0x801AADA0; +D_801AADA4 = 0x801AADA4; +D_801AADAC = 0x801AADAC; +D_801AADB4 = 0x801AADB4; +D_801AADBC = 0x801AADBC; +D_801AADC4 = 0x801AADC4; +D_801AADCC = 0x801AADCC; +D_801AADD4 = 0x801AADD4; +D_801AADDC = 0x801AADDC; +D_801AADE4 = 0x801AADE4; +D_801AADEC = 0x801AADEC; +D_801AADF4 = 0x801AADF4; +D_801AADFC = 0x801AADFC; +D_801AAE08 = 0x801AAE08; +D_801AAE20 = 0x801AAE20; +D_801AAE2C = 0x801AAE2C; +D_801AAE3C = 0x801AAE3C; +D_801AAE54 = 0x801AAE54; +D_801AAE60 = 0x801AAE60; +D_801AAE6C = 0x801AAE6C; +D_801AAE8C = 0x801AAE8C; +D_801AAE98 = 0x801AAE98; +D_801AAEA4 = 0x801AAEA4; +D_801AAEBC = 0x801AAEBC; +D_801AAEC4 = 0x801AAEC4; +D_801AAED0 = 0x801AAED0; +D_801AAEE8 = 0x801AAEE8; +D_801AAEF4 = 0x801AAEF4; +D_801AAF04 = 0x801AAF04; +D_801AAF24 = 0x801AAF24; +D_801AAF2C = 0x801AAF2C; +D_801AAF38 = 0x801AAF38; +D_801AAF50 = 0x801AAF50; +D_801AAF58 = 0x801AAF58; +D_801AAF68 = 0x801AAF68; +D_801AAF84 = 0x801AAF84; +D_801AAF8C = 0x801AAF8C; +D_801AAFA0 = 0x801AAFA0; +D_801AAFC0 = 0x801AAFC0; +D_801AAFCC = 0x801AAFCC; +D_801AAFEC = 0x801AAFEC; +D_801AAFFC = 0x801AAFFC; +D_801AB01C = 0x801AB01C; +D_801AB028 = 0x801AB028; +D_801AB048 = 0x801AB048; +D_801AB058 = 0x801AB058; +D_801AB07C = 0x801AB07C; +D_801AB08C = 0x801AB08C; +D_801AB0B4 = 0x801AB0B4; +D_801AB0C4 = 0x801AB0C4; +D_801AB0E4 = 0x801AB0E4; +D_801AB0F0 = 0x801AB0F0; +D_801AB110 = 0x801AB110; +D_801AB11C = 0x801AB11C; +D_801AB13C = 0x801AB13C; +D_801AB148 = 0x801AB148; +D_801AB168 = 0x801AB168; +D_801AB178 = 0x801AB178; +D_801AB198 = 0x801AB198; +D_801AB1A4 = 0x801AB1A4; +D_801AB1C4 = 0x801AB1C4; +D_801AB1D0 = 0x801AB1D0; +D_801AB1E4 = 0x801AB1E4; +D_801AB1F4 = 0x801AB1F4; +D_801AB210 = 0x801AB210; +D_801AB220 = 0x801AB220; +D_801AB238 = 0x801AB238; +D_801AB248 = 0x801AB248; +D_801AB264 = 0x801AB264; +D_801AB274 = 0x801AB274; +D_801AB290 = 0x801AB290; +D_801AB29C = 0x801AB29C; +D_801AB2B4 = 0x801AB2B4; +D_801AB2C4 = 0x801AB2C4; +D_801AB2D8 = 0x801AB2D8; +D_801AB2E4 = 0x801AB2E4; +D_801AB300 = 0x801AB300; +D_801AB310 = 0x801AB310; +D_801AB330 = 0x801AB330; +D_801AB33C = 0x801AB33C; +D_801AB358 = 0x801AB358; +D_801AB368 = 0x801AB368; +D_801AB37C = 0x801AB37C; +D_801AB38C = 0x801AB38C; +D_801AB3A4 = 0x801AB3A4; +D_801AB3B4 = 0x801AB3B4; +D_801AB3C8 = 0x801AB3C8; +D_801AB3D8 = 0x801AB3D8; +D_801AB3EC = 0x801AB3EC; +D_801AB3FC = 0x801AB3FC; +D_801AB414 = 0x801AB414; +D_801AB424 = 0x801AB424; +D_801AB438 = 0x801AB438; +D_801AB448 = 0x801AB448; +D_801AB460 = 0x801AB460; +D_801AB46C = 0x801AB46C; +D_801AB480 = 0x801AB480; +D_801AB490 = 0x801AB490; +D_801AB49C = 0x801AB49C; +D_801AB4B0 = 0x801AB4B0; +D_801AB4BC = 0x801AB4BC; +D_801AB4CC = 0x801AB4CC; +D_801AB4DC = 0x801AB4DC; +D_801AB4EC = 0x801AB4EC; +D_801AB4F4 = 0x801AB4F4; +D_801AB500 = 0x801AB500; +D_801AB508 = 0x801AB508; +D_801AB510 = 0x801AB510; +D_801AB520 = 0x801AB520; +D_801AB52C = 0x801AB52C; +D_801AB538 = 0x801AB538; +D_801AB544 = 0x801AB544; +D_801AB554 = 0x801AB554; +D_801AB560 = 0x801AB560; +D_801AB568 = 0x801AB568; +D_801AB574 = 0x801AB574; +D_801AB588 = 0x801AB588; +D_801AB590 = 0x801AB590; +D_801AB5A0 = 0x801AB5A0; +D_801AB5AC = 0x801AB5AC; +D_801AB5B8 = 0x801AB5B8; +D_801AB5C8 = 0x801AB5C8; +D_801AB5D0 = 0x801AB5D0; +D_801AB5E0 = 0x801AB5E0; +D_801AB5E8 = 0x801AB5E8; +D_801AB5F4 = 0x801AB5F4; +D_801AB600 = 0x801AB600; +D_801AB610 = 0x801AB610; +D_801AB620 = 0x801AB620; +D_801AB62C = 0x801AB62C; +D_801AB638 = 0x801AB638; +D_801AB640 = 0x801AB640; +D_801AB64C = 0x801AB64C; +D_801AB654 = 0x801AB654; +D_801AB664 = 0x801AB664; +D_801AB670 = 0x801AB670; +D_801AB67C = 0x801AB67C; +D_801AB684 = 0x801AB684; +D_801AB68C = 0x801AB68C; +D_801AB698 = 0x801AB698; +D_801AB6A0 = 0x801AB6A0; +D_801AB6A8 = 0x801AB6A8; +D_801AB6B8 = 0x801AB6B8; +D_801AB6C8 = 0x801AB6C8; +D_801AB6D4 = 0x801AB6D4; +D_801AB6E0 = 0x801AB6E0; +D_801AB6F0 = 0x801AB6F0; +D_801AB700 = 0x801AB700; +D_801AB710 = 0x801AB710; +D_801AB718 = 0x801AB718; +D_801AB728 = 0x801AB728; +D_801AB734 = 0x801AB734; +D_801AB740 = 0x801AB740; +D_801AB74C = 0x801AB74C; +D_801AB75C = 0x801AB75C; +D_801AB76C = 0x801AB76C; +D_801AB774 = 0x801AB774; +D_801AB77C = 0x801AB77C; +D_801AB78C = 0x801AB78C; +D_801AB798 = 0x801AB798; +D_801AB7A8 = 0x801AB7A8; +D_801AB7B4 = 0x801AB7B4; +D_801AB7BC = 0x801AB7BC; +D_801AB7CC = 0x801AB7CC; +D_801AB7D8 = 0x801AB7D8; +D_801AB7E8 = 0x801AB7E8; +D_801AB7F8 = 0x801AB7F8; +D_801AB804 = 0x801AB804; +D_801AB810 = 0x801AB810; +D_801AB81C = 0x801AB81C; +D_801AB828 = 0x801AB828; +D_801AB834 = 0x801AB834; +D_801AB840 = 0x801AB840; +D_801AB848 = 0x801AB848; +D_801AB858 = 0x801AB858; +D_801AB868 = 0x801AB868; +D_801AB874 = 0x801AB874; +D_801AB880 = 0x801AB880; +D_801AB888 = 0x801AB888; +D_801AB898 = 0x801AB898; +D_801AB8AC = 0x801AB8AC; +D_801AB8C0 = 0x801AB8C0; +D_801AB8CC = 0x801AB8CC; +D_801AB8DC = 0x801AB8DC; +D_801AB8EC = 0x801AB8EC; +D_801AB8FC = 0x801AB8FC; +D_801AB90C = 0x801AB90C; +D_801AB91C = 0x801AB91C; +D_801AB92C = 0x801AB92C; +D_801AB934 = 0x801AB934; +D_801AB93C = 0x801AB93C; +D_801AB94C = 0x801AB94C; +D_801AB95C = 0x801AB95C; +D_801AB968 = 0x801AB968; +D_801AB974 = 0x801AB974; +D_801AB980 = 0x801AB980; +D_801AB990 = 0x801AB990; +D_801AB998 = 0x801AB998; +D_801AB9A8 = 0x801AB9A8; +D_801AB9B0 = 0x801AB9B0; +D_801AB9B8 = 0x801AB9B8; +D_801AB9C8 = 0x801AB9C8; +D_801AB9D4 = 0x801AB9D4; +D_801AB9E4 = 0x801AB9E4; +D_801AB9F4 = 0x801AB9F4; +D_801ABA00 = 0x801ABA00; +D_801ABA10 = 0x801ABA10; +D_801ABA20 = 0x801ABA20; +D_801ABA2C = 0x801ABA2C; +D_801ABA38 = 0x801ABA38; +D_801ABA48 = 0x801ABA48; +D_801ABA58 = 0x801ABA58; +D_801ABA64 = 0x801ABA64; +D_801ABA74 = 0x801ABA74; +D_801ABA80 = 0x801ABA80; +D_801ABA90 = 0x801ABA90; +D_801ABAA0 = 0x801ABAA0; +D_801ABAB0 = 0x801ABAB0; +D_801ABAC0 = 0x801ABAC0; +D_801ABAC8 = 0x801ABAC8; +D_801ABAD8 = 0x801ABAD8; +D_801ABAE8 = 0x801ABAE8; +D_801ABAF0 = 0x801ABAF0; +D_801ABAFC = 0x801ABAFC; +D_801ABB08 = 0x801ABB08; +D_801ABB14 = 0x801ABB14; +D_801ABB24 = 0x801ABB24; +D_801ABB30 = 0x801ABB30; +D_801ABB3C = 0x801ABB3C; +D_801ABB4C = 0x801ABB4C; +D_801ABB5C = 0x801ABB5C; +D_801ABB68 = 0x801ABB68; +D_801ABB70 = 0x801ABB70; +D_801ABB78 = 0x801ABB78; +D_801ABB88 = 0x801ABB88; +D_801ABB90 = 0x801ABB90; +D_801ABB9C = 0x801ABB9C; +D_801ABBAC = 0x801ABBAC; +D_801ABBBC = 0x801ABBBC; +D_801ABBCC = 0x801ABBCC; +D_801ABBD8 = 0x801ABBD8; +D_801ABBE4 = 0x801ABBE4; +D_801ABBF0 = 0x801ABBF0; +D_801ABBF4 = 0x801ABBF4; +D_801ABBF8 = 0x801ABBF8; +D_801ABBFC = 0x801ABBFC; +D_801ABC00 = 0x801ABC00; +D_801ABC04 = 0x801ABC04; +D_801ABC08 = 0x801ABC08; +D_801ABC10 = 0x801ABC10; +D_801ABC18 = 0x801ABC18; +D_801ABC1C = 0x801ABC1C; +D_801ABC24 = 0x801ABC24; +D_801ABC28 = 0x801ABC28; +D_801ABC30 = 0x801ABC30; +D_801ABC38 = 0x801ABC38; +D_801ABC40 = 0x801ABC40; +D_801ABC48 = 0x801ABC48; +D_801ABC50 = 0x801ABC50; +D_801ABC58 = 0x801ABC58; +D_801ABC60 = 0x801ABC60; +D_801ABC68 = 0x801ABC68; +D_801ABC70 = 0x801ABC70; +D_801ABC78 = 0x801ABC78; +D_801ABC80 = 0x801ABC80; +D_801ABC88 = 0x801ABC88; +D_801ABC90 = 0x801ABC90; +D_801ABC98 = 0x801ABC98; +D_801ABCA0 = 0x801ABCA0; +D_801ABCA8 = 0x801ABCA8; +D_801ABCB0 = 0x801ABCB0; +D_801ABCB8 = 0x801ABCB8; +D_801ABCC0 = 0x801ABCC0; +D_801ABCC8 = 0x801ABCC8; +D_801ABCD0 = 0x801ABCD0; +D_801ABCD8 = 0x801ABCD8; +D_801ABCE0 = 0x801ABCE0; +D_801ABCE8 = 0x801ABCE8; +D_801ABCF0 = 0x801ABCF0; +D_801ABCF8 = 0x801ABCF8; +D_801ABD00 = 0x801ABD00; +D_801ABD08 = 0x801ABD08; +D_801ABD10 = 0x801ABD10; +D_801ABD18 = 0x801ABD18; +D_801ABD20 = 0x801ABD20; +D_801ABD28 = 0x801ABD28; +D_801ABD30 = 0x801ABD30; +D_801ABD38 = 0x801ABD38; +D_801ABD40 = 0x801ABD40; +D_801ABD48 = 0x801ABD48; +D_801ABD50 = 0x801ABD50; +D_801ABD58 = 0x801ABD58; +D_801ABD60 = 0x801ABD60; +D_801ABD68 = 0x801ABD68; +D_801ABD70 = 0x801ABD70; +D_801ABD78 = 0x801ABD78; +D_801ABD80 = 0x801ABD80; +D_801ABD88 = 0x801ABD88; +D_801ABD90 = 0x801ABD90; +D_801ABD98 = 0x801ABD98; +D_801ABDA0 = 0x801ABDA0; +D_801ABDA8 = 0x801ABDA8; +D_801ABDB0 = 0x801ABDB0; +D_801ABDB8 = 0x801ABDB8; +D_801ABDC0 = 0x801ABDC0; +D_801ABDC8 = 0x801ABDC8; +D_801ABDD0 = 0x801ABDD0; +D_801ABDD8 = 0x801ABDD8; +D_801ABDE0 = 0x801ABDE0; +D_801ABDE8 = 0x801ABDE8; +D_801ABDF0 = 0x801ABDF0; +D_801ABDF8 = 0x801ABDF8; +D_801ABE00 = 0x801ABE00; +D_801ABE08 = 0x801ABE08; +D_801ABE10 = 0x801ABE10; +D_801ABE18 = 0x801ABE18; +D_801ABE20 = 0x801ABE20; +D_801ABE24 = 0x801ABE24; +D_801ABE2C = 0x801ABE2C; +D_801ABE34 = 0x801ABE34; +D_801ABE38 = 0x801ABE38; +D_801ABE40 = 0x801ABE40; +D_801ABE44 = 0x801ABE44; +D_801ABE4C = 0x801ABE4C; +D_801ABE50 = 0x801ABE50; +D_801ABE58 = 0x801ABE58; +D_801ABE5C = 0x801ABE5C; +D_801ABE64 = 0x801ABE64; +D_801ABE68 = 0x801ABE68; +D_801ABE6C = 0x801ABE6C; +D_801ABE74 = 0x801ABE74; +D_801ABE78 = 0x801ABE78; +D_801ABE7C = 0x801ABE7C; +D_801ABE84 = 0x801ABE84; +D_801ABE88 = 0x801ABE88; +D_801ABE90 = 0x801ABE90; +D_801ABE94 = 0x801ABE94; +D_801ABE9C = 0x801ABE9C; +D_801ABEA0 = 0x801ABEA0; +D_801ABEA8 = 0x801ABEA8; +D_801ABEB0 = 0x801ABEB0; +D_801ABEB4 = 0x801ABEB4; +D_801ABEBC = 0x801ABEBC; +D_801ABEC4 = 0x801ABEC4; +D_801ABEC8 = 0x801ABEC8; +D_801ABED0 = 0x801ABED0; +D_801ABED4 = 0x801ABED4; +D_801ABED8 = 0x801ABED8; +D_801ABEE0 = 0x801ABEE0; +D_801ABEE8 = 0x801ABEE8; +D_801ABEEC = 0x801ABEEC; +D_801ABEF4 = 0x801ABEF4; +D_801ABEFC = 0x801ABEFC; +D_801ABF00 = 0x801ABF00; +D_801ABF08 = 0x801ABF08; +D_801ABF0C = 0x801ABF0C; +D_801ABF14 = 0x801ABF14; +D_801ABF1C = 0x801ABF1C; +D_801ABF20 = 0x801ABF20; +D_801ABF28 = 0x801ABF28; +D_801ABF2C = 0x801ABF2C; +D_801ABF30 = 0x801ABF30; +D_801ABF38 = 0x801ABF38; +D_801ABF3C = 0x801ABF3C; +D_801ABF40 = 0x801ABF40; +D_801ABF48 = 0x801ABF48; +D_801ABF50 = 0x801ABF50; +D_801ABF54 = 0x801ABF54; +D_801ABF5C = 0x801ABF5C; +D_801ABF60 = 0x801ABF60; +D_801ABF64 = 0x801ABF64; +D_801ABF6C = 0x801ABF6C; +D_801ABF70 = 0x801ABF70; +D_801ABF74 = 0x801ABF74; +D_801ABF7C = 0x801ABF7C; +D_801ABF80 = 0x801ABF80; +D_801ABF84 = 0x801ABF84; +D_801ABF8C = 0x801ABF8C; +D_801ABF90 = 0x801ABF90; +D_801ABF94 = 0x801ABF94; +func_801AC048 = 0x801AC048; +func_801AC084 = 0x801AC084; +func_801AC174 = 0x801AC174; +func_801ACBE4 = 0x801ACBE4; +func_801ACC3C = 0x801ACC3C; +func_801ACC7C = 0x801ACC7C; +func_801ACDFC = 0x801ACDFC; +func_801ACEC0 = 0x801ACEC0; +func_801ACF7C = 0x801ACF7C; +func_801ACFBC = 0x801ACFBC; +func_801AD134 = 0x801AD134; +func_801AD1D0 = 0x801AD1D0; +func_801AD218 = 0x801AD218; +func_801AD260 = 0x801AD260; +func_801AD490 = 0x801AD490; +func_801AD590 = 0x801AD590; +func_801AD66C = 0x801AD66C; +func_801AD78C = 0x801AD78C; +func_801AD968 = 0x801AD968; +func_801ADC3C = 0x801ADC3C; +func_801ADF94 = 0x801ADF94; +func_801AE6D0 = 0x801AE6D0; +func_801AE9A8 = 0x801AE9A8; +func_801AEA8C = 0x801AEA8C; +func_801AEB74 = 0x801AEB74; +func_801AECA0 = 0x801AECA0; +func_801AED48 = 0x801AED48; +func_801AEE74 = 0x801AEE74; +func_801AEED8 = 0x801AEED8; +func_801B17C8 = 0x801B17C8; +func_801B18CC = 0x801B18CC; +func_801B18F4 = 0x801B18F4; +func_801B1924 = 0x801B1924; +func_801B195C = 0x801B195C; +func_801B19F4 = 0x801B19F4; +func_801B1A98 = 0x801B1A98; +func_801B1B88 = 0x801B1B88; +func_801B1C78 = 0x801B1C78; +func_801B1CFC = 0x801B1CFC; +func_801B1D68 = 0x801B1D68; +func_801B1D88 = 0x801B1D88; +func_801B1DA8 = 0x801B1DA8; +func_801B1ED0 = 0x801B1ED0; +func_801B1EF4 = 0x801B1EF4; +func_801B1F34 = 0x801B1F34; +func_801B1F4C = 0x801B1F4C; +func_801B1FD8 = 0x801B1FD8; +func_801B2108 = 0x801B2108; +func_801B248C = 0x801B248C; +func_801B24F8 = 0x801B24F8; +func_801B2564 = 0x801B2564; +func_801B259C = 0x801B259C; +func_801B25D4 = 0x801B25D4; +func_801B2608 = 0x801B2608; +func_801B263C = 0x801B263C; +func_801B2670 = 0x801B2670; +func_801B26A0 = 0x801B26A0; +func_801B2700 = 0x801B2700; +func_801B27A8 = 0x801B27A8; +func_801B28D4 = 0x801B28D4; +func_801B2984 = 0x801B2984; +func_801B29C0 = 0x801B29C0; +func_801B2A9C = 0x801B2A9C; +func_801B2AFC = 0x801B2AFC; +func_801B2B78 = 0x801B2B78; +func_801B2BD4 = 0x801B2BD4; +func_801B2C70 = 0x801B2C70; +func_801B2CF8 = 0x801B2CF8; +func_801B2D1C = 0x801B2D1C; +func_801B2D6C = 0x801B2D6C; +func_801B2DAC = 0x801B2DAC; +func_801B2DDC = 0x801B2DDC; +func_801B2DE4 = 0x801B2DE4; +func_801B2DEC = 0x801B2DEC; +func_801B2DF4 = 0x801B2DF4; +func_801B2E5C = 0x801B2E5C; +func_801B2F50 = 0x801B2F50; +func_801B3120 = 0x801B3120; +func_801B3164 = 0x801B3164; +func_801B367C = 0x801B367C; +func_801B3694 = 0x801B3694; +func_801B38B4 = 0x801B38B4; +func_801B3A54 = 0x801B3A54; +func_801B3A94 = 0x801B3A94; +func_801B3E14 = 0x801B3E14; +func_801B3E2C = 0x801B3E2C; +func_801B3F7C = 0x801B3F7C; +func_801B3F94 = 0x801B3F94; +func_801B4048 = 0x801B4048; +func_801B410C = 0x801B410C; +func_801B4B30 = 0x801B4B30; +func_801B4B9C = 0x801B4B9C; +func_801B4BB0 = 0x801B4BB0; +func_801B4C68 = 0x801B4C68; +func_801B4D78 = 0x801B4D78; +func_801B4DE0 = 0x801B4DE0; +func_801B4FFC = 0x801B4FFC; +func_801B519C = 0x801B519C; +func_801B5350 = 0x801B5350; +func_801B54C8 = 0x801B54C8; +func_801B5548 = 0x801B5548; +func_801B55C8 = 0x801B55C8; +func_801B585C = 0x801B585C; +func_801B5A7C = 0x801B5A7C; +func_801B60D4 = 0x801B60D4; +func_801B642C = 0x801B642C; +func_801B6480 = 0x801B6480; +func_801B6648 = 0x801B6648; +func_801B66A4 = 0x801B66A4; +func_801B675C = 0x801B675C; +func_801B68E0 = 0x801B68E0; +func_801B690C = 0x801B690C; +func_801B69F8 = 0x801B69F8; +func_801B76F0 = 0x801B76F0; +func_801B786C = 0x801B786C; +func_801B78BC = 0x801B78BC; +func_801B79D4 = 0x801B79D4; +func_801B80F0 = 0x801B80F0; +func_801B8298 = 0x801B8298; +func_801B8338 = 0x801B8338; +func_801B83BC = 0x801B83BC; +func_801B8414 = 0x801B8414; +func_801B8498 = 0x801B8498; +func_801B84F0 = 0x801B84F0; +func_801B8500 = 0x801B8500; +func_801B8518 = 0x801B8518; +func_801B8714 = 0x801B8714; +func_801B873C = 0x801B873C; +func_801B881C = 0x801B881C; +func_801B884C = 0x801B884C; +func_801B88F4 = 0x801B88F4; +func_801B89C8 = 0x801B89C8; +func_801B8A10 = 0x801B8A10; +func_801B8A8C = 0x801B8A8C; +func_801B8D24 = 0x801B8D24; +func_801B8DB0 = 0x801B8DB0; +func_801B8DE8 = 0x801B8DE8; +func_801B8E20 = 0x801B8E20; +func_801B94BC = 0x801B94BC; +func_801B9698 = 0x801B9698; +func_801B9744 = 0x801B9744; +func_801B97BC = 0x801B97BC; +func_801B988C = 0x801B988C; +func_801B9924 = 0x801B9924; +func_801B994C = 0x801B994C; +func_801B99E4 = 0x801B99E4; +func_801B9B7C = 0x801B9B7C; +func_801B9C18 = 0x801B9C18; +func_801B9C80 = 0x801B9C80; +func_801BA460 = 0x801BA460; +func_801BA498 = 0x801BA498; +func_801BA524 = 0x801BA524; +func_801BA5C0 = 0x801BA5C0; +func_801BA5CC = 0x801BA5CC; +func_801BA648 = 0x801BA648; +func_801BA668 = 0x801BA668; +func_801BA688 = 0x801BA688; +func_801BA6A8 = 0x801BA6A8; +func_801BA6CC = 0x801BA6CC; +func_801BA6F0 = 0x801BA6F0; +func_801BA7EC = 0x801BA7EC; +func_801BA880 = 0x801BA880; +func_801BA910 = 0x801BA910; +func_801BA9A8 = 0x801BA9A8; +func_801BAA40 = 0x801BAA40; +func_801BAB70 = 0x801BAB70; +func_801BABA4 = 0x801BABA4; \ No newline at end of file diff --git a/slus00067.sha b/slus00067.sha index 4e0bbd042..bcbc8d490 100644 --- a/slus00067.sha +++ b/slus00067.sha @@ -7,6 +7,7 @@ adb3303e1ea707c63dfa978511a88cab4f61970a build/MAD.BIN 5d06216b895ab5ff892c88b0d9eff67ff16e2bd1 build/NO3.BIN 7c78a2bec6a26acfb62456e7f517915fe0c0e3f5 build/NP3.BIN b10b9c2be721cf9cbed3aa94be468ba9e23bc68b build/NZ0.BIN +a919a53a760107972049bfdeadde33376428eace build/SEL.BIN bc2fabbe5ef0d1288490b6f1ddbf11092a2c0c57 build/ST0.BIN 2ae313f4e394422e4c5f37a2d8e976e92f9e3cda build/WRP.BIN 3bbdd3b73f8f86cf5f6c88652e9e6452a7fb5992 build/RWRP.BIN diff --git a/src/st/sel/2C048.c b/src/st/sel/2C048.c new file mode 100644 index 000000000..4d16caa25 --- /dev/null +++ b/src/st/sel/2C048.c @@ -0,0 +1,335 @@ +#include "common.h" + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AC048); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AC084); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AC174); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACBE4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACC3C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACC7C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACDFC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACEC0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACF7C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ACFBC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD134); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD1D0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD218); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD260); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD490); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD590); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD66C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD78C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AD968); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ADC3C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801ADF94); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AE6D0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AE9A8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AEA8C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AEB74); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AECA0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AED48); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AEE74); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801AEED8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B17C8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B18CC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B18F4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1924); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B195C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B19F4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1A98); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1B88); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1C78); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1CFC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1D68); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1D88); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1DA8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1ED0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1EF4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1F34); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1F4C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B1FD8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2108); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B248C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B24F8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2564); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B259C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B25D4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2608); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B263C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2670); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B26A0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2700); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B27A8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B28D4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2984); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B29C0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2A9C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2AFC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2B78); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2BD4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2C70); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2CF8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2D1C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2D6C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2DAC); + +void func_801B2DDC(void) {} + +void func_801B2DE4(void) {} + +void func_801B2DEC(void) {} + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2DF4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2E5C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B2F50); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3120); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3164); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B367C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3694); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B38B4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3A54); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3A94); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3E14); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3E2C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3F7C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B3F94); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4048); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B410C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4B30); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4B9C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4BB0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4C68); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4D78); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4DE0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B4FFC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B519C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B5350); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B54C8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B5548); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B55C8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B585C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B5A7C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B60D4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B642C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B6480); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B6648); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B66A4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B675C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B68E0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B690C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B69F8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B76F0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B786C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B78BC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B79D4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B80F0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8298); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8338); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B83BC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8414); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8498); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B84F0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8500); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8518); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8714); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B873C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B881C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B884C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B88F4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B89C8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8A10); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8A8C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8D24); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8DB0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8DE8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B8E20); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B94BC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B9698); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B9744); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B97BC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B988C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B9924); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B994C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B99E4); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B9B7C); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B9C18); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801B9C80); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA460); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA498); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA524); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA5C0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA5CC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA648); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA668); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA688); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA6A8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA6CC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA6F0); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA7EC); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA880); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA910); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BA9A8); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BAA40); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BAB70); + +INCLUDE_ASM("config/../asm/st/sel/nonmatchings/2C048", func_801BABA4);