Changeset 88799 in vbox for trunk/src/VBox/Devices/Audio/DevSB16.cpp
- Timestamp:
- Apr 30, 2021 12:51:06 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevSB16.cpp
r88797 r88799 198 198 } SB16STREAMDEBUG; 199 199 200 /** 201 * Structure for keeping a SB16 hardware stream configuration. 202 */ 200 203 typedef struct SB16STREAMHWCFG 201 204 { 205 /** IRQ # to use. */ 202 206 uint8_t uIrq; 207 /** Low DMA channel to use. */ 203 208 uint8_t uDmaChanLow; 209 /** High DMA channel to use. */ 204 210 uint8_t uDmaChanHigh; 211 /** IO port to use. */ 205 212 RTIOPORT uPort; 213 /** DSP version to expose. */ 206 214 uint16_t uVer; 207 215 } SB16STREAMHWCFG;
Note:
See TracChangeset
for help on using the changeset viewer.