Ignore:
Timestamp:
Apr 8, 2017, 12:26:57 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Optimized reading a sector from disk using INT13X [v1.1.1-testing]

At this level it is more clear to talk about 'reading' and 'writing'
sectors, where 'disk read' and 'disk write' errors can occur.

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/special/lvm.asm

    r101 r102  
    242242        mov     si,offset [LVMSector]
    243243        mov     di,ds
    244         call    DriveIO_LoadSectorLBA                                           ; Change this to normal IO-routine !!!!!!
     244        call    DriveIO_ReadSectorLBA
    245245        pop     di
    246246        pop     si
     
    379379        mov     si,offset [LVMSector]
    380380        mov     di,ds
    381         call    DriveIO_LoadSectorLBA                                           ; Change this to normal IO-routine !!!!!!
     381        call    DriveIO_ReadSectorLBA
    382382        pop     di
    383383        pop     si
Note: See TracChangeset for help on using the changeset viewer.