mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-20 09:44:56 +00:00
10 lines
242 B
C
10 lines
242 B
C
#include <stddef.h>
|
|
|
|
void potato_uart_init(void);
|
|
void potato_uart_irq_en(void);
|
|
void potato_uart_irq_dis(void);
|
|
int getchar(void);
|
|
void putchar(unsigned char c);
|
|
void putstr(const char *str, unsigned long len);
|
|
size_t strlen(const char *s);
|