home *** CD-ROM | disk | FTP | other *** search
- # Parses the output of MASM and returns records containing the following:
- # Filename, Line, Column, ErrorMessage
- # Since Column can not be assertained it is set to 0.
-
- /: warning |: error |: fatal/ \
- {
- split($1,a,"(")
- split(a[2],b,")")
- a = sprintf("%1s, %1s, 0,",a[1],b[1])
- b = ""
- for (i=2; i <= NF; i++) b = sprintf("%1s %1s",b,$i)
- print a b
- }