Changeset 7072 in vbox for trunk/src/VBox/Devices/Storage/PIIX3ATABmDma.h
- Timestamp:
- Feb 21, 2008 2:06:23 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/PIIX3ATABmDma.h
r7060 r7072 52 52 /** PIIX3 Bus Master DMA unit state. */ 53 53 typedef struct BMDMAState { 54 /** Address of the MMIO region in the guest's memory space. */55 uint32_t pvAddr;56 54 /** Command register. */ 57 55 uint8_t u8Cmd; 58 56 /** Status register. */ 59 57 uint8_t u8Status; 58 /** Address of the MMIO region in the guest's memory space. */ 59 RTGCPHYS32 pvAddr; 60 60 } BMDMAState; 61 61 … … 64 64 typedef struct BMDMADesc { 65 65 /** Address of the DMA source/target buffer. */ 66 uint32_tpBuffer;66 RTGCPHYS32 pBuffer; 67 67 /** Size of the DMA source/target buffer. */ 68 68 uint32_t cbBuffer;
Note:
See TracChangeset
for help on using the changeset viewer.