From d7d85320217088acb958efb8397cbf4d38d0ae67 Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Wed, 1 Oct 2025 13:55:34 -0500 Subject: [PATCH] feat(buzbee): add command hashes --- .gitignore | 1 + src/buzbee.s | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/.gitignore b/.gitignore index 1aa4616..ba5cc46 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ *.s19 build/ map.txt +bbhashtool # Build system generated files src/version.s diff --git a/src/buzbee.s b/src/buzbee.s index 0c25229..9e4006a 100644 --- a/src/buzbee.s +++ b/src/buzbee.s @@ -110,6 +110,26 @@ NEXTC@ bne NEXTC@ ; No? loop rts +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; BUZBEE Strings and Fixed Data +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; BUZBEE command hashes resolvable with MKCMDSUM. +BBCCALL + fcb $E4 +BBCEXEC + fcb $DB +BBCHELP + fcb $D7 +BBCPEEK + fcb $DB +BBCPOKE + fcb $D1 +BBCSREC + fcb $D3 + PROMPTLINE fcb $0D,$0A,$25,$00 ; CR LF '%' NUL