Ignore:
Timestamp:
Jan 28, 2016, 9:39:16 AM (10 years ago)
Author:
Ben Rietbroek
Message:

AiR-BOOT v1.1.0-RELEASE [2013-04-05]

This is the version as included on the eCS v2.2-beta CD's.
It was technically a pre-v1.1.0 release, with the final v1.1.0,
including some minor patches, to be included with eCS v2.2-GA.
Because this version is now known to be v1.1.0, we'll keep it that way.

The minor patches and meanwhile done fixes will soon appear as v1.1.1
test-version commits to be consolidated to a v1.1.2 release.
Issues regarding removable media are planned for the v1.1.4 release as
this requires removal of obsolete code and optimizing existing code to
create space in the ~32K block (track0) the loader resides in.

With this version of AiR-BOOT, the display of the version number has
changed to be compatible with the WarpIN versioning system.
So all digits are now separated by a dot. This change is only visual and
tools relying on the way AiR-BOOT stores it's version numer internally
are not affected.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BOOTCODE/REGULAR/OTHER.ASM

    r54 r55  
    166166        call    MBR_TeletypeNL
    167167
    168 
    169         ; This sets [CurIO_UseExtension] flag.
    170         call    PRECRAP_CheckFor13extensions
    171         mov     al,[CurIO_UseExtension]
    172         test    al,al
    173         jnz     INT13X_Supported
    174 
    175         ;
    176         ; Show Message that BIOS INT13X is not supported
    177         ; and Halt the System.
    178         ;
    179         mov     cx, 0C04h
    180         mov     si, offset TXT_NoINT13XSupport
    181         call    SETUP_ShowErrorBox
    182 
    183         ; Halt the system.
    184         jmp     HaltSystem
    185 
    186 
    187     ;
    188     ; INT13X Supported so continue.
    189     ;
    190     INT13X_Supported:
    191 
    192168        xor     cx,cx
    193169    PRECRAP_Main_next_disk:
     
    349325
    350326
     327        ; This sets [CurIO_UseExtension] flag.
     328        call    PRECRAP_CheckFor13extensions
     329        mov     al,[CurIO_UseExtension]
     330        test    al,al
     331        jnz     INT13X_Supported
     332
     333        ;
     334        ; Show Message that BIOS INT13X is not supported
     335        ; and Halt the System.
     336        ;
     337        mov     cx, 0C04h
     338        mov     si, offset TXT_NoINT13XSupport
     339        call    SETUP_ShowErrorBox
     340
     341        ; Halt the system.
     342        jmp     HaltSystem
     343
     344
     345    ;
     346    ; INT13X Supported so continue.
     347    ;
     348    INT13X_Supported:
    351349
    352350    IFNDEF ReleaseCode
Note: See TracChangeset for help on using the changeset viewer.