Files
linux-kernel-module-cheat/baremetal/lib/arm.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

7 lines
87 B
ArmAsm

.global mystart
mystart:
ldr sp, =stack_top
bl main
mov r0, #0
bl exit