feat(arm64): higher-half kernel, early MMU in boot, and VMM

This commit is contained in:
karina
2026-04-26 21:47:41 +04:00
parent 3a55665bd7
commit b56b55e4b3
14 changed files with 485 additions and 55 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
#include <Types.h>
#include <Lib/VAArgs.h>
void* StringSet(BytePointer destination, ASCII value, Size count);
void* MemoryCopy(void* destination, const void* source, Size count);
Pointer MemorySet(Pointer destination, ASCII value, Size count);
Pointer MemoryCopy(Pointer destination, const Pointer source, Size count);
Int32 StringCompare(const ASCII* firstString, const ASCII* secondString);
Int32 StringCompareWithLimit(const ASCII* firstString, const ASCII* secondString, Size limit);