mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
19 lines
223 B
ArmAsm
19 lines
223 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
.globl __start
|
||
|
_start:
|
||
|
__start:
|
||
|
.ifdef HPUX
|
||
|
foo .comm 4
|
||
|
.else
|
||
|
.comm foo, 4, 4
|
||
|
.endif
|
||
|
.section .debug_foo,"",%progbits
|
||
|
.balign 16
|
||
|
.ifdef ELF64
|
||
|
.8byte foo
|
||
|
.else
|
||
|
.4byte foo
|
||
|
.endif
|
||
|
.balign 16
|