Changeset 36061 in vbox for trunk/src/recompiler
- Timestamp:
- Feb 23, 2011 1:40:50 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/target-i386/op_helper.c
r33971 r36061 1576 1576 target_ulong next_eip, int is_hw) 1577 1577 { 1578 if (RT_UNLIKELY(env->state & CPU_EMULATE_SINGLE_STEP)) { 1579 if (is_int) { 1580 RTLogPrintf("do_interrupt: %#04x err=%#x pc=%#RGv%s\n", 1581 intno, error_code, env->eip, is_hw ? " hw" : ""); 1582 } else { 1583 RTLogPrintf("do_interrupt: %#04x err=%#x pc=%#RGv next=%#RGv%s\n", 1584 intno, error_code, env->eip, next_eip, is_hw ? " hw" : ""); 1585 } 1586 } 1587 1578 1588 if (loglevel & CPU_LOG_INT) { 1579 1589 if ((env->cr[0] & CR0_PE_MASK)) {
Note:
See TracChangeset
for help on using the changeset viewer.