Recent content by shenie

  1. S

    Fortran Solving Fortran 77 Debugging Issues - Save Me!

    Hello, I've been trying to debug some Fortran 77 code so I can eventually update to 95. I keep receiving this message: /test.f:2824:Unknown pseudo-op: .quad /test.f:2824:Rest of line ignored. 1st junk character valued 48 (0). Make: *** Error code 256 from f95 assembler failed. Build...
  2. S

    Fortran Why Am I Experiencing Compilation Errors with My Fortran Code?

    Thanks..I didn't realize it was trying to compile 2. My first time using fortran.
  3. S

    Fortran Why Am I Experiencing Compilation Errors with My Fortran Code?

    I am having trouble compiling code. Here's my code: PROGRAM Sample1 IMPLICIT NONE ! Variables and constants INTEGER, PARAMETER :: n=1000, m=10 INTEGER :: i REAL, DIMENSION (1: n) :: x REAL, DIMENSION (1:100, 1:m) :: y REAL, DIMENSION (1: m):: colavg INTEGER :: filestat...
Back
Top