(*-----------------------PMODEM--------------------------* * Modem utility vers. 1.1b * * Written by Phillip Hansford, October 1984, * * revised 11/9/86. * * * * This program works with a smart modem to conveniently * * access remote computers and modems. It includes a host * * mode to answer incomming calls. Provision for * * automatic logon is also included in this revision. * * Program is written in Turbo Pascal 3.0 for CP/M-80 * * (Z-80) and needs modification to match specific modem * * and computer. * * * * ==> This program is free. It may be used for any * * purpose. However, the distribution of this program is * * restricted to free remote computer systems and free * * non-commercial means. This program is not to be sold, * * nor may charges of any kind be made for its * * distribution without permission from author. * *--------------------------------------------------------*) program pmodem; {program contains 'include' files which are combined by Turbo Pascal compiler} {$I equates.inc} {constants & initial values} {$I ros.mch} {ROS machine drivers} {$I ros.mdm} {ROS modem drivers} {$I io.inc} {driver interface} {$I open.inc} {other utilities} {$I terminal.inc} {terminal mode section} {$I directry.inc} {phone number list} {$I dial.inc} {auto dial section} {$I ascii.inc} {ASCII transfer} {$I send.inc} {send file} {$I receive.inc} {receive file} {$I host.inc} {host modem routines} {$I default.inc} {default & miscellaneous} {$I main.inc} {main program} {end of program}