Changeset 221 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc


Ignore:
Timestamp:
Jan 25, 2012, 2:36:47 PM (12 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to XTIDE Universal BIOS:

  • AH=0Ch (Seek) should work properly again.
  • More than 127 sectors are no longer allowed for EBIOS functions.
  • Changed location for BOOTNFO structs.
Location:
trunk/XTIDE_Universal_BIOS/Inc
Files:
2 edited

Legend:

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

    r121 r221  
    2222; Segment is always 0000h, same as BDA segment
    2323struc BOOTVARS
    24                     resb    800h
    25     .dwPostStack    resb    4       ;  804h, POST stack when entering INT 19h
    26                     resb    8
    27     .rgBootNfo      resb    73F4h   ;  80Ch, Array containing BOOTNFO structs
    28     .rgbMnuStack:                   ; 7C00h and below, Boot Menu stack
     24                    resb    7C00h
    2925    .rgbAtaInfo:                    ; 7C00h, ATA Information for drive detection
    3026    .rgbBootSect    resb    512     ; 7C00h, Boot sector
     27                    resb    256     ; Boot Menu stack
     28    .rgbMnuStack:
     29    .dwPostStack    resb    4       ; POST stack pointer when entering INT 19h
     30    .rgBootNfo:                     ; Array containing BOOTNFO structs
    3131endstruc
    3232
  • trunk/XTIDE_Universal_BIOS/Inc/EBIOS.inc

    r218 r221  
    4141    .bSize                  resb    1   ; 0, Size of this packet in bytes
    4242    .bReservedAt1           resb    1   ; 1, Currently unused, must be zero
    43     .bSectorCount           resb    1   ; 2, Number of sectors to process (0...127)
    44     .bReservedAt3           resb    1   ; 3, Currently unused, must be zero
     43    .wSectorCount           resb    1   ; 2, Number of sectors to process (0...127)
    4544    .dwMemoryAddress:
    4645    .wOffset                resb    2   ; 4, Memory offset for transfer
Note: See TracChangeset for help on using the changeset viewer.