From f88524a9b9931f5808fdaa95cc503a0cdac593e6 Mon Sep 17 00:00:00 2001 From: Curle Date: Wed, 24 Jul 2019 01:39:12 +0100 Subject: [PATCH] Starting memory management. --- kernel/memory.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 kernel/memory.c diff --git a/kernel/memory.c b/kernel/memory.c new file mode 100644 index 0000000..d8ad203 --- /dev/null +++ b/kernel/memory.c @@ -0,0 +1,14 @@ +/************************ + *** Team Kitty, 2019 *** + *** Sync *** + ***********************/ + +/* ==================== Sync Memory Management ==================== */ +/* Bear with me. + * The plan for this file is to contain all of the memory management, as you can probably tell. + * That means alloc, free, move, set, and AVX of all the above. + * That means a lot of work, and a lot of commenting. + * + * TODO: The above. + */ +