Changeset 7060 in vbox for trunk/src/VBox/Devices/Storage/PIIX3ATABmDma.h
- Timestamp:
- Feb 20, 2008 6:49:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/PIIX3ATABmDma.h
r7043 r7060 53 53 typedef struct BMDMAState { 54 54 /** Address of the MMIO region in the guest's memory space. */ 55 RTGCPHYSpvAddr;55 uint32_t pvAddr; 56 56 /** Command register. */ 57 57 uint8_t u8Cmd; 58 58 /** Status register. */ 59 59 uint8_t u8Status; 60 uint8_t au8Alignment[6]; /**< Alignment padding. */61 60 } BMDMAState; 62 61 … … 65 64 typedef struct BMDMADesc { 66 65 /** Address of the DMA source/target buffer. */ 67 RTGCPHYSpBuffer;66 uint32_t pBuffer; 68 67 /** Size of the DMA source/target buffer. */ 69 68 uint32_t cbBuffer; 70 uint32_t u32Alignment; /**< Alignment padding. */71 69 } BMDMADesc; 72 70
Note:
See TracChangeset
for help on using the changeset viewer.