Changeset 24


Ignore:
Timestamp:
Mar 6, 2003, 12:16:16 PM (22 years ago)
Author:
kiewitz
Message:

Updated Installer.
Note: This comment was created after rebuilding the repo. [2011-07]

Location:
trunk/AIR-BOOT/INSTALL
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/AIR-BOOT/INSTALL/FLOPPY/DSK_BOOT.ASM

    r23 r24  
    128128   ret
    129129MBR_TeletypeNumber              EndP
     130
     131;        In: AL - BCD-number to type to screen (full 2 digits everytime)
     132; Destroyed: *nothing*
     133MBR_TeletypeNumber2             Proc Near   Uses ax bx
     134   mov     ah, al
     135   and     ah, 0Fh
     136   shr     al, 4
     137   add     ax, 3030h
     138   call    MBR_TeletypeSingle
     139   mov     al, ah
     140   call    MBR_TeletypeSingle
     141   ret
     142MBR_TeletypeNumber2             EndP
    130143
    131144;---------------------------------------------------------------------------
     
    407420   call    MBR_TeletypeSingle
    408421   mov     al, dl
    409    call    MBR_TeletypeNumber
     422   call    MBR_TeletypeNumber2
    410423   mov     al, '/'
    411424   call    MBR_TeletypeSingle
     
    763776      call    MBR_TeletypeSingle
    764777      mov     al, dl
    765       call    MBR_TeletypeNumber
     778      call    MBR_TeletypeNumber2
    766779      mov     al, ')'
    767780      call    MBR_TeletypeSingle
  • trunk/AIR-BOOT/INSTALL/OS2/AIRBOOT2.C

    r16 r24  
    9393    case Status_Installed:
    9494    case Status_InstalledMGU: {
    95        sprintf (MSG_Insert[0], "%x.%x", iVersion>>8, iVersion & 0x0FF);
     95       sprintf (MSG_Insert[0], "%x.%02x", iVersion>>8, iVersion & 0x0FF);
    9696       if (iStatus==Status_InstalledMGU)
    9797          MSG_FillInsert (2, TXT_STATUS_Update);
     
    217217   // =============================================================
    218218   MSG_Print (TXT_MENU_Main);
    219    sprintf (MSG_Insert[0], "%x.%x", Image_CodeVersion>>8, Image_CodeVersion & 0x0FF);
     219   sprintf (MSG_Insert[0], "%x.%02x", Image_CodeVersion>>8, Image_CodeVersion & 0x0FF);
    220220   MSG_FillInsert (2, INST_Status_GetLanguageName(Image_LanguageID));
    221221   if (Install_IsCorrupt)                         MSG_Print (TXT_MENU_Repair);
Note: See TracChangeset for help on using the changeset viewer.