Changeset 14505 in vbox for trunk/src/VBox
- Timestamp:
- Nov 24, 2008 7:10:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0A.asm
r14499 r14505 305 305 ; 306 306 mov edi, [edx + VMMR0JMPBUF.pvSavedStack] 307 cmp edi, 0; darwin may set this to 0.308 j e.nok307 test edi, edi ; darwin may set this to 0. 308 jz .nok 309 309 mov [edx + VMMR0JMPBUF.SpResume], esp 310 310 mov esi, esp … … 385 385 ; 386 386 mov rdi, [rdx + VMMR0JMPBUF.pvSavedStack] 387 cmp rdi, 0; darwin may set this to 0.388 j e.nok387 test rdi, rdi ; darwin may set this to 0. 388 jz .nok 389 389 mov [rdx + VMMR0JMPBUF.SpResume], rsp 390 390 mov rsi, rsp
Note:
See TracChangeset
for help on using the changeset viewer.