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]

Location:
trunk/AIR-BOOT/SOURCE/REGULAR
Files:
3 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:
  • trunk/AIR-BOOT/SOURCE/REGULAR/PARTMAIN.ASM

    r8 r12  
    499499   ; BX:AX -> Absolute End-Position of Partition
    500500
     501   test    CFG_ForceLBAUsage, 1
     502   jnz     PSP_ForceI13X
    501503   ; LBA-boundary at 16450560 (FB0400h)
    502504   cmp     bx, 00FBh
    503505   jb      PSP_NoI13X
     506  PSP_ForceI13X:
    504507   push    es di
    505508      mov     ax, 3000h
  • trunk/AIR-BOOT/SOURCE/REGULAR/STD_TEXT.ASM

    r8 r12  
    2323;  I'm going to sue your cheap ass, rape your dog and blow up your house. =)
    2424
    25 CopyrightVersionLen         equ   5+7
    26 Copyright                    db ' AiR-BOOT v0.94 [RC-4] - (c) ''98-2002 Martin Kiewitz, Dedicated to Gerd Kiewitz', 0
    27 BootEndMsg                   db 'Release Candidate 4 still BETA. Do NOT distribute/copy. Only for private use.', 0
     25CopyrightVersionLen         equ   5
     26Copyright                    db ' AiR-BOOT v1.00 - (c) ''98-2003 Martin Kiewitz, Dedicated to Gerd Kiewitz', 0
     27BootEndMsg                   db 'Distribute/copy freely. Only meant for private usage.', 0
    2828
    2929CheckID_MBR                  db 'AiRBOOT'
Note: See TracChangeset for help on using the changeset viewer.