mirror of
https://github.com/zeldaret/mm.git
synced 2026-09-09 11:44:10 -04:00
pragma variant for GLOBAL_ASM (#49)
* pragma GLOBAL_ASM * Revert split_asm.py arg description change
This commit is contained in:
+185
-185
@@ -5,7 +5,7 @@
|
||||
#define ABS(x) ((x) < 0 ? -(x) : (x))
|
||||
#define DECR(x) ((x) == 0 ? 0 : ((x) -= 1))
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_PrintLists.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_PrintLists.asm")
|
||||
|
||||
void Actor_SetDrawParams(ActorShape* iParm1, f32 yDisplacement, actor_shadow_draw_func func, f32 scale) {
|
||||
iParm1->yDisplacement = yDisplacement;
|
||||
@@ -14,33 +14,33 @@ void Actor_SetDrawParams(ActorShape* iParm1, f32 yDisplacement, actor_shadow_dra
|
||||
iParm1->alphaScale = 255;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_PostDraw.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_PostDraw.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B3FC0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B3FC0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4024.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4024.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4088.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4088.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B40B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B40B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B40E0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B40E0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B42F8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B42F8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4A98.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4A98.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4AEC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4AEC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4B50.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4B50.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4EDC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4EDC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4F40.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4F40.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4F78.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B4F78.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B5040.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B5040.asm")
|
||||
|
||||
void Actor_TargetContextInit(TargetContext* targetCtxt, Actor* actor, GlobalContext* ctxt) {
|
||||
targetCtxt->unk90 = NULL;
|
||||
@@ -54,9 +54,9 @@ void Actor_TargetContextInit(TargetContext* targetCtxt, Actor* actor, GlobalCont
|
||||
func_800B4F78(targetCtxt, actor->type, ctxt);
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B5208.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B5208.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B5814.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B5814.asm")
|
||||
|
||||
u32 Actor_GetSwitchFlag(GlobalContext* ctxt, s32 flag) {
|
||||
if (flag >= 0 && flag < 0x80) {
|
||||
@@ -147,7 +147,7 @@ void Actor_TitleCardCreate(GlobalContext* ctxt, TitleCardContext* titleCtxt, u32
|
||||
titleCtxt->fadeInDelay = 0;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_Nop800B5E50.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_Nop800B5E50.asm")
|
||||
|
||||
void Actor_TitleCardUpdate(GlobalContext* ctxt, TitleCardContext* titleCtxt) {
|
||||
if (DECR(titleCtxt->fadeInDelay) == 0) {
|
||||
@@ -161,23 +161,23 @@ void Actor_TitleCardUpdate(GlobalContext* ctxt, TitleCardContext* titleCtxt) {
|
||||
}
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_TitleCardDraw.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_TitleCardDraw.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6434.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6434.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6468.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6468.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6474.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6474.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B648C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B648C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B64FC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B64FC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6584.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6584.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6608.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6608.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6680.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6680.asm")
|
||||
|
||||
void Actor_MarkForDeath(Actor* actor) {
|
||||
actor->draw = NULL;
|
||||
@@ -245,7 +245,7 @@ void Actor_InitToDefaultValues(Actor* actor, GlobalContext* ctxt) {
|
||||
}
|
||||
}
|
||||
#else
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_InitToDefaultValues.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_InitToDefaultValues.asm")
|
||||
#endif
|
||||
|
||||
void Actor_FiniActor(Actor* actor, GlobalContext* ctxt) {
|
||||
@@ -268,7 +268,7 @@ void Actor_ApplyMovement(Actor* actor) {
|
||||
actor->currPosRot.pos.z += ((actor->velocity.z * actorMovementScale) + actor->unkA0.displacement.z);
|
||||
}
|
||||
#else
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_ApplyMovement.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_ApplyMovement.asm")
|
||||
#endif
|
||||
|
||||
#ifdef NON_MATCHING
|
||||
@@ -282,7 +282,7 @@ void Actor_SetVelocityYRotationAndGravity(Actor* actor) {
|
||||
}
|
||||
}
|
||||
#else
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SetVelocityYRotationAndGravity.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SetVelocityYRotationAndGravity.asm")
|
||||
#endif
|
||||
|
||||
void Actor_SetVelocityAndMoveYRotationAndGravity(Actor* actor) {
|
||||
@@ -314,9 +314,9 @@ void Actor_SetVelocityAndMoveXYRotationReverse(Actor* actor) {
|
||||
Actor_ApplyMovement(actor);
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6C04.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6C04.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6C58.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6C58.asm")
|
||||
|
||||
s16 Actor_YawBetweenActors(Actor* from, Actor* to) {
|
||||
return Math_Vec3f_Yaw(&from->currPosRot.pos, &to->currPosRot.pos);
|
||||
@@ -377,38 +377,38 @@ f32 Actor_YDistance(Actor* actor1, Actor* actor2) {
|
||||
return actor2->currPosRot.pos.y - actor1->currPosRot.pos.y;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6F20.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6F20.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6FC8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B6FC8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7090.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7090.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7118.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7118.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7128.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7128.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B715C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B715C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7170.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7170.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B71DC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B71DC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7200.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7200.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B722C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B722C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B724C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B724C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7298.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7298.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B72E0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B72E0.asm")
|
||||
|
||||
void func_800B72F8(DynaPolyActor* dpactor, f32 a1, s16 a2) {
|
||||
dpactor->unk150 = a2;
|
||||
dpactor->unk148 += a1;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_IsLinkFacingActor.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_IsLinkFacingActor.asm")
|
||||
|
||||
s32 Actor_IsActorFacedByActor(Actor* actor, Actor* other, s16 tolerance) {
|
||||
s16 angle;
|
||||
@@ -442,7 +442,7 @@ s32 Actor_IsActorFacingActor(Actor* actor, Actor* other, s16 tolerance) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_IsActorFacingLinkAndWithinRange.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_IsActorFacingLinkAndWithinRange.asm")
|
||||
|
||||
s32 Actor_IsActorFacingActorAndWithinRange(Actor* actor, Actor* other, f32 range, s16 tolerance) {
|
||||
s16 dist;
|
||||
@@ -456,65 +456,65 @@ s32 Actor_IsActorFacingActorAndWithinRange(Actor* actor, Actor* other, f32 range
|
||||
return 0;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B75A0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B75A0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B761C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B761C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7678.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7678.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B78B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B78B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7E04.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7E04.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7FE0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B7FE0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8018.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8018.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8050.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8050.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8118.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8118.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B81E0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B81E0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8214.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8214.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8248.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8248.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B82EC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B82EC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B83BC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B83BC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B83F8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B83F8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B84D0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B84D0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8500.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8500.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B85E0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B85E0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8614.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8614.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B863C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B863C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B867C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B867C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B86C8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B86C8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8708.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8708.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8718.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8718.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B874C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B874C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8804.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8804.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B882C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B882C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B886C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B886C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8898.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8898.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8934.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8934.asm")
|
||||
|
||||
u32 Actor_HasParent(Actor* actor, GlobalContext* ctxt) {
|
||||
if (actor->parent != NULL) {
|
||||
@@ -524,102 +524,102 @@ u32 Actor_HasParent(Actor* actor, GlobalContext* ctxt) {
|
||||
}
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8A1C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8A1C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8B84.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8B84.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8BB0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8BB0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8BD0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8BD0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8BFC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8BFC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C20.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C20.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C50.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C50.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C78.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C78.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C9C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8C9C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8CEC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8CEC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8D10.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8D10.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8D50.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8D50.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8D98.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8D98.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8DD4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8DD4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8E1C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8E1C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8E58.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8E58.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8EC8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8EC8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8EF4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8EF4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8F98.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8F98.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8FC0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8FC0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8FE8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B8FE8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9010.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9010.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9038.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9038.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9084.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9084.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9098.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9098.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B90AC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B90AC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B90F4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B90F4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9120.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9120.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_Init.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_Init.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9334.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9334.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_UpdateActor.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_UpdateActor.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_UpdateAll.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_UpdateAll.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_DrawActor.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_DrawActor.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9D1C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9D1C.asm")
|
||||
|
||||
void Actor_DrawAllSetup(GlobalContext* ctxt) {
|
||||
ctxt->actorCtx.undrawnActorCount = 0;
|
||||
ctxt->actorCtx.unkB = 0;
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_RecordUndrawnActor.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_RecordUndrawnActor.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9E84.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9E84.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9EF4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800B9EF4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA2D8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA2D8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA2FC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA2FC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_DrawAll.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_DrawAll.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA6FC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA6FC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA798.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA798.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA8B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA8B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA9B4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BA9B4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_InsertIntoTypeList.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_InsertIntoTypeList.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_RemoveFromTypeList.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_RemoveFromTypeList.asm")
|
||||
|
||||
void Actor_FreeOverlay(ActorOverlay* entry) {
|
||||
void* ramAddr;
|
||||
@@ -641,126 +641,126 @@ void Actor_FreeOverlay(ActorOverlay* entry) {
|
||||
}
|
||||
}
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_Spawn.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_Spawn.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_LoadOverlay.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_LoadOverlay.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SpawnWithParentAndCutscene.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SpawnWithParentAndCutscene.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SpawnWithParent.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SpawnWithParent.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SpawnTransitionActors.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//Actor_SpawnTransitionActors.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB2D0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB2D0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB498.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB498.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB59C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB59C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB604.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB604.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB8EC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BB8EC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBA88.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBA88.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBAC0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBAC0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBB74.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBB74.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBC20.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBC20.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBCEC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBCEC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBDAC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBDAC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBFB0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BBFB0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC154.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC154.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC188.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC188.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC1B4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC1B4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC270.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC270.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC444.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC444.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC4EC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC4EC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC5B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC5B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC5EC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC5EC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC620.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC620.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC770.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC770.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC7D8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC7D8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC848.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC848.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC8B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BC8B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCB50.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCB50.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCB70.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCB70.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCBF4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCBF4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCC68.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCC68.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCCDC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BCCDC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD2B4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD2B4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD384.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD384.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD6B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD6B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD6E4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD6E4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD888.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD888.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD9A0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD9A0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD9E0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BD9E0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDAA0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDAA0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDB6C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDB6C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDC5C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDC5C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDCF4.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDCF4.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDFB0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDFB0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDFC0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BDFC0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE03C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE03C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE0B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE0B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE184.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE184.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE22C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE22C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE258.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE258.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE2B8.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE2B8.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE33C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE33C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE3D0.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE3D0.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE504.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE504.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE568.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE568.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE5CC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE5CC.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE63C.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE63C.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE680.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BE680.asm")
|
||||
|
||||
GLOBAL_ASM("asm/non_matchings/z_actor//func_800BF7CC.asm")
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/z_actor//func_800BF7CC.asm")
|
||||
|
||||
Reference in New Issue
Block a user