JKPCLICK DOCQ COM7Q MACDUQ COM fJUQ MAC # This small file written in Z80 code turns off the key click for KayPro's. To use enter "Q" and the clicking is gone. To have the clicking back just unplug the keyboard cord and plug it in again. Not very hi-tech you say ! Well then just put a "0" for the "8" in the MAC file and re-compile it with M80 and call it "UQ"! Or just run "UQ". Enjoy Ron Rock P.S. Yes, this is public domain and if you can sell it, more power to you. s1>{@#CL =,pTITLE QUIET THE KEYCLICK .z80 ASEG ORG 100H ; START: LD (OLDSTK),SP LD SP,STACK LD A,8 OUT (5),A DONE: LD SP,(OLDSTK) RET OLDSTK: DB 0 STACK: DB 0 END LD (OLDSTK),SP LD SP,STACK LD A,8 OUT (5),A DONE: LD Ss1>{@#L =,pTITLE UN-QUIET THE KEYCLICK .z80 ASEG ORG 100H ; START: LD (OLDSTK),SP LD SP,STACK LD A,0 OUT (5),A DONE: LD SP,(OLDSTK) RET OLDSTK: DB 0 STACK: DB 0 END LD (OLDSTK),SP LD SP,STACK LD A,0 OUT (5),A DONE: L