mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
14 lines
173 B
ArmAsm
14 lines
173 B
ArmAsm
.globl _start
|
|
_start:
|
|
bl elsewhere
|
|
lis 9,elsewhere@ha
|
|
la 0,elsewhere@l(9)
|
|
|
|
|
|
.section .far,"ax",@progbits
|
|
elsewhere:
|
|
bl _start
|
|
|
|
.section .pad
|
|
.space 0x4000000
|