mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-25 14:34:29 +00:00
12 lines
172 B
ArmAsm
12 lines
172 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
leaq foo@TLSGD(%rip), %rdi
|
||
|
call __tls_get_addr
|
||
|
.section .tdata,"awT",@progbits
|
||
|
.align 4
|
||
|
.type foo, @object
|
||
|
.size foo, 4
|
||
|
foo:
|
||
|
.long 100
|