From 8598bb180745eed4f5b9ca8969bd55bb06d4da5e Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Sat, 8 Mar 2025 14:53:48 +0800 Subject: Makefile and UART code. --- uart.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 uart.h (limited to 'uart.h') diff --git a/uart.h b/uart.h new file mode 100644 index 0000000..81db74b --- /dev/null +++ b/uart.h @@ -0,0 +1,8 @@ +#ifndef UART_H +#define UART_H + +void uart_init(void); +void uart_write(char c); +void uart_write_line(const char *s); + +#endif /* UART_H */ -- cgit v1.2.3