mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
b3eae0e5b7
* fault.h * some docs stealing * fix building * fault_internal.h * pass * finish stealing docs * finish cleanup * format * warning * Update src/boot_O2_g3/fault.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * Update src/boot_O2_g3/fault.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * Update src/boot_O2_g3/fault.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * review Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * arggggg * arggggg part 2 * STACK * PHYS_TO_K0(0x400000) * format * fix * Instance * format * Neutral reset * variables.h cleanup * bss * frameBuffer * format * Update src/boot_O2_g3/fault.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * review Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * Update src/boot_O2_g3/fault.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * bss * bss * bss * callback cleanup * fix function declarations * fix again * bss * bss * Update src/overlays/actors/ovl_En_Fishing/z_en_fishing.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/boot_O2_g3/fault.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * bss * bss * Update src/boot_O2_g3/fault.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * review * import bss * format * minor cleanup * bss * review * fix * bss * bss * bss * bss * bss * format * a * Z_PRIORITY_FAULT * bss * fix * idle.c bss doesn't want to get fixed :c * review * bss --------- Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com>
29 lines
759 B
C
29 lines
759 B
C
#ifndef Z64THREAD_H
|
|
#define Z64THREAD_H
|
|
|
|
#define Z_THREAD_ID_IDLE 1
|
|
#define Z_THREAD_ID_SLOWLY 2
|
|
#define Z_THREAD_ID_FAULT 2
|
|
#define Z_THREAD_ID_MAIN 3
|
|
#define Z_THREAD_ID_GRAPH 4
|
|
#define Z_THREAD_ID_SCHED 5
|
|
#define Z_THREAD_ID_PADMGR 7
|
|
#define Z_THREAD_ID_AUDIOMGR 10
|
|
#define Z_THREAD_ID_FLASHROM 13
|
|
#define Z_THREAD_ID_DMAMGR 18
|
|
#define Z_THREAD_ID_IRQMGR 19
|
|
|
|
#define Z_PRIORITY_SLOWLY 5
|
|
#define Z_PRIORITY_GRAPH 9
|
|
#define Z_PRIORITY_AUDIOMGR 11
|
|
#define Z_PRIORITY_IDLE 12
|
|
#define Z_PRIORITY_MAIN 12
|
|
#define Z_PRIORITY_FLASHROM 13
|
|
#define Z_PRIORITY_PADMGR 15
|
|
#define Z_PRIORITY_SCHED 16
|
|
#define Z_PRIORITY_DMAMGR 17
|
|
#define Z_PRIORITY_IRQMGR 18
|
|
#define Z_PRIORITY_FAULT OS_PRIORITY_APPMAX
|
|
|
|
#endif
|