home *** CD-ROM | disk | FTP | other *** search
- {
- F i l e I n f o r m a t i o n
-
- * DESCRIPTION
- Include source code file for curve.
-
- * ASSOCIATED FILES
- CURVE.PAS
- ASSAY.TXT
- CURVE.COM
- CURVE4.EXE
- CURVE4.PAS
- PRINTOUT.INC
- PT.LAS
- README
- SAMPLE.INC
- SAMPLE2.INC
- SAMPLE4.INC
- SAMPLE4B.INC
- SPACER.INC
- TOOLS.INC
- TOOLS4.INC
-
- * CHECKED BY
- DRM - 01/25/88
-
- * KEYWORDS
- CONTEST TUG-O-WARDS PROGRAM PASCAL V3.0 V4.0
-
- ==========================================================================
- }
- { TOOLS.INC DECEMBER 4, 1986 STEPHEN CALLENDER }
- { includes inverse, normal, flash, flash_inverse, pause }
-
- procedure inverse;
- begin
- textcolor(0);
- textbackground(15)
- end;
-
- procedure no_inverse;
- begin
- textcolor(15);
- textbackground(0)
- end;
-
- procedure flash;
- begin
- textcolor(15 + blink)
- end;
-
- procedure flash_inverse;
- begin
- textcolor(0 + blink);
- textbackground(15)
- end;
-
- procedure pause;
- var choice : char;
- begin
- inverse;
- writeln('|------- press any key to continue ----------|');
- no_inverse;
- read(choice)
- end;
-