Changeset 4754 in vbox
- Timestamp:
- Sep 13, 2007 7:59:39 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VM.cpp
r4678 r4754 1258 1258 "ss:sp=0000:%04x ", esp); 1259 1259 uint32_t Start = esp & ~(uint32_t)63; 1260 int rc = PGMPhysReadGCP tr(pVM, abBuf, Start, Start + 0x100);1260 int rc = PGMPhysReadGCPhys(pVM, abBuf, Start, Start + 0x100); 1261 1261 if (VBOX_SUCCESS(rc)) 1262 1262 RTLogRelPrintf("0000:%04x TO 0000:%04x:\n" … … 1270 1270 if (esp < 0x2000 && esp > 0x1fc0) 1271 1271 { 1272 rc = PGMPhysReadGCP tr(pVM, abBuf, 0x8000, 0x800);1272 rc = PGMPhysReadGCPhys(pVM, abBuf, 0x8000, 0x800); 1273 1273 if (VBOX_SUCCESS(rc)) 1274 1274 RTLogRelPrintf("0000:8000 TO 0000:87ff:\n" … … 1279 1279 if (true) 1280 1280 { 1281 rc = PGMPhysReadGCP tr(pVM, abBuf, 0x8000, 0x200);1281 rc = PGMPhysReadGCPhys(pVM, abBuf, 0x8000, 0x200); 1282 1282 if (VBOX_SUCCESS(rc)) 1283 1283 RTLogRelPrintf("2000:0000 TO 2000:01ff:\n"
Note:
See TracChangeset
for help on using the changeset viewer.