neptune/kern/libkern/uart.c
2025-09-02 00:17:34 +02:00

6 lines
139 B
C

/* QEMU memory maps a UART device here. */
#define UART_BASE ((volatile char *)0x10000000)
void uart_putc(char c) {
*UART_BASE = c;
}