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='BLUEBIOS';
- 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, att1,
- att2, att1_2, att1_3, attoff, scrup, scrdn, graphon,
- graphoff, cursorup, cursordown)
- values ('BLUEBIOS', 'CHAR', 1, 25, 80, 24, 25, '\eC\eL\027',
- '\eE', '\eL\224', '\eL\161', '\eL\161',
- '\eB', '\eA', '\eK\y\x', 0, '\eE\eF', '\eS\027', '\eL\161',
- '\eL\025', '\eL\107', '\eL\037', '\eL\027', '\eG', '\eH', NULL,
- NULL, '\eU', '\eT')
- /
-
- rem **********************************************************************
- rem Define the box-graphic characters
- rem **********************************************************************
-
- delete from crtbox where crtname='BLUEBIOS';
- insert into crtbox values ('BLUEBIOS', 'Y', '│', '─', '┌', '┐', '└', '┘',
- '├', '┤', '┬', '┴', '┼', '|', '-', '+', '+', '+', '+', '+', '+', '+',
- '+', '+');
-
- rem **********************************************************************
- rem Define the function keys
- rem **********************************************************************
-
-
- DELETE FROM esc WHERE NAME='BLUEBIOS';
- insert into esc select prod_code, 'BLUEBIOS', func, escseq, comments
- from esc
- where name='PCBIOS';
- commit