From 0fdd3ecc50f544514f039983cd373543c6b3479c Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Sun, 19 Oct 2025 18:19:33 -0500 Subject: [PATCH] style(buzbee): adding comments to make some things clearer --- src/buzbee.s | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/buzbee.s b/src/buzbee.s index 60e82f1..c787bdc 100644 --- a/src/buzbee.s +++ b/src/buzbee.s @@ -327,11 +327,11 @@ NOTOK@ ; IF pointer table IFPTRTBL - fdb IFCALL - fdb IFHELP - fdb IFPEEK - fdb IFPOKE - fdb IFSREC + fdb IFCALL ; CALL + fdb IFHELP ; HELP + fdb IFPEEK ; PEEK + fdb IFPOKE ; POKE + fdb IFSREC ; SREC ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; @@ -384,7 +384,7 @@ IFPOKE ldx BBVAR.cbtokens ; Make sure we have enough tokens cmpx #4 lblo INVALIDARG - leax -3,x ; Get count of bytes to write into X + leax -3,x ; Get count of bytes to copy from token buffer ldy #0 ; Setup Y for indexing NEXTB@ lda BBVAR.tokens+3,y ; Get source byte to copy