date and time created 83/09/17 17:11:03 by edward
authorEdward Wang <edward@ucbvax.Berkeley.EDU>
Sun, 18 Sep 1983 08:11:03 +0000 (00:11 -0800)
committerEdward Wang <edward@ucbvax.Berkeley.EDU>
Sun, 18 Sep 1983 08:11:03 +0000 (00:11 -0800)
SCCS-vsn: usr.bin/window/ttf100.c 3.1

usr/src/usr.bin/window/ttf100.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/window/ttf100.c b/usr/src/usr.bin/window/ttf100.c
new file mode 100644 (file)
index 0000000..eff17cd
--- /dev/null
@@ -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();
+}