Accommodate uz80as #define Comments

uz80as does not handle comments on #define lines very well.  This is a minor change to accommodate it.
This commit is contained in:
Wayne Warthen
2025-01-30 13:06:15 -08:00
parent 374c0675f1
commit 2d854510e3
2 changed files with 7 additions and 3 deletions

View File

@@ -9513,7 +9513,8 @@ STR_BANNER .DB "\r\n\r\nRomWBW HBIOS v", BIOSVER, ", ", TIMESTAMP
.DB " (App Boot)"
#ENDIF
.DB "$"
STR_PLATFORM .DB PLATFORM_NAME, "$"
STR_PLATFORM .DB PLATFORM_NAME
.DB "$"
STR_CONSOLE .DB "\r\n\r\n Console on Unit #$"
STR_BADINT .DB "\r\n*** BAD INT ***\r\n$"
STR_LOWBAT .DB "\r\n\r\n+++ LOW BATTERY +++$"
@@ -9604,7 +9605,9 @@ HB_APPBOOT2:
JR HB_APPBOOT3 ; AND CONTINUE
;
STR_APPBOOT .DB "\r\n\r\n*** Launching RomWBW HBIOS v", BIOSVER, ", ", TIMESTAMP, " for"
.DB "\r\n\r\n ", PLATFORM_NAME, "$"
.DB "\r\n\r\n "
.DB PLATFORM_NAME
.DB "$"
;
HB_APPBOOT3:
;

View File

@@ -2508,7 +2508,8 @@ defcmd_len .equ $ - defcmd_buf ; len of def boot cmd
; Strings
;=======================================================================
;
str_banner .db PLATFORM_NAME," Boot Loader",0
str_banner .db PLATFORM_NAME
.db " Boot Loader",0
str_appboot .db " (App Boot)",0
str_autoboot .db "\rAutoBoot: ",0
str_autoact1 .db "\rAutoBoot in ",0