mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
13 lines
198 B
ArmAsm
13 lines
198 B
ArmAsm
.text
|
|
.globl _start
|
|
.globl ifunc
|
|
.type ifunc, @gnu_indirect_function
|
|
_start:
|
|
lea .Ljmp(%rip), %rax
|
|
ifunc:
|
|
jmp *(%rax)
|
|
.section .data.rel.ro.local,"aw",@progbits
|
|
.align 8
|
|
.Ljmp:
|
|
.quad ifunc
|