Changeset 196 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Strings.asm


Ignore:
Timestamp:
Nov 19, 2011, 11:18:39 AM (12 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Added printing of COM port and baud rate, when set explicitly by idecfg. Although it eats some bytes, I think it is worth it, since the BIOS will be looking for a server on a particular com port and baud rate, and it could be hard to troubleshoot a mismatch without this information. However, if we become space crunched, this change can be backed out.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Strings.asm

    r194 r196  
    1111; POST drive detection strings
    1212g_szRomAt:      db  "%s @ %x",LF,CR,NULL
    13 g_szMaster:     db  "Master",NULL
    14 g_szSlave:      db  "Slave ",NULL
    15 g_szDetect:     db  "IDE %s at %x: ",NULL           ; IDE Master at 1F0h:
    16 g_szSerial:     db  "Serial Port %s: ",NULL
    1713
     14g_szMaster:             db  "IDE Master at ",NULL
     15g_szSlave:              db  "IDE Slave  at ",NULL
     16g_szDetect:             db  "%s%x: ",NULL                      ; IDE Master at 1F0h:
     17g_szDetectCOM:          db  "%sCOM%c/%u%c: ",NULL              ; IDE Master at COM1/115K:       
     18g_szDetectCOMAuto:      db  "%sCOM Detect: ",NULL              ; IDE Master at COM Detect:
     19               
    1820; Boot loader strings
    1921g_szTryToBoot:          db  "Booting from %s %x",ANGLE_QUOTE_RIGHT,"%x",LF,CR,NULL
Note: See TracChangeset for help on using the changeset viewer.