mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +00:00
15 lines
172 B
ArmAsm
15 lines
172 B
ArmAsm
.data
|
|
.hidden foo
|
|
.globl foo
|
|
foo:
|
|
.byte 20
|
|
local:
|
|
.byte 20
|
|
.text
|
|
.globl bar
|
|
.type bar, @function
|
|
bar:
|
|
lea foo(%rip), %rax
|
|
lea local(%rip), %rax
|
|
.size bar, .-bar
|