12 lines
272 B
C
Raw Normal View History

2017-03-24 18:44:04 +08:00
#define SCC_CHANA 0
#define SCC_CHANB 1
void sccWrite(unsigned int addr, unsigned int val);
unsigned int sccRead(unsigned int addr);
void sccSetDcd(int chan, int val);
void sccInit();
void sccTick(int cycles);
2017-10-17 21:43:20 +08:00
void sccRecv(int chan, uint8_t *data, int len, int delay);
2017-03-24 18:44:04 +08:00