summaryrefslogtreecommitdiff
path: root/src/kernel/arch/i386/tty/log.c
diff options
context:
space:
mode:
authordzwdz2021-08-09 21:11:16 +0200
committerdzwdz2021-08-09 21:11:16 +0200
commit5836c7df10d48b9c3241f2fbdb9ea3a37313a6fd (patch)
tree133af83b3c7b35d69f816de61de8e53aeeab15df /src/kernel/arch/i386/tty/log.c
parentb0c9ffa82ea26fa68f9a5ece89198ccfcf392980 (diff)
move all the tty stuff to a tty directory
Diffstat (limited to 'src/kernel/arch/i386/tty/log.c')
-rw-r--r--src/kernel/arch/i386/tty/log.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/arch/i386/tty/log.c b/src/kernel/arch/i386/tty/log.c
new file mode 100644
index 0000000..1a2d874
--- /dev/null
+++ b/src/kernel/arch/i386/tty/log.c
@@ -0,0 +1,6 @@
+#include <kernel/arch/i386/tty/vga.h>
+#include <kernel/arch/log.h>
+
+void log_write(const char *buf, size_t len) {
+ tty_write(buf, len);
+}