home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / lang / fortran / 4244 < prev    next >
Encoding:
Text File  |  1992-11-09  |  1.5 KB  |  34 lines

  1. Newsgroups: comp.lang.fortran
  2. Path: sparky!uunet!spool.mu.edu!darwin.sura.net!convex!news.oc.com!utacfd.uta.edu!news.uta.edu!hermes.chpc.utexas.edu!michael
  3. From: michael@chpc.utexas.edu (Michael Lemke)
  4. Subject: Re: Porting from CRAY to IBM
  5. Message-ID: <1992Nov9.063934.25744@chpc.utexas.edu>
  6. Keywords: IBM, conversion, syntax, annoyance, fustration, pocopotapital
  7. Organization: The University of Texas System - CHPC
  8. References: <8NOV199215380328@vtcc1.cc.vt.edu>
  9. Date: Mon, 9 Nov 92 06:39:34 GMT
  10. Lines: 22
  11.  
  12. In article <8NOV199215380328@vtcc1.cc.vt.edu> millnerrl@vtcc1.cc.vt.edu (CALLABLE_TPU) writes:
  13. >
  14. [has trouble with]
  15. >    program pargraf (tty,input=tty)
  16. >and
  17. >    program parmela (tty,input,tape10=input,output)
  18. [when proting from Cray to PC]
  19.  
  20. These are some relicts from old Cyber times when Fortran 77 had not
  21. been invented yet.  They are substitues for OPEN statements with
  22. TAPE10=INPUT meaning Fortran channel 10 to be the input stream, e.g.,
  23. card reader.  I am not absolutely sure what these statements do in your
  24. case.  Except from channel 10 to be stdin, it looks like channel 5 to
  25. be connected to /dev/tty and stdin (parmela).  Most likely you can
  26. ignore these statements and somehow make sure that channel 10 gets
  27. connected to your input, eg., OPEN( 10, FILE =
  28. 'something_that''s_your_keyboard' ) (would be SYS$INPUT in VMS, don't
  29. know PCs.)  Hope this gets you started.
  30. -- 
  31. Michael Lemke
  32. Astronomy, UT Austin, Texas
  33. (michael@io.as.utexas.edu or UTSPAN::UTADNX::IO::MICHAEL [SPAN])
  34.