Index: /trunk/src/VBox/Devices/Network/DevPCNet.cpp
===================================================================
--- /trunk/src/VBox/Devices/Network/DevPCNet.cpp	(revision 85954)
+++ /trunk/src/VBox/Devices/Network/DevPCNet.cpp	(revision 85955)
@@ -4128,7 +4128,14 @@
     }
     pHlp->pfnPrintf(pHlp,
-                    "pcnet #%d: port=%RTiop mmio=%RX32 mac-cfg=%RTmac %s%s%s\n", pDevIns->iInstance,
-                    pThis->IOPortBase, PDMDevHlpMmioGetMappingAddress(pDevIns, pThis->hMmioPci),
+                    "pcnet #%d: port=%RTiop", pDevIns->iInstance, pThis->IOPortBase);
+    if (PCNET_IS_ISA(pThis))
+        pHlp->pfnPrintf(pHlp, " irq=%RX32", pThis->uIsaIrq);
+    else
+        pHlp->pfnPrintf(pHlp, " mmio=%RX32", PDMDevHlpMmioGetMappingAddress(pDevIns, pThis->hMmioPci));
+
+    pHlp->pfnPrintf(pHlp,
+                    " mac-cfg=%RTmac %s%s%s\n",
                     &pThis->MacConfigured, pcszModel, pDevIns->fRCEnabled ? " RC" : "", pDevIns->fR0Enabled ? " R0" : "");
+
 
     PDMDevHlpCritSectEnter(pDevIns, &pThis->CritSect, VERR_INTERNAL_ERROR); /* Take it here so we know why we're hanging... */
@@ -4236,5 +4243,5 @@
     if (pThis->uDevType == DEV_AM79C970A || pThis->uDevType == DEV_AM79C973)
     {
-        /* Print the Burst and Bus Control Register;  the DWIO bit is quite important. */
+        /* Print the Burst and Bus Control Register; the DWIO bit is quite important. */
         pHlp->pfnPrintf(pHlp,
                         "BCR18=%#04x: ROMTMG=%u MEMCMD=%u EXTREQ=%u\n"
