X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Kernel%2Farch%2Farm7%2Finclude%2Fproc.h;fp=Kernel%2Farch%2Farm7%2Finclude%2Fproc.h;h=0000000000000000000000000000000000000000;hb=acc4756d2e22346862ec098be4a18f52846f6dc4;hp=1dd9b0f413312e128781d7b95efd92a2446d583f;hpb=327c86d2221d49994ad49ec0d1717444e04521b8;p=tpg%2Facess2.git diff --git a/Kernel/arch/arm7/include/proc.h b/Kernel/arch/arm7/include/proc.h deleted file mode 100644 index 1dd9b0f4..00000000 --- a/Kernel/arch/arm7/include/proc.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Acess2 - * ARM7 Architecture - * - * proc.h - Arch-Dependent Process Management - */ -#ifndef _PROC_H_ -#define _PROC_H_ - -#define MAX_CPUS 4 - -// === STRUCTURES === -typedef struct { - Uint32 IP, SP; - Uint32 UserIP, UserSP; -} tTaskState; - -typedef struct { - Uint32 Base; -} tMemoryState; - -typedef struct { - union { - Uint32 Num; - Uint32 Error; - }; - union { - Uint32 Arg1; - Uint32 Return; - }; - union { - Uint32 Arg2; - Uint32 RetHi; - }; - Uint32 Arg3; - Uint32 Arg4; - Uint32 Arg5; - Uint32 Arg6; // R6 - Uint32 Unused[13-6]; - Uint32 StackPointer; // R13 - Uint32 _lr; - Uint32 _ip; -} tSyscallRegs; - -// === MACROS === -#define HALT() do{}while(0) - -// === PROTOTYPES === - -#endif -