From 2088e98a9def43b169038d51aa4f808e8dbe5365 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Mon, 28 Feb 2022 23:05:31 -0700 Subject: Remove old drawer routines --- include/graphics/drawer.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 include/graphics/drawer.h (limited to 'include/graphics/drawer.h') diff --git a/include/graphics/drawer.h b/include/graphics/drawer.h deleted file mode 100644 index b654989..0000000 --- a/include/graphics/drawer.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef GRAPHICS_DRAWER_H -#define GRAPHICS_DRAWER_H - -#include - -struct Drawer { - unsigned int x; - unsigned int y; - struct Lock l; -}; - -void write_cchar(struct Drawer* d, char s, unsigned int c); -void write_char(struct Drawer* d, char s); - -void write_cstring(struct Drawer* d, char* s, unsigned int c); -void write_string(struct Drawer* d, char* s); - -void write_chex32(struct Drawer* d, unsigned long val, unsigned int c); -void write_hex32(struct Drawer* d, unsigned long val); - -void write_c10(struct Drawer* d, unsigned long val, unsigned int c); -void write_10(struct Drawer* d, unsigned long val); - -void set_drawer(struct Drawer* d, unsigned int x, unsigned int y); - -#endif -- cgit v1.2.1