Ignore:
Timestamp:
Mar 14, 2011, 5:24:48 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • Removed "Boot sector found!" string.
  • Added option to specify display mode for boot menu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/Common/HTimer.asm

    r140 r143  
    4545; RTC resolution is 977 microsecs.
    4646;
    47 ; Delay_MicrosecondsFromAX
     47; HTimer_MicrosecondsFromAX
    4848;   Parameters:
    4949;       AX:     Number of microsecs to wait
     
    5353;       AX
    5454;--------------------------------------------------------------------
    55 Delay_MicrosecondsFromAX:
     55HTimer_MicrosecondsFromAX:
    5656%ifndef USE_AT
    5757    mov     ax, 1
     
    7070    pop     dx
    7171    mov     ax, 1                           ; Prepare to wait 1 timer tick
    72     jc      SHORT Delay_TimerTicksFromAX    ; Event Wait was unsupported or busy
     72    jc      SHORT HTimer_TimerTicksFromAX   ; Event Wait was unsupported or busy
    7373    ret
    7474%endif
     
    7979; will occur at 54.9 ms intervals.
    8080;
    81 ; Delay_TimerTicksFromAX
     81; HTimer_TimerTicksFromAX
    8282;   Parameters:
    8383;       AX:     Number of timer ticks to wait
     
    8787;       AX
    8888;--------------------------------------------------------------------
    89 Delay_TimerTicksFromAX:
     89HTimer_TimerTicksFromAX:
    9090    sti                             ; Make sure that interrupts are enabled
    9191    call    ReadTimeFromBdaToCX
Note: See TracChangeset for help on using the changeset viewer.