Disassemble palette.s
All but two functions match.
This commit is contained in:
@@ -15,15 +15,17 @@ struct Task
|
||||
|
||||
extern struct Task gTasks[];
|
||||
|
||||
void ResetTasks();
|
||||
void ResetTasks(void);
|
||||
u8 CreateTask(TaskFunc func, u8 priority);
|
||||
void DestroyTask(u8 taskId);
|
||||
void RunTasks();
|
||||
void RunTasks(void);
|
||||
void TaskDummy(u8 taskId);
|
||||
void SetTaskFuncWithFollowupFunc(u8 taskId, TaskFunc func, TaskFunc followupFunc);
|
||||
void SwitchTaskToFollowupFunc(u8 taskId);
|
||||
bool8 FuncIsActiveTask(TaskFunc func);
|
||||
u8 FindTaskIdByFunc(TaskFunc func);
|
||||
u8 GetTaskCount();
|
||||
u8 GetTaskCount(void);
|
||||
void SetWordTaskArg(u8 taskId, u8 dataElem, u32 value);
|
||||
u32 GetWordTaskArg(u8 taskId, u8 dataElem);
|
||||
|
||||
#endif // GUARD_TASK_H
|
||||
|
||||
Reference in New Issue
Block a user