1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-20 09:44:56 +00:00
Michael Neuling fc5f7506f8 Add calls to dis/enable potato uart IRQ
Signed-off-by: Michael Neuling <mikey@neuling.org>
2020-04-23 15:02:00 +10:00

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);