Improved code generation

This commit is contained in:
2024-07-04 12:32:56 +02:00
parent 4d88260333
commit 3340a5824f
9 changed files with 70 additions and 23 deletions

View File

@ -1,5 +1,9 @@
main() {
syscall(60, f(1) + f(2) + f(3))
exit(f(1) + f(2) + f(3))
}
exit(code) {
syscall(60, code)
}
f(x) {