k_wmark / k_wpillar OK, fop actor enums / debug building (#1946)

* d_k_wmark / d_k_wpillar OK

* make debug buildable / add assert functionality

* add more fop actor enums

* remove asm
This commit is contained in:
TakaRikka
2023-09-28 12:01:42 -07:00
committed by GitHub
parent 673e69386a
commit 89ed2b8a26
206 changed files with 1612 additions and 2472 deletions
+8
View File
@@ -4,8 +4,16 @@
#include "SSystem/SComponent/c_tag.h"
enum {
fpcLy_ROOT_e = 0,
fpcLy_CURRENT_e = 0xFFFFFFFD,
fpcLy_SPECIAL_e = 0xFFFFFFFE,
fpcLy_NONE_e = 0xFFFFFFFF,
};
typedef struct layer_class layer_class;
typedef struct layer_management_tag_class {
create_tag_class mCreateTag;
layer_class* mpLayer;
+5
View File
@@ -4,6 +4,11 @@
#include "f_pc/f_pc_method_tag.h"
enum {
fpcPi_CURRENT_e = 0xFFFD,
fpcPi_SPECIAL_e = 0xFFFE,
};
typedef struct process_priority_queue_info {
u32 mLayer;
u16 mListID;