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

Last change on this file since 130 was 130, checked in by aitotat, 13 years ago

Changes to XTIDE Universal BIOS:

  • Boot menu finally works but timeout and drive numbers not yet implemented.
File size: 1.8 KB
Line 
1; Project name  :   XTIDE Universal BIOS
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:
15;       AX, SI, DI
16;--------------------------------------------------------------------
17ALIGN JUMP_ALIGN
18BootPrint_TryToBootFromDL:
19    push    bp
20    mov     bp, sp
21
22    mov     ax, g_szHDD
23    test    dl, dl
24    js      SHORT .NotFDD
25    mov     ax, g_szFDD
26.NotFDD:
27    push    ax
28
29    call    DriveXlate_ToOrBack
30    push    dx                  ; Push untranslated drive number
31    call    DriveXlate_ToOrBack
32    push    dx                  ; Push translated drive number
33
34    mov     si, g_szTryToBoot
35    jmp     BootMenuPrint_FormatCSSIfromParamsInSSBP
36
37
38;--------------------------------------------------------------------
39; BootPrint_BootSectorResultStringFromAX
40;   Parameters:
41;       CS:AX:  Ptr to "found" or "not found"
42;   Returns:
43;       Nothing
44;   Corrupts registers:
45;       AX, CX, SI, DI
46;--------------------------------------------------------------------
47ALIGN JUMP_ALIGN
48BootPrint_BootSectorResultStringFromAX:
49    push    bp
50    mov     bp, sp
51    ePUSH_T cx, g_szBootSector
52    push    ax          ; "found" or "not found"
53    mov     si, g_szSectRead
54    jmp     BootMenuPrint_FormatCSSIfromParamsInSSBP
55
56
57;--------------------------------------------------------------------
58; BootPrint_FailedToLoadFirstSector
59;   Parameters:
60;       AH:     INT 13h error code
61;   Returns:
62;       Nothing
63;   Corrupts registers:
64;       AX, CX, SI, DI
65;--------------------------------------------------------------------
66ALIGN JUMP_ALIGN
67BootPrint_FailedToLoadFirstSector:
68    push    bp
69    mov     bp, sp
70    eMOVZX  cx, ah
71    push    cx                  ; Push INT 13h error code
72    mov     si, g_szReadError
73    jmp     BootMenuPrint_FormatCSSIfromParamsInSSBP
Note: See TracBrowser for help on using the repository browser.