CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Assembly

  1. #1

    Assembly

    I used
    mov ah,1
    mov ch,20
    mov cl,0
    int 10h
    to turn the cursor off.
    How do I turn it back on?



  2. #2
    Join Date
    Feb 2001
    Location
    Germany
    Posts
    480

    Re: Assembly


    CH: bit 7 reserved
    bit 6,5 00=normal, 01=off
    bit 4-0 start-rasterline
    CL: bit 7-5 reserved
    bit 4-0 end-rasterline





Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured