diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-19 23:07:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 23:07:18 -0400 |
commit | 0c8b5417cee5ff73f9db4b691c7549e82fdc30bd (patch) | |
tree | fe0e454b0b267045c891a796040a3b83267724e8 /include/nitro/consts_shared.h | |
parent | b138e415a2c6b4e42a08e776cd482d91d50bbc2a (diff) | |
parent | 12c17948602bf14535c91c530f214b99863e038e (diff) |
Merge branch 'master' into pikalax_work
Diffstat (limited to 'include/nitro/consts_shared.h')
-rw-r--r-- | include/nitro/consts_shared.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/nitro/consts_shared.h b/include/nitro/consts_shared.h index b6342172..26cc2fca 100644 --- a/include/nitro/consts_shared.h +++ b/include/nitro/consts_shared.h @@ -30,6 +30,14 @@ #define OSi_InRange(targ, a, b) ((u32)(a) <= (u32)(targ) && (u32)(targ) < (u32)(b)) #define OSi_OFFSET(n, a) (((u32) (n)) & ((a) - 1)) +#define OS_THREAD_SPECIFIC_MAX 0x03 + +#define OS_THREAD_LAUNCHER_PRIORITY 0x10 +#define OS_THREAD_PRIORITY_MIN 0x00 +#define OS_THREAD_PRIORITY_MAX 0x1F + +#define HW_SYSTEM_CLOCK 33514000 + #define OSi_GetArenaInfo() (*(OSArenaInfo*)HW_ARENA_INFO_BUF) #endif //POKEDIAMOND_CONSTS_SHARED_H |