Fix comments

This commit is contained in:
Niles Rogoff 2017-05-15 16:35:43 -04:00
parent 89c8c1f5b7
commit 0ee423d9d6
No known key found for this signature in database
GPG Key ID: B78B908F23430F80
1 changed files with 2 additions and 2 deletions

View File

@ -109,13 +109,13 @@ main:
# make space on the stack
mov sp ax
addi 0x1 sp
# put 6 on bx and call factorial
# put 4 on bx and call factorial
movi 0x4 bx
call factorial
# make more space on the stack
mov sp ax
addi 0x1 sp
# put 6 on bx and call factorial_recursive
# put 5 on bx and call factorial_recursive
movi 0x5 bx
call factorial_recursive
# make more space on the stack