From 43f6d4b3ed411b6a522488f1d6dd922692e2ca48 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 8 Jul 2018 16:01:13 +0100 Subject: [PATCH] graphics.h: add LOWE_LE18 --- Kernel/include/graphics.h | 3 ++- Library/include/sys/graphics.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Kernel/include/graphics.h b/Kernel/include/graphics.h index c8ff69f8..33e99038 100644 --- a/Kernel/include/graphics.h +++ b/Kernel/include/graphics.h @@ -26,7 +26,8 @@ struct display { #define HW_TRS80GFX 130 /* TRS80 model 4 graphics board */ #define HW_HRG1B 131 /* HRG1B for TRS80 and VidoeGenie */ #define HW_MICROLABS 132 /* Microlabs Grafyx */ -#define HW_MICROLABS4 133 /* Microlabs Grafyx for Model 4*/ +#define HW_MICROLABS4 133 /* Microlabs Grafyx for Model 4 */ +#define HW_LOWE_LE18 134 /* Low Electronics LE-18 */ uint16_t features; #define GFX_MAPPABLE 1 /* Can map into process memory */ #define GFX_PALETTE 2 /* Has colour palette */ diff --git a/Library/include/sys/graphics.h b/Library/include/sys/graphics.h index af599e56..70381658 100644 --- a/Library/include/sys/graphics.h +++ b/Library/include/sys/graphics.h @@ -27,6 +27,7 @@ struct display { #define HW_HRG1B 131 /* HRG1B for TRS80 and VidoeGenie */ #define HW_MICROLABS 132 /* Microlabs Grafyx */ #define HW_MICROLABS4 133 /* Microlabs Grafyx for Model 4*/ +#define HW_LOWE_LE18 134 /* Low Electronics LE-18 */ uint16_t features; #define GFX_MAPPABLE 1 /* Can map into process memory */ #define GFX_PALETTE 2 /* Has colour palette */ -- 2.34.1