Changeset 179 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc


Ignore:
Timestamp:
Oct 25, 2011, 7:11:38 AM (13 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Main checkin, adding virtual IDE drive over serial port connection

Location:
trunk/XTIDE_Universal_BIOS/Inc
Files:
2 edited

Legend:

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

    r169 r179  
    3535RAMVARS_SIGNATURE       EQU "Xu"    ; RAMVARS signature for .wSignature
    3636
    37 
     37;
     38; IDEPACK NOTE: The first six bytes of this structure are directly put on the
     39; wire for MODULE_SERIAL, please do not change the order or insert other members.
     40;
    3841struc IDEPACK
     42    .bFeatures              resb    1
    3943    .bDrvAndHead            resb    1   ; LBA28 27...24
    40     .bFeatures              resb    1
    4144
    4245    .wSectorCountAndLbaLow:
  • trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc

    r178 r179  
    3636FLG_ROMVARS_FULLMODE    EQU (1<<0)  ; Full operating mode (steals base RAM, supports EBIOS etc.)
    3737FLG_ROMVARS_DRVXLAT     EQU (1<<2)  ; Enable drive number translation
    38 
    39 %ifdef MODULE_SERIAL
    4038FLG_ROMVARS_MODULE_SERIAL   EQU (1<<3)
    41 %else
    42 FLG_ROMVARS_MODULE_SERIAL   EQU 0
    43 %endif
    44 
    45 %ifdef MODULE_EBIOS
    4639FLG_ROMVARS_MODULE_EBIOS    EQU (1<<4)
    47 %else
    48 FLG_ROMVARS_MODULE_EBIOS    EQU 0
    49 %endif
    5040
    5141; Boot Menu Display Modes (see Assembly Library Display.inc for standard modes)
Note: See TracChangeset for help on using the changeset viewer.