diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-29 08:03:04 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-29 08:03:04 -0400 |
commit | 6da213d840f07a2921091a6d2fab7efa5ec5cdfa (patch) | |
tree | 5f381f61049b92b13416f15a4622b87a6aee56f9 /memory.cpp | |
parent | c7066d295039b833dd026e200a5aa735631bdf34 (diff) |
enter user mode
Diffstat (limited to 'memory.cpp')
-rw-r--r-- | memory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ struct PageDirectory static constexpr std::uint32_t NotPresent = 0x2; PageDirectory(): value(NotPresent) {} - PageDirectory(void *addr): value(reinterpret_cast<std::uint32_t>(addr) | 3) {} + PageDirectory(void *addr): value(reinterpret_cast<std::uint32_t>(addr) | 7) {} std::uint32_t value; }; @@ -39,7 +39,7 @@ void memory_initialize() std::uint32_t addr = 0; for (auto& p : pageTable) { - p = addr | 3; // supervisor, r/w, present + p = addr | 7; // supervisor, r/w, present addr += 0x1000; } |