]> Shamusworld >> Repos - virtualjaguar/blob - src/include/dac.h
2af635ff21cdb2f0a8c614a2d24cc4e8c52f2103
[virtualjaguar] / src / include / dac.h
1 //
2 // DAC.H: Header file
3 //
4
5 #ifndef __DAC_H__
6 #define __DAC_H__
7
8 void DACInit(void);
9 void DACReset(void);
10 void DACDone(void);
11
12 // DAC memory access
13
14 void DACWriteByte(uint32 offset, uint8 data);
15 void DACWriteWord(uint32 offset, uint16 data);
16 uint8 DACReadByte(uint32 offset);
17 uint16 DACReadWord(uint32 offset);
18
19 #endif  // __DAC_H__