mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +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
|