diff options
author | Egor Ananyin <ananinegor@gmail.com> | 2020-06-20 11:10:42 +0300 |
---|---|---|
committer | Egor Ananyin <ananinegor@gmail.com> | 2020-06-20 11:10:42 +0300 |
commit | 3e4a9b1e3d8daa07bae5a82a406099c330211075 (patch) | |
tree | 3ada3612a1f13dcb3d8a4c5ac7d211788b4a9197 /include/nitro/OS_context_shared.h | |
parent | 9fba6d2b34c67d4b14bb1a17d0b1d6d5d6d19b08 (diff) |
We don't need this
Diffstat (limited to 'include/nitro/OS_context_shared.h')
-rw-r--r-- | include/nitro/OS_context_shared.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/nitro/OS_context_shared.h b/include/nitro/OS_context_shared.h deleted file mode 100644 index 3ec722eb..00000000 --- a/include/nitro/OS_context_shared.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef GUARD_OS_CONTEXT_SHARED_H -#define GUARD_OS_CONTEXT_SHARED_H - -#include "nitro/types.h" - -typedef struct CPContext { - u64 div_numer; - u64 div_denom; - u64 sqrt; - u16 div_mode; - u16 sqrt_mode; -} CPContext; - -typedef struct OSContext -{ - u32 cpsr; - u32 r[13]; - u32 sp; - u32 lr; - u32 pc_plus4; - u32 sp_svc; - CPContext cp_context; -} OSContext; - -#endif |