Changeset 13820 in vbox for trunk/src/VBox/VMM/DBGFDisas.cpp
- Timestamp:
- Nov 5, 2008 12:55:49 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38811
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFDisas.cpp
r13818 r13820 443 443 RTStrPrintf(pszOutput, cchOutput, "%VGv %s", GCPtr, szBuf); 444 444 else 445 RTStrPrintf(pszOutput, cchOutput, "% VRv %s", (RTRCPTR)GCPtr, szBuf);445 RTStrPrintf(pszOutput, cchOutput, "%08RX32 %s", (uint32_t)GCPtr, szBuf); 446 446 } 447 447 else … … 450 450 RTStrPrintf(pszOutput, cchOutput, "%04x:%VGv %s", Sel, GCPtr, szBuf); 451 451 else 452 RTStrPrintf(pszOutput, cchOutput, "%04x:% VRv %s", Sel, (RTRCPTR)GCPtr, szBuf);452 RTStrPrintf(pszOutput, cchOutput, "%04x:%08RX32 %s", Sel, (uint32_t)GCPtr, szBuf); 453 453 } 454 454 } … … 476 476 szBuf); 477 477 else 478 RTStrPrintf(pszOutput, cchOutput, "% VRv%.*Vhxs%*s %s",479 ( RTRCPTR)GCPtr,478 RTStrPrintf(pszOutput, cchOutput, "%08RX32 %.*Vhxs%*s %s", 479 (uint32_t)GCPtr, 480 480 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", 481 481 szBuf); … … 489 489 szBuf); 490 490 else 491 RTStrPrintf(pszOutput, cchOutput, "%04x:% VRv%.*Vhxs%*s %s",492 Sel, ( RTRCPTR)GCPtr,491 RTStrPrintf(pszOutput, cchOutput, "%04x:%08RX32 %.*Vhxs%*s %s", 492 Sel, (uint32_t)GCPtr, 493 493 cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "", 494 494 szBuf);
Note:
See TracChangeset
for help on using the changeset viewer.