This commit is contained in:
2026-06-11 11:57:17 -06:00
parent 3c29879755
commit 4f12bcc476
4 changed files with 19 additions and 0 deletions

8
test/tail.ssa Normal file
View File

@@ -0,0 +1,8 @@
function w $factorial (w %n, w %acc) {
@start
jnz %n, @z, @nz
@z
ret %acc
@nz
tail
}