Changeset 9276 in vbox
- Timestamp:
- May 31, 2008 9:03:02 PM (16 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
VBox/VMM/PGMPhys.cpp (modified) (1 diff)
-
recompiler/VBoxRecompiler.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r9212 r9276 2102 2102 pVM->pgm.s.GCPhysA20Mask = ~(RTGCPHYS)(!fEnable << 20); 2103 2103 REMR3A20Set(pVM, fEnable); 2104 /** @todo we're not handling this correctly for VT-x / AMD-V. See #2911 */ 2104 2105 } 2105 2106 } -
trunk/src/recompiler/VBoxRecompiler.c
r9219 r9276 2358 2358 LogFlow(("REMR3A20Set: fEnable=%d\n", fEnable)); 2359 2359 VM_ASSERT_EMT(pVM); 2360 2361 bool fSaved = pVM->rem.s.fIgnoreAll; /* just in case. */ 2362 pVM->rem.s.fIgnoreAll = fSaved || !pVM->rem.s.fInREM; 2363 2360 2364 cpu_x86_set_a20(&pVM->rem.s.Env, fEnable); 2365 2366 pVM->rem.s.fIgnoreAll = fSaved; 2361 2367 } 2362 2368
Note:
See TracChangeset
for help on using the changeset viewer.

