Changeset 9340 in vbox for trunk/src/VBox
- Timestamp:
- Jun 3, 2008 8:19:19 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 31555
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmFormatYasm.cpp
r9275 r9340 747 747 748 748 if (fBase || (pParam->flags & USE_INDEX)) 749 { 749 750 PUT_C(off >= 0 ? '+' : '-'); 750 751 if (off < 0)752 off = -off;751 if (off < 0) 752 off = -off; 753 } 753 754 if (pParam->flags & USE_DISPLACEMENT8) 754 755 PUT_NUM_8( off);
Note:
See TracChangeset
for help on using the changeset viewer.