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