source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Boot/BootPrint.asm @ 128

Last change on this file since 128 was 128, checked in by krille_n_@…, 13 years ago

Changes to the XTIDE Universal BIOS:

  • Size optimizations in various files.
File size: 1.8 KB
RevLine 
[88]1; Project name  :   XTIDE Universal BIOS
[3]2; Description   :   Functions for printing boot related strings.
3
4; Section containing code
5SECTION .text
6
7;--------------------------------------------------------------------
8; BootPrint_TryToBootFromDL
9;   Parameters:
10;       DL:     Drive to boot from (translated, 00h or 80h)
11;       DS:     RAMVARS segment
12;   Returns:
13;       Nothing
14;   Corrupts registers:
[120]15;       AX, SI, DI
[3]16;--------------------------------------------------------------------
17ALIGN JUMP_ALIGN
18BootPrint_TryToBootFromDL:
[88]19    push    bp
20    mov     bp, sp
[3]21
[95]22    mov     ax, g_szHDD
[128]23    test    dl, dl
24    js      SHORT .NotFDD
25    mov     ax, g_szFDD
26.NotFDD:
[95]27    push    ax
[88]28
[3]29    call    DriveXlate_ToOrBack
30    push    dx                  ; Push untranslated drive number
[88]31    call    DriveXlate_ToOrBack
32    push    dx                  ; Push translated drive number
[3]33
34    mov     si, g_szTryToBoot
[88]35    jmp     BootMenuPrint_FormatCSSIfromParamsInSSBP
[3]36
37
38;--------------------------------------------------------------------
[95]39; BootPrint_BootSectorResultStringFromBX
[3]40;   Parameters:
[95]41;       CS:BX:  Ptr to "found" or "not found"
[3]42;   Returns:
43;       Nothing
44;   Corrupts registers:
[120]45;       AX, SI, DI
[3]46;--------------------------------------------------------------------
47ALIGN JUMP_ALIGN
[95]48BootPrint_BootSectorResultStringFromBX:
[88]49    push    bp
50    mov     bp, sp
51    ePUSH_T ax, g_szBootSector
[95]52    push    bx          ; "found" or "not found"
[3]53    mov     si, g_szSectRead
[88]54    jmp     BootMenuPrint_FormatCSSIfromParamsInSSBP
[3]55
56
57;--------------------------------------------------------------------
58; BootPrint_FailedToLoadFirstSector
59;   Parameters:
60;       AH:     INT 13h error code
61;   Returns:
62;       Nothing
63;   Corrupts registers:
[120]64;       AX, BX, SI, DI
[3]65;--------------------------------------------------------------------
66ALIGN JUMP_ALIGN
67BootPrint_FailedToLoadFirstSector:
[88]68    push    bp
69    mov     bp, sp
[95]70    eMOVZX  bx, ah
71    push    bx                  ; Push INT 13h error code
[3]72    mov     si, g_szReadError
[88]73    jmp     BootMenuPrint_FormatCSSIfromParamsInSSBP
Note: See TracBrowser for help on using the repository browser.