Changeset 192 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootPrint.asm
- Timestamp:
- Nov 16, 2011, 11:35:45 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootPrint.asm
r143 r192 4 4 ; Section containing code 5 5 SECTION .text 6 7 ;-------------------------------------------------------------------- 8 ; BootPrint_FailedToLoadFirstSector 9 ; Parameters: 10 ; AH: INT 13h error code 11 ; Returns: 12 ; Nothing 13 ; Corrupts registers: 14 ; AX, CX, SI, DI 15 ;-------------------------------------------------------------------- 16 ALIGN JUMP_ALIGN 17 BootPrint_FailedToLoadFirstSector: 18 push bp 19 mov bp, sp 20 eMOVZX cx, ah 21 push cx ; Push INT 13h error code 22 mov si, g_szReadError 23 24 BootPrint_BootMenuPrint_FormatCSSIfromParamsInSSBP_Relay: 25 jmp short BootMenuPrint_FormatCSSIfromParamsInSSBP_Relay 26 6 27 7 28 ;-------------------------------------------------------------------- … … 33 54 34 55 mov si, g_szTryToBoot 35 jmp BootMenuPrint_FormatCSSIfromParamsInSSBP56 jmp short BootPrint_BootMenuPrint_FormatCSSIfromParamsInSSBP_Relay 36 57 37 58 38 ;-------------------------------------------------------------------- 39 ; BootPrint_FailedToLoadFirstSector 40 ; Parameters: 41 ; AH: INT 13h error code 42 ; Returns: 43 ; Nothing 44 ; Corrupts registers: 45 ; AX, CX, SI, DI 46 ;-------------------------------------------------------------------- 47 ALIGN JUMP_ALIGN 48 BootPrint_FailedToLoadFirstSector: 49 push bp 50 mov bp, sp 51 eMOVZX cx, ah 52 push cx ; Push INT 13h error code 53 mov si, g_szReadError 54 jmp BootMenuPrint_FormatCSSIfromParamsInSSBP 59
Note:
See TracChangeset
for help on using the changeset viewer.