mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-15 06:43:42 +00:00
11 lines
104 B
NASM
11 lines
104 B
NASM
.text
|
|
|
|
.globl _start
|
|
|
|
_start:
|
|
ld a0, 0(sp)
|
|
addi a1, sp, 8
|
|
addi sp, sp, ~15
|
|
call _start_odin
|
|
ebreak
|