From 35515e8fcee648e04e4c0ded5bde1a332153a374 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 8 Jul 2018 15:04:38 +0100 Subject: [PATCH] trs80m1: turn on keyboard bit map access I forgot this earlier, but we also need it so you can set the keyboard map for things like German TRS80 Model III --- Kernel/platform-trs80m1/config.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Kernel/platform-trs80m1/config.h b/Kernel/platform-trs80m1/config.h index 87a6b310..82b3a90e 100644 --- a/Kernel/platform-trs80m1/config.h +++ b/Kernel/platform-trs80m1/config.h @@ -35,6 +35,10 @@ #define VT_RIGHT 63 #define VT_BOTTOM 15 +/* Keyboard bitmap definitions */ +#define KEY_ROWS 8 +#define KEY_COLS 8 + #define TICKSPERSEC 40 /* Ticks per second */ #define PROGBASE 0x8000 /* Base of user */ #define PROGLOAD 0x8000 /* Load and run here */ -- 2.34.1