mirror of
https://github.com/sgmarz/osblog.git
synced 2024-11-24 10:26:20 +04:00
11 lines
160 B
ArmAsm
11 lines
160 B
ArmAsm
|
|
||
|
.section .text.init
|
||
|
.global _start
|
||
|
_start:
|
||
|
call main
|
||
|
# Exit system call after main
|
||
|
li a0, 93
|
||
|
j make_syscall
|
||
|
.type _start, function
|
||
|
.size _start, .-_start
|