Changeset 13193 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Oct 13, 2008 6:30:04 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37734
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r13161 r13193 2642 2642 return VERR_EM_INTERPRETER; /* not supported */ 2643 2643 2644 val = (uint64_t)pRegFrame->eax | ((uint64_t)pRegFrame->edx << 32ULL);2644 val = RT_MAKE_U64(pRegFrame->eax, pRegFrame->edx); 2645 2645 Log(("EMInterpretWrmsr %s (%x) val=%VX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val)); 2646 2646 switch (pRegFrame->ecx)
Note:
See TracChangeset
for help on using the changeset viewer.