I am trying to run some old legacy fortran 77 code and it is giving me an error I cannot figure out. The program was compiled with g77.
Here is the output when run:
Reading data from file: j.cmp
startio: error in format
apparent state: unit 14 named cyfile
last format: (i3,1x,i2,2f8.2,f8.2,1f8.3,20(1pe10.3.1))
lately writing sequential formatted external IO
Aborted (core dumped)
j.cmp is my input file; cyfile is suppose to be my output file. Does anyone have any ideas on what is causing the error? Is it the format of my input file? Can it not write to the output file?