From 4a7562c22a7365342754beed8fdebab0350bd256 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Fri, 16 Feb 2024 12:37:45 -0600 Subject: 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 --- include/kernel/tty.h | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 include/kernel/tty.h (limited to 'include/kernel/tty.h') 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 - -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 -- cgit v1.2.3