Changeset 1988 in vbox for trunk/src/VBox
- Timestamp:
- Apr 9, 2007 11:23:58 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r1987 r1988 1238 1238 #ifdef IN_GC 1239 1239 /* Safety check. */ 1240 /** @todo cpu may access two or four bytes */ 1241 AssertMsgReturn(pParam1 == pvFault, ("pParam1=%VGv pvFault=%VGv\n", pParam1, pvFault), VERR_EM_INTERPRETER); 1240 AssertMsgReturn((RTGCPTR)((RTGCUINTPTR)pParam1 & ~3) == pvFault, ("pParam1=%VGv pvFault=%VGv\n", pParam1, pvFault), VERR_EM_INTERPRETER); 1242 1241 #endif 1243 1242 rc = emRamRead(pVM, &valpar1, pParam1, 1);
Note:
See TracChangeset
for help on using the changeset viewer.