diff options
Diffstat (limited to '')
| -rw-r--r-- | bootloader/paging.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bootloader/paging.h b/bootloader/paging.h new file mode 100644 index 0000000..59eef1e --- /dev/null +++ b/bootloader/paging.h @@ -0,0 +1,17 @@ +#ifndef PAGING_H +#define PAGING_H + +#include <stdint.h> + +uint64_t GetNextEntry(); +void initCR3(); +void printCR3(); +void writeCR3(); +void SetVirtualAddress(uint64_t phy, uint64_t virt); +uint8_t checkIdentity(uint64_t phy); + + +//void * SetPagingStructs(); + +#endif // PAGING_H + |
