aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/system.h
diff options
context:
space:
mode:
authorMarvin Borner2019-11-23 00:36:28 +0100
committerMarvin Borner2019-11-23 00:36:28 +0100
commit45d9495e77dba212551ae9bc8e09b51e9ed6d324 (patch)
tree1e8ead9a55b41fa009c28823ca7a9ac0b1b5b2fe /src/kernel/system.h
parent4b178c0feb4c415be36be0e4c0def8c447ed42af (diff)
Tried implementing memory based paging...
Also did many other fixes/improvements. While I think I did most things correct, the ACPI doesn't work anymore (triple fault) and the resolution detection fails with 0x2... :c
Diffstat (limited to 'src/kernel/system.h')
-rw-r--r--src/kernel/system.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/kernel/system.h b/src/kernel/system.h
index 18a013b..1fe2026 100644
--- a/src/kernel/system.h
+++ b/src/kernel/system.h
@@ -4,7 +4,7 @@
/**
* The kernel end
*/
-extern void *ASM_KERNEL_END;
+extern void ASM_KERNEL_END();
/**
* Initialize the basic features of the OS
@@ -76,4 +76,16 @@ void panic(char *msg);
*/
void assert(int x);
+/**
+ * Creates an infinite halt loop
+ */
+void halt_loop();
+
+/**
+ * Executes int32 with paging disable/enable
+ * @param code The interrupt code
+ * @param regs The registers
+ */
+void v86(uint8_t code, regs16_t *regs);
+
#endif