From: Alan Cox Date: Thu, 27 Nov 2014 01:04:35 +0000 (+0000) Subject: dragon: do char mapping in the right spot X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=686825530960bc5583db41cc02390ca9db55bfde;p=FUZIX.git dragon: do char mapping in the right spot --- diff --git a/Kernel/platform-dragon/devtty.c b/Kernel/platform-dragon/devtty.c index 537d5829..bf2d7964 100644 --- a/Kernel/platform-dragon/devtty.c +++ b/Kernel/platform-dragon/devtty.c @@ -47,9 +47,6 @@ bool tty_writeready(uint8_t minor) void tty_putc(uint8_t minor, unsigned char c) { if (minor == 1) { - /* FIXME: Once we do machine types the later COCO2 isn't - so brainless. Or we should perhaps use bitmap modes */ - c &= 0x5f; vtoutput(&c, 1); } else *uart_data = c; /* Data */