home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol140 / error.for < prev    next >
Encoding:
Text File  |  1984-04-29  |  1.9 KB  |  57 lines

  1. FORTRAN-80 COMMAND SWITCHES
  2.  
  3. SWITCH          ACTION
  4.  
  5. /O              Prints the listing addresses in octal
  6. /H              Prints the listing addresses in hex (default).
  7. /N              Object code is not listed only the source code.
  8. /R              overrides the /N switch - .REL file generated.
  9. /P              alloctes 256 extra bytes to the stack.
  10. /M              Generates ROMABLE code.
  11.  
  12. FORTRAN-80 RUNTIME ERRORS.
  13.  
  14. a)Warnings
  15.  
  16. ID              Description
  17.  
  18. A2              Both arguments of ATAN2 are 0
  19. BE              Exponent overflow
  20. BI              Buffer exceeded.
  21. CN              Conversion overflow in Real -> Integer.
  22. DE              Exponent overflow
  23. EX              Illegal exponent
  24. FW              Format field width too small
  25. GL              Computed GOTO too large.
  26. GS              Computed GOTO too small.
  27. IB              Input buffer exceeded.
  28. IN              Input record too long.
  29. IS              Integer size too large.
  30. OB              Output buffer exceeded.
  31. OV              Arithmetic Overflow.
  32. RC              Negative repeat count in Format statement.
  33. SN              Argument of SIN too large.
  34. TL              Too many left parentheses in Format.
  35.  
  36. Fatal Runtime Errors.
  37.  
  38. ID              Description.
  39.  
  40. DF              Disk full on Write.
  41. DO              Illegal increment or limit in DO loop.
  42. DT              Data type not in Format Specification.
  43. DZ              Divide by zero
  44. EF              EOF encountered in Read.
  45. FN              File not found in open.
  46. ID              Illegal Format descriptor.
  47. IO              Illegal I/O.
  48. IR              Real in Integer format field.
  49. IT              I/O transmission error.
  50. FO              Format field width is zero.
  51. LG              Negative or zero value in Log function.
  52. ML              Missing left parenthesis in Format.
  53. MP              Missing period in Format.
  54. OM              Out of Memory.
  55. SQ              Negative value to SQRT function.
  56. UN              Logical Unit Number too large.
  57.