- Timestamp:
- Mar 16, 2007 5:02:52 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r1377 r1538 114 114 #define PCNET_PNPMMIO_SIZE 0x20 115 115 116 #define PCNET_SAVEDSTATE_VERSION 5116 #define PCNET_SAVEDSTATE_VERSION 6 117 117 118 118 #define BCR_MAX_RAP 50 … … 162 162 uint16_t aBCR[BCR_MAX_RAP]; 163 163 uint16_t aMII[MII_MAX_REG]; 164 uint16_t u16CSR0LastSeenByGuest; /** @todo SSM!! */164 uint16_t u16CSR0LastSeenByGuest; 165 165 uint16_t Alignment0[HC_ARCH_BITS == 32 ? 2 : 4]; 166 166 /** Last time we polled the queues */ … … 3678 3678 SSMR3PutMem(pSSMHandle, pData->aBCR, sizeof(pData->aBCR)); 3679 3679 SSMR3PutMem(pSSMHandle, pData->aMII, sizeof(pData->aMII)); 3680 SSMR3PutU16(pSSMHandle, pData->u16CSR0LastSeenByGuest); 3680 3681 SSMR3PutU64(pSSMHandle, pData->u64LastPoll); 3681 3682 SSMR3PutMem(pSSMHandle, &pData->MacConfigured, sizeof(pData->MacConfigured)); … … 3715 3716 SSMR3GetMem(pSSMHandle, &pData->aBCR, sizeof(pData->aBCR)); 3716 3717 SSMR3GetMem(pSSMHandle, &pData->aMII, sizeof(pData->aMII)); 3718 SSMR3GetU16(pSSMHandle, &pData->u16CSR0LastSeenByGuest); 3717 3719 SSMR3GetU64(pSSMHandle, &pData->u64LastPoll); 3718 3720 SSMR3GetMem(pSSMHandle, &Mac, sizeof(Mac));
Note:
See TracChangeset
for help on using the changeset viewer.