Changeset 41765 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 15, 2012 5:37:31 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78582
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r41760 r41765 3582 3582 cb = cbSeg; 3583 3583 } 3584 /** @todo read more later. */ 3585 //if (cb > cbMaxRead) - later 3586 // cb = cbMaxRead; 3587 if (cb > cbMinRead) 3588 cb = cbMinRead; 3584 if (cb > cbMaxRead) 3585 cb = cbMaxRead; 3589 3586 3590 3587 /* … … 3717 3714 3718 3715 #ifdef DEBUG 3719 3720 /**3721 * Disassemble an instruction and dump it to the log3722 *3723 * @returns VBox status code.3724 * @param pVM VM Handle3725 * @param pVCpu VMCPU Handle3726 * @param pCtx CPU context3727 * @param pc GC instruction pointer3728 * @param pszPrefix String prefix for logging3729 *3730 * @deprecated Use DBGFR3DisasInstrCurrentLog().3731 */3732 VMMR3DECL(void) CPUMR3DisasmInstr(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, RTGCPTR pc, const char *pszPrefix)3733 {3734 DISCPUSTATE Cpu;3735 CPUMR3DisasmInstrCPU(pVM, pVCpu, pCtx, pc, &Cpu, pszPrefix);3736 }3737 3738 3716 3739 3717 /**
Note:
See TracChangeset
for help on using the changeset viewer.