summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-02-16 12:37:45 -0600
committerDanny Holman <dholman@gymli.org>2024-02-16 12:37:45 -0600
commit4a7562c22a7365342754beed8fdebab0350bd256 (patch)
tree6bdb3482a5ab02abf5c59a76bc05e6293fc6c831 /include
parentfa748f3e1c0b0571e2c53514a55794ca16d90b18 (diff)
arch: i386: put framebuffer ops in own file
Move all operations related to the x86 framebuffer into its own set of files. This makes the TTY layer more architecture agnostic. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include')
-rw-r--r--include/kernel/tty.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/kernel/tty.h b/include/kernel/tty.h
deleted file mode 100644
index 17b86c9..0000000
--- a/include/kernel/tty.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef KERNEL_TTY_H
-#define KERNEL_TTY_H
-
-#include <stddef.h>
-
-void tty_init(void);
-void tty_putchar(char c);
-void tty_write(const char *data, size_t size);
-void tty_writestring(const char *data);
-
-#endif