From d9b75a83a1a91a7378461014c1198990c5343d86 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 2 Jul 2018 22:45:44 +0100 Subject: [PATCH] kernel: add trs80 graphics mode --- Kernel/include/graphics.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/include/graphics.h b/Kernel/include/graphics.h index c33da054..cac674da 100644 --- a/Kernel/include/graphics.h +++ b/Kernel/include/graphics.h @@ -14,6 +14,7 @@ struct display { #define FMT_COLOUR16 3 #define FMT_TEXT 4 /* Text only mode */ #define FMT_MONO_WB_TILE8 5 /* White on black 8x8 tiled (Amstrad PCW etc) */ +#define FMT_6PIXEL_128 6 /* 2x3 tiles from 128 (TRS80 style) */ /* Those sufficiently funky */ #define FMT_SPECTRUM 128 #define FMT_VDP 129 /* VDP graphics engines */ -- 2.34.1