mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-17 00:56:47 +00:00
13 lines
161 B
ArmAsm
13 lines
161 B
ArmAsm
|
.syntax unified
|
||
|
.arch armv5te
|
||
|
.text
|
||
|
.align 2
|
||
|
.global answer
|
||
|
.type answer, %function
|
||
|
answer:
|
||
|
.fnstart
|
||
|
mov r0, #42
|
||
|
bx lr
|
||
|
.fnend
|
||
|
.size answer, .-answer
|