Software Archive
Read-only legacy content

Internal Write

Intel_C_Intel
Employee
793 Views
When I try to execute my program, I am gettin this runtime error...
"forrtl: severe(38): error during write, unit -1, CONOUT$
Image PC Routine Line Source
DFORRT 02DB6C49 Unknown Unknown Unknown
.
Incrementally linked image--PC correlation dissabled."

I narrowed the error down to this write statement...
      WRITE (*,30000) M(IM), NAME, MP, A 

Is there something worng with that line, or did I forget to do something before that?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
793 Views
That's not an internal WRITE, it's a list-directed WRITE to the default output device (console). What is your application type - is it a Console or QuickWin application? If not, there is no console to write to and the write will fail.

What do you want this to do?

Steve
0 Kudos
Reply