- Timestamp:
- Aug 25, 2009 12:00:39 PM (15 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/x86.h
r22429 r22431 2264 2264 * Return the base of a 64-bit descriptor. 2265 2265 */ 2266 #define X86DESC64_BASE(desc) \2266 #define X86DESC64_BASE(desc) /*ASM-NOINC*/ \ 2267 2267 ( ((uint64_t)((desc).Gen.u32BaseHigh3) << 32) \ 2268 2268 | ((uint32_t)((desc).Gen.u8BaseHigh2) << 24) \ -
trunk/include/VBox/x86.mac
r22429 r22431 418 418 %define X86_PML4_SHIFT 39 419 419 %define X86_PML4_MASK 0x1ff 420 %define X86DESC64_BASE(desc) \421 420 %if HC_ARCH_BITS == 64 422 421 %else
Note:
See TracChangeset
for help on using the changeset viewer.