.title toascii Convert to 7-bit Ascii .ident /000001/ ; ;+ ; ; Index Convert to 7-bit Ascii ; ; Usage ; ; toascii(c); ; int c; ; ; Description ; ; Remove the parity bit from c. ; ; Bugs ; ;- ; ; Edit history ; 000001 05-Mar-82 MM Initial edit ; .psect c$code toascii:: mov 2(sp),r0 bic #177600,r0 rts pc .end