Changeset 76060 in vbox for trunk/src/VBox
- Timestamp:
- Dec 7, 2018 2:21:40 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r76051 r76060 7 7 * AMD Publication# 19436 Rev:E Amendment/0 Issue Date: June 2000 8 8 * and 9 * todo 9 * AMD Am79C973/Am79C975 PCnet-FAST III Single-Chip 10/100 Mbps PCI Ethernet Controller datasheet 10 * AMD publication# 20510 Rev:E Amendment/0 Issue Date: August 2000 10 11 */ 11 12 … … 24 25 * This code is based on: 25 26 * 26 * AMD PC -NetII (Am79C970A) emulation27 * AMD PCnet-PCI II (Am79C970A) emulation 27 28 * 28 29 * Copyright (c) 2004 Antony T Curtis … … 468 469 } PCNETSTATE; 469 470 //AssertCompileMemberAlignment(PCNETSTATE, StatReceiveBytes, 8); 470 /** Pointer to a PC -Net state structure. */471 /** Pointer to a PCnet state structure. */ 471 472 typedef PCNETSTATE *PPCNETSTATE; 472 473 … … 3877 3878 3878 3879 /** 3879 * @callback_method_impl{FNPCIIOREGIONMAP, For the PC -NETI/O Ports.}3880 * @callback_method_impl{FNPCIIOREGIONMAP, For the PCnet I/O Ports.} 3880 3881 */ 3881 3882 static DECLCALLBACK(int) pcnetIOPortMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, … … 3928 3929 3929 3930 /** 3930 * @callback_method_impl{FNPCIIOREGIONMAP, For the PC -Net MMIO region.}3931 * @callback_method_impl{FNPCIIOREGIONMAP, For the PCnet MMIO region.} 3931 3932 */ 3932 3933 static DECLCALLBACK(int) pcnetMMIOMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, … … 4446 4447 * 4447 4448 * @returns VBox status code. 4448 * @param pThis The PC -Net instance data.4449 * @param pThis The PCnet instance data. 4449 4450 */ 4450 4451 static int pcnetCanReceive(PPCNETSTATE pThis) … … 5232 5233 #endif 5233 5234 /* pszDescription */ 5234 "AMD PC -Net IIEthernet controller.\n",5235 "AMD PCnet Ethernet controller.\n", 5235 5236 /* fFlags */ 5236 5237 #ifdef PCNET_GC_ENABLED
Note:
See TracChangeset
for help on using the changeset viewer.