Changeset 489 in xtideuniversalbios for trunk/Assembly_Library/Src/Time/TimerTicks.asm


Ignore:
Timestamp:
Dec 13, 2012, 7:32:09 AM (11 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Added version string to initial title banner, for cases where there is not a boot menu (just hotkeys, or no hotkeys). Also ifdef'd out some unused code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Time/TimerTicks.asm

    r376 r489  
    5757%endif ; EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
    5858
     59%ifdef INCLUDE_MENU_LIBRARY
    5960ALIGN JUMP_ALIGN
    6061TimerTicks_GetSecondsToAXfromTicksInDX:
     
    6566    xchg    dl, ah  ; Seconds in AX, remainder in DX
    6667    ret
    67 
     68%endif
    6869
    6970;--------------------------------------------------------------------
     
    8182;       AX
    8283;--------------------------------------------------------------------
     84%ifdef INCLUDE_MENU_LIBRARY     
    8385ALIGN JUMP_ALIGN
    8486TimerTicks_InitializeTimeoutFromAX:
     
    8789    add     [bx], ax                    ; [bx] now contains end time for timeout
    8890    ret
    89 
     91%endif
    9092
    9193;--------------------------------------------------------------------
     
    100102;       Nothing
    101103;--------------------------------------------------------------------
     104%ifdef INCLUDE_MENU_LIBRARY     
    102105ALIGN JUMP_ALIGN
    103106TimerTicks_GetTimeoutTicksLeftToAXfromDSBX:
     
    109112    pop     dx
    110113    ret
    111 
     114%endif
    112115
    113116;--------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.