Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!husc6!think!ames!amdcad!cae780!hplabs!hp-pcd!hpcvlo!bill From: bill@hpcvlo.HP.COM (Bill Frolik) Newsgroups: comp.sys.hp Subject: Re: disable hp110 print key??? Message-ID: <2710004@hpcvlo.HP.COM> Date: Tue, 26-May-87 13:39:33 EDT Article-I.D.: hpcvlo.2710004 Posted: Tue May 26 13:39:33 1987 Date-Received: Sat, 30-May-87 06:52:08 EDT References: <502@uhccux.UUCP> Organization: Hewlett-Packard Co., Corvallis, OR, USA Lines: 35 You have two options: You can either remove the PRINT key's keycap so that it becomes harder to accidently hit, or you can try the following little teminate/stay resident program. name fixprint page 62,132 code segment assume cs:code,ds:code org 100h begin: jmp short start ;Skip over interrupt handler int53: iret ;Make Int 53h return w/o doing anything start: mov ax,2553h ;SET INTERRUPT 53H mov dx,offset int53 ;Point Printscreen int at dummy handler int 21h mov ah,31h ;TERMINATE/STAY RESIDENT mov dx,17 ;Keep first 17 paragraphs of this program int 21h code ends end begin I tried this program on a Portable Plus, should work fine on a 110 too. The Print key generates an Int 53h; this program just causes the interrupt to do nothing. Bill Frolik hp-pcd!bill Hewlett-Packard Portable Computer Division Corvallis, Oregon