mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-13 07:09:54 +00:00
Things have changed a bit in upstream LiteX. LiteDRAM now exposes a wishbone for the CSRs for example. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
13 lines
236 B
C
13 lines
236 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);
|
|
int putchar(int c);
|
|
int puts(const char *str);
|
|
|
|
#ifndef __USE_LIBC
|
|
size_t strlen(const char *s);
|
|
#endif
|