diff options
| author | Ian Moffett <ian@osmora.org> | 2025-12-21 18:01:59 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-12-21 18:01:59 -0500 |
| commit | 78e1300780955bbd2c192d8bb815959a0ba9f378 (patch) | |
| tree | 97abe8fe306b8070136d350e61b0c5bfb277f857 | |
| parent | bfbce336729d1597950d741b9d5ab469d625b2d9 (diff) | |
mos/x86_64: mu_uart_write() -> mu_uart_writed()
Signed-off-by: Ian Moffett <ian@osmora.org>
| -rw-r--r-- | mos/sys/arch/x86_64/io/uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mos/sys/arch/x86_64/io/uart.c b/mos/sys/arch/x86_64/io/uart.c index 99c4645..73ed0ed 100644 --- a/mos/sys/arch/x86_64/io/uart.c +++ b/mos/sys/arch/x86_64/io/uart.c @@ -42,7 +42,7 @@ init_uart(USHORT port) } void -mu_uart_write(const char *s, USIZE len) +mu_uart_writed(const char *s, USIZE len) { for (USIZE i = 0; i < len; ++i) { md_outb(DEFAULT_PORT, s[i]); |
