Ignore:
Timestamp:
May 6, 2011, 4:25:19 AM (14 years ago)
Author:
Ben Rietbroek
Message:

AiR-BOOT v1.07 -- As released with eCS v2.1. [2011-05-06]
Signature-date: 2006-03-13. (incorrect)
Trunk contains buildable v1.07 version as distributed with eCS v2.1.
Directory 'tags' contains v1.06 & v1.07 reference versions
built for all languages. Note that language ID for 'Dutch' changed
from 'DT' to 'NL' in v1.07 and that the v1.06 reference version also
uses 'NL' for 'Dutch'.
Also note that helper programs like the installer and setaboot are
are only modified for the OS/2 versions in v1.07.
The signature-date for v1.07 incorrectly states the same
date as for v1.06. The signature-version is correct.
Removed other binaries. (cd-rom images, old releases, etc.)
The tags serve as reference versions:

  • v1.06: rebuilt from source. (tags/v1.06r)
  • v1.07: built as released with eCS v2.1. (tags/v1.07r)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/TOOLS/INTERNAL/FIXCODE.ASM

    r29 r30  
    9191
    9292                mov     ah, 3Fh
    93                 mov     cx, 30720        ; Image size
     93                mov     cx, image_size   ; Image size
    9494                mov     dx, offset BootCode
    9595                int     21h              ; DOS: READ FILE
     
    9898                call    ShowError
    9999
    100 DoneReadCode:   cmp     ax, 30720
     100DoneReadCode:   cmp     ax, image_size
    101101                je      DoneReadCode2
    102102InvalidCode:    mov     dx, offset COM_FailedInvalidCode
     
    232232
    233233                mov     ah, 40h
    234                 mov     cx, 30720        ; Image size
     234                mov     cx, image_size   ; Image size
    235235                mov     dx, offset BootCode
    236236                int     21h              ; DOS: WRITE FILE
     
    239239                call    ShowError
    240240
    241 DoneWriteCode:  cmp     ax, 30720
     241DoneWriteCode:  cmp     ax, image_size
    242242                jne     FailedWriteCode
    243243
     
    250250
    251251; Buffers for files
    252 BootCode        db 30720 dup (?)
     252BootCode        db  image_size dup (?)
    253253MBRProtection   db  1024 dup (?)
    254254
Note: See TracChangeset for help on using the changeset viewer.