mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
9a99bec198
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@20228 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
307 B
ArmAsm
19 lines
307 B
ArmAsm
.text
|
|
.arch armv4t
|
|
.global _start
|
|
.type _start, %function
|
|
.thumb_func
|
|
_start:
|
|
.word bar - .
|
|
.word _start - .
|
|
.byte 0
|
|
.4byte (_start - .) + 1
|
|
.byte 0, 0, 0
|
|
.section .after, "ax", %progbits
|
|
.global bar
|
|
.type bar, %function
|
|
.thumb_func
|
|
bar:
|
|
.word 0
|
|
.ident "GCC: (GNU) 4.1.0 (CodeSourcery ARM)"
|