Changeset 196 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc


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/Inc/RomVars.inc

    r181 r196  
    4545; Controller specific variables
    4646struc IDEVARS
    47     .wPort              resb    2   ; IDE Base Port for Command Block (usual) Registers
    48     .wPortCtrl          resb    2   ; IDE Base Port for Control Block Registers
    49     .bDevice            resb    1   ; Device type
    50     .bIRQ               resb    1   ; Interrupt Request Number
    51     .drvParamsMaster    resb    DRVPARAMS_size
    52     .drvParamsSlave     resb    DRVPARAMS_size
     47    .wPort:                                 ; IDE Base Port for Command Block (usual) Registers
     48    .bSerialCOMDigit            resb    1   ; Serial Device COM Port digit
     49    .bSerialPackedPortAndBaud   resb    1   ; Serial Device packed port and baud
     50
     51    .wPortCtrl:                             ; IDE Base Port for Control Block Registers
     52    .wSerialPackedPrintBaud     resb    2   ; Serial Device packed baud rate for printing
     53
     54    .bDevice                    resb    1   ; Device type
     55    .bIRQ                       resb    1   ; Interrupt Request Number
     56    .drvParamsMaster            resb    DRVPARAMS_size
     57    .drvParamsSlave             resb    DRVPARAMS_size
    5358endstruc
    5459
Note: See TracChangeset for help on using the changeset viewer.