home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume4
/
aaa
/
6801
/
notn
< prev
next >
Wrap
Text File
|
1986-11-30
|
346b
|
10 lines
# Main preprocessing, handling 6801-specific notation (actually none) as
# well as some more-or-less machine-independent odds and ends (two-byte
# constants (note byte order known)).
/^=/ { # Two-byte constant, in proper byte order.
print "\\" substr($0, 2)
print "/" substr($0, 2)
next
}
/./ { print } # Something else, leave untouched.