Move Memory to memory/

This commit is contained in:
Eryn Wells 2016-03-26 19:40:31 -04:00
parent 9cb2debd3a
commit 77ab0175da
4 changed files with 5 additions and 4 deletions

View file

@ -11,9 +11,9 @@
#include "Attributes.hh"
#include "Console.hh"
#include "Memory.hh"
#include "Multiboot.hh"
#include "kstd/Types.hh"
#include "memory/Memory.hh"
namespace kernel {

View file

@ -15,7 +15,6 @@ files = [
'Descriptors.cc',
'Interrupts.cc',
'Kernel.cc',
'Memory.cc',
'Multiboot.cc',
'PIC.cc',
'cxa.cc',
@ -23,6 +22,8 @@ files = [
'kstd/CString.cc',
'kstd/Memory.cc',
'memory/Memory.cc',
]
toolchain_bin = Dir(os.environ['POLKA_TOOLCHAIN']).Dir('bin')

View file

@ -33,5 +33,5 @@ MemoryManager::initializeGDT()
mGDT.setDescriptor(2, x86::GDT::DescriptorSpec::kernelSegment(0, 0xFFFFFFFF, x86::GDT::Type::DataRW));
mGDT.load();
}
} /* namespace kernel */

View file

@ -24,7 +24,7 @@ private:
void initializeGDT();
};
} /* namespace kernel */
#endif /* __MEMORY_HH__ */