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


Ignore:
Timestamp:
Oct 22, 2011, 9:04:01 PM (12 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

ifdef of existing serial code, in preperation for checkin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc

    r150 r175  
    2727    .ideVars2       resb    IDEVARS_size
    2828    .ideVars3       resb    IDEVARS_size
     29
     30    .ideVarsSerialAuto  resb    IDEVARS_size
    2931endstruc
    3032
     
    3234FLG_ROMVARS_FULLMODE    EQU (1<<0)  ; Full operating mode (steals base RAM, supports EBIOS etc.)
    3335FLG_ROMVARS_DRVXLAT     EQU (1<<2)  ; Enable drive number translation
     36%ifdef MODULE_SERIAL
     37FLG_ROMVARS_MODULE_SERIAL   EQU (1<<3)
     38%else
     39FLG_ROMVARS_MODULE_SERIAL   EQU 0
     40%endif
    3441
    3542; Boot Menu Display Modes (see Assembly Library Display.inc for standard modes)
     
    4754endstruc
    4855
    49 ; Device types for IDEVARS.bDeviceType
     56; Device types for IDEVARS.bDevice
    5057DEVICE_8BIT_DUAL_PORT_XTIDE             EQU (0<<1)
    5158DEVICE_XTIDE_WITH_REVERSED_A3_AND_A0    EQU (1<<1)
     
    5360DEVICE_16BIT_ATA                        EQU (3<<1)
    5461DEVICE_32BIT_ATA                        EQU (4<<1)
     62%ifdef MODULE_SERIAL
    5563DEVICE_SERIAL_PORT                      EQU (5<<1)
    56 
     64%endif
    5765
    5866; Master/Slave drive specific parameters
Note: See TracChangeset for help on using the changeset viewer.