KEYCLICK.I

[Table of Contents]

The KEYCLICK.I include file resides on the Kyan Pascal 2.x Utilities Disk 1.


  • PROCEDURE Disable_Key_Click;
  • PROCEDURE Enable_Key_Click;


Source Code


PROCEDURE Disable_Key_Click;
BEGIN
#A
  LDA #$FF ;put 255 into
  STA $2DB ;...(731)
#
END;(* Key Click Off procedure *)

PROCEDURE Enable_Key_Click;
BEGIN
#A
  LDA #$00 ;zero out
  STA $2DB ;...(731)
#
END;(* Key Click On procedure *)

No comments:

Post a Comment