From ce4c80f4da6472d7bc53ee3b3e04fb404562a30d Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 1 Feb 2018 00:14:58 -0500 Subject: Remove fb.c and color.c --- bin/color.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 bin/color.c (limited to 'bin/color.c') diff --git a/bin/color.c b/bin/color.c deleted file mode 100644 index 75118226..00000000 --- a/bin/color.c +++ /dev/null @@ -1,16 +0,0 @@ -#include - -static uint32_t color; - -void init() { -} - -void draw(uint32_t *buf, uint32_t xres, uint32_t yres) { - for (uint32_t i = 0; i < xres * yres; ++i) { - buf[i] = color; - } -} - -void input(char c) { - color = color << 4 | (c & 0xF); -} -- cgit 1.4.1