ps2rom/rom/ee/_ee_start.s

10 lines
196 B
ArmAsm

.set noat
.globl _ee_start
.extern ee_start
// __noreturn __naked void _ee_start()
// This is the primary entrypoint for the EE code
_ee_start:
li $sp, 0x80010000 // temporary stack
j ee_start