Changeset 98 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectPrint.asm
- Timestamp:
- Jan 30, 2011, 7:15:06 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectPrint.asm
r97 r98 46 46 47 47 ;-------------------------------------------------------------------- 48 ; Displays Detected Drive Name from BOOTVARS or 49 ; drive not found string if no drive was found. 50 ; 51 ; DetectPrint_DriveNameOrNotFound 48 ; DetectPrint_DriveNameFromBootnfoInESBX 52 49 ; Parameters: 53 50 ; ES:BX: Ptr to BOOTNFO (if drive found) 54 ; CF: Cleared if drive found55 ; Set it drive not found56 51 ; Returns: 57 52 ; Nothing … … 59 54 ; AX, SI 60 55 ;-------------------------------------------------------------------- 61 DetectPrint_DriveName OrNotFound:56 DetectPrint_DriveNameFromBootnfoInESBX: 62 57 push di 63 jc SHORT .PrintDriveNotFound64 58 push bx 65 59 … … 73 67 ret 74 68 75 .PrintDriveNotFound: 69 70 ;-------------------------------------------------------------------- 71 ; DetectPrint_DriveNotFound 72 ; Parameters: 73 ; Nothing 74 ; Returns: 75 ; Nothing 76 ; Corrupts registers: 77 ; AX, SI 78 ;-------------------------------------------------------------------- 79 DetectPrint_DriveNotFound: 76 80 mov si, g_szNotFound 77 call BootMenuPrint_NullTerminatedStringFromCSSIandSetCF 78 pop di 79 ret 81 jmp BootMenuPrint_NullTerminatedStringFromCSSIandSetCF
Note:
See TracChangeset
for help on using the changeset viewer.