Changeset 24
- Timestamp:
- Mar 6, 2003, 12:16:16 PM (22 years ago)
- Location:
- trunk/AIR-BOOT/INSTALL
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AIR-BOOT/INSTALL/FLOPPY/DSK_BOOT.ASM
r23 r24 128 128 ret 129 129 MBR_TeletypeNumber EndP 130 131 ; In: AL - BCD-number to type to screen (full 2 digits everytime) 132 ; Destroyed: *nothing* 133 MBR_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 142 MBR_TeletypeNumber2 EndP 130 143 131 144 ;--------------------------------------------------------------------------- … … 407 420 call MBR_TeletypeSingle 408 421 mov al, dl 409 call MBR_TeletypeNumber 422 call MBR_TeletypeNumber2 410 423 mov al, '/' 411 424 call MBR_TeletypeSingle … … 763 776 call MBR_TeletypeSingle 764 777 mov al, dl 765 call MBR_TeletypeNumber 778 call MBR_TeletypeNumber2 766 779 mov al, ')' 767 780 call MBR_TeletypeSingle -
trunk/AIR-BOOT/INSTALL/OS2/AIRBOOT2.C
r16 r24 93 93 case Status_Installed: 94 94 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); 96 96 if (iStatus==Status_InstalledMGU) 97 97 MSG_FillInsert (2, TXT_STATUS_Update); … … 217 217 // ============================================================= 218 218 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); 220 220 MSG_FillInsert (2, INST_Status_GetLanguageName(Image_LanguageID)); 221 221 if (Install_IsCorrupt) MSG_Print (TXT_MENU_Repair);
Note:
See TracChangeset
for help on using the changeset viewer.