Ignore:
Timestamp:
Jan 7, 2003, 1:38:27 PM (23 years ago)
Author:
kiewitz
Message:

AIR-BOOT v1.0.
Signature-date: 2003-01-07.
Added SW language and updated images and installers.
Updated language menus.
Note: This comment was created after rebuilding the repo. [2011-07]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AIR-BOOT/SOURCE/REGULAR/DRIVEIO.ASM

    r8 r12  
    204204 ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*
    205205DriveIO_LoadSector              Proc Near  Uses ax bx ds si es di
     206   test    cs:[CurIO_UseExtension], 1
     207   jz      DIOLS_UseNormal
    206208   ; LBA-boundary >16450560 (FB0400h)
    207209   cmp     bx, 00FBh
    208    jb      DIOLS_UseNormal
    209    test    cs:[CurIO_UseExtension], 1
     210   jae     DIOLS_UseExtension
     211   ; or are we forced do use LBA?
     212   test    cs:[CFG_ForceLBAUsage], 1
    210213   jnz     DIOLS_UseExtension
    211214  DIOLS_UseNormal:
     
    253256 ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*
    254257DriveIO_SaveSector              Proc Near  Uses ax bx cx ds si es di
     258   test    cs:[CurIO_UseExtension], 1
     259   jz      DIOSS_UseNormal
    255260   ; LBA-boundary >16450560 (FB0400h)
    256261   cmp     bx, 00FBh
    257    jb      DIOSS_UseNormal
    258    test    cs:[CurIO_UseExtension], 1
     262   jae     DIOSS_UseExtension
     263   ; or are we forced do use LBA?
     264   test    cs:[CFG_ForceLBAUsage], 1
    259265   jnz     DIOSS_UseExtension
    260266  DIOSS_UseNormal:
Note: See TracChangeset for help on using the changeset viewer.