[comp.sys.m6809] CoCo 3 termcap

harmon@abvax.UUCP (Larry Harmon) (10/09/87)

	Since no one was able to provide me with a termcap I've started
writing my own.  Here is the first pass, I don't guarentee it works.
To use it with out adding it to the system termcap file I "source" the
script file also below.

# Tandy Color Computer 3 termcap entry
# functions supported are: 80x24 screen, backspace, clear to end of display,
# clear to end of line, clear screen, cursor motion, home,
# cursor up/down/left/right, reverse character set on/off
CC3|cc3|CoCo3|Color Computer 3:\
:co#80:li#24:\
:ho=\001:cm=\002%+ %+ :bs:nd=\006:up=\011:do=\012:dl=\037\061:al=\037\060:\
:ku=\009:kd=\012:kl=\010:kr=\006:\
:s0=\037\040:se=\037\041:\
:cd=\013:ce=\004:cl=\014:

-------- end of termcap -------------
#
#
setenv TERMCAP /usr/harmon/cc3tcap
setenv TERM cc3
tset -s -Q > /tmp/tset$$
source /tmp/tset$$
rm /tmp/tset$$
set ignoreeof
set noclobber
#

-------- end of csh script -------------