Kernel/devices/uart.h
Andreas Fink 55fc65ba5c struc
2025-04-10 17:18:34 +02:00

9 lines
No EOL
146 B
C

#ifndef UART_H
#define UART_H
void uart_init(void);
void uart_write(const char *msg);
void uart_putchar(char c);
char uart_getchar(void);
#endif