home *** CD-ROM | disk | FTP | other *** search
-
-
- -- ON-LINE Ada LANGUAGE REFERENCE MANUAL
- -- Developed at Nofolk State University
- -- Development funded by a grant from the U. S. Army
- -- Project ReDTEA
- -- Version 1.0 released December 1988
- -- Programmer: Esther M. Lumsdon
- -- Project Director: George C. Harrison, PhD
-
-
-
- with TEXT_IO; use TEXT_IO;
- package MACHINE_SPECIFIC is
-
- ---------------
- -- PC/AT MS-DOS --
- ---------------
-
- SCREEN_WIDTH : NATURAL := 78;
- -- maximum number of characters that can be displayed on a line without wrap
- -- value for MS-DOS
-
- SCREEN_HEIGHT : NATURAL := 24;
- -- line number on screen of location for prompts. Bottom line of screen.
- -- value for MS-DOS
-
-
-
- procedure CLS;
-
- end MACHINE_SPECIFIC;
-