Changeset 60 in xtideuniversalbios for trunk/Assembly_Library/Inc
- Timestamp:
- Nov 25, 2010, 2:17:45 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/Assembly_Library/Inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/Emulate.inc
r50 r60 2 2 ; Project name : Emulation library 3 3 ; Created date : 21.10.2009 4 ; Last update : 9.10.20104 ; Last update : 25.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Macros for emulating later x86 instruction with older … … 157 157 %macro eCMOVE 2 158 158 jne SHORT %%Return 159 mov %1, %2 160 %%Return: 161 %endmacro 162 163 %macro eCMOVB 2 164 jnb SHORT %%Return 159 165 mov %1, %2 160 166 %%Return: -
trunk/Assembly_Library/Inc/Menu.inc
r54 r60 2 2 ; Project name : Assembly Library 3 3 ; Created date : 13.7.2010 4 ; Last update : 2 3.10.20104 ; Last update : 22.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Defines for Menu library. … … 75 75 .RefreshInformation resb 2 76 76 77 .RestartTimeout resb 2 78 .SetTimeoutValueFromAX: 77 .StartSelectionTimeoutWithTicksInAX resb 2 79 78 80 79 %ifdef INCLUDE_MENU_DIALOGS … … 94 93 ; Menu initialization parameters 95 94 struc MENUINIT 96 .wTimeoutTicks resb 2 ; Selection timeout in system timer ticks97 95 .wItems resb 2 ; Number of items in menu 98 96 .wHighlightedItem resb 2 ; Index for highlighted item … … 124 122 FLG_MENU_NOHIGHLIGHT EQU (1<<1) ; Never highlight items 125 123 FLG_MENU_USER_HANDLES_SCROLLING EQU (1<<2) 124 FLG_MENU_TIMEOUT_COUNTDOWN EQU (1<<3) ; Timeout countdown in progress 126 125 127 126
Note:
See TracChangeset
for help on using the changeset viewer.