Changeset 12022 in vbox
- Timestamp:
- Sep 3, 2008 9:48:16 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35939
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/target-i386/helper2.c
r11982 r12022 514 514 515 515 #if defined(DEBUG_MMU) 516 printf("CR0 update: CR0 =0x%08x\n", new_cr0);516 printf("CR0 update: CR0 %x->0x%08x efer=%x\n", (uint32_t)env->cr[0], new_cr0, env->efer); 517 517 #endif 518 518 if ((new_cr0 & (CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK)) != … … 569 569 { 570 570 #if defined(DEBUG_MMU) 571 printf("CR4 update: CR4=%08x \n", (uint32_t)env->cr[4]);571 printf("CR4 update: CR4=%08x -> %08x\n", (uint32_t)env->cr[4], (uint32_t)new_cr4); 572 572 #endif 573 573 if ((new_cr4 & (CR4_PGE_MASK | CR4_PAE_MASK | CR4_PSE_MASK)) !=
Note:
See TracChangeset
for help on using the changeset viewer.