From 48927cba2a8ee1a83f94139bd7ecf7e573b879c5 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 13 Aug 2018 00:35:33 +0100 Subject: [PATCH] tty.h: add new font type --- Kernel/include/tty.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Kernel/include/tty.h b/Kernel/include/tty.h index 72096762..115e6001 100644 --- a/Kernel/include/tty.h +++ b/Kernel/include/tty.h @@ -188,6 +188,8 @@ struct fontinfo { #define FONT_INFO_4X6 3 #define FONT_INFO_8X11P16 4 /* 8 x 11 but packed 16 line packed */ #define FONT_INFO_8X16 5 +#define FONT_INFO_6X12P16 6 /* 6x12 on 16 byte boundaries + 16 line packed, low 6 bits */ }; /* Group the tty into a single object. That lets 8bit processors keep all -- 2.34.1