mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
11 lines
312 B
C
11 lines
312 B
C
#ifndef _SERIAL_SUBR_H_
|
|
#define _SERIAL_SUBR_H_
|
|
|
|
void ttys0_init(void);
|
|
void ttys0_tx_byte(unsigned char data);
|
|
unsigned char ttys0_rx_byte(void);
|
|
unsigned long ttys0_rx_bytes(char *buffer, unsigned long size);
|
|
int iskey(void);
|
|
|
|
void uart_init(unsigned base_port, unsigned divisor);
|
|
#endif /* _SERIAL_SUBR_H_ */
|