Browse Source

Accommodate uz80as #define Comments

uz80as does not handle comments on #define lines very well.  This is a minor change to accommodate it.
pull/501/head
Wayne Warthen 1 year ago
parent
commit
2d854510e3
  1. 7
      Source/HBIOS/hbios.asm
  2. 3
      Source/HBIOS/romldr.asm

7
Source/HBIOS/hbios.asm

@ -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:
;

3
Source/HBIOS/romldr.asm

@ -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

Loading…
Cancel
Save