Changeset 94 in xtideuniversalbios for trunk/Assembly_Library
- Timestamp:
- Jan 28, 2011, 11:53:09 AM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/Emulate.inc
r64 r94 1 ; File name : emulate.inc2 1 ; Project name : Emulation library 3 ; Created date : 21.10.20094 ; Last update : 30.11.20105 ; Author : Tomi Tilli6 2 ; Description : Macros for emulating later x86 instruction with older 7 3 ; processors. … … 161 157 %endmacro 162 158 163 %macro eCMOV E2164 j neSHORT %%Return159 %macro eCMOVNZ 2 160 jz SHORT %%Return 165 161 mov %1, %2 166 162 %%Return: 163 %endmacro 164 165 %macro eCMOVE 2 166 eCMOVZ %1, %2 167 %endmacro 168 169 %macro eCMOVNE 2 170 eCMOVNZ %1, %2 167 171 %endmacro 168 172
Note:
See TracChangeset
for help on using the changeset viewer.