11 lines
233 B
ArmAsm
11 lines
233 B
ArmAsm
|
.set noat
|
||
|
.globl _iop_start
|
||
|
.extern iop_start
|
||
|
|
||
|
// __noreturn __naked void _iop_start()
|
||
|
// This is the primary entrypoint for the IOP code
|
||
|
_iop_start:
|
||
|
li $sp, 0x001fffc0 // temporary stack (2<<20-0x40)
|
||
|
move $fp, $sp
|
||
|
j iop_start
|