Changeset 130 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootPrint.asm
- Timestamp:
- Mar 4, 2011, 5:54:41 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootPrint.asm
r128 r130 37 37 38 38 ;-------------------------------------------------------------------- 39 ; BootPrint_BootSectorResultStringFrom BX39 ; BootPrint_BootSectorResultStringFromAX 40 40 ; Parameters: 41 ; CS: BX: Ptr to "found" or "not found"41 ; CS:AX: Ptr to "found" or "not found" 42 42 ; Returns: 43 43 ; Nothing 44 44 ; Corrupts registers: 45 ; AX, SI, DI45 ; AX, CX, SI, DI 46 46 ;-------------------------------------------------------------------- 47 47 ALIGN JUMP_ALIGN 48 BootPrint_BootSectorResultStringFrom BX:48 BootPrint_BootSectorResultStringFromAX: 49 49 push bp 50 50 mov bp, sp 51 ePUSH_T ax, g_szBootSector52 push bx ; "found" or "not found"51 ePUSH_T cx, g_szBootSector 52 push ax ; "found" or "not found" 53 53 mov si, g_szSectRead 54 54 jmp BootMenuPrint_FormatCSSIfromParamsInSSBP … … 62 62 ; Nothing 63 63 ; Corrupts registers: 64 ; AX, BX, SI, DI64 ; AX, CX, SI, DI 65 65 ;-------------------------------------------------------------------- 66 66 ALIGN JUMP_ALIGN … … 68 68 push bp 69 69 mov bp, sp 70 eMOVZX bx, ah71 push bx ; Push INT 13h error code70 eMOVZX cx, ah 71 push cx ; Push INT 13h error code 72 72 mov si, g_szReadError 73 73 jmp BootMenuPrint_FormatCSSIfromParamsInSSBP
Note:
See TracChangeset
for help on using the changeset viewer.