Changeset 65397 in vbox for trunk/include/iprt
- Timestamp:
- Jan 22, 2017 11:32:23 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm-amd64-x86-watcom-32.h
r62473 r65397 210 210 "mov [edi], ecx" \ 211 211 "mov [esi], edx" \ 212 parm [e cx] [edi] [esi] \212 parm [eax] [edi] [esi] \ 213 213 modify exact [eax ebx ecx edx]; 214 214 … … 216 216 #pragma aux ASMCpuId_EAX = \ 217 217 "cpuid" \ 218 parm [e cx] \218 parm [eax] \ 219 219 value [eax] \ 220 220 modify exact [eax ebx ecx edx]; … … 223 223 #pragma aux ASMCpuId_EBX = \ 224 224 "cpuid" \ 225 parm [e cx] \225 parm [eax] \ 226 226 value [ebx] \ 227 227 modify exact [eax ebx ecx edx]; … … 230 230 #pragma aux ASMCpuId_ECX = \ 231 231 "cpuid" \ 232 parm [e cx] \232 parm [eax] \ 233 233 value [ecx] \ 234 234 modify exact [eax ebx ecx edx]; … … 237 237 #pragma aux ASMCpuId_EDX = \ 238 238 "cpuid" \ 239 parm [e cx] \239 parm [eax] \ 240 240 value [edx] \ 241 241 modify exact [eax ebx ecx edx];
Note:
See TracChangeset
for help on using the changeset viewer.