17 lines
237 B
ArmAsm
Raw Permalink Normal View History

2013-04-03 21:39:13 +02:00
.text
.global start /* Used by SH targets. */
start:
.global _start
_start:
.global __start
__start:
.global main /* Used by HPPA targets. */
main:
.dc.a 0
2013-04-08 20:53:03 +02:00
.section .init, "a"
2013-04-03 21:39:13 +02:00
.p2align 2
2013-04-08 20:53:03 +02:00
.global foo
2013-04-03 21:39:13 +02:00
.type foo,%function
foo: