home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / JSAGE / ZSUS / TCJ / PCP-TCJ.LBR / PCPCONN.MZX / PCPCONN.MEX
Text File  |  1990-07-15  |  640b  |  22 lines

  1.  
  2. .. PCPCONN.MEX  (02/08/90)
  3. ..
  4. .. This short script is run once the destination system has been reached.  It
  5. .. is small so that the maximum amount of room is available for capture and
  6. .. file transfer buffers.  Basically, it reports its success and enters a loop
  7. .. that allows the user to enter single MEX commands or "M" to return to the
  8. .. main menu.
  9.  
  10. screen on
  11. cls
  12. say "Connected to ",F," at ",B,"00 bps/n/n"
  13. t;.                    enter terminal mode
  14.  
  15. LABEL LOOP
  16. say "/nEnter a single MEX command (or M for menu): "
  17. accept A
  18. comp A "M"
  19. if value=1 read PCPMENU
  20. {A}
  21. goto LOOP
  22.