home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / proglang / unity331.arj / MASM.AWK < prev    next >
Encoding:
Text File  |  1991-09-19  |  395 b   |  14 lines

  1. # Parses the output of MASM and returns records containing the following:
  2. #     Filename, Line, Column, ErrorMessage
  3. # Since Column can not be assertained it is set to 0.
  4.  
  5. /: warning |: error |: fatal/ \
  6.     {
  7.     split($1,a,"(")
  8.     split(a[2],b,")")
  9.     a = sprintf("%1s, %1s, 0,",a[1],b[1])
  10.     b = ""
  11.     for (i=2; i <= NF; i++) b = sprintf("%1s %1s",b,$i)
  12.     print a b
  13.     }
  14.