mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
13 lines
180 B
ArmAsm
13 lines
180 B
ArmAsm
|
# This file gets linked to start at 0xffffff0, so the call is an overflow.
|
||
|
.text
|
||
|
.global start
|
||
|
.set noreorder
|
||
|
start:
|
||
|
nop
|
||
|
nop
|
||
|
nop
|
||
|
nop
|
||
|
jal start
|
||
|
nop
|
||
|
.type start, @function
|