Changeset 12823 in vbox
- Timestamp:
- Sep 30, 2008 8:05:37 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37179
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/cpumdis.h
r12657 r12823 48 48 # ifdef DEBUG 49 49 /** @deprecated Use DBGFR3DisasInstrCurrentLog(). */ 50 CPUMR3DECL(void) CPUMR3DisasmInstr(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, c har *prefix);50 CPUMR3DECL(void) CPUMR3DisasmInstr(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, const char *pszPrefix); 51 51 /** @deprecated Create new DBGFR3Disas function to do this. */ 52 CPUMR3DECL(void) CPUMR3DisasmBlock(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, c har *prefix, int nrInstructions);52 CPUMR3DECL(void) CPUMR3DisasmBlock(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, const char *pszPrefix, int nrInstructions); 53 53 # else 54 54 /** @deprecated Use DBGFR3DisasInstrCurrentLog(). */ -
trunk/src/VBox/VMM/CPUM.cpp
r12811 r12823 2261 2261 * @deprecated Use DBGFR3DisasInstrCurrentLog(). 2262 2262 */ 2263 CPUMR3DECL(void) CPUMR3DisasmInstr(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, c har *prefix)2263 CPUMR3DECL(void) CPUMR3DisasmInstr(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, const char *pszPrefix) 2264 2264 { 2265 2265 DISCPUSTATE Cpu; 2266 CPUMR3DisasmInstrCPU(pVM, pCtx, pc, &Cpu, p refix);2266 CPUMR3DisasmInstrCPU(pVM, pCtx, pc, &Cpu, pszPrefix); 2267 2267 } 2268 2268 … … 2280 2280 * @deprecated Create new DBGFR3Disas function to do this. 2281 2281 */ 2282 CPUMR3DECL(void) CPUMR3DisasmBlock(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, c har *prefix, int nrInstructions)2282 CPUMR3DECL(void) CPUMR3DisasmBlock(PVM pVM, PCPUMCTX pCtx, RTGCPTR pc, const char *pszPrefix, int nrInstructions) 2283 2283 { 2284 2284 for (int i = 0; i < nrInstructions; i++) … … 2286 2286 DISCPUSTATE cpu; 2287 2287 2288 CPUMR3DisasmInstrCPU(pVM, pCtx, pc, &cpu, p refix);2288 CPUMR3DisasmInstrCPU(pVM, pCtx, pc, &cpu, pszPrefix); 2289 2289 pc += cpu.opsize; 2290 2290 }
Note:
See TracChangeset
for help on using the changeset viewer.