mirror of
https://github.com/CTurt/FreeDVDBoot.git
synced 2026-01-13 15:37:06 +00:00
29 lines
356 B
ArmAsm
29 lines
356 B
ArmAsm
# ElReino & CTurt 2020
|
|
|
|
.section .text.startup
|
|
|
|
.global _start
|
|
_start:
|
|
# Point stack to end of scratchpad RAM
|
|
#la $sp, 0x70004000
|
|
|
|
# debug
|
|
la $v0, 0x01FFF7D0
|
|
sw $v0, 0($v0)
|
|
|
|
.global main
|
|
#la $v1, 0x01
|
|
#la $a0, 0x7f
|
|
#syscall 0x01 # ResetEE
|
|
|
|
la $a0, main
|
|
la $a1, 0
|
|
la $a2, 0
|
|
la $a3, 0
|
|
|
|
jr $a0
|
|
|
|
#ExecPS2:
|
|
#la $v1, 0x07
|
|
#syscall 0x07 # ExecPS2
|