From 39713a3736145483dd3310c3605f940ca34f05c3 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 12 Apr 2021 10:13:21 +0200 Subject: Refactoring --- src/utils/framebuffer.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/utils/framebuffer.h (limited to 'src/utils/framebuffer.h') diff --git a/src/utils/framebuffer.h b/src/utils/framebuffer.h deleted file mode 100644 index f4e52a0..0000000 --- a/src/utils/framebuffer.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef FRAMEBUFFER_H -#define FRAMEBUFFER_H - -#include "types.h" - -typedef enum VIDEO_COLORS { - BLACK=0, BLUE=1, GREEN=2,CYAN=3, RED=4,PURPLE=5,BROWN=6,GRAY=7, - DARK_GRAY=8,LIGHT_BLUE=9,LIGHT_GREEN=10,LIGHT_CYAN=11,LIGHT_RED=12,LIGHT_PURPLE=13,YELLOW=14,WHITE=15 - -} VIDEO_COLORS; - -typedef struct VIDEO_STATE { - u8 *mem; - u8 col; - u8 line; - u8 bg; - u8 fg; -} VIDEO_STATE; - -/** - * Print char - */ -void putchar(char); -void scrollup(); -void clear(); - -#endif -- cgit v1.2.3