From 7a912d1b668ab86ffe088eca3ac7e6f78a04a0c5 Mon Sep 17 00:00:00 2001 From: Tyler Murphy <=> Date: Mon, 17 Jul 2023 19:34:52 -0400 Subject: refactoring --- kernel/src/tty/term.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 kernel/src/tty/term.h (limited to 'kernel/src/tty/term.h') diff --git a/kernel/src/tty/term.h b/kernel/src/tty/term.h deleted file mode 100644 index ceda255..0000000 --- a/kernel/src/tty/term.h +++ /dev/null @@ -1,29 +0,0 @@ -#pragma once - -#include -#include - -#include "color.h" - -#define TERM_W 80 -#define TERM_H 25 - -void term_init(void); - -void term_reset(void); -void term_setfg(enum VGAColor color); -void term_setbg(enum VGAColor color); - -void term_clear(void); -void term_scroll(int lines); -void term_setpos(uint8_t x, uint8_t y); - -uint32_t term_save(void); -void term_load(uint32_t state); - -uint16_t term_save_col(void); -void term_load_col(uint16_t color); - -bool term_newline(void); - -void term_flush(void); -- cgit v1.2.3-freya