Page 1 of 1

hardware cursor

Posted: Thu Jun 05, 2003 1:08 pm
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