Changeset 85116 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 8, 2020 5:08:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r85114 r85116 876 876 xda[1] &= ~RT_BIT(15); 877 877 xda[3] = ((uint32_t *)tmd)[2] >> 16; 878 /** @todo :The WORD containing status bits may not need to be written unless the ERR bit is set. */878 /** @todo The WORD containing status bits may not need to be written unless the ERR bit is set. */ 879 879 pcnetPhysWrite(pDevIns, pThis, addr + 3 * sizeof(uint16_t), (void*)&xda[3], sizeof(uint16_t)); 880 880 pcnetPhysWrite(pDevIns, pThis, addr + 1 * sizeof(uint16_t), (void*)&xda[1], sizeof(uint16_t)); … … 883 883 { 884 884 /* For SWSTYLE=0, write TMD2 first, then TMD1. */ 885 /** @todo :The DWORD containing status bits may not need to be written unless the ERR bit is set. */885 /** @todo The DWORD containing status bits may not need to be written unless the ERR bit is set. */ 886 886 pcnetPhysWrite(pDevIns, pThis, addr + 2 * sizeof(uint32_t), (uint32_t*)tmd + 2, sizeof(uint32_t)); 887 887 ((uint32_t*)tmd)[1] &= ~RT_BIT(31);
Note:
See TracChangeset
for help on using the changeset viewer.