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='43DBIOS';
- insert into crt (name, type, base, lines, columns, msgl, modl, clearscreen,
- cleareol, att3, att2_3, att1_2_3,
- backspace, forespace, goto_cl, offset, clearline, tset, trset, att1,
- att2, att1_2, att1_3, attoff, scrup, scrdn, graphon,
- graphoff, cursorup, cursordown)
- values ('43DBIOS', 'CHAR', 1, 43, 80, 42, 43, '\eC\eL\002',
- '\eE', '\eL\204', '\eL\027', '\eL\027',
- '\eB', '\eA', '\eK\y\x', 0, '\eE\eF', '\eQ', '\eR', '\eL\027',
- '\eL\011', '\eL\107', '\eL\004', '\eL\002', '\eG', '\eH', NULL,
- NULL, '\eU', '\eT')
- /
-
- rem **********************************************************************
- rem Define the box-graphic characters
- rem **********************************************************************
-
- delete from crtbox where crtname='43DBIOS';
- insert into crtbox values ('43DBIOS', 'Y', '│', '─', '┌', '┐', '└', '┘',
- '├', '┤', '┬', '┴', '┼', '|', '-', '+', '+', '+', '+', '+', '+', '+',
- '+', '+');
-
- rem **********************************************************************
- rem Define the function keys
- rem **********************************************************************
-
- DELETE FROM esc WHERE NAME='43DBIOS';
- insert into esc select prod_code, '43DBIOS', func, escseq, comments
- from esc
- where name='PCBIOS';
- commit