Changeset 71224 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 6, 2018 1:08:53 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121134
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/NEMInternal.h
r71222 r71224 70 70 71 71 /** Windows: Checks if a_GCPhys is subject to the limited A20 gate emulation. */ 72 # define NEM_WIN_IS_SUBJECT_TO_A20(a_GCPhys) 72 # define NEM_WIN_IS_SUBJECT_TO_A20(a_GCPhys) ((RTGCPHYS)((a_GCPhys) - _1M) < (RTGCPHYS)_64K) 73 73 /** Windows: Checks if a_GCPhys is relevant to the limited A20 gate emulation. */ 74 74 # define NEM_WIN_IS_RELEVANT_TO_A20(a_GCPhys) \ 75 75 ( ((RTGCPHYS)((a_GCPhys) - _1M) < (RTGCPHYS)_64K) || ((RTGCPHYS)(a_GCPhys) < (RTGCPHYS)_64K) ) 76 77 /** The CPUMCTX_EXTRN_XXX mask for IEM. */ 78 # define NEM_WIN_CPUMCTX_EXTRN_MASK_FOR_IEM CPUMCTX_EXTRN_ALL 76 79 77 80 #endif /* RT_OS_WINDOWS */
Note:
See TracChangeset
for help on using the changeset viewer.