Changeset 41730 in vbox for trunk/src/VBox/Disassembler
- Timestamp:
- Jun 14, 2012 11:28:16 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78538
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmFormatYasm.cpp
r41727 r41730 91 91 * @param pcchReg Where to store the length of the name. 92 92 */ 93 static const char *disasmFormatYasmBaseReg(PCDISCPUSTATE pCpu, PC OP_PARAMETERpParam, size_t *pcchReg)93 static const char *disasmFormatYasmBaseReg(PCDISCPUSTATE pCpu, PCDISOPPARAM pParam, size_t *pcchReg) 94 94 { 95 95 switch (pParam->fUse & ( DISUSE_REG_GEN8 | DISUSE_REG_GEN16 | DISUSE_REG_GEN32 | DISUSE_REG_GEN64 … … 202 202 * @param pcchReg Where to store the length of the name. 203 203 */ 204 static const char *disasmFormatYasmIndexReg(PCDISCPUSTATE pCpu, PC OP_PARAMETERpParam, size_t *pcchReg)204 static const char *disasmFormatYasmIndexReg(PCDISCPUSTATE pCpu, PCDISOPPARAM pParam, size_t *pcchReg) 205 205 { 206 206 switch (pCpu->addrmode) … … 554 554 * Formatting context and associated macros. 555 555 */ 556 PC OP_PARAMETERpParam = &pCpu->param1;556 PCDISOPPARAM pParam = &pCpu->param1; 557 557 int iParam = 1; 558 558
Note:
See TracChangeset
for help on using the changeset viewer.