Changeset 41495 in vbox for trunk/src/VBox/Disassembler
- Timestamp:
- May 30, 2012 1:48:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmFormatYasm.cpp
r28800 r41495 798 798 if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_b) 799 799 PUT_SZ_STRICT("strict byte ", "byte "); 800 else if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_v) 800 else if ( OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_v 801 || OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_z) 801 802 PUT_SZ_STRICT("strict word ", "word "); 802 803 } … … 820 821 if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_b) 821 822 PUT_SZ_STRICT("strict byte ", "byte "); 822 else if (OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_v) 823 else if ( OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_v 824 || OP_PARM_VSUBTYPE(pParam->param) == OP_PARM_z) 823 825 PUT_SZ_STRICT("strict dword ", "dword "); 824 826 }
Note:
See TracChangeset
for help on using the changeset viewer.