fix: preserve bootinfo pointer in kernel _start

This commit is contained in:
karina
2026-04-25 06:05:46 +04:00
parent 0d8b38a9b9
commit 730d88f9b0
2 changed files with 8 additions and 2 deletions
+4
View File
@@ -1,6 +1,10 @@
.section .text.boot, "ax"
.global _start
_start:
sub sp, sp, #16
str x0, [sp]
bl ExceptionsVectorsInit
ldr x0, [sp]
add sp, sp, #16
bl KernelMain
b .