Path: otto!sdcrdcf!ucla-cs!zen!ucbcad!pasteur!cory.Berkeley.EDU!bilmes From: bilmes@cory.Berkeley.EDU (Jeff Bilmes) Newsgroups: rec.music.synth Subject: DX7 patch bank, bit 7 Keywords: DX7 4097 bank bit 7 Message-ID: <244@pasteur.Berkeley.Edu> Date: 19 Jan 88 09:43:12 GMT Sender: news@pasteur.Berkeley.Edu Reply-To: bilmes@cory.Berkeley.EDU (Jeff Bilmes) Organization: University of California, Berkeley Lines: 24 Some patch editors operate on 4096 byte files where bit 7 of each byte is reset. The patch banks I post may or may not have this quality. A simple C filter will strip off the high bits in each byte. #include main() { int ch; while ((ch = getchar()) != EOF) putchar(ch & 0x7F); } After compiling, run by typing: [name of program] < [old name of patch bank] > [new name of patch bank] ---------------------------------------------------------- Jeff Bilmes arpa: bilmes@cory.berkeley.edu uucp: ...!ucbvax!cory!bilmes