mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
13 lines
185 B
ArmAsm
13 lines
185 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
leaq foo@GOTTPOFF(%rip), %rax
|
||
|
movq (%rax), %rax
|
||
|
.globl foo
|
||
|
.section .tdata,"awT",@progbits
|
||
|
.align 4
|
||
|
.type foo, @object
|
||
|
.size foo, 4
|
||
|
foo:
|
||
|
.long 100
|