Simple physical memory allocator, virtual memory manager

This commit is contained in:
2020-07-09 18:50:13 -05:00
parent d3ba3c1d2a
commit 52c3754305
25 changed files with 795 additions and 316 deletions

17
src/inthandlers.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include "inthandlers.hpp"
extern "C"
__attribute__ ((interrupt))
void gpFaultHandler(void* frame, unsigned int error)
{
}
extern "C"
__attribute__ ((interrupt))
void pageFaultHandler(unsigned int error)
{
}
}