This commit is contained in:
Niklas Gollenstede
2025-10-31 22:37:36 +01:00
commit 174fe17e89
197 changed files with 79558 additions and 0 deletions

17
kernel/arch/core_ring.cc Normal file
View File

@@ -0,0 +1,17 @@
#include "./core_ring.h"
#include "./core_interrupt.h"
#include "./gdt.h"
namespace Core {
namespace Ring {
[[gnu::noreturn]]
void switchToUsermode(void *stackpointer, void *kickoff,
void *kickoff_parameter) {
(void)stackpointer;
(void)kickoff;
(void)kickoff_parameter;
__builtin_unreachable();
}
} // namespace Ring
} // namespace Core