minimacplus/firmware/components/tme/scc.h

12 lines
272 B
C
Raw Normal View History

2017-03-24 10:44:04 +00: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 13:43:20 +00:00
void sccRecv(int chan, uint8_t *data, int len, int delay);
2017-03-24 10:44:04 +00:00