aboutsummaryrefslogtreecommitdiffstats
path: root/memory.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-29 08:03:04 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-29 08:03:04 -0400
commit6da213d840f07a2921091a6d2fab7efa5ec5cdfa (patch)
tree5f381f61049b92b13416f15a4622b87a6aee56f9 /memory.cpp
parentc7066d295039b833dd026e200a5aa735631bdf34 (diff)
enter user mode
Diffstat (limited to 'memory.cpp')
-rw-r--r--memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/memory.cpp b/memory.cpp
index 59e2bbe..710701d 100644
--- a/memory.cpp
+++ b/memory.cpp
@@ -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;
}