Changeset 56631 in vbox
- Timestamp:
- Jun 25, 2015 10:04:32 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r56629 r56631 6968 6968 { 6969 6969 iMemMap = iemMemMapFindFree(pIemCpu); 6970 AssertReturn(iMemMap < RT_ELEMENTS(pIemCpu->aMemMappings), VERR_IEM_IPE_9); 6970 AssertLogRelMsgReturn(iMemMap < RT_ELEMENTS(pIemCpu->aMemMappings), 6971 ("active=%d fAccess[0] = {%#x, %#x, %#x}\n", pIemCpu->cActiveMappings, 6972 pIemCpu->aMemMappings[0].fAccess, pIemCpu->aMemMappings[1].fAccess, 6973 pIemCpu->aMemMappings[2].fAccess), 6974 VERR_IEM_IPE_9); 6971 6975 } 6972 6976
Note:
See TracChangeset
for help on using the changeset viewer.