Changeset 9275 in vbox
- Timestamp:
- May 31, 2008 7:28:17 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 31476
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmFormatYasm.cpp
r9272 r9275 329 329 } \ 330 330 } while (0) 331 /** @todo add two flags for choosing between %X / %x and h / 0x. */ 331 332 #define PUT_NUM_8(num) PUT_NUM(4, "0%02xh", (uint8_t)(num)) 332 333 #define PUT_NUM_16(num) PUT_NUM(6, "0%04xh", (uint16_t)(num)) … … 578 579 PUT_SZ("far "); \ 579 580 } while (0) 580 /** @todo mov ah,ch ends up with a byte 'override'... */ 581 /** @todo mov ah,ch ends up with a byte 'override'... - check if this wasn't fixed. */ 582 /** @todo drop the work/dword/qword override when the src/dst is a register (except for movsx/movzx). */ 581 583 #define PUT_SIZE_OVERRIDE() \ 582 584 do { \
Note:
See TracChangeset
for help on using the changeset viewer.