summaryrefslogtreecommitdiff
path: root/kernel/src/cpu/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--kernel/src/cpu/cpu.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/src/cpu/cpu.h b/kernel/src/cpu/cpu.h
index 3044292..b6221aa 100644
--- a/kernel/src/cpu/cpu.h
+++ b/kernel/src/cpu/cpu.h
@@ -1,3 +1,8 @@
#pragma once
-void init_registers (void);
+#include <stdint.h>
+
+#define SSE_REG 0x01
+#define FPU_REG 0x02
+
+uint8_t init_registers (uint8_t reg);