Files
linux-kernel-module-cheat/baremetal/lib/aarch64.S
Ciro Santilli 六四事件 法轮功 b1e16a59a1 baremetal: exit at the end of main instead of infinite loop
run: interpret lkmc_test_fail as the last line of test as an error
2018-11-09 09:33:44 +00:00

13 lines
181 B
ArmAsm

.global mystart
mystart:
/* = NEON setup */
mov x1, #(0x3 << 20)
msr cpacr_el1, x1
isb
ldr x0, =stack_top
mov sp, x0
bl main
mov x0, #0
bl exit