Browse Source

return key to accept auto boot, and msg correction

pull/461/head
Mark Pruden 1 year ago
parent
commit
ebff203672
  1. 2
      Source/HBIOS/romldr.asm
  2. 2
      Source/HBIOS/sysconf.asm

2
Source/HBIOS/romldr.asm

@ -358,6 +358,8 @@ acmd_wait1:
call cst ; check for keyboard key
jr z,acmd_wait2 ; no key, continue
call cin ; get key
cp 13 ; return key?
ret z ; if so, ret with Z set
cp 27 ; escape key?
jr nz,acmd_wait1 ; loop if not
or $FF ; signal abort

2
Source/HBIOS/sysconf.asm

@ -504,7 +504,7 @@ str_banner .db "\r\n"
MSG_MENU .DB "\r\n"
.DB "Commands:\r\n"
.DB " (P)rint - Display Current settings\r\n"
.DB " (S)et {SW},{val}[,{val}[,{val}]]- Set a switch value(s)\r\n"
.DB " (S)et {SW} {val}[,{val}[,{val}]]- Set a switch value(s)\r\n"
.DB " (R)eset - Init NVRAM to Defaults\r\n"
.DB " (H)elp [{SW}] - This help menu, or help on a switch\r\n"
.DB " (Q)uit - Quit\r\n"

Loading…
Cancel
Save