Changeset 61368 in vbox
- Timestamp:
- Jun 1, 2016 12:46:59 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRZ/CPUMRZA.asm
r61348 r61368 141 141 mov eax, ecx 142 142 and eax, ~(X86_CR0_TS | X86_CR0_EM) 143 mov cr0, e cx143 mov cr0, eax 144 144 .skip_cr0_write: 145 145 %endif … … 259 259 ; Temporarily grant access to the SSE state. xDX must be preserved until CR0 is restored! 260 260 mov edx, cr0 261 test edx, X86_CR0_TS | X86_CR0_EM 261 262 jz .skip_cr0_write 262 263 mov eax, edx 263 264 and eax, ~(X86_CR0_TS | X86_CR0_EM) 264 mov cr0, e cx265 mov cr0, eax 265 266 .skip_cr0_write: 266 267 %endif
Note:
See TracChangeset
for help on using the changeset viewer.