3 down in 7B440 and 77480 (#260)

* delete dgb data

* 2

* 1 mo

* removing macro

* removing comment

* meowp
This commit is contained in:
Ethan Roseman 2021-04-17 20:46:17 +09:00 committed by GitHub
parent 8e47263c3f
commit f822f04c07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
107 changed files with 200 additions and 1084 deletions

View File

@ -529,7 +529,9 @@ typedef struct Camera {
/* 0x488 */ f32 linearInterp;
/* 0x48C */ f32 linearInterpScale; /* 3.0? */
/* 0x490 */ f32 moveSpeed;
/* 0x494 */ char unk_494[28];
/* 0x494 */ char unk_494[0x8];
/* 0x49C */ f32 unk_49C;
/* 0x4A0 */ char unk_4A0[0x10];
/* 0x4B0 */ Vec3f movePos;
/* 0x4BC */ char unk_4BC[28];
/* 0x4D8 */ s32 controllerType;
@ -1078,7 +1080,7 @@ typedef struct Shadow {
/* 0x10 */ struct Vec3f position;
/* 0x1C */ struct Vec3f scale;
/* 0x28 */ struct Vec3f unk_28;
/* 0x34 */ char unk_34[68];
/* 0x34 */ char unk_34[0x44];
} Shadow; // size = 0x78
typedef Shadow* ShadowList[MAX_SHADOWS];
@ -1532,10 +1534,10 @@ typedef struct PlayerStatus {
/* 0x008 */ s16 framesOnGround; /* Number of frames since last jump landed */
/* 0x00A */ char unk_0A[2];
/* 0x00C */ s8 peachDisguise;
/* 0x00D */ char unk_0D[1];
/* 0x00D */ s8 unk_0D;
/* 0x00E */ u8 unk_0E;
/* 0x00F */ u8 unk_0F;
/* 0x010 */ char unk_10[0x2];
/* 0x010 */ s16 unk_10;
/* 0x012 */ s16 moveFrames;
/* 0x014 */ s8 enableCollisionOverlapsCheck;
/* 0x015 */ s8 statusMenuCounterinputEnabledCounter; /* whether the C-up menu can appear */
@ -1552,14 +1554,16 @@ typedef struct PlayerStatus {
/* 0x060 */ char unk_60[4];
/* 0x064 */ f32 unk_64;
/* 0x068 */ f32 normalPitch;
/* 0x06C */ char unk_6C[4];
/* 0x06C */ f32 unk_6C;
/* 0x070 */ f32 gravityIntegrator[4];
/* 0x080 */ f32 targetYaw;
/* 0x084 */ f32 currentYaw;
/* 0x088 */ f32 unk_88;
/* 0x08C */ s32 unk_8C;
/* 0x090 */ f32 unk_90;
/* 0x094 */ char unk_94[12];
/* 0x094 */ s32 unk_94;
/* 0x098 */ s32 unk_98;
/* 0x09C */ s32 unk_9C;
/* 0x0A0 */ f32 heading;
/* 0x0A4 */ char unk_A4[4];
/* 0x0A8 */ f32 spriteFacingAngle; /* angle of sprite, relative to camera, from 0 to 180 */

View File

@ -21,7 +21,6 @@
#define CAM(id) (&gCameras[id])
#define CAM2(id) ({ Camera* c = gCameras; &c[id]; })
#define CURRENT_CAM (&gCameras[gCurrentCameraID])
#define GET_MAP_ENTRY(cfg, idx) (&(*cfg->entryList)[idx])
#define BADGE_MENU_PAGE(index) (&gBadgeMenuPages[index])
#define ITEM_MENU_PAGE(index) (&gItemMenuPages[index])

View File

@ -10,6 +10,8 @@
#define UNK_FUN_PTR(name) void(*name)(void)
#define UNK_ARGS
typedef void (*UnkFunc)();
/// Linker symbol address, as in `ld_addrs.h`.
typedef u8 Addr[];

View File

@ -101,6 +101,8 @@ extern s32 D_802E99DC;
extern Entity* D_802EB3A0;
extern s32 D_8015C7D0[3]; // not size 3
extern f32 D_800F7B70[];
extern UNK_TYPE D_0A0031E0;
extern UNK_TYPE D_0A001508;
extern UNK_TYPE D_0A0031B0;

View File

@ -87,15 +87,15 @@ void func_802E8BC0(Entity* entity) {
f32 entryX;
f32 entryZ;
entryX = GET_MAP_ENTRY(mapConfig, temp->unk_0C)->x;
entryZ = GET_MAP_ENTRY(mapConfig, temp->unk_0C)->z;
entryX = (*mapConfig->entryList)[temp->unk_0C].x;
entryZ = (*mapConfig->entryList)[temp->unk_0C].z;
temp->unk_04 = func_800E0088(entryX, entryZ) / playerStatus->runSpeed;
if (temp->unk_04 == 0) {
temp->unk_04 = 1;
}
entryX = GET_MAP_ENTRY(mapConfig, temp->unk_0C)->x;
entryZ = GET_MAP_ENTRY(mapConfig, temp->unk_0C)->z;
entryX = (*mapConfig->entryList)[temp->unk_0C].x;
entryZ = (*mapConfig->entryList)[temp->unk_0C].z;
temp_f20 = atan2(playerStatus2->position.x, playerStatus2->position.z, entryX, entryZ);
disable_player_input();
disable_player_static_collisions();

View File

@ -282,7 +282,7 @@ void gfx_init_state(void) {
gSPSegment(gMasterGfxPos++, 0x00, 0x0);
gSPDisplayList(gMasterGfxPos++, OS_K0_TO_PHYSICAL(&D_80074230));
temp = gMasterGfxPos++;
//temp = gMasterGfxPos++;
gSPDisplayList(gMasterGfxPos++, OS_K0_TO_PHYSICAL(&D_80074210));
}
#else

View File

@ -1,11 +1,16 @@
#include "common.h"
#include "ld_addrs.h"
extern s32 D_8010C920;
extern s32 D_8010C93C;
extern UNK_FUN_PTR(D_8010C93C);
extern s32 D_8010C940;
extern s32 D_8010C950;
extern s32 D_8010C958;
extern s32 D_802BDF60;
void func_802B72C0_E22870();
void func_800E0514(void);
INCLUDE_ASM(s32, "77480", test_below_player);
@ -122,7 +127,26 @@ void update_player(void) {
playerStatus->animFlags &= ~8;
}
INCLUDE_ASM(s32, "77480", check_input_use_partner);
void check_input_use_partner(void) {
PlayerStatus* playerStatus = &gPlayerStatus;
PlayerStatus* playerStatus2 = &gPlayerStatus;
PlayerData* playerData = &gPlayerData;
u32 actionState = playerStatus->actionState;
if (!(playerStatus->animFlags & 0x4000)) {
if (playerStatus->animFlags & 8 || playerStatus->statusMenuCounterinputEnabledCounter == 0) {
if (playerStatus->pressedButtons & BUTTON_C_DOWN && !(playerStatus->flags & 0x80) &&
!(playerStatus->pressedButtons & BUTTON_B) && !(playerStatus->animFlags & 0x1000) &&
actionState <= ACTION_STATE_RUN) {
if (playerData->currentPartner == PARTNER_GOOMBARIO) {
D_802BDF60 = playerStatus2->unk_C6;
}
partner_use_ability();
}
}
}
}
void func_800DFAAC(void) {
PlayerStatus* playerStatus = &gPlayerStatus;
@ -329,16 +353,42 @@ void func_800E0260(void) {
func_800E0330();
}
// Weird control flow / issue with loading linker addrs
#ifdef NON_MATCHING
extern s8 D_8015A57A;
void func_800E0294(void) {
PlayerStatus* playerStatus = &gPlayerStatus;
if (D_8015A57A != 0) {
UnkFunc* temp8010C93C = &D_8010C93C;
if (*temp8010C93C == NULL) {
if (!(playerStatus->animFlags & 0x30)) {
dma_copy(E225B0_ROM_START, E225B0_ROM_END, E225B0_VRAM);
*temp8010C93C = func_802B72C0_E22870;
}
} else {
(*temp8010C93C)();
return;
}
}
if (D_8010C93C != NULL) {
D_8010C93C();
}
}
#else
INCLUDE_ASM(s32, "77480", func_800E0294);
#endif
void func_800E0330(void) {
if ((gPlayerStatusPtr->animFlags & PLAYER_ANIM_FLAG_100) && (D_8010C93C != 0)) {
if ((gPlayerStatusPtr->animFlags & PLAYER_ANIM_FLAG_100) && (D_8010C93C != NULL)) {
func_802B7000_E225B0();
}
}
void func_800E0374(void) {
D_8010C93C = 0;
D_8010C93C = NULL;
gPlayerStatusPtr->animFlags &= ~PLAYER_ANIM_FLAG_100;
}

View File

@ -1,8 +1,21 @@
#include "common.h"
extern s32 D_8010C920;
extern s32 D_8010C940;
extern s32 D_8010C954;
extern s32 D_8010C958;
extern s32 D_8010C95C;
extern s32 D_8010C96C;
extern s32 D_8010C980;
extern s32 D_8010C9A0;
extern s32 D_800F7B40;
extern s32 D_800F7B44;
extern s32 D_8010C938;
extern s32 D_8010C990;
void update_player_input(void) {
PlayerStatus* ps = &gPlayerStatus;
PlayerStatus* playerStatus = ps; // ??? necessary
PlayerStatus* playerStatus = &gPlayerStatus;
PlayerStatus* playerStatus2 = &gPlayerStatus; // needed for some macro - not sure what yet
s32 inputBufPos = playerStatus->inputBufPos;
playerStatus->stickAxis[0] = gGameStatusPtr->stickX;
@ -33,11 +46,99 @@ void update_player_input(void) {
if (playerStatus->animFlags & 8) {
playerStatus->animFlags |= 0x200000;
playerStatus->pressedButtons |= 4;
playerStatus2->pressedButtons |= 4;
}
}
INCLUDE_ASM(s32, "7B440", func_800E205C);
void func_800E205C(void) {
s32* temp8010C92C = &D_8010C92C;
PlayerStatus* playerStatus = &gPlayerStatus;
GameStatus** gameStatus;
GameStatus *gameStatus2;
MapConfig* mapConfig;
f32 one;
f32* floatsTemp;
D_8010C96C = -1;
D_8010C954 = 0;
D_8010C920 = 0;
D_8010C940 = 0;
D_8010C958 = 0;
*temp8010C92C = 0;
D_8010C95C = 0;
D_8010C980 = 0;
D_800F7B40 = 0;
D_800F7B44 = 0;
D_8010C938 = 0;
D_8010C990 = 0;
playerStatus->unk_0D = 1;
playerStatus->renderMode = 0xD;
gameStatus = &gGameStatusPtr;
playerStatus->unk_0E = 255;
playerStatus->unk_0F = 255;
(*gameStatus)->peachFlags &= ~0x8;
(*gameStatus)->peachFlags &= ~0x10;
one = 1.0f;
if ((*gameStatus)->peachFlags & 1) {
playerStatus->colliderHeight = 55;
playerStatus->colliderDiameter = 38;
playerStatus->animFlags |= 0x1000;
if ((*gameStatus)->peachFlags & 2) {
*temp8010C92C = 2;
playerStatus->peachDisguise = (*gameStatus)->peachDisguise;
}
} else {
playerStatus->colliderHeight = 37;
playerStatus->colliderDiameter = 26;
(*gameStatus)->peachAnimIdx = 0;
}
// This grossness is needed for matching
floatsTemp = &D_800F7B70[0];
playerStatus->walkSpeed = *(floatsTemp++) * one;
playerStatus->runSpeed = *(floatsTemp++) * one;
playerStatus->unk_6C = *(floatsTemp++) * one;
set_action_state(ACTION_STATE_IDLE);
gameStatus2 = gGameStatusPtr;
playerStatus->currentSpeed = 0.0f;
playerStatus->targetYaw = 0.0f;
playerStatus->unk_64 = 0.0f;
playerStatus->unk_88 = 0.0f;
playerStatus->anim = 0;
playerStatus->decorationList = 0;
playerStatus->position.x = 0.0f;
playerStatus->position.y = 0.0f;
playerStatus->position.z = 0.0f;
playerStatus->currentYaw = 0.0f;
playerStatus->unk_90 = 0.0f;
playerStatus->unk_94 = 0;
playerStatus->unk_98 = 0;
playerStatus->unk_9C = 0;
mapConfig = gAreas[gameStatus2->areaID].maps[gameStatus2->mapID].config;
if (mapConfig->entryList != NULL) {
if (gameStatus2->entryID < mapConfig->entryCount) {
playerStatus->position.x = (*mapConfig->entryList)[gameStatus2->entryID].x;
playerStatus->position.y = (*mapConfig->entryList)[gameStatus2->entryID].y;
playerStatus->position.z = (*mapConfig->entryList)[gameStatus2->entryID].z;
playerStatus->currentYaw = (*mapConfig->entryList)[gameStatus2->entryID].yaw;
}
}
gCameras->targetPos.x = playerStatus->position.x;
gCameras->targetPos.y = playerStatus->position.y;
gCameras->targetPos.z = playerStatus->position.z;
func_800E59A0(mapConfig);
mem_clear(&D_8010F250, sizeof(Temp8010F250));
}
void func_800E22E4(s32* arg0) {
PlayerStatus* playerStatus = &gPlayerStatus;
@ -71,6 +172,26 @@ void input_to_move_vector(f32* angle, f32* magnitude) {
*magnitude = mag;
}
INCLUDE_ASM(s32, "7B440", func_800E23FC);
void func_800E23FC(f32* arg0, f32* arg1) {
PlayerStatus* playerStatus = &gPlayerStatus;
f32 stickX = gGameStatusPtr->stickX;
f32 stickY = -gGameStatusPtr->stickY;
f32 tempMax = 70.0f;
f32 temp1;
f32 temp2;
temp1 = dist2D(0.0f, 0.0f, stickX, stickY);
if (temp1 >= tempMax) {
temp1 = tempMax;
}
temp2 = clamp_angle(atan2(0.0f, 0.0f, stickX, stickY) + gCameras[0].currentYaw);
if (temp1 == 0.0f) {
temp2 = playerStatus->targetYaw;
}
*arg0 = temp2;
*arg1 = temp1;
}
INCLUDE_ASM(s32, "7B440", func_800E24F8);

View File

@ -29,7 +29,7 @@ s32 D_800F7B4C = 0;
s32 D_800F7B50[] = { 0x417C1B33, 0xC0EC5C14, 0x405C9AAA, 0xBF400000 };
f32 D_800F7B60[] = { 0.154342994094f, -0.350080013275f, -0.182262003422f, 0.0115200001746f };
f32 D_800F7B70[] = { 2.0, 4.0, 32.0, -32.0 };
f32 D_800F7B70[] = { 2.0f, 4.0f, 32.0f, -32.0f };
s16 D_800F7B80 = 0;
s32 D_800F7B84[] = { 0, 0, 0};
f32 D_800F7B90 = 0.0;

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802400B0_BFA150
.word 0xC4374000, 0x00000000, 0xC1000000, 0x42B40000, 0x437A0000, 0x41200000, 0xC2C80000, 0x43610000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80240520, D_802400B0_BFA150, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, func_80200000, 0x001900C0, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001D, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001D, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000043, 0x00000002, ClearAmbientSounds, 0x000000FA, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243760_BFD800
.word 0x00000043, 0x00000007, MakeEntity, D_802E9A18, 0xFFFFFFBF, 0x0000003C, 0xFFFFFF10, 0x00000000, D_80000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,12 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802437A0_BFD840
.word 0x61726E5F, 0x32305F73, 0x68617065, 0x00000000
glabel D_802437B0_BFD850
.ascii "arn_20_hit\0\0"
glabel D_802437BC_BFD85C
.word 0x61726E5F, 0x74657800, 0x61726E5F, 0x30340000, 0x6467625F, 0x30310000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802433F0_C00C70
.word 0x00000000, 0x00000000, 0x43F28000, 0x00000000, 0xC3F28000, 0x00000000, 0x00000000, 0x42B40000, 0x43F28000, 0x00000000, 0x00000000, 0x43870000, 0xC3F28000, 0x43520000, 0x00000000, 0x42B40000, 0x43F28000, 0x43520000, 0x00000000, 0x43870000, 0xC3F28000, 0x43D20000, 0x00000000, 0x42B40000, 0x43F28000, 0x43D20000, 0x00000000, 0x43870000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80243C48, D_802433F0_C00C70, 0x00000007, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C1, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000043, 0x00000002, ClearAmbientSounds, 0x000000FA, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,16 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802633F0_C20C70
.word 0x6467625F, 0x30300000, 0x6467625F, 0x30320000, 0x6467625F, 0x30380000, 0x6467625F, 0x30390000, 0x6467625F, 0x31370000, 0x6467625F, 0x31380000
glabel D_80263420_C20CA0
.double 32767.0
glabel jtbl_80263438_C20CB8
.word L80241538_BFEDB8, L80241548_BFEDC8, L80241560_BFEDE0, L80241570_BFEDF0, L802415F0_BFEE70, L802415F0_BFEE70, L802415F0_BFEE70, L802415F0_BFEE70, L802415F0_BFEE70, L802415F0_BFEE70, L80241588_BFEE08, L80241598_BFEE18, L802415B0_BFEE30, L802415C8_BFEE48, L802415E0_BFEE60, 0

View File

@ -1,21 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80263478_C20CF8
.double 360.0
glabel D_80263480_C20D00
.double 1.8
glabel jtbl_80263488_C20D08
.word L80242390_BFFC10, L802423C0_BFFC40, L802423D8_BFFC58, L802423E8_BFFC68, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L80242410_BFFC90, L80242430_BFFCB0, L80242448_BFFCC8, L80242468_BFFCE8, L80242480_BFFD00, L80242490_BFFD10, L802424A8_BFFD28, L802424F8_BFFD78, L802424C0_BFFD40, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424F8_BFFD78, L802424D8_BFFD58, L802424E8_BFFD68, 0x6467625F, 0x30300000
glabel D_80263510_C20D90
.double 32767.0
glabel D_80263518_C20D98
.double 32767.0
glabel jtbl_80263520_C20DA0
.word L802432A4_C00B24, L802432B4_C00B34, L802432CC_C00B4C, L802432DC_C00B5C, L802432F4_C00B74, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L8024330C_C00B8C, L8024331C_C00B9C, L80243334_C00BB4, L80243344_C00BC4, L8024335C_C00BDC, L80243374_C00BF4, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L80243394_C00C14, L8024338C_C00C0C, 0x6467625F, 0x30380000, 0, 0

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241430_C2FFD0
.word 0xC40DC000, 0x00000000, 0x43340000, 0x42B40000, 0x440DC000, 0x00000000, 0x43340000, 0x43870000, 0xC3E10000, 0x00000000, 0x42B00000, 0x43340000, 0x43E10000, 0x00000000, 0x42B00000, 0x43340000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80241974, D_80241430_C2FFD0, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C2, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241550_C300F0
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000005, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000B, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000D, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802425F0, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x00000011, 0x00000024, 0x00000002, 0xFE363C82, 0x00000012, 0x00000024, 0x00000002, 0xFE363C83, 0x00000010, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802425F8, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000002, 0x00000024, 0x00000002, 0xFE363C81, 0x00000009, 0x00000024, 0x00000002, 0xFE363C82, 0x00000015, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80242600, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000003, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000D, 0x00000024, 0x00000002, 0xFE363C82, 0x00000017, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80242608, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000B, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000D, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x00000012, 0x00000024, 0x00000002, 0xFE363C83, 0x00000010, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000002, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000015, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000016, 0x00000001, 0x00000003, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000017, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x0000000C, 0x00000002, 0xF5DE0180, 0xFFFFFFF1, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x802425C8, 0x00000013, 0x00000000, 0x00000047, 0x00000005, D_80241550_C300F0, 0x00000100, 0x00000005, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80241604, 0x00000100, 0x00000011, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x802416B8, 0x00000100, 0x00000009, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x8024176C, 0x00000100, 0x0000000D, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x802414B0, 0x00000044, 0x00000001, 0x80241820, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,18 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802425F0_C31190
.word 0x6467625F, 0x30330000, 0x6467625F, 0x30310000, 0x6467625F, 0x30370000, 0x6467625F, 0x31310000
glabel D_80242610_C311B0
.double 180.0
glabel jtbl_80242618_C311B8
.word L802407A0_C2F340, L802407B0_C2F350, L802407C8_C2F368, L802407D8_C2F378, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802407F0_C2F390, L80240800_C2F3A0, L80240818_C2F3B8, L80240828_C2F3C8, L80240840_C2F3E0, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L80240858_C2F3F8, L80240860_C2F400, L80240878_C2F418, L80240890_C2F430, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A8_C2F448, L802408A0_C2F440
glabel D_802427A8_C31348
.double 32767.0
glabel jtbl_802427B0_C31350
.word L80241278_C2FE18, L80241290_C2FE30, L802412A8_C2FE48, L802412C0_C2FE60, L802412D8_C2FE78, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802412F0_C2FE90, L80241310_C2FEB0, L80241328_C2FEC8, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L80241354_C2FEF4, L8024136C_C2FF0C, L80241384_C2FF24, L80241394_C2FF34, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413A4_C2FF44, L802413C4_C2FF64, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413DC_C2FF7C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413FC_C2FF9C, L802413F4_C2FF94

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802427D0_C33CB0
.word 0xC3AB8000, 0x00000000, 0x42A00000, 0x42B40000, 0x43AB8000, 0x00000000, 0x42A00000, 0x43870000, 0xC35C0000, 0x00000000, 0xC32A0000, 0x43340000, 0xC3AB8000, 0x43520000, 0x42A00000, 0x42B40000, 0x43AB8000, 0x43520000, 0x42A00000, 0x43870000, 0xC35C0000, 0x43520000, 0xC32A0000, 0x43340000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80242F30, D_802427D0_C33CB0, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C3, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243740_C34C20
.word 0x0000004D, 0x00000001, 0x00000000, 0x0000004F, 0x00000001, 0x00000001, 0x00000043, 0x00000001, func_802D6420, 0x0000000A, 0x00000002, 0xFE363C80, 0x00000000, 0x00000043, 0x00000004, ShowMessageAtScreenPos, 0x001D00D8, 0x000000A0, 0x00000028, 0x00000043, 0x00000001, func_802D6954, 0x00000050, 0x00000001, 0x00000001, 0x00000002, 0x00000000, 0x00000013, 0x00000000, 0x0000000A, 0x00000002, 0xFE363C80, 0xFFFFFFFF, 0x00000043, 0x00000001, func_802D6954, 0x00000050, 0x00000001, 0x00000001, 0x00000002, 0x00000000, 0x00000013, 0x00000000, 0x00000043, 0x00000003, FindKeyItem, 0x00000013, 0xFE363C80, 0x00000043, 0x00000002, RemoveKeyItemAt, 0xFE363C80, 0x00000043, 0x00000001, func_802D6954, 0x00000024, 0x00000002, 0xF8405F93, 0x00000001, 0x00000043, 0x00000005, dgb_03_GetEntityPosition, 0xFD050F80, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x00000043, 0x00000006, PlaySoundAt, 0x00000269, 0x00000000, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x00000024, 0x00000002, 0xFE363C80, 0xFD050F80, 0x00000043, 0x00000001, dgb_03_SetEntityFlags100000, 0x00000050, 0x00000001, 0x00000001, 0x00000048, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80242C3C, 0x00000100, 0x00000011, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF8405F93, 0x00000000, 0x00000043, 0x00000007, MakeEntity, 0x802BCD68, 0xFFFFFE9D, 0x000000DA, 0x0000004B, 0x00000050, D_80000000, 0x00000043, 0x00000002, AssignScript, 0x802438A8, 0x00000024, 0x00000002, 0xFD050F80, 0xFE363C80, 0x00000013, 0x00000000, 0x00000043, 0x00000007, MakeItemEntity, 0x0000015C, 0x00000000, 0x0000004B, 0x00000064, 0x00000011, 0xF8405F92, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,30 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802449C0_C35EA0
.word 0x6467625F, 0x30320000, 0x6467625F, 0x30390000, 0x6467625F, 0x30340000, 0x6467625F, 0x31330000, 0x6467625F, 0x30350000, 0x6467625F, 0x31340000
glabel D_802449F0_C35ED0
.double 180.0
glabel jtbl_802449F8_C35ED8
.word L802409F0_C31ED0, L80240A00_C31EE0, L80240A18_C31EF8, L80240A28_C31F08, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240A40_C31F20, L80240A50_C31F30, L80240A68_C31F48, L80240A78_C31F58, L80240A90_C31F70, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AA8_C31F88, L80240AB0_C31F90, L80240AC8_C31FA8, L80240AE0_C31FC0, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF8_C31FD8, L80240AF0_C31FD0
glabel D_80244B88_C36068
.double 32767.0
glabel D_80244B90_C36070
.double 32767.0
glabel jtbl_80244B98_C36078
.word L80241898_C32D78, L802418A8_C32D88, L802418C0_C32DA0, L802418D0_C32DB0, L802418E8_C32DC8, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241900_C32DE0, L80241910_C32DF0, L80241928_C32E08, L80241938_C32E18, L80241950_C32E30, L80241968_C32E48, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241988_C32E68, L80241980_C32E60
glabel jtbl_80244D28_C36208
.word L80241B34_C33014, L80241B44_C33024, L80241B5C_C3303C, L80241B6C_C3304C, L80241B84_C33064, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241B9C_C3307C, L80241BAC_C3308C, L80241BC4_C330A4, L80241BD4_C330B4, L80241BEC_C330CC, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C04_C330E4, L80241C0C_C330EC, L80241C24_C33104, L80241C3C_C3311C, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C54_C33134, L80241C4C_C3312C
glabel D_80244EB8_C36398
.double 32767.0
glabel jtbl_80244EC0_C363A0
.word L80242624_C33B04, L8024263C_C33B1C, L80242654_C33B34, L8024266C_C33B4C, L80242684_C33B64, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L8024269C_C33B7C, L802426BC_C33B9C, L802426D4_C33BB4, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L80242700_C33BE0, L80242718_C33BF8, L80242730_C33C10, L80242740_C33C20, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L80242750_C33C30, L80242770_C33C50, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L80242788_C33C68, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A8_C33C88, L802427A0_C33C80

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243110_C39640
.word 0x440FC000, 0x00000000, 0x43340000, 0x43870000, 0x440FC000, 0xC3D20000, 0x43340000, 0x43870000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x8024343C, D_80243110_C39640, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C4, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243210_C39740
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000010, 0x00000024, 0x00000002, 0xFE363C82, 0x00000010, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802443E0, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x00000014, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000D, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000B, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802443E8, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000D, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000B, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000010, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x0000000C, 0x00000002, 0xF5DE0180, 0xFFFFFFF1, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x80243D18, 0x00000013, 0x00000000, 0x00000046, 0x00000001, 0x80244378, 0x00000047, 0x00000005, D_80243210_C39740, 0x00000100, 0x00000010, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x802432C4, 0x00000100, 0x00000014, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80243170, 0x00000044, 0x00000001, 0x80243378, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,14 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802443E0_C3A910
.word 0x6467625F, 0x30360000, 0x6467625F, 0x30330000
glabel D_802443F0_C3A920
.double 32767.0
glabel jtbl_80244408_C3A938
.word L80241418_C37948, L80241428_C37958, L80241440_C37970, L80241450_C37980, L802414D0_C37A00, L802414D0_C37A00, L802414D0_C37A00, L802414D0_C37A00, L802414D0_C37A00, L802414D0_C37A00, L80241468_C37998, L80241478_C379A8, L80241490_C379C0, L802414A8_C379D8, L802414C0_C379F0, 0

View File

@ -1,12 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80244448_C3A978
.double 360.0
glabel D_80244450_C3A980
.double 1.8
glabel jtbl_80244458_C3A988
.word L80242234_C38764, L80242264_C38794, L8024227C_C387AC, L8024228C_C387BC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L802422B4_C387E4, L802422D4_C38804, L802422EC_C3881C, L8024230C_C3883C, L80242324_C38854, L80242334_C38864, L8024234C_C3887C, L8024239C_C388CC, L80242364_C38894, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024239C_C388CC, L8024237C_C388AC, L8024238C_C388BC, 0x6467625F, 0x30300000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241490_C3BEA0
.word 0x4400C000, 0x00000000, 0x439B0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x802416B0, D_80241490_C3BEA0, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C5, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241580_C3BF90
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000010, 0x00000024, 0x00000002, 0xFE363C82, 0x0000001E, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80242330, 0x00000002, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x0000001E, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x0000000C, 0x00000002, 0xF5DE0180, 0xFFFFFFF1, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x8024230C, 0x00000013, 0x00000000, 0x00000046, 0x00000001, 0x80241870, 0x00000044, 0x00000001, 0x802417F0, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x00000012, 0x7FFFFE00, 0x00000043, 0x00000003, EnableModel, 0x00000014, 0x00000000, 0x00000047, 0x00000005, D_80241580_C3BF90, 0x00000100, 0x00000010, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x802414E0, 0x00000044, 0x00000001, 0x80241634, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802417F0_C3C200
.word 0x00000043, 0x00000001, func_80240000_C3AA10, 0x00000043, 0x00000006, func_802CA988, 0x00000000, 0xFE363C82, 0xFE363C83, 0xFE363C84, 0xFE363C85, 0x00000043, 0x00000001, func_80240030_C3AA40, 0x00000024, 0x00000002, 0xF8405F97, 0x00000001, 0x00000043, 0x00000003, GotoMap, 0x80242338, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241870_C3C280
.word 0x0000000A, 0x00000002, 0xF8405F97, 0x00000000, 0x00000043, 0x00000007, MakeEntity, 0x802BCE84, 0x000001FE, 0xFFFFFF2E, 0x00000064, 0x00000000, D_80000000, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,18 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80242330_C3CD40
.word 0x6467625F, 0x30330000, 0x6467625F, 0x30360000
glabel D_80242340_C3CD50
.double 180.0
glabel D_80242348_C3CD58
.double 32767.0
glabel jtbl_80242350_C3CD60
.word L80241024_C3BA34, L8024103C_C3BA4C, L80241054_C3BA64, L8024106C_C3BA7C, L80241084_C3BA94, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L8024109C_C3BAAC, L802410BC_C3BACC, L802410D4_C3BAE4, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L80241100_C3BB10, L80241118_C3BB28, L80241130_C3BB40, L80241140_C3BB50, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L80241150_C3BB60, L80241170_C3BB80, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L80241188_C3BB98, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A8_C3BBB8, L802411A0_C3BBB0
glabel jtbl_802424E0_C3CEF0
.word L80241354_C3BD64, L80241364_C3BD74, L8024137C_C3BD8C, L8024138C_C3BD9C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L802413A4_C3BDB4, L802413B4_C3BDC4, L802413CC_C3BDDC, L802413DC_C3BDEC, L802413F4_C3BE04, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024140C_C3BE1C, L80241414_C3BE24, L8024142C_C3BE3C, L80241444_C3BE54, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L8024145C_C3BE6C, L80241454_C3BE64

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802402C0_C3D340
.word 0xC40FC000, 0x00000000, 0x432F0000, 0x42B40000, 0xC3160000, 0x42C80000, 0xC37A0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x802404F0, D_802402C0_C3D340, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C6, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,9 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802403C0_C3D440
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000C, 0x00000024, 0x00000002, 0xFE363C82, 0x00000005, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80240B60, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000005, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0x00090000, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x80240B44, 0x00000046, 0x00000001, 0x802407B8, 0x0000000A, 0x00000002, 0xF8405F97, 0x00000000, 0x00000043, 0x00000003, EnableGroup, 0x0000001C, 0x00000000, 0x00000012, 0x00000000, 0x00000043, 0x00000003, EnableGroup, 0x00000019, 0x00000000, 0x00000013, 0x00000000, 0x00000047, 0x00000005, D_802403C0_C3D440, 0x00000100, 0x0000000C, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80240320, 0x00000044, 0x00000001, 0x80240474, 0x00000002, 0x00000000, 0x00000001, 0x00000000
glabel D_80240620_C3D6A0
.word 0x00000000, 0x0000004D, 0x00000001, 0x00000000, 0x00000043, 0x00000002, func_802D5830, 0x00000002, 0x00000008, 0x00000001, 0x00000028, 0x00000043, 0x00000004, ShowGotItem, 0xFE363C80, 0x00000000, 0x00000000, 0x00000043, 0x00000002, func_802D5830, 0x00000000, 0x00000002, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000024, 0x00000002, 0xFE363C80, 0xFE363C8A, 0x0000000B, 0x00000002, 0xFE363C8A, 0x00000000, 0x00000046, 0x00000001, 0x80240624, 0x00000013, 0x00000000, 0x00000014, 0x00000001, 0xFE363C8B, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000003, AddItem, 0xFE363C8A, 0xFE363C80, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, AddKeyItem, 0xFE363C8A, 0x00000016, 0x00000001, 0x00000002, 0x00000043, 0x00000003, AddBadge, 0xFE363C8A, 0xFE363C80, 0x00000023, 0x00000000, 0x00000008, 0x00000001, 0x0000000F, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C8A, 0x00000013, 0x00000024, 0x00000002, 0xFE363C8B, 0x00000001, 0x00000024, 0x00000002, 0xF8405F98, 0x00000001, 0x00000046, 0x00000001, 0x8024068C, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000008, MakeEntity, 0x802EAE30, 0xFFFFFED4, 0x00000032, 0xFFFFFF38, 0x00000000, 0x00000000, D_80000000, 0x00000043, 0x00000002, AssignFlag, 0xF8405F98, 0x00000043, 0x00000002, AssignScript, 0x8024076C, 0x00000043, 0x00000007, MakeEntity, 0x802EA7E0, 0xFFFFFF83, 0x0000003C, 0x000000AF, 0x00000000, D_80000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240840_C3D8C0
.word 0x00000000, 0x00180018, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00630000, 0x0000000A, 0x00000002, 0xF9718884, 0x00000000, 0x00000043, 0x00000006, SpeakToPlayer, 0xFFFFFFFF, 0x00950104, 0x00950101, 0x00000000, 0x000E00F0, 0x00000024, 0x00000002, 0xF9718884, 0x00000001, 0x00000012, 0x00000000, 0x00000043, 0x00000006, SpeakToPlayer, 0xFFFFFFFF, 0x00950104, 0x00950101, 0x00000000, 0x000E00F1, 0x00000024, 0x00000002, 0xF9718884, 0x00000000, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000F, 0x00000002, 0xF5DE0180, 0xFFFFFFE6, 0x00000043, 0x00000005, SetNpcPos, 0xFFFFFFFF, 0x00000000, 0xFFFFFC18, 0x00000000, 0x00000013, 0x00000000, 0x00000043, 0x00000003, BindNpcInteract, 0xFFFFFFFF, 0x8024086C, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, D_80240840_C3D8C0, 0xC3960000, 0x41200000, 0x43160000, 0x00000401, 0x802408FC, 0x00000000, 0x00000000, 0x0000010E, D_80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00007FFF, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00007FFF, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00950101, 0x00950102, 0x00950103, 0x00950103, 0x00950101, 0x00950101, 0x00950100, 0x00950100, 0x0095010A, 0x00950103, 0x00950103, 0x00950103, 0x00950103, 0x00950103, 0x00950103, 0x00950103, 0x00000000, 0x00000000, 0x00000000, 0x001A00B3, 0x00000001, 0x80240954, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80240B60_C3DBE0
.word 0x6467625F, 0x30340000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241430_C3F020
.word 0xC3E10000, 0x00000000, 0xC2200000, 0x00000000, 0x437A0000, 0x433E0000, 0xC37A0000, 0x43340000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80241660, D_80241430_C3F020, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C7, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241530_C3F120
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000006, 0x00000024, 0x00000002, 0xFE363C82, 0x00000016, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80241E80, 0x00000002, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000016, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x0000000C, 0x00000002, 0xF5DE0180, 0xFFFFFFF1, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x80241E5C, 0x00000013, 0x00000000, 0x00000046, 0x00000001, 0x80241760, 0x00000047, 0x00000005, D_80241530_C3F120, 0x00000100, 0x00000006, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80241490, 0x00000044, 0x00000001, 0x802415E4, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000007, MakeItemEntity, 0x0000015C, 0xFFFFFF24, 0x0000004B, 0xFFFFFF2E, 0x00000011, 0xF8405F9A, 0x00000043, 0x00000008, MakeEntity, 0x802EAED4, 0xFFFFFE8E, 0x00000000, 0xFFFFFF38, 0x00000000, 0xFFFFFFFF, D_80000000, 0x00000043, 0x00000008, MakeEntity, 0x802EAED4, 0xFFFFFE66, 0x00000000, 0xFFFFFF38, 0x00000000, 0xFFFFFFFF, D_80000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80241E80_C3FA70
.word 0x6467625F, 0x30320000, 0x00000000, 0x00000000

View File

@ -1,15 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80241E90_C3FA80
.double 180.0
glabel D_80241E98_C3FA88
.double 32767.0
glabel jtbl_80241EA0_C3FA90
.word L80240FC4_C3EBB4, L80240FDC_C3EBCC, L80240FF4_C3EBE4, L8024100C_C3EBFC, L80241024_C3EC14, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L8024103C_C3EC2C, L8024105C_C3EC4C, L80241074_C3EC64, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L802410A0_C3EC90, L802410B8_C3ECA8, L802410D0_C3ECC0, L802410E0_C3ECD0, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L802410F0_C3ECE0, L80241110_C3ED00, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241128_C3ED18, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241148_C3ED38, L80241140_C3ED30
glabel jtbl_80242030_C3FC20
.word L802412F4_C3EEE4, L80241304_C3EEF4, L8024131C_C3EF0C, L8024132C_C3EF1C, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L80241344_C3EF34, L80241354_C3EF44, L8024136C_C3EF5C, L8024137C_C3EF6C, L80241394_C3EF84, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413AC_C3EF9C, L802413B4_C3EFA4, L802413CC_C3EFBC, L802413E4_C3EFD4, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413FC_C3EFEC, L802413F4_C3EFE4

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243C90_C43A40
.word 0xC40FC000, 0x00000000, 0x43340000, 0x42B40000, 0xC40FC000, 0x43520000, 0x43340000, 0x42B40000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80243FAC, D_80243C90_C43A40, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C8, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243D90_C43B40
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000E, 0x00000024, 0x00000002, 0xFE363C82, 0x00000017, 0x00000024, 0x00000002, 0xFE363C83, 0x00000019, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802469F0, 0x00000002, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x00000012, 0x00000024, 0x00000002, 0xFE363C82, 0x00000012, 0x00000024, 0x00000002, 0xFE363C83, 0x00000014, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802469F0, 0x00000004, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000017, 0x00000024, 0x00000002, 0xFE363C83, 0x00000019, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000001, 0x00000024, 0x00000002, 0xFE363C82, 0x00000012, 0x00000024, 0x00000002, 0xFE363C83, 0x00000014, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE4, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x80246958, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x802469AC, 0x00000018, 0x00000001, 0x0000003C, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x802469C4, 0x00000023, 0x00000000, 0x00000046, 0x00000001, 0x802469E0, 0x00000047, 0x00000005, D_80243D90_C43B40, 0x00000100, 0x0000000E, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80243E44, 0x00000100, 0x00000012, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80243CF0, 0x00000044, 0x00000001, 0x80243EF8, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802469E0_C46790
.word 0x00000002, 0x00000000, 0x00000001, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802469F0_C467A0
.word 0x6467625F, 0x30310000, 0x00000000, 0x00000000

View File

@ -1,24 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80246A00_C467B0
.double 32767.0
glabel D_80246A08_C467B8
.double 32767.0
glabel jtbl_80246A10_C467C0
.word L80240D78_C40B28, L80240D88_C40B38, L80240DA0_C40B50, L80240DB0_C40B60, L80240DC8_C40B78, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240DE0_C40B90, L80240DF0_C40BA0, L80240E08_C40BB8, L80240E18_C40BC8, L80240E30_C40BE0, L80240E48_C40BF8, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E68_C40C18, L80240E60_C40C10
glabel D_80246BA0_C46950
.double 180.0
glabel jtbl_80246BA8_C46958
.word L80241630_C413E0, L80241640_C413F0, L80241658_C41408, L80241668_C41418, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241680_C41430, L80241690_C41440, L802416A8_C41458, L802416B8_C41468, L802416D0_C41480, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L802416E8_C41498, L802416F0_C414A0, L80241708_C414B8, L80241720_C414D0, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241738_C414E8, L80241730_C414E0
glabel D_80246D38_C46AE8
.double 32767.0
glabel jtbl_80246D50_C46B00
.word L80242B78_C42928, L80242B88_C42938, L80242BA0_C42950, L80242BB0_C42960, L80242C30_C429E0, L80242C30_C429E0, L80242C30_C429E0, L80242C30_C429E0, L80242C30_C429E0, L80242C30_C429E0, L80242BC8_C42978, L80242BD8_C42988, L80242BF0_C429A0, L80242C08_C429B8, L80242C20_C429D0, 0

View File

@ -1,12 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80246D90_C46B40
.double 360.0
glabel D_80246D98_C46B48
.double 1.8
glabel jtbl_80246DA0_C46B50
.word L802439D0_C43780, L80243A00_C437B0, L80243A18_C437C8, L80243A28_C437D8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243A50_C43800, L80243A70_C43820, L80243A88_C43838, L80243AA8_C43858, L80243AC0_C43870, L80243AD0_C43880, L80243AE8_C43898, L80243B38_C438E8, L80243B00_C438B0, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B38_C438E8, L80243B18_C438C8, L80243B28_C438D8, 0x6467625F, 0x30300000, 0x6467625F, 0x30310000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243800_C4A3E0
.word 0xC40DC000, 0x00000000, 0x43340000, 0x42B40000, 0x440DC000, 0x00000000, 0x43340000, 0x43870000, 0xC3E10000, 0x00000000, 0x42B40000, 0x43340000, 0x43960000, 0x00000000, 0x42B40000, 0x43340000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80243D28, D_80243800_C4A3E0, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900C9, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243920_C4A500
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000005, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000A, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000C, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80245370, 0x00000004, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x00000011, 0x00000024, 0x00000002, 0xFE363C82, 0x00000011, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000F, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80245378, 0x00000003, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000002, 0x00000024, 0x00000002, 0xFE363C81, 0x00000009, 0x00000024, 0x00000002, 0xFE363C82, 0x00000014, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80245380, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000003, UseExitHeading, 0x00000028, 0x00000003, 0x00000044, 0x00000001, ExitWalk, 0x00000043, 0x00000003, GotoMap, 0x80245388, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80243B3C, 0x00080000, 0x0000000B, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000A, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000C, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000044, 0x00000001, 0x80243B98, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x00000011, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000F, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000044, 0x00000001, 0x80243B98, 0x00000016, 0x00000001, 0x00000002, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000014, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000044, 0x00000001, 0x80243B98, 0x00000016, 0x00000001, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x80243B98, 0x00000044, 0x00000001, EnterWalk, 0x00000008, 0x00000001, 0x00000001, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x0000000C, 0x00000002, 0xF5DE0180, 0xFFFFFFF1, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x8024533C, 0x00000013, 0x00000000, 0x00000044, 0x00000001, 0x80243F6C, 0x00000047, 0x00000005, D_80243920_C4A500, 0x00000100, 0x00000005, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x802439D4, 0x00000100, 0x00000011, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80243A88, 0x00000100, 0x00000009, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80243880, 0x00000044, 0x00000001, 0x80243BC4, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80243E50_C4AA30
.word 0x43960000, 0x00000000, 0x42B00000, 0x00000000, 0x00000008, 0x00000001, 0x00000002, 0x00000043, 0x0000000F, PlayEffect, 0x00000042, 0x00000001, 0x00000019, 0x00000003, 0x00000001, 0x0000000A, 0x0000001E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000005, 0x00000001, 0x0000000A, 0x00000043, 0x00000003, EnableModel, 0x0000001D, 0x00000000, 0x00000043, 0x00000003, EnableModel, 0x00000019, 0x00000001, 0x00000008, 0x00000001, 0x00000001, 0x00000043, 0x00000003, EnableModel, 0x0000001D, 0x00000001, 0x00000043, 0x00000003, EnableModel, 0x00000019, 0x00000000, 0x00000008, 0x00000001, 0x00000001, 0x00000006, 0x00000000, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x0000000D, 0x7FFFFE00, 0x00000024, 0x00000002, 0xF8405F9B, 0x00000001, 0x00000048, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF8405F9B, 0x00000000, 0x00000047, 0x00000005, 0x80243E60, 0x00100000, D_80243E50_C4AA30, 0x00000001, 0x00000000, 0x00000043, 0x00000003, EnableModel, 0x0000001D, 0x00000000, 0x00000012, 0x00000000, 0x00000043, 0x00000003, EnableModel, 0x00000019, 0x00000000, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x0000000D, 0x7FFFFE00, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,24 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80245370_C4BF50
.word 0x6467625F, 0x30330000, 0x6467625F, 0x30310000, 0x6467625F, 0x31320000, 0x6467625F, 0x31300000
glabel D_80245390_C4BF70
.double 180.0
glabel jtbl_80245398_C4BF78
.word L802407A0_C47380, L802407B0_C47390, L802407C8_C473A8, L802407D8_C473B8, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802407F0_C473D0, L80240800_C473E0, L80240818_C473F8, L80240828_C47408, L80240840_C47420, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L80240858_C47438, L80240860_C47440, L80240878_C47458, L80240890_C47470, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A8_C47488, L802408A0_C47480
glabel D_80245528_C4C108
.double 32767.0
glabel jtbl_80245530_C4C110
.word L80241278_C47E58, L80241290_C47E70, L802412A8_C47E88, L802412C0_C47EA0, L802412D8_C47EB8, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802412F0_C47ED0, L80241310_C47EF0, L80241328_C47F08, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L80241354_C47F34, L8024136C_C47F4C, L80241384_C47F64, L80241394_C47F74, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413A4_C47F84, L802413C4_C47FA4, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413DC_C47FBC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413FC_C47FDC, L802413F4_C47FD4
glabel D_802456C0_C4C2A0
.double 32767.0
glabel jtbl_802456D8_C4C2B8
.word L8024283C_C4941C, L8024284C_C4942C, L80242864_C49444, L80242874_C49454, L802428F4_C494D4, L802428F4_C494D4, L802428F4_C494D4, L802428F4_C494D4, L802428F4_C494D4, L802428F4_C494D4, L8024288C_C4946C, L8024289C_C4947C, L802428B4_C49494, L802428CC_C494AC, L802428E4_C494C4, 0

View File

@ -1,12 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80245718_C4C2F8
.double 360.0
glabel D_80245720_C4C300
.double 1.8
glabel jtbl_80245728_C4C308
.word L80243658_C4A238, L80243688_C4A268, L802436A0_C4A280, L802436B0_C4A290, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802436D8_C4A2B8, L802436F8_C4A2D8, L80243710_C4A2F0, L80243730_C4A310, L80243748_C4A328, L80243758_C4A338, L80243770_C4A350, L802437C0_C4A3A0, L80243788_C4A368, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437C0_C4A3A0, L802437A0_C4A380, L802437B0_C4A390, 0x6467625F, 0x30300000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802401F0_C4C580
.word 0x43960000, 0x00000000, 0xC2480000, 0x00000000, 0x43BB8000, 0x00000000, 0xC3700000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x8024050C, D_802401F0_C4C580, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900CA, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802402F0_C4C680
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000003, UseExitHeading, 0x00000028, 0x00000000, 0x00000044, 0x00000001, ExitWalk, 0x00000043, 0x00000003, GotoMap, 0x80241040, 0x00000003, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, D_802402F0_C4C680, 0x00080000, 0x00000008, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x8024034C, 0x00000044, 0x00000001, EnterWalk, 0x00000008, 0x00000001, 0x00000001, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000005, UseSettingsFrom, 0x00000000, 0x00000177, 0x00000000, 0xFFFFFF44, 0x00000043, 0x00000005, SetPanTarget, 0x00000000, 0x00000177, 0x00000000, 0xFFFFFF44, 0x00000043, 0x00000003, SetCamSpeed, 0x00000000, 0xF24BE280, 0x00000043, 0x00000004, PanToTarget, 0x00000000, 0x00000000, 0x00000001, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, DisablePlayerPhysics, 0x00000001, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000003, 0x00000008, 0x00000001, 0x00000001, 0x00000043, 0x00000002, SetPlayerJumpscale, 0xF24A7D4D, 0x00000043, 0x00000005, PlayerJump, 0x00000177, 0x00000000, 0xFFFFFF44, 0x00000014, 0x00000043, 0x00000004, PanToTarget, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000002, DisablePlayerPhysics, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000000, 0x00000044, 0x00000001, 0x8024034C, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000046, 0x00000001, 0x80240F40, 0x00000044, 0x00000001, 0x80240E68, 0x00000044, 0x00000001, 0x80240250, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x00000009, 0x7FFFFE00, 0x00000043, 0x00000003, EnableModel, 0x00000006, 0x00000000, 0x00000043, 0x00000003, EnableModel, 0x0000000C, 0x00000000, 0x00000043, 0x00000003, EnableModel, 0x00000012, 0x00000000, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x0000000C, 0x7FFFFE00, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x0000000D, 0x7FFFFE00, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x0000000E, 0x7FFFFE00, 0x00000044, 0x00000001, 0x80240378, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240EE0_C4D270
.word 0x00000024, 0x00000002, 0xF8405F9C, 0x00000001, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF8405F9D, 0x00000001, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF8405F9E, 0x00000001, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF8405F9C, 0x00000000, 0x00000043, 0x00000007, MakeEntity, 0x802BCE84, 0x000001F4, 0x00000000, 0xFFFFFF9C, 0x00000000, D_80000000, 0x00000043, 0x00000002, AssignScript, D_80240EE0_C4D270, 0x00000013, 0x00000000, 0x0000000A, 0x00000002, 0xF8405F9D, 0x00000000, 0x00000043, 0x00000007, MakeEntity, 0x802BCE84, 0x000001F4, 0x00000000, 0xFFFFFF06, 0x00000000, D_80000000, 0x00000043, 0x00000002, AssignScript, 0x80240F00, 0x00000013, 0x00000000, 0x0000000A, 0x00000002, 0xF8405F9E, 0x00000000, 0x00000043, 0x00000007, MakeEntity, 0x802BCE84, 0x00000177, 0x00000000, 0xFFFFFF06, 0x00000000, D_80000000, 0x00000043, 0x00000002, AssignScript, 0x80240F20, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80241040_C4D3D0
.word 0x6467625F, 0x30390000, 0x6467625F, 0x31310000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240050_C4D430
.word 0x43E10000, 0x00000000, 0xC2200000, 0x00000000, 0x43FA0000, 0x43340000, 0xC2C80000, 0x43340000, 0x43FA0000, 0x43340000, 0xC37A0000, 0x43340000, 0x43BB8000, 0x43340000, 0xC37A0000, 0x43340000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80240498, D_80240050_C4D430, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900CB, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240170_C4D550
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000B, 0x00000024, 0x00000002, 0xFE363C82, 0x00000015, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80240B00, 0x00000003, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000015, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000002, 0x00000000, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000005, UseSettingsFrom, 0x00000000, 0x000001F4, 0x00000000, 0xFFFFFF9C, 0x00000043, 0x00000005, SetPanTarget, 0x00000000, 0x000001F4, 0x00000000, 0xFFFFFF9C, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000016, 0x00000001, 0x00000002, 0x00000043, 0x00000005, UseSettingsFrom, 0x00000000, 0x000001F4, 0x0000004B, 0xFFFFFF06, 0x00000043, 0x00000005, SetPanTarget, 0x00000000, 0x000001F4, 0x0000004B, 0xFFFFFF06, 0x00000024, 0x00000002, 0xFE363C83, 0x0000004B, 0x00000016, 0x00000001, 0x00000003, 0x00000043, 0x00000003, SetZoneEnabled, 0x00000005, 0x00000000, 0x00000043, 0x00000005, UseSettingsFrom, 0x00000000, 0x00000177, 0x00000000, 0xFFFFFF51, 0x00000043, 0x00000005, SetPanTarget, 0x00000000, 0x00000177, 0x00000000, 0xFFFFFF51, 0x00000024, 0x00000002, 0xF9718882, 0x00000001, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000023, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000003, InterpPlayerYaw, 0x000000B4, 0x00000000, 0x00000043, 0x00000003, SetCamSpeed, 0x00000000, 0xF24BE280, 0x00000043, 0x00000004, PanToTarget, 0x00000000, 0x00000000, 0x00000001, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000004, GetPlayerPos, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x0000000E, 0x00000002, 0xFE363C81, 0xFE363C83, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000008, 0x00000001, 0x00000001, 0x00000006, 0x00000000, 0x00000043, 0x00000004, PanToTarget, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000046, 0x00000001, 0x80240A84, 0x00000044, 0x00000001, 0x802400D0, 0x00000047, 0x00000005, D_80240170_C4D550, 0x00000100, 0x0000000B, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80240224, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240570_C4D950
.word 0x00000003, 0x00000001, 0x00000000, 0x00000043, 0x00000004, GetPlayerPos, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x0000000F, 0x00000002, 0xFE363C81, 0xFE363C83, 0x00000024, 0x00000002, 0xFE363C81, 0xFE363C83, 0x00000013, 0x00000000, 0x00000043, 0x00000005, SetCamTarget, 0x00000000, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x00000008, 0x00000001, 0x00000001, 0x00000004, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000005, PlayerJump, 0x00000177, 0x0000010E, 0xFFFFFF06, 0x00000014, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF9718883, 0x00000001, 0x00000002, 0x00000000, 0x00000013, 0x00000000, 0x00000024, 0x00000002, 0xF9718883, 0x00000001, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000003, SetZoneEnabled, 0x00000005, 0x00000000, 0x0000000A, 0x00000002, 0xF9718882, 0x00000000, 0x0000000A, 0x00000002, 0xF8405F9E, 0x00000000, 0x00000043, 0x00000002, DisablePlayerPhysics, 0x00000001, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000003, 0x00000008, 0x00000001, 0x00000001, 0x00000024, 0x00000002, 0xFE363C83, 0x000001F4, 0x00000045, 0x00000002, D_80240570_C4D950, 0xFE363C8A, 0x00000043, 0x00000002, SetPlayerJumpscale, 0xF24A7D4D, 0x00000045, 0x00000002, 0x80240600, 0xFE363C8B, 0x00000005, 0x00000001, 0x00000000, 0x00000008, 0x00000001, 0x00000001, 0x00000043, 0x00000004, GetPlayerPos, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x0000000F, 0x00000002, 0xFE363C81, 0x000000A5, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000043, 0x00000004, GetPlayerPos, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x00000043, 0x00000004, SetPlayerPos, 0xFE363C80, 0x000000A5, 0xFE363C82, 0x00000049, 0x00000001, 0xFE363C8B, 0x00000043, 0x00000002, SetPlayerAnimation, 0x00080015, 0x00000043, 0x00000005, ShakeCam, 0x00000000, 0x00000000, 0x00000014, 0xF24A7E80, 0x00000008, 0x00000001, 0x0000000A, 0x00000043, 0x00000002, SetPlayerAnimation, 0x00010002, 0x00000043, 0x00000002, SetPlayerJumpscale, 0xF24A7A80, 0x00000043, 0x00000005, PlayerJump1, 0x00000177, 0x00000019, 0xFFFFFF06, 0x0000000A, 0x00000043, 0x00000001, func_80240000_C4D3E0, 0x00000043, 0x00000003, PlaySoundAtPlayer, 0x00002086, 0x00000000, 0x00000043, 0x00000002, SetPlayerJumpscale, 0xF24A7D4D, 0x00000043, 0x00000005, PlayerJump, 0x00000177, 0x00000000, 0xFFFFFF51, 0x0000000F, 0x00000049, 0x00000001, 0xFE363C8A, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000000, 0x00000008, 0x00000001, 0x00000002, 0x00000043, 0x00000003, SetZoneEnabled, 0x00000005, 0x00000001, 0x00000043, 0x00000002, DisablePlayerPhysics, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000024, 0x00000002, 0xF9718883, 0x00000000, 0x00000012, 0x00000000, 0x00000043, 0x00000002, DisablePlayerPhysics, 0x00000001, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000003, 0x00000008, 0x00000001, 0x00000001, 0x00000056, 0x00000000, 0x00000008, 0x00000001, 0x00000008, 0x00000043, 0x00000003, GotoMap, 0x80240B08, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000057, 0x00000000, 0x00000024, 0x00000002, 0xFE363C83, 0x000001F4, 0x00000045, 0x00000002, D_80240570_C4D950, 0xFE363C8A, 0x00000043, 0x00000002, SetPlayerJumpscale, 0xF24A7D4D, 0x00000043, 0x00000005, PlayerJump, 0x00000177, 0x0000010E, 0xFFFFFF06, 0x00000014, 0x00000024, 0x00000002, 0xF9718883, 0x00000000, 0x00000013, 0x00000000, 0x00000012, 0x00000000, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000003, 0x00000008, 0x00000001, 0x00000001, 0x00000024, 0x00000002, 0xFE363C83, 0x00000019, 0x00000043, 0x00000002, SetPlayerJumpscale, 0xF24A7D4D, 0x00000043, 0x00000005, PlayerJump, 0x00000177, 0x00000000, 0xFFFFFF51, 0x0000000F, 0x00000024, 0x00000002, 0xF9718882, 0x00000000, 0x00000049, 0x00000001, 0xFE363C8A, 0x00000043, 0x00000002, SetPlayerActionState, 0x00000000, 0x00000008, 0x00000001, 0x00000002, 0x00000043, 0x00000003, SetZoneEnabled, 0x00000005, 0x00000001, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000024, 0x00000002, 0xF9718883, 0x00000000, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000007, MakeItemEntity, 0x0000012E, 0x000000FA, 0x0000004B, 0xFFFFFF9C, 0x00000011, 0xF8405F9F, 0x00000043, 0x00000007, MakeEntity, 0x802EAA30, 0x00000177, 0x00000000, 0xFFFFFF06, 0x00000000, D_80000000, 0x00000043, 0x00000002, AssignScript, 0x8024062C, 0x00000024, 0x00000002, 0xFD050F80, 0xFE363C80, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80240B00_C4DEE0
.word 0x6467625F, 0x30320000, 0x6467625F, 0x31300000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802402C0_C4E1B0
.word 0xC3FA0000, 0x00000000, 0xC2200000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x802404E0, D_802402C0_C4E1B0, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900CC, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802403B0_C4E2A0
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000008, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000E, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80240A60, 0x00000002, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000E, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000046, 0x00000001, 0x80240A08, 0x00000044, 0x00000001, 0x802405E0, 0x00000044, 0x00000001, 0x80240310, 0x00000047, 0x00000005, D_802403B0_C4E2A0, 0x00000100, 0x00000008, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80240464, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000005, 0xC3FB8000, 0x00000000, 0xC27C0000, 0xFFFFFFFF, 0x00000000, 0x00000000, 0x00000000, 0x0000004D, 0x00000001, 0x000000EF, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000003, 0x0000000C, 0x00000002, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000003, 0x00000000, 0x00000002, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000003, 0x0000000E, 0x00000002, 0x00000056, 0x00000000, 0x00000043, 0x00000002, ResetFromLava, 0x802405C0, 0x00000057, 0x00000000, 0x00000008, 0x00000001, 0x00000032, 0x00000043, 0x00000005, TranslateModel, 0x00000013, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, ParentColliderToModel, 0x0000000C, 0x00000013, 0x00000005, 0x00000001, 0x00000000, 0x00000056, 0x00000000, 0x00000008, 0x00000001, 0x00000002, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x00000000, 0x7FFFFE00, 0x00000057, 0x00000000, 0x00000043, 0x00000005, MakeLerp, 0x00000000, 0xFFFFFFDD, 0x0000000F, 0x00000000, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000001, UpdateLerp, 0x00000043, 0x00000005, TranslateModel, 0x00000013, 0x00000000, 0xFE363C80, 0x00000000, 0x00000043, 0x00000002, UpdateColliderTransform, 0x0000000C, 0x00000008, 0x00000001, 0x00000001, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000000, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000008, 0x00000001, 0x0000003C, 0x00000043, 0x00000004, PlaySoundAtCollider, 0x00000000, 0x00002093, 0x00000000, 0x00000056, 0x00000000, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000001, 0x00000000, 0x7FFFFE00, 0x00000057, 0x00000000, 0x00000043, 0x00000005, MakeLerp, 0xFFFFFFDD, 0x00000000, 0x00000004, 0x00000000, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000001, UpdateLerp, 0x00000043, 0x00000005, TranslateModel, 0x00000013, 0x00000000, 0xFE363C80, 0x00000000, 0x00000043, 0x00000002, UpdateColliderTransform, 0x0000000C, 0x00000008, 0x00000001, 0x00000001, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000000, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000008, 0x00000001, 0x00000023, 0x00000006, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240870_C4E760
.word 0x00000000, 0x0000004D, 0x00000001, 0x00000000, 0x00000043, 0x00000002, func_802D5830, 0x00000002, 0x00000008, 0x00000001, 0x00000028, 0x00000043, 0x00000004, ShowGotItem, 0xFE363C80, 0x00000000, 0x00000000, 0x00000043, 0x00000002, func_802D5830, 0x00000000, 0x00000002, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000024, 0x00000002, 0xFE363C80, 0xFE363C8A, 0x0000000B, 0x00000002, 0xFE363C8A, 0x00000000, 0x00000046, 0x00000001, 0x80240874, 0x00000013, 0x00000000, 0x00000014, 0x00000001, 0xFE363C8B, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000003, AddItem, 0xFE363C8A, 0xFE363C80, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, AddKeyItem, 0xFE363C8A, 0x00000016, 0x00000001, 0x00000002, 0x00000043, 0x00000003, AddBadge, 0xFE363C8A, 0xFE363C80, 0x00000023, 0x00000000, 0x00000008, 0x00000001, 0x0000000F, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C8A, 0x00000013, 0x00000024, 0x00000002, 0xFE363C8B, 0x00000001, 0x00000024, 0x00000002, 0xF8405FA1, 0x00000001, 0x00000046, 0x00000001, 0x802408DC, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000008, MakeEntity, 0x802EAE30, 0xFFFFFF1F, 0x00000000, 0xFFFFFF0B, 0x00000000, 0x00000000, D_80000000, 0x00000043, 0x00000002, AssignFlag, 0xF8405FA1, 0x00000043, 0x00000002, AssignScript, 0x802409BC, 0x00000002, 0x00000000, 0x00000001, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80240A60_C4E950
.word 0x6467625F, 0x30390000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240000_C4E960
.word 0xC3E10000, 0x00000000, 0xC2200000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80240178, D_80240000_C4E960, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900CD, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802400F0_C4EA50
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000003, UseExitHeading, 0x0000001A, 0x00000000, 0x00000044, 0x00000001, ExitWalk, 0x00000043, 0x00000003, GotoMap, 0x802406C0, 0x00000005, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, D_802400F0_C4EA50, 0x00080000, 0x00000005, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000046, 0x00000001, 0x80240270, 0x00000043, 0x00000004, ModifyColliderFlags, 0x00000000, 0x00000006, 0x7FFFFE00, 0x00000046, 0x00000001, 0x80240680, 0x00000044, 0x00000001, 0x80240050, 0x00000024, 0x00000002, 0xFE363C80, 0x8024014C, 0x00000044, 0x00000001, EnterWalk, 0x00000008, 0x00000001, 0x00000001, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000007, MakeItemEntity, 0x000000F9, 0xFFFFFC72, 0x00000032, 0xFFFFFF32, 0x00000011, 0xF8405FA2, 0x00000043, 0x00000007, MakeItemEntity, 0x00000157, 0xFFFFFDEE, 0x00000037, 0xFFFFFF42, 0x00000011, 0xF8405FA3, 0x00000043, 0x00000007, MakeItemEntity, 0x00000157, 0xFFFFFE02, 0x00000037, 0xFFFFFF51, 0x00000011, 0xF8405FA4, 0x00000043, 0x00000007, MakeItemEntity, 0x00000157, 0xFFFFFE02, 0x00000037, 0xFFFFFF33, 0x00000011, 0xF8405FA5, 0x00000043, 0x00000007, MakeItemEntity, 0x00000157, 0xFFFFFE16, 0x00000037, 0xFFFFFF60, 0x00000011, 0xF8405FA6, 0x00000043, 0x00000007, MakeItemEntity, 0x00000157, 0xFFFFFE16, 0x00000037, 0xFFFFFF42, 0x00000011, 0xF8405FA7, 0x00000043, 0x00000007, MakeItemEntity, 0x00000157, 0xFFFFFE16, 0x00000037, 0xFFFFFF24, 0x00000011, 0xF8405FA8, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240380_C4ECE0
.word 0x00000043, 0x00000005, MakeLerp, 0x00000000, 0x0000001E, 0x0000000F, 0x00000000, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000001, UpdateLerp, 0x00000043, 0x00000005, TranslateGroup, 0x0000002F, 0x00000000, 0x00000000, 0xFE363C80, 0x00000043, 0x00000002, UpdateColliderTransform, 0x0000000D, 0x00000008, 0x00000001, 0x00000001, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000000, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000005, MakeLerp, 0x0000001E, 0x00000000, 0x0000000F, 0x00000000, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000001, UpdateLerp, 0x00000043, 0x00000005, TranslateGroup, 0x0000002F, 0x00000000, 0x00000000, 0xFE363C80, 0x00000043, 0x00000002, UpdateColliderTransform, 0x0000000D, 0x00000008, 0x00000001, 0x00000001, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000000, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000005, MakeLerp, 0x00000000, 0x0000001E, 0x0000000F, 0x00000000, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000001, UpdateLerp, 0x00000043, 0x00000005, TranslateGroup, 0x00000035, 0x00000000, 0x00000000, 0xFE363C80, 0x00000043, 0x00000002, UpdateColliderTransform, 0x00000011, 0x00000008, 0x00000001, 0x00000001, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000000, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000005, MakeLerp, 0x0000001E, 0x00000000, 0x0000000F, 0x00000000, 0x00000005, 0x00000001, 0x00000000, 0x00000043, 0x00000001, UpdateLerp, 0x00000043, 0x00000005, TranslateGroup, 0x00000035, 0x00000000, 0x00000000, 0xFE363C80, 0x00000043, 0x00000002, UpdateColliderTransform, 0x00000011, 0x00000008, 0x00000001, 0x00000001, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000000, 0x00000007, 0x00000000, 0x00000013, 0x00000000, 0x00000006, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xFD050F80, 0x00000000, 0x00000046, 0x00000001, D_80240380_C4ECE0, 0x00000024, 0x00000002, 0xFD050F80, 0x00000001, 0x00000012, 0x00000000, 0x00000046, 0x00000001, 0x80240424, 0x00000024, 0x00000002, 0xFD050F80, 0x00000000, 0x00000013, 0x00000000, 0x00000048, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000003, ParentColliderToModel, 0x0000000D, 0x0000002C, 0x00000047, 0x00000005, 0x80240610, 0x00000100, 0x0000000D, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802406C0_C4F020
.word 0x6467625F, 0x30330000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240000_C4F030
.word 0x440FC000, 0x00000000, 0x43340000, 0x43870000, 0x440FC000, 0x43520000, 0x43340000, 0x43870000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x8024038C, D_80240000_C4F030, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900CE, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240100_C4F130
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000E, 0x00000024, 0x00000002, 0xFE363C82, 0x00000018, 0x00000024, 0x00000002, 0xFE363C83, 0x00000016, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802404D0, 0x00000003, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000012, 0x00000024, 0x00000002, 0xFE363C82, 0x00000013, 0x00000024, 0x00000002, 0xFE363C83, 0x00000011, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802404D8, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000018, 0x00000024, 0x00000002, 0xFE363C83, 0x00000016, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000024, 0x00000002, 0xFE363C82, 0x00000013, 0x00000024, 0x00000002, 0xFE363C83, 0x00000011, 0x00000046, 0x00000001, EnterDoubleDoor, 0x0000000A, 0x00000002, 0xF9718881, 0x00000001, 0x00000008, 0x00000001, 0x00000005, 0x00000043, 0x00000002, SetPlayerAnimation, 0x0008001D, 0x00000008, 0x00000001, 0x00000014, 0x00000043, 0x00000002, SetPlayerAnimation, 0x00010002, 0x00000013, 0x00000000, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000000, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000046, 0x00000001, 0x80240480, 0x00000044, 0x00000001, 0x80240060, 0x00000047, 0x00000005, D_80240100_C4F130, 0x00000100, 0x0000000E, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x802401B4, 0x00000100, 0x00000012, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80240268, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240480_C4F4B0
.word 0x00000043, 0x00000008, MakeEntity, 0x802EA564, 0x000001F4, 0x0000003C, 0x0000004B, 0x00000000, 0x000000A3, D_80000000, 0x00000043, 0x00000002, AssignBlockFlag, 0xF8405FA9, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802404D0_C4F500
.word 0x6467625F, 0x30330000, 0x6467625F, 0x31350000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241870_C50D80
.word 0xC4A14000, 0x00000000, 0x43340000, 0x42B40000, 0x42FA0000, 0x00000000, 0x43340000, 0x43870000, 0x00000000, 0x00000000, 0x42B00000, 0x43340000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80241DA0, D_80241870_C50D80, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900CF, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x0000000A, 0x00000002, 0xF5DE024B, 0x0000000F, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x00000055, 0x00000000, 0x00000008, 0x00000012, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000013, 0x00000000, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_802419C0_C50ED0
.word 0x00000013, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000013, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000C, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000E, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80242CD0, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000A, 0x00000024, 0x00000002, 0xFE363C82, 0x00000013, 0x00000024, 0x00000002, 0xFE363C83, 0x00000011, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80242CD8, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000002, 0x00000024, 0x00000002, 0xFE363C81, 0x00000006, 0x00000024, 0x00000002, 0xFE363C82, 0x00000016, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x80242CE0, 0x00000000, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x802419C8, 0x00000100, 0x00000013, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80241B30, 0x00000100, 0x00000006, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF8405FAA, 0x00000000, 0x0000004E, 0x00000006, 0x80242AD0, 0x00000100, 0x00004000, D_802419C0_C50ED0, 0x00000000, 0x00000001, 0x00000012, 0x00000000, 0x00000047, 0x00000005, 0x80241A7C, 0x00000100, 0x0000000A, 0x00000001, 0x00000000, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000C, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000E, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C82, 0x00000013, 0x00000024, 0x00000002, 0xFE363C83, 0x00000011, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000002, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000016, 0x00000024, 0x00000002, 0xFE363C83, 0x00000001, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000044, 0x00000001, 0x80241BE4, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000024, 0x00000002, 0xF9718881, 0x00000000, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x0000000A, 0x00000002, 0xF8405FAC, 0x00000000, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x80242AB0, 0x00000013, 0x00000000, 0x00000046, 0x00000001, 0x80242C64, 0x00000044, 0x00000001, 0x802418E0, 0x00000044, 0x00000001, 0x80241C88, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80242AD0_C51FE0
.word 0x0000004D, 0x00000001, 0x00000000, 0x0000004F, 0x00000001, 0x00000001, 0x00000043, 0x00000001, func_802D6420, 0x0000000A, 0x00000002, 0xFE363C80, 0x00000000, 0x00000043, 0x00000004, ShowMessageAtScreenPos, 0x001D00D8, 0x000000A0, 0x00000028, 0x00000043, 0x00000001, func_802D6954, 0x00000050, 0x00000001, 0x00000001, 0x00000002, 0x00000000, 0x00000013, 0x00000000, 0x0000000A, 0x00000002, 0xFE363C80, 0xFFFFFFFF, 0x00000043, 0x00000001, func_802D6954, 0x00000050, 0x00000001, 0x00000001, 0x00000002, 0x00000000, 0x00000013, 0x00000000, 0x00000043, 0x00000003, FindKeyItem, 0x00000013, 0xFE363C80, 0x00000043, 0x00000002, RemoveKeyItemAt, 0xFE363C80, 0x00000043, 0x00000001, func_802D6954, 0x00000024, 0x00000002, 0xF8405FAA, 0x00000001, 0x00000043, 0x00000005, dgb_15_GetEntityPosition, 0xFD050F80, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x00000043, 0x00000006, PlaySoundAt, 0x00000269, 0x00000000, 0xFE363C80, 0xFE363C81, 0xFE363C82, 0x00000024, 0x00000002, 0xFE363C80, 0xFD050F80, 0x00000043, 0x00000001, dgb_15_SetEntityFlags100000, 0x00000050, 0x00000001, 0x00000001, 0x00000048, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x80241A7C, 0x00000100, 0x0000000A, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF8405FAA, 0x00000000, 0x00000043, 0x00000007, MakeEntity, 0x802BCD68, 0x00000082, 0x00000008, 0x000000AF, 0xFFFFFFB0, D_80000000, 0x00000043, 0x00000002, AssignScript, 0x80242C38, 0x00000024, 0x00000002, 0xFD050F80, 0xFE363C80, 0x00000013, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80242CD0_C521E0
.word 0x6467625F, 0x31340000, 0x6467625F, 0x31370000, 0x6467625F, 0x31360000, 0x00000000, 0x00000000

View File

@ -1,18 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_80242CF0_C52200
.double 180.0
glabel jtbl_80242CF8_C52208
.word L802407A0_C4FCB0, L802407B0_C4FCC0, L802407C8_C4FCD8, L802407D8_C4FCE8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802407F0_C4FD00, L80240800_C4FD10, L80240818_C4FD28, L80240828_C4FD38, L80240840_C4FD50, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L80240858_C4FD68, L80240860_C4FD70, L80240878_C4FD88, L80240890_C4FDA0, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A8_C4FDB8, L802408A0_C4FDB0
glabel D_80242E88_C52398
.double 32767.0
glabel D_80242E90_C523A0
.double 32767.0
glabel jtbl_80242E98_C523A8
.word L80241648_C50B58, L80241658_C50B68, L80241670_C50B80, L80241680_C50B90, L80241698_C50BA8, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L802416B0_C50BC0, L802416C0_C50BD0, L802416D8_C50BE8, L802416E8_C50BF8, L80241700_C50C10, L80241718_C50C28, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241738_C50C48, L80241730_C50C40, 0x6467625F, 0x31340000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241430_C53970
.word 0x43E10000, 0x00000000, 0xC2200000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80241688, D_80241430_C53970, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900D0, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241520_C53A60
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000006, 0x00000024, 0x00000002, 0xFE363C82, 0x00000010, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000044, 0x00000001, ExitSingleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802431E0, 0x00000002, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000000, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x0000000A, 0x00000002, 0xF8405FAC, 0x00000000, 0x00000024, 0x00000002, 0xF8405FAC, 0x00000001, 0x00000024, 0x00000002, 0xF5DE024B, 0x00000012, 0x00000013, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000010, 0x00000024, 0x00000002, 0xFE363C83, 0xFFFFFFFF, 0x00000046, 0x00000001, EnterSingleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x0000000C, 0x00000002, 0xF5DE0180, 0xFFFFFFF1, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x8024318C, 0x00000013, 0x00000000, 0x00000046, 0x00000001, 0x80241780, 0x00000044, 0x00000001, 0x80241480, 0x00000047, 0x00000005, D_80241520_C53A60, 0x00000100, 0x00000006, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x802415D4, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241780_C53CC0
.word 0x00000043, 0x00000007, MakeItemEntity, 0x00000013, 0xFFFFFF15, 0x00000019, 0xFFFFFF5B, 0x00000011, 0xF8405FAD, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000

File diff suppressed because one or more lines are too long

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802431E0_C55720
.word 0x6467625F, 0x31350000, 0x00000000, 0x00000000

View File

@ -1,15 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802431F0_C55730
.double 180.0
glabel D_802431F8_C55738
.double 32767.0
glabel jtbl_80243200_C55740
.word L80240FC4_C53504, L80240FDC_C5351C, L80240FF4_C53534, L8024100C_C5354C, L80241024_C53564, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L8024103C_C5357C, L8024105C_C5359C, L80241074_C535B4, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L802410A0_C535E0, L802410B8_C535F8, L802410D0_C53610, L802410E0_C53620, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L802410F0_C53630, L80241110_C53650, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241128_C53668, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241148_C53688, L80241140_C53680
glabel jtbl_80243390_C558D0
.word L802412F4_C53834, L80241304_C53844, L8024131C_C5385C, L8024132C_C5386C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L80241344_C53884, L80241354_C53894, L8024136C_C538AC, L8024137C_C538BC, L80241394_C538D4, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413AC_C538EC, L802413B4_C538F4, L802413CC_C5390C, L802413E4_C53924, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413FC_C5393C, L802413F4_C53934

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240000_C55A60
.word 0xC40E8000, 0x00000000, 0x43340000, 0x42B40000, 0xC3340000, 0x00000000, 0x43340000, 0x43870000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x802403B8, D_80240000_C55A60, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900D1, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80240100_C55B60
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000007, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000E, 0x00000024, 0x00000002, 0xFE363C83, 0x00000010, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802404D0, 0x00000001, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000001, 0x00000024, 0x00000002, 0xFE363C81, 0x0000000B, 0x00000024, 0x00000002, 0xFE363C82, 0x00000015, 0x00000024, 0x00000002, 0xFE363C83, 0x00000013, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802404D8, 0x00000005, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000047, 0x00000005, D_80240100_C55B60, 0x00000100, 0x00000007, 0x00000001, 0x00000000, 0x00000047, 0x00000005, 0x802401B4, 0x00000100, 0x0000000B, 0x00000001, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, GetLoadType, 0xFE363C81, 0x0000000A, 0x00000002, 0xFE363C81, 0x00000001, 0x00000044, 0x00000001, EnterSavePoint, 0x00000044, 0x00000001, 0x80240268, 0x00000002, 0x00000000, 0x00000013, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x0000000E, 0x00000024, 0x00000002, 0xFE363C83, 0x00000010, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000016, 0x00000001, 0x00000001, 0x00000024, 0x00000002, 0xFE363C82, 0x00000015, 0x00000024, 0x00000002, 0xFE363C83, 0x00000013, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000023, 0x00000000, 0x00000044, 0x00000001, 0x80240268, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000046, 0x00000001, 0x80240470, 0x00000044, 0x00000001, 0x80240060, 0x00000044, 0x00000001, 0x802402B0, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000007, MakeEntity, D_802E9A18, 0xFFFFFED4, 0x0000003C, 0x0000004B, 0x00000000, D_80000000, 0x00000043, 0x00000007, MakeEntity, 0x802EA7E0, 0xFFFFFE3E, 0x0000003C, 0x0000004B, 0x00000000, D_80000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .rodata
glabel D_802404D0_C55F30
.word 0x6467625F, 0x31350000, 0x6467625F, 0x30310000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241270_C571B0
.word 0xC2F00000, 0x00000000, 0x43340000, 0x42B40000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x80241490, D_80241270_C571B0, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x001900D2, 0x00000014, 0x00000001, 0xF5DE0180, 0x00000018, 0x00000001, 0xFFFFFFE3, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000018, 0x00000001, 0xFFFFFFF0, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001F, 0x00000000, 0x00000008, 0x0000001C, 0x00000000, 0x00000043, 0x00000005, SetMusicTrack, 0x00000000, 0x0000001E, 0x00000000, 0x00000008, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

View File

@ -1,6 +0,0 @@
.include "macro.inc"
.section .data
glabel D_80241360_C572A0
.word 0x0000004D, 0x00000001, 0x0000001B, 0x00000043, 0x00000002, DisablePlayerInput, 0x00000001, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000024, 0x00000002, 0xFE363C80, 0x00000000, 0x00000024, 0x00000002, 0xFE363C81, 0x00000011, 0x00000024, 0x00000002, 0xFE363C82, 0x00000008, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000A, 0x00000044, 0x00000001, ExitDoubleDoor, 0x00000008, 0x00000001, 0x00000011, 0x00000043, 0x00000003, GotoMap, 0x802438D0, 0x00000006, 0x00000008, 0x00000001, 0x00000064, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000043, 0x00000002, UseDoorSounds, 0x00000003, 0x00000043, 0x00000002, GetEntryID, 0xFE363C80, 0x00000014, 0x00000001, 0xFE363C80, 0x00000016, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xFE363C82, 0x00000008, 0x00000024, 0x00000002, 0xFE363C83, 0x0000000A, 0x00000046, 0x00000001, EnterDoubleDoor, 0x00000023, 0x00000000, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000024, 0x00000002, 0xF5DE0329, 0x0000000F, 0x00000043, 0x00000002, SetSpriteShading, 0xFFFFFFFF, 0x00000043, 0x00000006, SetCamPerspective, 0x00000000, 0x00000003, 0x00000019, 0x00000010, 0x00001000, 0x00000043, 0x00000005, SetCamBGColor, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0x00000003, SetCamEnabled, 0x00000000, 0x00000001, 0x00000043, 0x00000003, SetCamLeadPlayer, 0x00000000, 0x00000000, 0x00000043, 0x00000003, MakeNpcs, 0x00000001, 0x802436B4, 0x00000046, 0x00000001, 0x80243874, 0x00000044, 0x00000001, 0x802412C0, 0x00000047, 0x00000005, D_80241360_C572A0, 0x00000100, 0x00000011, 0x00000001, 0x00000000, 0x00000044, 0x00000001, 0x80241414, 0x00000002, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000

Some files were not shown because too many files have changed in this diff Show More