Fixes to x86_64 - Fixed MM_phys corrupting memory (forgot to initialise bitmap pointers)
[tpg/acess2.git] / Kernel / arch / x86_64 / include / proc.h
index 016375f..cf9a446 100644 (file)
@@ -8,15 +8,41 @@
 
 #include <arch.h>
 
+// Register Structure
+// TODO: Rebuild once IDT code is done
+typedef struct {
+       // MMX
+       // FPU
+       Uint    FS, GS;
+       
+       Uint    RAX, RCX, RDX, RBX;
+    Uint       KernelRSP, RBP, RSI, RDI;
+       Uint    R8,  R9,  R10, R11;
+       Uint    R12, R13, R14, R15;
+       
+    Uint       IntNum, ErrorCode;
+    Uint       RIP, CS;
+       Uint    RFlags, RSP, SS;
+} tRegs;
+
+/**
+ * \brief Memory State for thread handler
+ */
 typedef struct sMemoryState
 {
        tPAddr  CR3;
 }      tMemoryState;
 
+/**
+ * \brief Task state for thread handler
+ */
 typedef struct sTaskState
 {
        Uint    RIP, RSP, RBP;
 }      tTaskState;
 
+// === CONSTANTS ===
+#define KERNEL_STACK_SIZE      0x10000 // 64 KiB
+
 #endif
 

UCC git Repository :: git.ucc.asn.au