From 44ad380cccc36184be13de37df701e1a1e713cf0 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sat, 5 Feb 2022 00:32:30 -0700 Subject: Starting test suite --- include/graphics/lfb.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/graphics/lfb.h b/include/graphics/lfb.h index b21e12b..56981d2 100644 --- a/include/graphics/lfb.h +++ b/include/graphics/lfb.h @@ -4,6 +4,8 @@ #define GG_MAX_X 128 #define GG_MAX_Y 46 +#define DRAW64(x,y,v) draw_hex32(x,y,v>>32);draw_hex32(x+8,y,v); + void lfb_init(void); void lfb_showpicture(void); -- cgit v1.2.1