VirtualBox

Changeset 8829 in vbox


Ignore:
Timestamp:
May 15, 2008 1:37:31 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
30836
Message:

Fixed REMR3EmulateInstruction entry logging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxRecompiler.c

    r8626 r8829  
    726726REMR3DECL(int) REMR3EmulateInstruction(PVM pVM)
    727727{
    728     Log2(("REMR3EmulateInstruction: (cs:eip=%04x:%08x)\n", pVM->rem.s.pCtx->cs, pVM->rem.s.pCtx->eip));
     728    Log2(("REMR3EmulateInstruction: (cs:eip=%04x:%08x)\n", CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
    729729
    730730    /*
     
    965965    Log2(("REMR3Run: (cs:eip=%04x:%08x)\n", pVM->rem.s.Env.segs[R_CS].selector, pVM->rem.s.Env.eip));
    966966    Assert(pVM->rem.s.fInREM);
    967 ////Keyboard / tb stuff:
    968 //if (    pVM->rem.s.Env.segs[R_CS].selector == 0xf000
    969 //    &&  pVM->rem.s.Env.eip >= 0xe860
    970 //    &&  pVM->rem.s.Env.eip <= 0xe880)
    971 //    pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
    972 ////A20:
    973 //if (    pVM->rem.s.Env.segs[R_CS].selector == 0x9020
    974 //    &&  pVM->rem.s.Env.eip >= 0x970
    975 //    &&  pVM->rem.s.Env.eip <= 0x9a0)
    976 //    pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
    977 ////Speaker (port 61h)
    978 //if (    pVM->rem.s.Env.segs[R_CS].selector == 0x0010
    979 //    &&  (    (pVM->rem.s.Env.eip >= 0x90278c10 && pVM->rem.s.Env.eip <= 0x90278c30)
    980 //         ||  (pVM->rem.s.Env.eip >= 0x9010e250 && pVM->rem.s.Env.eip <= 0x9010e260)
    981 //        )
    982 //    )
    983 //    pVM->rem.s.Env.state |= CPU_EMULATE_SINGLE_STEP;
    984 //DBGFR3InfoLog(pVM, "timers", NULL);
    985 
    986967
    987968    int rc = cpu_exec(&pVM->rem.s.Env);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette