URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [monitor/] [monitor/] [common/] [serial.h] - Rev 282
Go to most recent revision | Compare with Previous | Blame | View Log
/* * serial.s -- the serial line interface */ #ifndef _SERIAL_H_ #define _SERIAL_H_ void ser0init(void); int ser0inchk(void); int ser0in(void); int ser0outchk(void); void ser0out(int c); void ser1init(void); int ser1inchk(void); int ser1in(void); int ser1outchk(void); void ser1out(int c); #endif /* _SERIAL_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log