c-compiler/test.ssa
2024-11-16 21:02:09 +13:00

14 lines
184 B
Text

export function w $sayhi(w %char) {
@start
call $putchar(w 72)
call $putchar(w 105)
call $putchar(w %char)
ret 5
}
export function $main() {
@start
call $sayhi(w 74)
ret
}