mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
19 lines
199 B
ArmAsm
19 lines
199 B
ArmAsm
.text
|
|
.globl g
|
|
.type g, @function
|
|
g:
|
|
movq f@GOTPCREL(%rip), %rax
|
|
retq
|
|
|
|
.globl h
|
|
.type h, @function
|
|
h:
|
|
leaq zed, %rax
|
|
movslq zed, %rbx
|
|
addq %rbx, %rax
|
|
retq
|
|
|
|
.data
|
|
zed:
|
|
.long f - .
|