home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume4 / aaa / 6801 / notn < prev    next >
Text File  |  1986-11-30  |  346b  |  10 lines

  1. # Main preprocessing, handling 6801-specific notation (actually none) as
  2. # well as some more-or-less machine-independent odds and ends (two-byte
  3. # constants (note byte order known)).
  4. /^=/ {                # Two-byte constant, in proper byte order.
  5.     print "\\" substr($0, 2)
  6.     print "/" substr($0, 2)
  7.     next
  8. }
  9. /./ { print }            # Something else, leave untouched.
  10.