Changeset 524 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Handlers
- Timestamp:
- Mar 14, 2013, 2:28:30 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h.asm
r521 r524 80 80 %ifdef MODULE_HOTKEYS 81 81 call TimerTicks_ReadFromBdaToAX 82 add ax, BYTE MIN_TIME_TO_DISPLAY_HOTKEY_BAR 83 mov [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wTimeToClose], ax 82 mov [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wTimeWhenDisplayed], ax 84 83 %endif 85 84 … … 89 88 .WaitUntilTimeToCloseHotkeyBar: 90 89 call TimerTicks_ReadFromBdaToAX 91 cmp ax, [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wTimeToClose] 90 sub ax, [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wTimeWhenDisplayed] 91 cmp ax, MIN_TIME_TO_DISPLAY_HOTKEY_BAR 92 92 jb SHORT .WaitUntilTimeToCloseHotkeyBar 93 93 %endif
Note:
See TracChangeset
for help on using the changeset viewer.