nim-kernel-helloworld/boot.s

9 lines
111 B
ArmAsm

// QEMU Aarch64 Boot Stub
.global _start
_start:
ldr x30, =stack_top
mov sp, x30
bl kmain
b .