home *** CD-ROM | disk | FTP | other *** search
- /* (c) Marietta Systems, Inc 1987
- * All rights reserved
- */
- #include "mtest.h"
- /*
- */
- void main() {
- int z, x;
- clr_scrn("Test the appearance of colors");
- for (x = TOP_LINE + 3, z = 0 ; ; x += 3){
- display("LOW low ", 1, 2, low);
- display("HIGH high ", 0, 0, high);
- display("Reverse ", 0, 0, reverse);
- display(" Blink ", 0, 0, blink);
- display("ALT Low ", 2, 2, alt_low);
- display("ALT High ", 0, 0, alt_high);
- display("ALT Reverse ", 0, 0, alt_reverse);
- display(" Blank ", 0, 0, blank);
- if (z == _COLOR) break;
- z = mk_wndw(x , x, x + 3, x + 40, "Low window head");
- idleloop(36);
- }
- disp_err("Press any key to finish", 1);
- read_kb();
- goodbye(0);
- }