Changeset 47237 in vbox
- Timestamp:
- Jul 18, 2013 7:29:40 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87355
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r47156 r47237 67 67 * 68 68 * @{ */ 69 #define HMSVM_CPU_2_VMCB_SEG_ATTR(a) ( a & 0xff) | ((a & 0xf000) >> 4)70 #define HMSVM_VMCB_2_CPU_SEG_ATTR(a) ( a & 0xff) | ((a & 0x0f00) << 4)69 #define HMSVM_CPU_2_VMCB_SEG_ATTR(a) ( ((a) & 0xff) | (((a) & 0xf000) >> 4) ) 70 #define HMSVM_VMCB_2_CPU_SEG_ATTR(a) ( ((a) & 0xff) | (((a) & 0x0f00) << 4) ) 71 71 /** @} */ 72 72
Note:
See TracChangeset
for help on using the changeset viewer.