1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "kapi/system.hpp" #include <kstd/print> namespace kapi::system { auto memory_initialized() -> void { kstd::println("[x86_64:SYS] TODO: initialize Interrupt Descriptor Table."); kstd::println("[x86_64:SYS] TODO: reload Global Descriptor Table."); } } // namespace kapi::system