mirror of
https://github.com/wiiu-env/EnvironmentLoader.git
synced 2024-11-01 04:55:05 +01:00
10 lines
121 B
ArmAsm
10 lines
121 B
ArmAsm
.section ".text"
|
|
.global textStart
|
|
textStart:
|
|
mflr 4;
|
|
bl a
|
|
mflr 3;
|
|
mtlr 4;
|
|
subi 3,3,0x8
|
|
a: blr
|