From ab4aa096c721193d427ea00e7d8fa793f5d98716 Mon Sep 17 00:00:00 2001 From: Cuyler36 <24523422+Cuyler36@users.noreply.github.com> Date: Tue, 4 Jun 2024 20:28:54 -0400 Subject: [PATCH] Implement & link jaudio_NES/audioheaders.c --- config/dol_slices.yml | 2 + config/symbols.yml | 5 + include/jaudio_NES/audiocommon.h | 16 + include/jaudio_NES/audioheaders.h | 13 + include/jaudio_NES/audiostruct.h | 19 +- include/types.h | 50 +- src/static/jaudio_NES/audioheaders.c | 4724 ++++++++++++++++++++++++++ 7 files changed, 4804 insertions(+), 25 deletions(-) create mode 100644 include/jaudio_NES/audioheaders.h create mode 100644 src/static/jaudio_NES/audioheaders.c diff --git a/config/dol_slices.yml b/config/dol_slices.yml index b05b1c10..c4a73685 100644 --- a/config/dol_slices.yml +++ b/config/dol_slices.yml @@ -30,6 +30,8 @@ dvderr.c: .bss: [0x800e2790, 0x800e2b88] jaudio_NES/dummyprobe.c: .text: [0x800083f8, 0x80008400] +jaudio_NES/audioheaders.c: + .data: [0x800cca40, 0x800ce880] jaudio_NES/aictrl.c: .text: [0x80017e80, 0x80018640] .rodata: [0x800aa500, 0x800aa518] diff --git a/config/symbols.yml b/config/symbols.yml index a9cf3013..fba0b019 100644 --- a/config/symbols.yml +++ b/config/symbols.yml @@ -3026,6 +3026,11 @@ global: 0x800c30c0: logo_nin_v 0x800c3100: logo_ninT_model 0x800c3140: nintendo_hi_0 + 0x800cca40: AudioseqHeaderStart + 0x800cd9e0: AudiobankHeaderStart + 0x800ce3e0: AudiowaveHeaderStart + 0x800ce450: AudiodataHeaderStart + 0x800ce490: AudiomapHeaderStart 0x800ce880: LEN_TABLE 0x800ce8a0: NOISE_FREQ_TABLE 0x800ce8e0: sbuffer diff --git a/include/jaudio_NES/audiocommon.h b/include/jaudio_NES/audiocommon.h index 60478a32..8ede79f9 100644 --- a/include/jaudio_NES/audiocommon.h +++ b/include/jaudio_NES/audiocommon.h @@ -19,6 +19,22 @@ typedef enum DSPBUF_EVENTS { DSPBUF_EVENTS_2 = 2, } DSPBUF_EVENTS; +typedef enum SampleMedium { + /* 0 */ MEDIUM_RAM, + /* 1 */ MEDIUM_UNK, + /* 2 */ MEDIUM_CART, + /* 3 */ MEDIUM_DISK_DRIVE, + /* 5 */ MEDIUM_RAM_UNLOADED = 5 +} SampleMedium; + +typedef enum AudioCacheLoadType { + /* 0 */ CACHE_LOAD_PERMANENT, + /* 1 */ CACHE_LOAD_PERSISTENT, + /* 2 */ CACHE_LOAD_TEMPORARY, + /* 3 */ CACHE_LOAD_EITHER, + /* 4 */ CACHE_LOAD_EITHER_NOSYNC +} AudioCacheLoadType; + #ifdef __cplusplus } #endif diff --git a/include/jaudio_NES/audioheaders.h b/include/jaudio_NES/audioheaders.h new file mode 100644 index 00000000..ae6f8378 --- /dev/null +++ b/include/jaudio_NES/audioheaders.h @@ -0,0 +1,13 @@ +#ifndef AUDIOHEADERS_H +#define AUDIOHEADERS_H + +#include "types.h" +#include "jaudio_NES/audiostruct.h" + +extern ArcHeader AudioseqHeaderStart; +extern ArcHeader AudiobankHeaderStart; +extern ArcHeader AudiowaveHeaderStart; +extern ArcHeader AudiodataHeaderStart; +extern u16 AudiomapHeaderStart[]; + +#endif diff --git a/include/jaudio_NES/audiostruct.h b/include/jaudio_NES/audiostruct.h index 1cd1f149..1305da72 100644 --- a/include/jaudio_NES/audiostruct.h +++ b/include/jaudio_NES/audiostruct.h @@ -49,13 +49,26 @@ typedef struct ALHeap { /* 0x10 */ u8* last; } ALHeap; -/* sizeof(ArcHeader) == 0x10 */ +/* sizeof(ArcEntry) == 0x10 */ +typedef struct ArcEntry_ { + /* 0x00 */ u32 addr; + /* 0x04 */ size_t size; + /* 0x08 */ s8 medium; + /* 0x09 */ s8 cacheType; + /* 0x0A */ s16 param0; + /* 0x0C */ s16 param1; + /* 0x0E */ s16 param2; +} ArcEntry; + +/* sizeof(ArcHeader) == [0x10, 0x10+entries*0x10] */ typedef struct ArcHeader_ { /* 0x00 */ s16 numEntries; - /* 0x02 */ u16 _02; + /* 0x02 */ s16 _02; /* 0x04 */ u8* pData; /* 0x08 */ u8 copy; -} ArcHeader ATTRIBUTE_ALIGN(8); + /* 0x09 */ u8 pad[7]; + /* 0x10 */ ArcEntry entries[]; /* variable size */ +} ArcHeader; /* sizeof(AutoHeapstrc) == 0xC */ typedef struct AutoHeapstrc_ { diff --git a/include/types.h b/include/types.h index 7b9b5ae9..35aeebf8 100644 --- a/include/types.h +++ b/include/types.h @@ -4,7 +4,7 @@ #include "../tools/ppcdis/include/ppcdis.h" #ifdef IS_REL -//#pragma section const_type sconst_type ".rodata" ".rodata" data_mode=far_abs code_mode=pc_rel +// #pragma section const_type sconst_type ".rodata" ".rodata" data_mode=far_abs code_mode=pc_rel #endif typedef signed char s8; @@ -41,15 +41,16 @@ typedef u32 unknown; #define TRUE 1 #define FALSE 0 + #define NULL ((void*)0) #define nullptr 0 #define AT_ADDRESS(x) : (x) -#define ALIGN_PREV(u, align) (u & (~(align-1))) -#define ALIGN_NEXT(u, align) ((u + (align-1)) & (~(align-1))) -#define IS_ALIGNED(X, N) (((X) & ((N)-1)) == 0) -#define IS_NOT_ALIGNED(X, N) (((X) & ((N)-1)) != 0) +#define ALIGN_PREV(u, align) (u & (~(align - 1))) +#define ALIGN_NEXT(u, align) ((u + (align - 1)) & (~(align - 1))) +#define IS_ALIGNED(X, N) (((X) & ((N) - 1)) == 0) +#define IS_NOT_ALIGNED(X, N) (((X) & ((N) - 1)) != 0) #define FLAG_ON(V, F) (((V) & (F)) == 0) #define FLAG_OFF(V, F) (((V) & (F)) != 0) @@ -91,34 +92,39 @@ typedef u32 unknown; #define F32_IS_ZERO(v) (fabsf(v) < 0.008f) /* ARGB8 color format (32 bits) to RGB5A3 color format (16 bits) */ -#define ARGB8_to_RGB5A3(argb8) \ - ((u16)(((argb8) & 0xFF000000) >= 0xE0000000 ? \ - /* Fully opaque, 5 bits per color channel */ (0x8000 | ((((argb8) >> 16) & 0xF8) << 7) | ((((argb8) >> 8) & 0xF8) << 2) | (((argb8) & 0xFF) >> 3)) : \ - /* 3 bits of transparency, 4 bits per color channel */ (((((argb8) >> 24) & 0xE0) << 7) | ((((argb8) >> 16) & 0xF0) << 4) | (((argb8) >> 8) & 0xF0) | (((argb8) & 0xF0) >> 4)))) +#define ARGB8_to_RGB5A3(argb8) \ + ((u16)(((argb8) & 0xFF000000) >= 0xE0000000 \ + ? /* Fully opaque, 5 bits per color channel */ (0x8000 | ((((argb8) >> 16) & 0xF8) << 7) | \ + ((((argb8) >> 8) & 0xF8) << 2) | \ + (((argb8) & 0xFF) >> 3)) \ + : /* 3 bits of transparency, 4 bits per color channel */ ( \ + ((((argb8) >> 24) & 0xE0) << 7) | ((((argb8) >> 16) & 0xF0) << 4) | (((argb8) >> 8) & 0xF0) | \ + (((argb8) & 0xF0) >> 4)))) -#define GPACK_RGB5A3(r, g, b, a) ARGB8_to_RGB5A3((((a) & 0xFF) << 24) | (((r) & 0xFF) << 16) | (((g) & 0xFF) << 8) | ((b) & 0xFF)) +#define GPACK_RGB5A3(r, g, b, a) \ + ARGB8_to_RGB5A3((((a) & 0xFF) << 24) | (((r) & 0xFF) << 16) | (((g) & 0xFF) << 8) | ((b) & 0xFF)) #pragma section RX "forcestrip" -#ifndef __INTELLISENSE__ - #define FORCESTRIP __declspec(section "forcestrip") +#ifndef __INTELLISENSE__ +#define FORCESTRIP __declspec(section "forcestrip") #else - #define FORCESTRIP +#define FORCESTRIP #endif #ifdef MUST_MATCH - #define MATCH_FORCESTRIP FORCESTRIP +#define MATCH_FORCESTRIP FORCESTRIP #else - #define MATCH_FORCESTRIP +#define MATCH_FORCESTRIP #endif #if !defined(__INTELLISENSE__) && defined(MUST_MATCH) - #define BSS_ORDER_GROUP_START FORCESTRIP ORDER_BSS_DATA { - #define BSS_ORDER_GROUP_END } - #define BSS_ORDER_ITEM(v) ORDER_BSS(v) +#define BSS_ORDER_GROUP_START FORCESTRIP ORDER_BSS_DATA { +#define BSS_ORDER_GROUP_END } +#define BSS_ORDER_ITEM(v) ORDER_BSS(v) #else - #define BSS_ORDER_GROUP_START - #define BSS_ORDER_GROUP_END - #define BSS_ORDER_ITEM(v) +#define BSS_ORDER_GROUP_START +#define BSS_ORDER_GROUP_END +#define BSS_ORDER_ITEM(v) #endif #ifndef __cplusplus @@ -126,4 +132,4 @@ typedef u32 unknown; typedef short wchar_t; #endif -#endif \ No newline at end of file +#endif diff --git a/src/static/jaudio_NES/audioheaders.c b/src/static/jaudio_NES/audioheaders.c new file mode 100644 index 00000000..0aa951be --- /dev/null +++ b/src/static/jaudio_NES/audioheaders.c @@ -0,0 +1,4724 @@ +#include "jaudio_NES/audioheaders.h" + +ArcHeader AudioseqHeaderStart ATTRIBUTE_ALIGN(1) = { + 249, /* entries */ + 0, /* unk param */ + nullptr, /* data start pointer */ + 0, /* copy */ + { 0, 0, 0, 0, 0, 0, 0 }, /* pad */ + /* entries */ + { + { + /* entry 0 */ + 0x00000000, /* rom addr */ + 0x000009A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 1 */ + 0x000009A0, /* rom addr */ + 0x00000FC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 2 */ + 0x00001960, /* rom addr */ + 0x000009E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 3 */ + 0x00002340, /* rom addr */ + 0x00000B80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 4 */ + 0x00002EC0, /* rom addr */ + 0x000012C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 5 */ + 0x00004180, /* rom addr */ + 0x00001420, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 6 */ + 0x000055A0, /* rom addr */ + 0x000007E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 7 */ + 0x00005D80, /* rom addr */ + 0x000007C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 8 */ + 0x00006540, /* rom addr */ + 0x00000880, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 9 */ + 0x00006DC0, /* rom addr */ + 0x000014A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 10 */ + 0x00008260, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 11 */ + 0x00008D60, /* rom addr */ + 0x00001200, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 12 */ + 0x00009F60, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 13 */ + 0x0000AAA0, /* rom addr */ + 0x000007A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 14 */ + 0x0000B240, /* rom addr */ + 0x00000820, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 15 */ + 0x0000BA60, /* rom addr */ + 0x00000C80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 16 */ + 0x0000C6E0, /* rom addr */ + 0x00000BE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 17 */ + 0x0000D2C0, /* rom addr */ + 0x00000C80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 18 */ + 0x0000DF40, /* rom addr */ + 0x00000840, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 19 */ + 0x0000E780, /* rom addr */ + 0x00000CA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 20 */ + 0x0000F420, /* rom addr */ + 0x000016E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 21 */ + 0x00010B00, /* rom addr */ + 0x00000D80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 22 */ + 0x00011880, /* rom addr */ + 0x000009C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 23 */ + 0x00012240, /* rom addr */ + 0x00000980, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 24 */ + 0x00012BC0, /* rom addr */ + 0x00000E60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 25 */ + 0x00013A20, /* rom addr */ + 0x00000BE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 26 */ + 0x00014600, /* rom addr */ + 0x00000D40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 27 */ + 0x00015340, /* rom addr */ + 0x000010E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 28 */ + 0x00016420, /* rom addr */ + 0x00000E20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 29 */ + 0x00017240, /* rom addr */ + 0x00001100, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 30 */ + 0x00018340, /* rom addr */ + 0x00001700, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 31 */ + 0x00019A40, /* rom addr */ + 0x000009C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 32 */ + 0x0001A400, /* rom addr */ + 0x00000C60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 33 */ + 0x0001B060, /* rom addr */ + 0x00000BC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 34 */ + 0x0001BC20, /* rom addr */ + 0x00001260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 35 */ + 0x0001CE80, /* rom addr */ + 0x00000880, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 36 */ + 0x0001D700, /* rom addr */ + 0x00001020, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 37 */ + 0x0001E720, /* rom addr */ + 0x00000640, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 38 */ + 0x0001ED60, /* rom addr */ + 0x00000E20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 39 */ + 0x0001FB80, /* rom addr */ + 0x00000760, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 40 */ + 0x000202E0, /* rom addr */ + 0x00000A40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 41 */ + 0x00020D20, /* rom addr */ + 0x000011E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 42 */ + 0x00021F00, /* rom addr */ + 0x00000C20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 43 */ + 0x00022B20, /* rom addr */ + 0x00000AA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 44 */ + 0x000235C0, /* rom addr */ + 0x00000BE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 45 */ + 0x000241A0, /* rom addr */ + 0x00002380, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 46 */ + 0x00026520, /* rom addr */ + 0x00000680, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 47 */ + 0x00026BA0, /* rom addr */ + 0x00002180, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 48 */ + 0x00028D20, /* rom addr */ + 0x00000AE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 49 */ + 0x00029800, /* rom addr */ + 0x00000FE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 50 */ + 0x0002A7E0, /* rom addr */ + 0x000010C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 51 */ + 0x0002B8A0, /* rom addr */ + 0x00001640, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 52 */ + 0x0002CEE0, /* rom addr */ + 0x000006E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 53 */ + 0x0002D5C0, /* rom addr */ + 0x00000960, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 54 */ + 0x0002DF20, /* rom addr */ + 0x00000BA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 55 */ + 0x0002EAC0, /* rom addr */ + 0x000009E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 56 */ + 0x0002F4A0, /* rom addr */ + 0x00000AC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 57 */ + 0x0002FF60, /* rom addr */ + 0x00000A40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 58 */ + 0x000309A0, /* rom addr */ + 0x00001080, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 59 */ + 0x00031A20, /* rom addr */ + 0x00001620, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 60 */ + 0x00033040, /* rom addr */ + 0x00000560, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 61 */ + 0x000335A0, /* rom addr */ + 0x00000580, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 62 */ + 0x00033B20, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 63 */ + 0x00034180, /* rom addr */ + 0x000003A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 64 */ + 0x00034520, /* rom addr */ + 0x00000560, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 65 */ + 0x00000040, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 66 */ + 0x00034A80, /* rom addr */ + 0x00000740, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 67 */ + 0x000351C0, /* rom addr */ + 0x00000E20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 68 */ + 0x00035FE0, /* rom addr */ + 0x00000420, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 69 */ + 0x00036400, /* rom addr */ + 0x000004E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 70 */ + 0x0000003E, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 71 */ + 0x000368E0, /* rom addr */ + 0x00000460, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 72 */ + 0x00036D40, /* rom addr */ + 0x00000200, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 73 */ + 0x00036F40, /* rom addr */ + 0x000001A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 74 */ + 0x000370E0, /* rom addr */ + 0x00000680, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 75 */ + 0x00037760, /* rom addr */ + 0x000003E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 76 */ + 0x00037B40, /* rom addr */ + 0x000003C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 77 */ + 0x00037F00, /* rom addr */ + 0x00000640, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 78 */ + 0x00038540, /* rom addr */ + 0x00000600, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 79 */ + 0x00038B40, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 80 */ + 0x00039680, /* rom addr */ + 0x00000360, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 81 */ + 0x000399E0, /* rom addr */ + 0x00001C40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 82 */ + 0x0003B620, /* rom addr */ + 0x00000720, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 83 */ + 0x0003BD40, /* rom addr */ + 0x00000F20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 84 */ + 0x0003CC60, /* rom addr */ + 0x00001140, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 85 */ + 0x0003DDA0, /* rom addr */ + 0x000008A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 86 */ + 0x0003E640, /* rom addr */ + 0x000011E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 87 */ + 0x0003F820, /* rom addr */ + 0x00000C80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 88 */ + 0x000404A0, /* rom addr */ + 0x00001160, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 89 */ + 0x00041600, /* rom addr */ + 0x00001A20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 90 */ + 0x00043020, /* rom addr */ + 0x00000C20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 91 */ + 0x00043C40, /* rom addr */ + 0x00000B80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 92 */ + 0x000447C0, /* rom addr */ + 0x00000D80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 93 */ + 0x00045540, /* rom addr */ + 0x00000CA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 94 */ + 0x000461E0, /* rom addr */ + 0x000012A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 95 */ + 0x00047480, /* rom addr */ + 0x00000D40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 96 */ + 0x000481C0, /* rom addr */ + 0x000008C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 97 */ + 0x00048A80, /* rom addr */ + 0x00000CA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 98 */ + 0x00049720, /* rom addr */ + 0x000013A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 99 */ + 0x0004AAC0, /* rom addr */ + 0x000012C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 100 */ + 0x0004BD80, /* rom addr */ + 0x00000D80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 101 */ + 0x0004CB00, /* rom addr */ + 0x000014E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 102 */ + 0x0004DFE0, /* rom addr */ + 0x000009E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 103 */ + 0x0004E9C0, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 104 */ + 0x0004F4C0, /* rom addr */ + 0x00000780, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 105 */ + 0x0004FC40, /* rom addr */ + 0x00000580, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 106 */ + 0x000501C0, /* rom addr */ + 0x00000080, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 107 */ + 0x00050240, /* rom addr */ + 0x00000080, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 108 */ + 0x000502C0, /* rom addr */ + 0x00000060, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 109 */ + 0x00050320, /* rom addr */ + 0x00000080, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 110 */ + 0x000503A0, /* rom addr */ + 0x00000060, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 111 */ + 0x00050400, /* rom addr */ + 0x00000420, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 112 */ + 0x00050820, /* rom addr */ + 0x00000400, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 113 */ + 0x00050C20, /* rom addr */ + 0x00000600, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 114 */ + 0x00051220, /* rom addr */ + 0x00001720, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 115 */ + 0x00052940, /* rom addr */ + 0x00000880, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 116 */ + 0x000531C0, /* rom addr */ + 0x00000A80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 117 */ + 0x00053C40, /* rom addr */ + 0x00000480, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 118 */ + 0x000540C0, /* rom addr */ + 0x00000800, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 119 */ + 0x000548C0, /* rom addr */ + 0x000007C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 120 */ + 0x00055080, /* rom addr */ + 0x00000A00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 121 */ + 0x00055A80, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 122 */ + 0x00056040, /* rom addr */ + 0x00000460, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 123 */ + 0x000564A0, /* rom addr */ + 0x00000820, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 124 */ + 0x00056CC0, /* rom addr */ + 0x00000860, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 125 */ + 0x00057520, /* rom addr */ + 0x000007E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 126 */ + 0x00057D00, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 127 */ + 0x00058360, /* rom addr */ + 0x00000680, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 128 */ + 0x000589E0, /* rom addr */ + 0x00000A20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 129 */ + 0x00059400, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 130 */ + 0x00059E60, /* rom addr */ + 0x00000C80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 131 */ + 0x0005AAE0, /* rom addr */ + 0x00000C80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 132 */ + 0x0005B760, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 133 */ + 0x0005C260, /* rom addr */ + 0x00000760, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 134 */ + 0x0005C9C0, /* rom addr */ + 0x00000880, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 135 */ + 0x0005D240, /* rom addr */ + 0x000007A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 136 */ + 0x0005D9E0, /* rom addr */ + 0x00000740, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 137 */ + 0x0005E120, /* rom addr */ + 0x00000640, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 138 */ + 0x0005E760, /* rom addr */ + 0x00000AE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 139 */ + 0x0005F240, /* rom addr */ + 0x00000500, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 140 */ + 0x0005F740, /* rom addr */ + 0x00000EA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 141 */ + 0x000605E0, /* rom addr */ + 0x00000620, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 142 */ + 0x00060C00, /* rom addr */ + 0x000005A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 143 */ + 0x000611A0, /* rom addr */ + 0x00000EE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 144 */ + 0x00062080, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 145 */ + 0x000626E0, /* rom addr */ + 0x00000760, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 146 */ + 0x00062E40, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 147 */ + 0x000638A0, /* rom addr */ + 0x00000880, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 148 */ + 0x00064120, /* rom addr */ + 0x000009E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 149 */ + 0x00064B00, /* rom addr */ + 0x00000780, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 150 */ + 0x00065280, /* rom addr */ + 0x00000300, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 151 */ + 0x00065580, /* rom addr */ + 0x00000860, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 152 */ + 0x00065DE0, /* rom addr */ + 0x00000EC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 153 */ + 0x00066CA0, /* rom addr */ + 0x000004C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 154 */ + 0x00067160, /* rom addr */ + 0x00000560, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 155 */ + 0x000676C0, /* rom addr */ + 0x00000900, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 156 */ + 0x00067FC0, /* rom addr */ + 0x00000D40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 157 */ + 0x00068D00, /* rom addr */ + 0x000007C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 158 */ + 0x000694C0, /* rom addr */ + 0x00000C60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 159 */ + 0x0006A120, /* rom addr */ + 0x00000620, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 160 */ + 0x0006A740, /* rom addr */ + 0x000013C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 161 */ + 0x0006BB00, /* rom addr */ + 0x000007A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 162 */ + 0x0006C2A0, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 163 */ + 0x0006CDE0, /* rom addr */ + 0x00000100, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 164 */ + 0x0006CEE0, /* rom addr */ + 0x00000420, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 165 */ + 0x0006D300, /* rom addr */ + 0x00001100, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 166 */ + 0x0006E400, /* rom addr */ + 0x000004C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 167 */ + 0x0006E8C0, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 168 */ + 0x0006EE80, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 169 */ + 0x0006F1C0, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 170 */ + 0x0006F820, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 171 */ + 0x0006FDE0, /* rom addr */ + 0x00000940, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 172 */ + 0x00070720, /* rom addr */ + 0x00000740, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 173 */ + 0x000000AC, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 174 */ + 0x000000AC, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 175 */ + 0x000000AC, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 176 */ + 0x00070E60, /* rom addr */ + 0x000002C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 177 */ + 0x00071120, /* rom addr */ + 0x00000160, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 178 */ + 0x00071280, /* rom addr */ + 0x00000300, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 179 */ + 0x00071580, /* rom addr */ + 0x00000140, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 180 */ + 0x000716C0, /* rom addr */ + 0x00000780, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 181 */ + 0x00071E40, /* rom addr */ + 0x00000520, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 182 */ + 0x00072360, /* rom addr */ + 0x00000040, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 183 */ + 0x000723A0, /* rom addr */ + 0x00000720, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 184 */ + 0x00072AC0, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 185 */ + 0x00072E00, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 186 */ + 0x00073140, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 187 */ + 0x00073480, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 188 */ + 0x000737C0, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 189 */ + 0x00073B00, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 190 */ + 0x00073E40, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 191 */ + 0x00074180, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 192 */ + 0x000744C0, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 193 */ + 0x00074800, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 194 */ + 0x00074B40, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 195 */ + 0x00074E80, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 196 */ + 0x000751C0, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 197 */ + 0x00075500, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 198 */ + 0x00075840, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 199 */ + 0x00075B80, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 200 */ + 0x00075EC0, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 201 */ + 0x00076200, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 202 */ + 0x00076540, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 203 */ + 0x00076880, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 204 */ + 0x00076BC0, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 205 */ + 0x00076E20, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 206 */ + 0x00077080, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 207 */ + 0x000772E0, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 208 */ + 0x00077540, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 209 */ + 0x000777A0, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 210 */ + 0x00077A00, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 211 */ + 0x00077C60, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 212 */ + 0x00077EC0, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 213 */ + 0x00078120, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 214 */ + 0x00078380, /* rom addr */ + 0x00001220, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 215 */ + 0x000795A0, /* rom addr */ + 0x00002940, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 216 */ + 0x0007BEE0, /* rom addr */ + 0x000022E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 217 */ + 0x0007E1C0, /* rom addr */ + 0x000008E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 218 */ + 0x0007EAA0, /* rom addr */ + 0x00001280, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 219 */ + 0x0007FD20, /* rom addr */ + 0x00001B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 220 */ + 0x00081860, /* rom addr */ + 0x000028A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 221 */ + 0x00084100, /* rom addr */ + 0x00001D20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 222 */ + 0x00085E20, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 223 */ + 0x00086480, /* rom addr */ + 0x00001480, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 224 */ + 0x00087900, /* rom addr */ + 0x00001120, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 225 */ + 0x00088A20, /* rom addr */ + 0x000024E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 226 */ + 0x0008AF00, /* rom addr */ + 0x00005180, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 227 */ + 0x00090080, /* rom addr */ + 0x00004220, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 228 */ + 0x000942A0, /* rom addr */ + 0x00003780, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 229 */ + 0x00097A20, /* rom addr */ + 0x00002C40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 230 */ + 0x0009A660, /* rom addr */ + 0x00002040, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 231 */ + 0x0009C6A0, /* rom addr */ + 0x00000A40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 232 */ + 0x0009D0E0, /* rom addr */ + 0x00000860, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 233 */ + 0x0009D940, /* rom addr */ + 0x00000A40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 234 */ + 0x0009E380, /* rom addr */ + 0x00000860, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 235 */ + 0x0009EBE0, /* rom addr */ + 0x00000B60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 236 */ + 0x0009F740, /* rom addr */ + 0x000013C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 237 */ + 0x000A0B00, /* rom addr */ + 0x00001D20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 238 */ + 0x000A2820, /* rom addr */ + 0x00001640, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 239 */ + 0x000A3E60, /* rom addr */ + 0x00000EA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 240 */ + 0x000A4D00, /* rom addr */ + 0x00000CE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 241 */ + 0x000A59E0, /* rom addr */ + 0x00000720, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 242 */ + 0x000A6100, /* rom addr */ + 0x00005960, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 243 */ + 0x000ABA60, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 244 */ + 0x000AC0C0, /* rom addr */ + 0x00000480, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 245 */ + 0x000AC540, /* rom addr */ + 0x00000660, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 246 */ + 0x000ACBA0, /* rom addr */ + 0x000055C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 247 */ + 0x000B2160, /* rom addr */ + 0x00000020, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 248 */ + 0x000B2180, /* rom addr */ + 0x0001D580, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + }, +}; + +ArcHeader AudiobankHeaderStart = { + 159, /* entries */ + 0, /* unk param */ + nullptr, /* data start pointer */ + 0, /* copy */ + { 0, 0, 0, 0, 0, 0, 0 }, /* pad */ + /* entries */ + { + { + /* entry 0 */ + 0x00000000, /* rom addr */ + 0x00003180, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x00FF, /* param0 */ + 0x4800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 1 */ + 0x00003180, /* rom addr */ + 0x00000B60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x01FF, /* param0 */ + 0x0E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 2 */ + 0x00003CE0, /* rom addr */ + 0x00004500, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x02FF, /* param0 */ + 0x6000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 3 */ + 0x000081E0, /* rom addr */ + 0x00000820, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 4 */ + 0x00008A00, /* rom addr */ + 0x00000DC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 5 */ + 0x000097C0, /* rom addr */ + 0x000007C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 6 */ + 0x00009F80, /* rom addr */ + 0x00000DA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 7 */ + 0x0000AD20, /* rom addr */ + 0x00000840, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 8 */ + 0x0000B560, /* rom addr */ + 0x00000AA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 9 */ + 0x0000C000, /* rom addr */ + 0x000008E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 10 */ + 0x0000C8E0, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 11 */ + 0x0000D340, /* rom addr */ + 0x000008A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 12 */ + 0x0000DBE0, /* rom addr */ + 0x00000960, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 13 */ + 0x0000E540, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 14 */ + 0x0000F040, /* rom addr */ + 0x00000E00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 15 */ + 0x0000FE40, /* rom addr */ + 0x000009A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 16 */ + 0x000107E0, /* rom addr */ + 0x000009E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 17 */ + 0x000111C0, /* rom addr */ + 0x00000C00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 18 */ + 0x00011DC0, /* rom addr */ + 0x00000740, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 19 */ + 0x00012500, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 20 */ + 0x00013040, /* rom addr */ + 0x00000800, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 21 */ + 0x00013840, /* rom addr */ + 0x00000980, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 22 */ + 0x000141C0, /* rom addr */ + 0x00000A00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0900, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 23 */ + 0x00014BC0, /* rom addr */ + 0x00000A20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 24 */ + 0x000155E0, /* rom addr */ + 0x00000A80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 25 */ + 0x00016060, /* rom addr */ + 0x00000980, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 26 */ + 0x000169E0, /* rom addr */ + 0x000010C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1038, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 27 */ + 0x00017AA0, /* rom addr */ + 0x000005E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 28 */ + 0x00018080, /* rom addr */ + 0x00000D40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1040, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 29 */ + 0x00018DC0, /* rom addr */ + 0x00000B20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A42, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 30 */ + 0x000198E0, /* rom addr */ + 0x00000680, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 31 */ + 0x00019F60, /* rom addr */ + 0x00000480, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 32 */ + 0x0001A3E0, /* rom addr */ + 0x000006E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0700, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 33 */ + 0x0001AAC0, /* rom addr */ + 0x000003C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 34 */ + 0x0001AE80, /* rom addr */ + 0x00000500, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 35 */ + 0x0001B380, /* rom addr */ + 0x00000520, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 36 */ + 0x0001B8A0, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 37 */ + 0x0001BE60, /* rom addr */ + 0x00000700, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 38 */ + 0x0001C560, /* rom addr */ + 0x000005E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 39 */ + 0x0001CB40, /* rom addr */ + 0x00000340, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 40 */ + 0x0001CE80, /* rom addr */ + 0x000000C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0100, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 41 */ + 0x0001CF40, /* rom addr */ + 0x00000280, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 42 */ + 0x0001D1C0, /* rom addr */ + 0x00000280, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 43 */ + 0x0001D440, /* rom addr */ + 0x000009C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A42, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 44 */ + 0x0001DE00, /* rom addr */ + 0x000009E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A42, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 45 */ + 0x0001E7E0, /* rom addr */ + 0x00000BA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A42, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 46 */ + 0x0001F380, /* rom addr */ + 0x00000960, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A42, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 47 */ + 0x0001FCE0, /* rom addr */ + 0x00000940, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0A42, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 48 */ + 0x00020620, /* rom addr */ + 0x00000360, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x001A, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 49 */ + 0x00020980, /* rom addr */ + 0x00000360, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0019, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 50 */ + 0x00020CE0, /* rom addr */ + 0x00000360, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x001A, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 51 */ + 0x00021040, /* rom addr */ + 0x00000180, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0100, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 52 */ + 0x000211C0, /* rom addr */ + 0x000004C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0700, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 53 */ + 0x00021680, /* rom addr */ + 0x000004C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0700, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 54 */ + 0x00021B40, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 55 */ + 0x000225A0, /* rom addr */ + 0x00000600, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 56 */ + 0x00022BA0, /* rom addr */ + 0x00000CA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 57 */ + 0x00023840, /* rom addr */ + 0x00000100, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0200, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 58 */ + 0x00023940, /* rom addr */ + 0x00000220, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 59 */ + 0x00023B60, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 60 */ + 0x00023DC0, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0700, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 61 */ + 0x00024380, /* rom addr */ + 0x00000280, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 62 */ + 0x00024600, /* rom addr */ + 0x00000840, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 63 */ + 0x00024E40, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A45, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 64 */ + 0x00025980, /* rom addr */ + 0x00000D00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 65 */ + 0x00026680, /* rom addr */ + 0x00000980, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 66 */ + 0x00027000, /* rom addr */ + 0x00000560, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0700, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 67 */ + 0x00027560, /* rom addr */ + 0x000004E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 68 */ + 0x00027A40, /* rom addr */ + 0x000003E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 69 */ + 0x00027E20, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 70 */ + 0x00028880, /* rom addr */ + 0x000003E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 71 */ + 0x00028C60, /* rom addr */ + 0x00000300, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 72 */ + 0x00028F60, /* rom addr */ + 0x00000460, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 73 */ + 0x000293C0, /* rom addr */ + 0x00000D80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 74 */ + 0x0002A140, /* rom addr */ + 0x00000540, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 75 */ + 0x0002A680, /* rom addr */ + 0x00000760, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 76 */ + 0x0002ADE0, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 77 */ + 0x0002B3A0, /* rom addr */ + 0x00000940, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 78 */ + 0x0002BCE0, /* rom addr */ + 0x00000C00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A48, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 79 */ + 0x0002C8E0, /* rom addr */ + 0x000000E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0100, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 80 */ + 0x0002C9C0, /* rom addr */ + 0x00000440, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 81 */ + 0x0002CE00, /* rom addr */ + 0x000009C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A48, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 82 */ + 0x0002D7C0, /* rom addr */ + 0x000007C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 83 */ + 0x0002DF80, /* rom addr */ + 0x00000440, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 84 */ + 0x0002E3C0, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 85 */ + 0x0002EEC0, /* rom addr */ + 0x00000540, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 86 */ + 0x0002F400, /* rom addr */ + 0x00000B60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 87 */ + 0x0002FF60, /* rom addr */ + 0x00000760, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0B00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 88 */ + 0x000306C0, /* rom addr */ + 0x00000AC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 89 */ + 0x00031180, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 90 */ + 0x00031C80, /* rom addr */ + 0x00000300, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 91 */ + 0x00031F80, /* rom addr */ + 0x000003C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 92 */ + 0x00032340, /* rom addr */ + 0x00000440, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 93 */ + 0x00032780, /* rom addr */ + 0x00000260, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 94 */ + 0x000329E0, /* rom addr */ + 0x000003E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 95 */ + 0x00032DC0, /* rom addr */ + 0x000006A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 96 */ + 0x00033460, /* rom addr */ + 0x00000CA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0B43, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 97 */ + 0x00034100, /* rom addr */ + 0x000007C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x1000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 98 */ + 0x000348C0, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 99 */ + 0x00034E80, /* rom addr */ + 0x00000240, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0200, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 100 */ + 0x000350C0, /* rom addr */ + 0x000006C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0900, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 101 */ + 0x00035780, /* rom addr */ + 0x00000400, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 102 */ + 0x00035B80, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 103 */ + 0x000365E0, /* rom addr */ + 0x00000280, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0200, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 104 */ + 0x00036860, /* rom addr */ + 0x00000180, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 105 */ + 0x000369E0, /* rom addr */ + 0x00000AE0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0C41, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 106 */ + 0x000374C0, /* rom addr */ + 0x00000A20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 107 */ + 0x00037EE0, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 108 */ + 0x000389E0, /* rom addr */ + 0x000009A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 109 */ + 0x00039380, /* rom addr */ + 0x00000BA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 110 */ + 0x00039F20, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 111 */ + 0x0003AA20, /* rom addr */ + 0x00000F80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 112 */ + 0x0003B9A0, /* rom addr */ + 0x00000620, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 113 */ + 0x00000070, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 114 */ + 0x00000070, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 115 */ + 0x00000070, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 116 */ + 0x0003BFC0, /* rom addr */ + 0x00000840, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 117 */ + 0x0003C800, /* rom addr */ + 0x00000820, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0A48, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 118 */ + 0x0003D020, /* rom addr */ + 0x000003A0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 119 */ + 0x0003D3C0, /* rom addr */ + 0x000001C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 120 */ + 0x0003D580, /* rom addr */ + 0x00000E00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x1048, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 121 */ + 0x0003E380, /* rom addr */ + 0x00000460, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0500, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 122 */ + 0x00000077, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 123 */ + 0x0003E7E0, /* rom addr */ + 0x00000DC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 124 */ + 0x0003F5A0, /* rom addr */ + 0x00000BA0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x04FF, /* param0 */ + 0x1000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 125 */ + 0x00040140, /* rom addr */ + 0x000005E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 126 */ + 0x00040720, /* rom addr */ + 0x00000860, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 127 */ + 0x00040F80, /* rom addr */ + 0x000005C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 128 */ + 0x00041540, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 129 */ + 0x00042040, /* rom addr */ + 0x00000320, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 130 */ + 0x00042360, /* rom addr */ + 0x00000A40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 131 */ + 0x00042DA0, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0B40, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 132 */ + 0x000438E0, /* rom addr */ + 0x00000C60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F48, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 133 */ + 0x00044540, /* rom addr */ + 0x00000540, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0900, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 134 */ + 0x00044A80, /* rom addr */ + 0x00000A60, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 135 */ + 0x000454E0, /* rom addr */ + 0x000006C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0D00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 136 */ + 0x00045BA0, /* rom addr */ + 0x00000900, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 137 */ + 0x000464A0, /* rom addr */ + 0x000010C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1041, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 138 */ + 0x00047560, /* rom addr */ + 0x00001180, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1040, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 139 */ + 0x0000008A, /* rom addr */ + 0x00000000, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1040, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 140 */ + 0x000486E0, /* rom addr */ + 0x00001040, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1044, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 141 */ + 0x00049720, /* rom addr */ + 0x00000B40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 142 */ + 0x0004A260, /* rom addr */ + 0x000004C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0900, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 143 */ + 0x0004A720, /* rom addr */ + 0x00000EC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0E41, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 144 */ + 0x0004B5E0, /* rom addr */ + 0x000008E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0C00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 145 */ + 0x0004BEC0, /* rom addr */ + 0x00000A00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 146 */ + 0x0004C8C0, /* rom addr */ + 0x00000920, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 147 */ + 0x0004D1E0, /* rom addr */ + 0x000010C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1040, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 148 */ + 0x0004E2A0, /* rom addr */ + 0x00000BC0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 149 */ + 0x0004EE60, /* rom addr */ + 0x000010C0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x1040, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 150 */ + 0x0004FF20, /* rom addr */ + 0x00000B00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0F00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 151 */ + 0x00050A20, /* rom addr */ + 0x000003E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 152 */ + 0x00050E00, /* rom addr */ + 0x00000620, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_TEMPORARY, /* cache type */ + 0x03FF, /* param0 */ + 0x0800, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 153 */ + 0x00051420, /* rom addr */ + 0x00005100, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x05FF, /* param0 */ + 0x7E00, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 154 */ + 0x00056520, /* rom addr */ + 0x00003F00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x05FF, /* param0 */ + 0x7600, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 155 */ + 0x0005A420, /* rom addr */ + 0x00001E40, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x05FF, /* param0 */ + 0x3400, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 156 */ + 0x0005C260, /* rom addr */ + 0x00004500, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x05FF, /* param0 */ + 0x7700, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 157 */ + 0x00060760, /* rom addr */ + 0x00003020, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x05FF, /* param0 */ + 0x5300, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 158 */ + 0x00063780, /* rom addr */ + 0x00004500, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERSISTENT, /* cache type */ + 0x05FF, /* param0 */ + 0x7700, /* param1 */ + 0x0000, /* param2 */ + }, + }, +}; + +ArcHeader AudiowaveHeaderStart ATTRIBUTE_ALIGN(1) = { + 6, /* entries */ + 0, /* unk param */ + nullptr, /* data start pointer */ + 0, /* copy */ + { 0, 0, 0, 0, 0, 0, 0 }, /* pad */ + /* entries */ + { + { + /* entry 0 */ + 0x00000000, /* rom addr */ + 0x0003A940, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_EITHER_NOSYNC, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 1 */ + 0x0003A940, /* rom addr */ + 0x0000DF00, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_EITHER_NOSYNC, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 2 */ + 0x00048840, /* rom addr */ + 0x0006A080, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_EITHER_NOSYNC, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 3 */ + 0x000B28C0, /* rom addr */ + 0x001226E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_EITHER_NOSYNC, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 4 */ + 0x001D4FA0, /* rom addr */ + 0x000F0E20, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_EITHER_NOSYNC, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 5 */ + 0x002C5DC0, /* rom addr */ + 0x003ED620, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_EITHER_NOSYNC, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + }, +}; + +ArcHeader AudiodataHeaderStart ATTRIBUTE_ALIGN(1) = { + 3, /* entries */ + 0, /* unk param */ + nullptr, /* data start pointer */ + 0, /* copy */ + { 0, 0, 0, 0, 0, 0, 0 }, /* pad */ + /* entries */ + { + { + /* entry 0 */ + 0x00000000, /* rom addr */ + 0x000CF700, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 1 */ + 0x000CF700, /* rom addr */ + 0x00067C80, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + { + /* entry 2 */ + 0x00137380, /* rom addr */ + 0x006B33E0, /* size */ + MEDIUM_CART, /* src medium */ + CACHE_LOAD_PERMANENT, /* cache type */ + 0x0000, /* param0 */ + 0x0000, /* param1 */ + 0x0000, /* param2 */ + }, + }, +}; + +// clang-format off +u16 AudiomapHeaderStart[] ATTRIBUTE_ALIGN(1) = { + 0x01F2, + 0x01F4, + 0x01F6, + 0x01F8, + 0x01FA, + 0x01FC, + 0x01FE, + 0x0200, + 0x0202, + 0x0204, + 0x0206, + 0x0208, + 0x020A, + 0x020C, + 0x020E, + 0x0210, + 0x0212, + 0x0214, + 0x0216, + 0x0218, + 0x021A, + 0x021C, + 0x021E, + 0x0220, + 0x0222, + 0x0224, + 0x0226, + 0x0228, + 0x022A, + 0x022C, + 0x022E, + 0x0230, + 0x0232, + 0x0234, + 0x0236, + 0x0238, + 0x023A, + 0x023C, + 0x023E, + 0x0240, + 0x0242, + 0x0244, + 0x0246, + 0x0248, + 0x024A, + 0x024C, + 0x024E, + 0x0250, + 0x0252, + 0x0254, + 0x0256, + 0x0258, + 0x025A, + 0x025C, + 0x025E, + 0x0260, + 0x0262, + 0x0264, + 0x0266, + 0x0268, + 0x026A, + 0x026C, + 0x026E, + 0x0270, + 0x0272, + 0x0274, + 0x0276, + 0x0278, + 0x027A, + 0x027C, + 0x027E, + 0x0280, + 0x0282, + 0x0284, + 0x0286, + 0x0288, + 0x028A, + 0x028C, + 0x028E, + 0x0290, + 0x0292, + 0x0294, + 0x0296, + 0x0298, + 0x029A, + 0x029C, + 0x029E, + 0x02A0, + 0x02A2, + 0x02A4, + 0x02A6, + 0x02A8, + 0x02AA, + 0x02AC, + 0x02AE, + 0x02B0, + 0x02B2, + 0x02B4, + 0x02B6, + 0x02B8, + 0x02BA, + 0x02BC, + 0x02BE, + 0x02C0, + 0x02C2, + 0x02C4, + 0x02C6, + 0x02C8, + 0x02CA, + 0x02CC, + 0x02CE, + 0x02D0, + 0x02D2, + 0x02D4, + 0x02D6, + 0x02D8, + 0x02DA, + 0x02DC, + 0x02DE, + 0x02E0, + 0x02E2, + 0x02E4, + 0x02E6, + 0x02E8, + 0x02EA, + 0x02EC, + 0x02EE, + 0x02F0, + 0x02F2, + 0x02F4, + 0x02F6, + 0x02F8, + 0x02FA, + 0x02FC, + 0x02FE, + 0x0300, + 0x0302, + 0x0304, + 0x0306, + 0x0308, + 0x030A, + 0x030C, + 0x030E, + 0x0310, + 0x0312, + 0x0314, + 0x0316, + 0x0318, + 0x031A, + 0x031C, + 0x031E, + 0x0320, + 0x0322, + 0x0324, + 0x0326, + 0x0328, + 0x032A, + 0x032C, + 0x032E, + 0x0330, + 0x0332, + 0x0334, + 0x0336, + 0x0338, + 0x033A, + 0x033C, + 0x033E, + 0x0340, + 0x0342, + 0x0344, + 0x0346, + 0x0348, + 0x034A, + 0x034C, + 0x034E, + 0x0350, + 0x0352, + 0x0354, + 0x0356, + 0x0358, + 0x035A, + 0x035C, + 0x035E, + 0x0360, + 0x0362, + 0x0364, + 0x0366, + 0x0368, + 0x036A, + 0x036C, + 0x036E, + 0x0370, + 0x0372, + 0x0374, + 0x0376, + 0x0378, + 0x037A, + 0x037C, + 0x037E, + 0x0380, + 0x0382, + 0x0384, + 0x0386, + 0x0388, + 0x038A, + 0x038C, + 0x038E, + 0x0390, + 0x0392, + 0x0394, + 0x0396, + 0x0398, + 0x039A, + 0x039C, + 0x039E, + 0x03A0, + 0x03A2, + 0x03A4, + 0x03A6, + 0x03A8, + 0x03AA, + 0x03AC, + 0x03AE, + 0x03B0, + 0x03B2, + 0x03B4, + 0x03B6, + 0x03B8, + 0x03BA, + 0x03BC, + 0x03BE, + 0x03C0, + 0x03C2, + 0x03C4, + 0x03C6, + 0x03C8, + 0x03CA, + 0x03CC, + 0x03CE, + 0x03D0, + 0x03D2, + 0x03D4, + 0x03D6, + 0x03DB, + 0x03DD, + 0x03DF, + 0x03E1, + 0x03E4, + 0x03E6, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x0101, + 0x011C, + 0x011E, + 0x011F, + 0x0120, + 0x0121, + 0x0122, + 0x0123, + 0x0123, + 0x0124, + 0x0125, + 0x011D, + 0x0126, + 0x0121, + 0x0127, + 0x0128, + 0x0129, + 0x012A, + 0x012B, + 0x012B, + 0x012C, + 0x012D, + 0x012E, + 0x012F, + 0x010E, + 0x0107, + 0x0110, + 0x0114, + 0x0112, + 0x0116, + 0x0117, + 0x0108, + 0x0115, + 0x0105, + 0x0119, + 0x010D, + 0x0118, + 0x0113, + 0x0104, + 0x0106, + 0x010C, + 0x010A, + 0x011A, + 0x0111, + 0x010B, + 0x010F, + 0x0109, + 0x0103, + 0x011B, + 0x0130, + 0x0130, + 0x0131, + 0x0131, + 0x0132, + 0x0133, + 0x0134, + 0x0135, + 0x0136, + 0x0137, + 0x0138, + 0x0139, + 0x013A, + 0x013B, + 0x013C, + 0x013D, + 0x013E, + 0x013F, + 0x0140, + 0x0141, + 0x0142, + 0x0143, + 0x0144, + 0x0145, + 0x0146, + 0x0147, + 0x0148, + 0x0149, + 0x014A, + 0x014B, + 0x014C, + 0x014D, + 0x014E, + 0x014F, + 0x0150, + 0x0151, + 0x0152, + 0x0153, + 0x0154, + 0x0155, + 0x0156, + 0x0157, + 0x0158, + 0x0159, + 0x015A, + 0x015B, + 0x015C, + 0x015D, + 0x015E, + 0x015F, + 0x0160, + 0x0161, + 0x0162, + 0x0163, + 0x0164, + 0x0165, + 0x0166, + 0x0167, + 0x0168, + 0x0169, + 0x016A, + 0x016B, + 0x016C, + 0x016D, + 0x016E, + 0x016F, + 0x0170, + 0x0170, + 0x0170, + 0x0170, + 0x0174, + 0x0175, + 0x0176, + 0x0177, + 0x0178, + 0x0179, + 0x017A, + 0x017B, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017C, + 0x017D, + 0x017E, + 0x017F, + 0x0180, + 0x0181, + 0x0182, + 0x0183, + 0x0184, + 0x0185, + 0x0186, + 0x0187, + 0x0188, + 0x0189, + 0x018A, + 0x018B, + 0x018C, + 0x018D, + 0x018E, + 0x018F, + 0x0190, + 0x0191, + 0x0192, + 0x0193, + 0x0194, + 0x0195, + 0x0196, + 0x0197, + 0x0198, + 0x0402, + 0x9B9A, + 0x9901, + 0x9C01, + 0x9D01, + 0x9E02, + 0x0200, + 0x0199, + 0x0102, + 0x0000, + 0x0000, + 0x0000, + 0x0000, +}; +// clang-format on