From: Alan Cox Date: Thu, 20 Apr 2017 14:25:09 +0000 (+0100) Subject: mtx: fix keyboard handling bug X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=caec24ba8c0e5222692b870474b894ec78df2164;p=FUZIX.git mtx: fix keyboard handling bug --- diff --git a/Kernel/platform-mtx/devtty.c b/Kernel/platform-mtx/devtty.c index a752b065..41d1bac7 100644 --- a/Kernel/platform-mtx/devtty.c +++ b/Kernel/platform-mtx/devtty.c @@ -189,7 +189,7 @@ static uint8_t keybyte, keybit; static uint8_t newkey; static int keysdown = 0; static uint16_t shiftmask[8] = { - 0, 0, 1, 0, 1, 0, 63, 0 + 0, 0, 1, 0, 1, 0, 65 , 0 }; __sfr __at 0x05 keyport; __sfr __at 0x06 keyporth;