Changeset 93565 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Feb 3, 2022 7:37:57 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevDP8390.cpp
r93564 r93565 2318 2318 { 2319 2319 /* Page 3 is undocumented and unimplemented. */ 2320 LogFunc(("Reading page 3 register: ofs=%X!\n" ));2320 LogFunc(("Reading page 3 register: ofs=%X!\n", ofs)); 2321 2321 return 0; 2322 2322 } … … 2387 2387 { 2388 2388 /* Abort. */ 2389 LogFunc(("RDMA Abort! R SAR=%04X RBCR=%04X CRDA=%04X\n", nCr.RD, pThis->core.RSAR, pThis->core.RBCR, pThis->core.CRDA));2389 LogFunc(("RDMA Abort! RD=%d RSAR=%04X RBCR=%04X CRDA=%04X\n", nCr.RD, pThis->core.RSAR, pThis->core.RBCR, pThis->core.CRDA)); 2390 2390 } 2391 2391 else if (nCr.RD == DP_CR_RDMA_SP) … … 2399 2399 pThis->core.RBCR = header.byte_cnt; 2400 2400 2401 LogFunc(("RDMA SP: R SAR=%04X RBCR=%04X CRDA=%04X\n", nCr.RD, pThis->core.RSAR, pThis->core.RBCR, pThis->core.CRDA));2401 LogFunc(("RDMA SP: RD=%d RSAR=%04X RBCR=%04X CRDA=%04X\n", nCr.RD, pThis->core.RSAR, pThis->core.RBCR, pThis->core.CRDA)); 2402 2402 } 2403 2403 else 2404 2404 { 2405 2405 /* Starting remote DMA read or write. */ 2406 LogFunc(("RDMA: %XRSAR=%04X RBCR=%04X\n", nCr.RD, pThis->core.RSAR, pThis->core.RBCR));2406 LogFunc(("RDMA: RD=%d RSAR=%04X RBCR=%04X\n", nCr.RD, pThis->core.RSAR, pThis->core.RBCR)); 2407 2407 } 2408 2408 pThis->core.cr.RD = nCr.RD;
Note:
See TracChangeset
for help on using the changeset viewer.