Update files

This commit is contained in:
Alex
2022-10-10 23:31:46 +03:00
parent 4b6683823f
commit 32a17c5e63
20 changed files with 21 additions and 21 deletions

View File

@ -0,0 +1,17 @@
.section ".text.boot"
.global _start
.org 0x80000
_start:
ldr x5, =_start
mov sp, x5
ldr x5, =_kernel_rodata_end
ldr w6, =_bss_size
1: cbz w6, 2f
str xzr, [x5], #8
sub w6, w6, #1
cbnz w6, 1b
2: bl aarch64Entry
Halt:
wfe
b Halt