- Timestamp:
- Nov 1, 2008 7:50:18 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r13731 r13732 3245 3245 PGMPhysWrite(cpu_single_env->pVM, DstGCPhys, pvSrc, cb); 3246 3246 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3247 #ifdef DEBUG_PHYS 3247 3248 LogRel(("write(%d): %p\n", cb, DstGCPhys)); 3249 #endif 3248 3250 } 3249 3251 … … 3261 3263 PGMR3PhysWriteU8(cpu_single_env->pVM, DstGCPhys, val); 3262 3264 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3265 #ifdef DEBUG_PHYS 3263 3266 LogRel(("writeu8: %x -> %p\n", val, DstGCPhys)); 3267 #endif 3264 3268 } 3265 3269 … … 3277 3281 PGMR3PhysWriteU16(cpu_single_env->pVM, DstGCPhys, val); 3278 3282 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3283 #ifdef DEBUG_PHYS 3279 3284 LogRel(("writeu16: %x -> %p\n", val, DstGCPhys)); 3285 #endif 3280 3286 } 3281 3287 … … 3293 3299 PGMR3PhysWriteU32(cpu_single_env->pVM, DstGCPhys, val); 3294 3300 STAM_PROFILE_ADV_STOP(&gStatMemWrite, a); 3301 #ifdef DEBUG_PHYS 3295 3302 LogRel(("writeu32: %x -> %p\n", val, DstGCPhys)); 3303 #endif 3296 3304 } 3297 3305
Note:
See TracChangeset
for help on using the changeset viewer.