Files
linux-kernel-module-cheat/baremetal/arch/aarch64/add.S
Ciro Santilli 六四事件 法轮功 e855a262fd aarch64 baremetal svc factored out for C and asm
2019-02-18 00:00:00 +00:00

13 lines
184 B
ArmAsm

.global main
main:
/* 1 + 2 == 3 */
mov x0, #1
/* test-gdb-op1 */
add x1, x0, #2
/* test-gdb-result */
cmp x1, #3
beq 1f
bl lkmc_assert_fail
1:
ret