mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-26 07:34:15 +01:00
13 lines
142 B
ArmAsm
13 lines
142 B
ArmAsm
.section .init
|
|
.global main
|
|
|
|
/* set stack pointer */
|
|
lui sp, %hi(512)
|
|
addi sp, sp, %lo(512)
|
|
|
|
/* call main */
|
|
jal ra, main
|
|
|
|
/* break */
|
|
ebreak
|