mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
13 lines
127 B
ArmAsm
13 lines
127 B
ArmAsm
|
.text
|
||
|
.align 4
|
||
|
.global bar
|
||
|
bar:
|
||
|
mov %r0, 0
|
||
|
exit
|
||
|
|
||
|
main:
|
||
|
mov %r0, 3
|
||
|
mov %r1, 1
|
||
|
call bar
|
||
|
exit
|