home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / aaa / 6809 / opgen < prev    next >
Encoding:
Text File  |  1986-11-30  |  134 b   |  9 lines

  1. # Tool for building 6809 opcode list.
  2. BEGIN { opno = 0 }
  3. {
  4.     if ($0 != "")
  5.         for (i = 1; i <= NF; i++)
  6.             print $i "\t" opno
  7.     opno++
  8. }
  9.