Ignore:
Timestamp:
Jan 30, 2011, 7:15:06 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • Some more initialization optimizations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectPrint.asm

    r97 r98  
    4646
    4747;--------------------------------------------------------------------
    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
    5249;   Parameters:
    5350;       ES:BX:  Ptr to BOOTNFO (if drive found)
    54 ;       CF:     Cleared if drive found
    55 ;               Set it drive not found
    5651;   Returns:
    5752;       Nothing
     
    5954;       AX, SI
    6055;--------------------------------------------------------------------
    61 DetectPrint_DriveNameOrNotFound:
     56DetectPrint_DriveNameFromBootnfoInESBX:
    6257    push    di
    63     jc      SHORT .PrintDriveNotFound
    6458    push    bx
    6559
     
    7367    ret
    7468
    75 .PrintDriveNotFound:
     69
     70;--------------------------------------------------------------------
     71; DetectPrint_DriveNotFound
     72;   Parameters:
     73;       Nothing
     74;   Returns:
     75;       Nothing
     76;   Corrupts registers:
     77;       AX, SI
     78;--------------------------------------------------------------------
     79DetectPrint_DriveNotFound:
    7680    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.