From 6a46c35548b956db0c82dc6dc732181ca19811c5 Mon Sep 17 00:00:00 2001 From: Edward Wang Date: Sun, 18 Sep 1983 00:11:03 -0800 Subject: [PATCH] date and time created 83/09/17 17:11:03 by edward SCCS-vsn: usr.bin/window/ttf100.c 3.1 --- usr/src/usr.bin/window/ttf100.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 usr/src/usr.bin/window/ttf100.c diff --git a/usr/src/usr.bin/window/ttf100.c b/usr/src/usr.bin/window/ttf100.c new file mode 100644 index 0000000000..eff17cdfe9 --- /dev/null +++ b/usr/src/usr.bin/window/ttf100.c @@ -0,0 +1,26 @@ +#ifndef lint +static char *sccsid = "@(#)ttf100.c 3.1 3.1"; +#endif + +#include "ww.h" +#include "tt.h" + +/* + * Freedom 100 + */ + +char f100_frame[16] = { + ' ', 'J'|0x80, 'K'|0x80, 'A'|0x80, + 'J'|0x80, 'J'|0x80, 'B'|0x80, 'M'|0x80, + 'K'|0x80, 'D'|0x80, 'K'|0x80, 'O'|0x80, + 'C'|0x80, 'L'|0x80, 'N'|0x80, 'I'|0x80 +}; +extern char *gen_GE, *gen_GS; + +tt_f100() +{ + tt.tt_frame = f100_frame; + gen_GS = "\033$"; + gen_GE = "\033'"; + return tt_generic(); +} -- 2.20.1