10 lines
177 B
ArmAsm
10 lines
177 B
ArmAsm
.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 . |