From 0ee423d9d630249de526df0d39d36028cf78b514 Mon Sep 17 00:00:00 2001 From: Niles Rogoff Date: Mon, 15 May 2017 16:35:43 -0400 Subject: [PATCH] Fix comments --- instructions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instructions b/instructions index 4e88928..36a23dd 100644 --- a/instructions +++ b/instructions @@ -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