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='NUBLUBIO';
- insert into crt (name, type, base, lines, columns, msgl, modl, clearscreen,
- backspace, forespace, goto_cl, offset, clearline, tset, att1,
- att2, att1_2, att1_3, attoff, scrup, scrdn, graphon,
- graphoff)
- values ('NUBLUBIO', 'CHAR', 1, 25, 80, 24, 25, '\eC\eL\027',
- '\eB', '\eA', '\eK\y\x', 0, '\eE\eF', '\eS\027', '\eL\161',
- '\eL\025', '\eL\107', '\eL\037', '\eL\027', '\eG', '\eH', NULL,
- NULL)
- /
-
- rem **********************************************************************
- rem Define the box-graphic characters
- rem **********************************************************************
-
- delete from crtbox where crtname='NUBLUBIO';
- insert into crtbox values ('NUBLUBIO', 'Y', '│', '─', '┌', '┐', '└', '┘',
- '├', '┤', '┬', '┴', '┼', '|', '-', '+', '+', '+', '+', '+', '+', '+',
- '+', '+');
-
- rem **********************************************************************
- rem Define the function keys
- rem **********************************************************************
-
-
-
- DELETE FROM esc WHERE NAME='NUBLUBIO';
- insert into esc select prod_code, 'NUBLUBIO', func, escseq, comments
- from esc
- where name='NEWBIOS';
- commit