mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
17 lines
246 B
ArmAsm
17 lines
246 B
ArmAsm
|
.text
|
||
|
.global start /* Used by SH targets. */
|
||
|
start:
|
||
|
.global _start
|
||
|
_start:
|
||
|
.global __start
|
||
|
__start:
|
||
|
.global main /* Used by HPPA targets. */
|
||
|
main:
|
||
|
.dc.a 0
|
||
|
|
||
|
.section .foo,"ax",%progbits
|
||
|
.p2align 2
|
||
|
.global foo
|
||
|
.type foo,%function
|
||
|
foo:
|