20 lines
235 B
ArmAsm
20 lines
235 B
ArmAsm
.text
|
|
.global foo
|
|
.section .tdata,"awT",%progbits
|
|
.align 2
|
|
.type foo, %object
|
|
.size foo, 4
|
|
foo:
|
|
.word 5
|
|
.text
|
|
|
|
.text
|
|
.global bar
|
|
.section .tdata,"awT",%progbits
|
|
.align 2
|
|
.type bar, %object
|
|
.size bar, 4
|
|
bar:
|
|
.word 5
|
|
.text
|