soaplin/kernel/src/arch/aarch64/cpu.c
RaphProductions 89bb8c8a4b kernel: add some basic features
+ feat list:
+ * gdt/idt
+ * brokie pmm
2025-05-18 15:54:12 +02:00

21 lines
No EOL
265 B
C

/*
* The Soaplin Kernel
* Copyright (C) 2025 The SILD Project
*
* cpu.c - AArch64 CPU control implementation.
*/
#if defined (__aarch64__)
#include <arch/cpu.h>
void arch_init_stage1() {
}
void hcf() {
for (;;) {
asm ("wfi");
}
}
#endif