mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-10 02:15:08 +01:00
13 lines
127 B
ArmAsm
13 lines
127 B
ArmAsm
|
.section ".init"
|
||
|
.arm
|
||
|
.align 4
|
||
|
|
||
|
.extern _main
|
||
|
.type _main, %function
|
||
|
|
||
|
.extern memset
|
||
|
.type memset, %function
|
||
|
|
||
|
_start:
|
||
|
b _main
|