VirtualBox

Changeset 13820 in vbox for trunk/src/VBox/VMM/DBGFDisas.cpp


Ignore:
Timestamp:
Nov 5, 2008 12:55:49 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38811
Message:

VMM: %VG* inspection - an awfaul lot of these, hope I got it all right...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/DBGFDisas.cpp

    r13818 r13820  
    443443                RTStrPrintf(pszOutput, cchOutput, "%VGv  %s", GCPtr, szBuf);
    444444            else
    445                 RTStrPrintf(pszOutput, cchOutput, "%VRv  %s", (RTRCPTR)GCPtr, szBuf);
     445                RTStrPrintf(pszOutput, cchOutput, "%08RX32  %s", (uint32_t)GCPtr, szBuf);
    446446        }
    447447        else
     
    450450                RTStrPrintf(pszOutput, cchOutput, "%04x:%VGv  %s", Sel, GCPtr, szBuf);
    451451            else
    452                 RTStrPrintf(pszOutput, cchOutput, "%04x:%VRv  %s", Sel, (RTRCPTR)GCPtr, szBuf);
     452                RTStrPrintf(pszOutput, cchOutput, "%04x:%08RX32  %s", Sel, (uint32_t)GCPtr, szBuf);
    453453        }
    454454    }
     
    476476                            szBuf);
    477477            else
    478                 RTStrPrintf(pszOutput, cchOutput, "%VRv %.*Vhxs%*s %s",
    479                             (RTRCPTR)GCPtr,
     478                RTStrPrintf(pszOutput, cchOutput, "%08RX32 %.*Vhxs%*s %s",
     479                            (uint32_t)GCPtr,
    480480                            cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
    481481                            szBuf);
     
    489489                            szBuf);
    490490            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,
    493493                            cbBits, pau8Bits, cbBits < 8 ? (8 - cbBits) * 3 : 0, "",
    494494                            szBuf);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette