Changeset 41733 in vbox for trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp
- Timestamp:
- Jun 15, 2012 12:11:28 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp
r41675 r41733 144 144 /* The 0x8f /0 variant of this instruction doesn't get its /r value verified. */ 145 145 case OP_POP: 146 if ( pCpu-> opcode == 0x8f146 if ( pCpu->bOpCode == 0x8f 147 147 && pCpu->ModRM.Bits.Reg != 0) 148 148 return false; … … 151 151 /* The 0xc6 /0 and 0xc7 /0 variants of this instruction don't get their /r values verified. */ 152 152 case OP_MOV: 153 if ( ( pCpu-> opcode == 0xc6154 || pCpu-> opcode == 0xc7)153 if ( ( pCpu->bOpCode == 0xc6 154 || pCpu->bOpCode == 0xc7) 155 155 && pCpu->ModRM.Bits.Reg != 0) 156 156 return false;
Note:
See TracChangeset
for help on using the changeset viewer.