mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
13 lines
202 B
ArmAsm
13 lines
202 B
ArmAsm
|
.global _start
|
||
|
.global foo
|
||
|
.type foo, @function
|
||
|
.text
|
||
|
|
||
|
_start:
|
||
|
# ((1 << 25) - 1) << 2
|
||
|
# call26 relocation out of range to plt stub,
|
||
|
# we need long branch veneer.
|
||
|
.skip 134217724, 0
|
||
|
bl foo
|
||
|
ret
|