Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!rutgers!ames!sdcsvax!ucsdhub!hp-sdd!hplabs!hpcea!hpccc!kevino From: kevino@hpccc.HP.COM (Kevin Owen) Newsgroups: comp.sys.ibm.pc Subject: Re: How to turn off cursor? Message-ID: <5060014@hpccc.HP.COM> Date: Tue, 17-Nov-87 17:06:44 EST Article-I.D.: hpccc.5060014 Posted: Tue Nov 17 17:06:44 1987 Date-Received: Sat, 21-Nov-87 01:03:54 EST References: <2065@killer.UUCP> Organization: HP Corporate Computing Center Lines: 23 / hpccc:comp.sys.ibm.pc / tad@killer.UUCP (Tad Marko) / 8:24 pm Nov 11, 1987 / I need a little help...how in the world, using BIOS interrupts, do I turn off the cursor? Thanks, Tad ..!ihnp4!killer!tad ---------- In text mode there is no way of turning the cursor off but you can place the cursor off screen (which effectively turns it off). A code fragment that I have used in the past follows : mov ah,2 ; function 2 = position cursor mov bh,0 ; select page 0 mov dl,0 ; X position mov dh,25 ; Y position - which is off screen int 10h ; invoke software interupt Enjoy, Kevin ..!hpccc!kevino