c-compiler/test.ssa
2024-11-18 21:53:27 +13:00

16 lines
212 B
Text

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