home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1985-04-25 | 931 b | 16 lines |
- DEFINITION MODULE Terminal; (* A.Wespisser, 20-NOV-84
- --------------------------- J.Wyttenbach 11-jan-85
- NOTE: - The procedures "KeyPress" and "GotoXY" and "ClearTerminal" are not
- contained in module "Terminal" on SMAKY8.
- - "BusyRead", "ReadString", "KeyPress" and "GotoXY" and "ClearTerminal"
- are not required by the compiler itself.
- - The read routines read also from a commandfile (EXEC-file).
- See "Workshop User's Guide" for command files.
- **************************************************************************)
-
- EXPORT QUALIFIED Write, WriteString, WriteLn, Read, ReadString, ReadLn,
- BusyRead, ReadAgain,
- KeyPress, GotoXY, ClearTerminal;
-
- PROCEDURE Write (ch: CHAR);
-