From b905869a35f062a4e5072f10bec3a2ba3db0e365 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 30 Jul 2025 14:32:01 -0400 Subject: working userland with some invoke syscalls --- include/device/uart.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/device/uart.h (limited to 'include/device/uart.h') diff --git a/include/device/uart.h b/include/device/uart.h new file mode 100644 index 0000000..3d481a2 --- /dev/null +++ b/include/device/uart.h @@ -0,0 +1,11 @@ +#ifndef _JOVE_DEVICE_UART_H +#define _JOVE_DEVICE_UART_H 1 + +#include +#include + +#include "object.h" + +void uart_write(objdir_t *dir, uint64_t entryi, const char *s, size_t w); + +#endif -- cgit v1.2.1