c-compiler/test.ssa

17 lines
212 B
Text
Raw Permalink Normal View History

2024-11-16 21:02:09 +13:00
export function w $sayhi(w %char) {
@start
call $putchar(w 72)
call $putchar(w 105)
call $putchar(w %char)
2024-11-18 21:53:27 +13:00
%tempval =w load 5
ret %tempval
2024-11-16 21:02:09 +13:00
}
2024-11-18 21:53:27 +13:00
2024-11-16 21:02:09 +13:00
export function $main() {
@start
call $sayhi(w 74)
ret
}