Changeset 131 in xtideuniversalbios for trunk/Assembly_Library/Src/Time
- Timestamp:
- Mar 7, 2011, 4:19:43 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Time/TimerTicks.asm
r119 r131 23 23 ; CX 24 24 ;-------------------------------------------------------------------- 25 %ifdef INCLUDE_MENU_DIALOGS 26 25 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 27 26 ALIGN JUMP_ALIGN 28 27 TimerTicks_GetHoursToAXfromTicksInDXAX: … … 38 37 div cx ; Divide DX:AX by CX, Minutes to AX, remainder ticks to DX 39 38 ret 40 41 39 %endif 42 40 … … 105 103 ; Nothing 106 104 ;-------------------------------------------------------------------- 105 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 107 106 ALIGN JUMP_ALIGN 108 107 TimerTicks_GetElapsedToAXandResetDSBX: … … 112 111 pop WORD [bx] ; Latest time to [DS:BX] 113 112 ret 113 %endif 114 114 115 115 ;-------------------------------------------------------------------- … … 122 122 ; Nothing 123 123 ;-------------------------------------------------------------------- 124 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 124 125 ALIGN JUMP_ALIGN 125 126 TimerTicks_GetElapsedToAXfromDSBX: … … 127 128 sub ax, [bx] 128 129 ret 130 %endif 129 131 130 132
Note:
See TracChangeset
for help on using the changeset viewer.