mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-21 09:29:36 +00:00
11 lines
104 B
ArmAsm
11 lines
104 B
ArmAsm
.global _start
|
|
.global bar
|
|
|
|
# We will place the section .text at 0x1000.
|
|
|
|
.text
|
|
|
|
_start:
|
|
b bar
|
|
ret
|