diff options
| author | 2026-08-18 12:15:05 +0200 | |
|---|---|---|
| committer | 2026-08-18 12:15:05 +0200 | |
| commit | 132d3236bb884433bf94e961f6d32264e0334aec (patch) | |
| tree | 06638976b06f019ea4037175ff228f8271057c44 /bootloader/paging.h | |
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 + |
