blob: 2da32c713104d2a887b06c9e5e3e1fe6e8609fc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
.ifdef HPUX
i .comm 4
.else
.comm i,4,4
.endif
.section .rodata,"a",%progbits
.dc.a i
.globl main
.globl start
.globl _start
.globl __start
.text
main:
start:
_start:
__start:
.dc.a 0
|