mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +00:00
11 lines
151 B
ArmAsm
11 lines
151 B
ArmAsm
.text
|
|
.globl _start
|
|
_start:
|
|
lea .Ljmp(%rip), %rax
|
|
jmp *(%rax)
|
|
.section .data.rel.ro.local,"aw",@progbits
|
|
.weak func
|
|
.align 8
|
|
.Ljmp:
|
|
.quad func
|