Files
linux-kernel-module-cheat/baremetal/arch/arm/add.S
Ciro Santilli 六四事件 法轮功 e0dbe2416d gdb: create some automated tests with pytest
gem5 baremetal: use m5exit m5op in exit() so as to not force users to
apply a patch for almost all examples
2018-11-09 09:33:44 +00:00

13 lines
181 B
ArmAsm

.global main
main:
/* 1 + 2 == 3 */
mov r0, #1
/* test-gdb-op1 */
add r1, r0, #2
/* test-gdb-result */
cmp r1, #3
beq 1f
bl assert_fail
1:
bx lr