summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-07-07 21:56:41 -0400
committerIan Moffett <ian@osmora.org>2024-07-07 22:32:04 -0400
commit8d1e5ffe355b0e0bbb60fa88d306304a1746bc8c (patch)
treeb4d6c3e527d7a5021a21a9f631f8958d3c98955b /sys/include
parentabced67cbb8a19369ae1a5aaafd6318f0b2ee069 (diff)
kernel/amd64: Add serial debug logging
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/syslog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/sys/syslog.h b/sys/include/sys/syslog.h
index 9a044b9..889bf37 100644
--- a/sys/include/sys/syslog.h
+++ b/sys/include/sys/syslog.h
@@ -37,6 +37,8 @@
#define OMIT_TIMESTAMP "\x01"
void kprintf(const char *fmt, ...);
+void serial_init(void);
+void serial_putc(char c);
void vkprintf(const char *fmt, va_list *ap);
#endif /* !_KERNEL */