From owner-freebsd-hackers Tue Oct 3 00:31:30 1995 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA24836 for hackers-outgoing; Tue, 3 Oct 1995 00:31:30 -0700 Received: from asstdc.scgt.oz.au (root@asstdc.scgt.oz.au [202.14.234.65]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id AAA24831 ; Tue, 3 Oct 1995 00:31:21 -0700 Received: (from imb@localhost) by asstdc.scgt.oz.au (8.6.12/BSD-4.4) id RAA08680; Tue, 3 Oct 1995 17:31:08 +1000 From: michael butler Message-Id: <199510030731.RAA08680@asstdc.scgt.oz.au> Subject: Re: Some patches to syscons To: sos@freebsd.org Date: Tue, 3 Oct 1995 17:31:07 +1000 (EST) Cc: serg@bcs1.bcs.zaporizhzhe.ua, hackers@freebsd.org In-Reply-To: <199510030649.XAA22207@freefall.freebsd.org> from "sos@freebsd.org" at Oct 2, 95 11:49:30 pm X-Mailer: ELM [version 2.4 PL24beta] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 1392 Sender: owner-hackers@freebsd.org Precedence: bulk sos@freebsd.org writes: > > Second change append SCO console like font changing: > > ESC [ 10 m - selects the primary font > > ESC [ 12 m - selects seconds alternate font; toggles > > high bit of extended ASCII code before > > displaying as ROM sharacters > > ESC [ m > > ESC [ 0 m + selects the primary font > THanks! I'll get it into the sources... ISC (which is supposed to be SCO-compatible) also has .. (extracted from the display(7) man page) .. ESC[ 11 m selects the first alternate font; lets ASCII characters less than 32 be displayed as ROM characters .. and .. ESCx Where x is any of the 256 possible codes (except c, [, and H), displays that value uninterpreted. This is useful for utilizing the full set of graphics available on the display. Note again that the char- acters are processed through the terminal interface prior to this escape sequence. Therefore, to get some of the possible 256 characters, it is necessary that the character not be postprocessed. The easi- est way to accomplish this is to turn off OPOST in the c_oflag field (see termio(7)); however, this may have other side effects. .. are these in SCO ? michael