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