mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-01 02:54:39 +01:00
13 lines
186 B
ArmAsm
13 lines
186 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
leal foo@gotntpoff(%ebx), %ecx
|
||
|
movl (%ecx), %ecx
|
||
|
.globl foo
|
||
|
.section .tdata,"awT",@progbits
|
||
|
.align 4
|
||
|
.type foo, @object
|
||
|
.size foo, 4
|
||
|
foo:
|
||
|
.long 100
|