home *** CD-ROM | disk | FTP | other *** search
- set echo off
-
- rem **********************************************************************
- rem Enter the master record for the CRT definition
- rem **********************************************************************
-
- delete from crt where name='43ANSI';
- insert into crt (name, type, base, lines, columns, msgl, modl, clearscreen,
- cleareol, att3, att2_3, att1_2_3,
- backspace, forespace, goto_cl, clearline, tset, att1,
- att2, att1_2, att1_3, attoff, scrup, scrdn, graphon,
- graphoff, cursorup, cursordown)
- values ('43ANSI', 'CHAR', 1, 43, 80, 42, 43, '\e[0;32m\e[2J',
- '\e[K', '\e[5;31m', '\e[0;37;44m', '\e[0;30;42m',
- '\e[D', '\e[C', '\e[\y;\xH', '\e[2K', NULL, '\e[0;33;1m',
- '\e[0m', '\e[0;37;41m', '\e[0;31;1m', '\e[0;32m', '\eD', '\eM', NULL,
- NULL, '\e[A', '\e[B');
-
- rem **********************************************************************
- rem Define the box-graphic characters
- rem **********************************************************************
-
- delete from crtbox where crtname='43ANSI';
- insert into crtbox values ('43ANSI', 'Y', 'x', 'q', 'a', 'k', 'b', 'j',
- 't', 'c', 'w', 'v', 'd', '|', '-', '+', '+', '+', '+', '+', '+', '+',
- '+', '+')
- /
-
- rem **********************************************************************
- rem Define the function keys
- rem **********************************************************************
-
- DELETE FROM esc WHERE NAME='43ANSI';
- insert into esc select prod_code, '43ANSI', func, escseq, comments
- from esc
- where name='PCBIOS';
- commit