- Timestamp:
- Feb 28, 2011, 5:56:17 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/XTIDE_Universal_BIOS/Src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootMenuPrint.asm
r120 r122 396 396 .PrintHotkeyString: 397 397 ; Display Library should not be called like this 398 mov si, ATTRIBUTE_CHARS.cTitle399 call MenuAttribute_GetToAXfromTypeInSI400 xchg cx, ax401 398 mov si, ATTRIBUTE_CHARS.cHighlightedItem 402 399 call MenuAttribute_GetToAXfromTypeInSI 403 400 xchg dx, ax 401 mov cx, MONO_BRIGHT 404 402 405 403 test bl, bl ; Any Floppy Drives? … … 412 410 test bh, bh ; Any Hard Drives? 413 411 jz SHORT .SkipHardDriveHotkeys 412 xchg ax, cx ; Store Key Attribute 414 413 call BootMenu_GetLetterForFirstHardDiskToCL 415 414 mov ch, ANGLE_QUOTE_RIGHT -
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19hMenu.asm
r121 r122 6 6 7 7 ;-------------------------------------------------------------------- 8 ; Initial Boot Menu Loader. 9 ; Prepares BOOTVARS for displaying Boot Menu and accepting 10 ; callbacks from INT 18h and 19h. 8 ; Boot Menu Loader. 11 9 ; 12 10 ; Int19hMenu_BootLoader … … 21 19 LOAD_BDA_SEGMENT_TO ds, ax 22 20 STORE_POST_STACK_POINTER 23 24 ; Install new INT 19h handler now that BOOTVARS has been initialized25 mov WORD [INTV_BOOTSTRAP*4], DisplayBootMenu26 mov WORD [INTV_BOOTSTRAP*4+2], cs27 ; Fall to DisplayBootMenu28 29 ;--------------------------------------------------------------------30 ; DisplayBootMenu31 ; Parameters:32 ; Nothing33 ; Returns:34 ; Never returns35 ;--------------------------------------------------------------------36 ALIGN JUMP_ALIGN37 DisplayBootMenu:38 21 SWITCH_TO_BOOT_MENU_STACK 39 22 CALL_DISPLAY_LIBRARY InitializeDisplayContext -
trunk/XTIDE_Universal_BIOS/Src/Strings.asm
r96 r122 23 23 g_szHDD: db "HDD",NULL 24 24 g_szRomBoot: db "ROM Boot",NULL 25 g_szHotkey: db "%A%c%c%A%8s% a",NULL25 g_szHotkey: db "%A%c%c%A%8s%A ",NULL 26 26 27 27
Note:
See TracChangeset
for help on using the changeset viewer.