Changeset 177
- Timestamp:
- Nov 7, 2017, 7:12:39 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/airboot.md5
r176 r177 1 966d84e065c842c29fcf8c77b28f1428 *airboot.bin1 3fbd042146daf016accd81b36e5e6560 airboot.bin -
trunk/bootcode/regular/bootmenu.asm
r170 r177 675 675 676 676 677 ; Dirty hack to clear remaining line when menu is scrolled. 678 ; Padd with spaces. 677 ; Dirty hack to pad remaining line with spaces. 679 678 ; Should be implemented in scrolling routine. 680 push word ptr [TextPosX] 681 mov si, offset spaces 682 mov cl,24 683 call VideoIO_FixedPrint 684 pop word ptr [TextPosX] 685 679 push word ptr [TextPosY] ; Quick save X,Y position 680 mov al, ' ' ; Filler 681 mov cl, 79 ; Index of last column 682 sub cl, byte ptr [TextPosX] ; Calculate padding length 683 call VideoIO_PrintSingleMultiChar ; Do the padding 684 pop word ptr [TextPosY] ; Quick restore X,Y position 685 686 ; Get AiR-BOOT system-ID to see if drive-letters need to be shown 686 687 mov si, [PartPointer] 687 688 mov ah, [si+LocIPT_SystemID] … … 702 703 ENDIF 703 704 704 mov al, ah705 706 cmp al, 07h 707 je show_dl 708 cmp al, 0fch 709 je show_dl 710 711 jmp skip_show_dl 705 ; Only show drive-letters when partition is HPFS or JFS 706 mov al, ah ; AiR-BOOT system-ID in AL 707 cmp al, 07h ; Is HPFS ? 708 je show_dl ; Yep, show drive-letters 709 cmp al, 0fch ; Is JFS ? 710 je show_dl ; Yep, show drive-letters 711 712 jmp skip_show_dl ; No HPFS or JFS, skip show drive-letters 712 713 713 714 show_dl: … … 799 800 dl_text db ' on drive ',0 800 801 dl_hidden db ' hidden ',0 801 spaces db ' ',0802 802 803 803 ; In: DL - Active Partition -
trunk/include/version.h
r176 r177 32 32 #define BLDLVL_YEAR "2017" 33 33 #define BLDLVL_MONTH "04" 34 #define BLDLVL_DAY " 08"34 #define BLDLVL_DAY "12" 35 35 // Build time 36 36 //~ #define BLDLVL_HOURS "01" -
trunk/include/version.inc
r176 r177 70 70 AB_YEAR EQU 2017h 71 71 AB_MONTH EQU 04h 72 AB_DAY EQU 08h72 AB_DAY EQU 12h 73 73 74 74 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note:
See TracChangeset
for help on using the changeset viewer.