home *** CD-ROM | disk | FTP | other *** search
- pragma On(Optimize_for_space);
- pragma off(emit_names);
- {*********************************************************************
- (C) Copyright 1983-1992; Franklin L. DeRemer, Thomas J. Pennello,
- MetaWare Incorporated; Santa Cruz, CA 95060.
- This program is the unpublished property and trade secret of the above
- three. It is to be utilized solely under license from MetaWare and it
- is to be maintained on a confidential basis for internal company use
- only. The security and protection of the program is paramount to
- maintenance of the trade secret status. It is to be protected from
- disclosure to unauthorized parties, both within the Licensee company
- and outside, in a manner not less stringent than that utilized for Li-
- censee's own proprietary internal information. No copies of the
- Source or Object Code are to leave the premises of Licensee's business
- except in strict accordance with the license agreement signed by Li-
- censee with MetaWare.
- *********************************************************************}
- {
- MetaWare Pascal Runtime Support: Console read/write.
- 8086 - MS/DOS Version 2
- }
- Export(Console);
- pragma C_include('Console.pf');
- pragma C_include('SYSTEM.pf');
- pragma C_include('LINETERM.pf');
- pragma C_include('Implement.pf');
-
- program Implement_Console2;
- pragma Alias(Implement_Console2,Implement.RTE || 'Console2');
- with Loopholes:[Adr,Retype];
-
- with Lineterm;
- pragma Off(With_warnings);
- with System;
- pragma Pop(With_warnings);
-
- {
- Write a string to the screen; emit newline.
- }
-
- procedure Puts(const S: String);
- begin
- Write(System_stderr,Adr(S[1]),Length(S));
- end;
-
- procedure Newline();
- begin
- Write(System_stderr,Adr(LTConv_out[1]),Length(LTConv_out));
- end;
-
- { (C) Copyright 1983; unpublished property and trade secret of }
- { MetaWare Incorporated; Santa Cruz, CA 95060; detailed notice above.}
-