home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8707 / 62 / syssym.awk < prev    next >
Encoding:
Text File  |  1990-07-13  |  115 b   |  5 lines

  1. /^8/ {
  2.     name = substr( $2, 3, length ( $2 ) - 2 )
  3.     printf("\n\t.globl\t_%s\n\t.set\t_%s,0x%s\n", name, name, $1)
  4. }
  5.