Changeset 11792 in vbox for trunk/src/recompiler
- Timestamp:
- Aug 29, 2008 8:51:20 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35599
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r10851 r11792 496 496 if (u32Version != REM_SAVED_STATE_VERSION) 497 497 { 498 Log(("remR3Load: Invalid version u32Version=%d!\n", u32Version));498 AssertMsgFailed(("remR3Load: Invalid version u32Version=%d!\n", u32Version)); 499 499 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION; 500 500 } … … 2997 2997 /** Validate the physical address passed to the read functions. 2998 2998 * Useful for finding non-guest-ram reads/writes. */ 2999 #if 1 /* disable if it becomes bothersome... */2999 #if 0 //1 /* disable if it becomes bothersome... */ 3000 3000 # define VBOX_CHECK_ADDR(GCPhys) AssertMsg(PGMPhysIsGCPhysValid(cpu_single_env->pVM, (GCPhys)), ("%VGp\n", (GCPhys))) 3001 3001 #else
Note:
See TracChangeset
for help on using the changeset viewer.