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