hardware cursor

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
slacker

hardware cursor

Post by slacker »

if anyone wants to play with the hardware cursor you can use this function.

Code: Select all

//by slacker
void CursorAction(bool on)
{
   Port_O(0x3d4, 0x0A);
     
   if(on)  
      Port_O(0x3d5, 0x00);
   else
      Port_O(0x3d5, 0x20);
}

...and yes it will only work with the comments still there
Post Reply