diff options
author | Alexis211 <alexis211@gmail.com> | 2009-09-17 15:26:09 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-09-17 15:26:09 +0200 |
commit | 8862994499de563b763607fff3f39a8a28c553b3 (patch) | |
tree | a0556b392e49971a0c2237a26c579a59b7986805 /Source/Kernel/MemoryManager | |
parent | 5f88058644587aa255d453eee74c212e53cf9ade (diff) | |
download | Melon-8862994499de563b763607fff3f39a8a28c553b3.tar.gz Melon-8862994499de563b763607fff3f39a8a28c553b3.zip |
Color scheme is now configured in Config.h
Diffstat (limited to 'Source/Kernel/MemoryManager')
-rw-r--r-- | Source/Kernel/MemoryManager/PhysMem.ns.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Kernel/MemoryManager/PhysMem.ns.cpp b/Source/Kernel/MemoryManager/PhysMem.ns.cpp index 19323a7..08fa882 100644 --- a/Source/Kernel/MemoryManager/PhysMem.ns.cpp +++ b/Source/Kernel/MemoryManager/PhysMem.ns.cpp @@ -20,8 +20,6 @@ void initPaging(u32int mem_size) { while (i < Mem::placementAddress) { page_t *p2 = kernelPageDirectory->getPage(i, true); allocFrame(p2, true, false); - /* /DEBUG_HEX(i); DEBUG(" =>"); - DEBUG_HEX(p2->frame); DEBUG("."); */ i += 0x1000; } //Also map thoses pages at begning of virtual memory |