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


Ignore:
Timestamp:
Mar 7, 2011, 4:19:43 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • Some functions are now excluded from XTIDE Universal BIOS with EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS define.
File:
1 edited

Legend:

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

    r119 r131  
    2323;       CX
    2424;--------------------------------------------------------------------
    25 %ifdef INCLUDE_MENU_DIALOGS
    26 
     25%ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
    2726ALIGN JUMP_ALIGN
    2827TimerTicks_GetHoursToAXfromTicksInDXAX:
     
    3837    div     cx      ; Divide DX:AX by CX, Minutes to AX, remainder ticks to DX
    3938    ret
    40 
    4139%endif
    4240
     
    105103;       Nothing
    106104;--------------------------------------------------------------------
     105%ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
    107106ALIGN JUMP_ALIGN
    108107TimerTicks_GetElapsedToAXandResetDSBX:
     
    112111    pop     WORD [bx]           ; Latest time to [DS:BX]
    113112    ret
     113%endif
    114114
    115115;--------------------------------------------------------------------
     
    122122;       Nothing
    123123;--------------------------------------------------------------------
     124%ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
    124125ALIGN JUMP_ALIGN
    125126TimerTicks_GetElapsedToAXfromDSBX:
     
    127128    sub     ax, [bx]
    128129    ret
     130%endif
    129131
    130132
Note: See TracChangeset for help on using the changeset viewer.