From 97967441e1861a06597f6fac6559c37a7960f4b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ch=C3=B6trin?= Date: Sun, 8 Nov 2020 15:34:29 -0500 Subject: [PATCH] Corrected the LL_NEXT documentation. --- 01_linked_list/program.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_linked_list/program.asm b/01_linked_list/program.asm index 0a650b7..b7bd25d 100644 --- a/01_linked_list/program.asm +++ b/01_linked_list/program.asm @@ -398,7 +398,7 @@ LL_IS_EMPTY: ; moves LL_NODE_PTR by iterating through the linked list at LL_HEAP_ADDR. ; if LL_NODE_PTR is 0, LL_NODE_PTR will begin from the first of the list. ; if LL_NODE_PTR is at the end of the list when this is called, -; LL_NODE_PTR will be set to 0. +; LL_NODE_PTR will be set to the first node. LL_NEXT: ; push A and Y onto the stack. PHA -- 2.45.2