BarinkOS/source/kernel/memory
Nigel b07b4f0d38 Moving certain aspects into their own static library
Problem:
	As our kernel grows we need more complex datastructures and functions these would come from
	the standard C/C++ library with normal programs.
	The kernel is a freestanding programme and has no access to standard libraries.

Solution:
	We build a mini version of the standard C/C++ library which will contain the
	datastructures and functions we want. This library can then be statically linked
	into our kernel binary.

	Making it a statically linked library also gives more structure to the project.
	Keeping these random functions and datastructures in the kernel just clutters the
	kernel source code with less relevant source code.
2023-02-19 23:38:32 +01:00
..
gdt Ring 3 ready 2023-02-13 22:44:47 +01:00
KernelHeap.cpp Primitie listing rootdir of FAT16 filesystem 2023-02-19 14:17:47 +01:00
KernelHeap.h KERNEL: Improved Physical memory allocation code / Code refactor 2022-09-02 21:09:51 +02:00
memory.cpp src folder -> source folder; makes merging with dev a bit easier. 2022-09-10 20:06:49 +02:00
memory.h Moving certain aspects into their own static library 2023-02-19 23:38:32 +01:00
memoryinfo.h src folder -> source folder; makes merging with dev a bit easier. 2022-09-10 20:06:49 +02:00
PageDirectory.cpp src folder -> source folder; makes merging with dev a bit easier. 2022-09-10 20:06:49 +02:00
PageDirectory.h Merged FAT16 into Dev 2023-02-03 21:47:05 +01:00
paging.s src folder -> source folder; makes merging with dev a bit easier. 2022-09-10 20:06:49 +02:00
PhysicalMemoryManager.cpp KERNEL: First Kernel heap implementation 2022-09-03 17:27:29 +02:00
PhysicalMemoryManager.h Moving certain aspects into their own static library 2023-02-19 23:38:32 +01:00
TaskStateSegment.h Moving certain aspects into their own static library 2023-02-19 23:38:32 +01:00
VirtualMemoryManager.cpp Moved reading file from disk to its own super visor terminal command 2023-02-08 14:07:44 +01:00
VirtualMemoryManager.h Remove cpu.h and cpu.cpp in favor of i386/processor.[h|cpp] 2023-02-17 22:01:32 +01:00