From: Alan Cox Date: Sun, 8 Jul 2018 14:04:38 +0000 (+0100) Subject: trs80m1: turn on keyboard bit map access X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=35515e8fcee648e04e4c0ded5bde1a332153a374;p=FUZIX.git 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 --- 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 */