hardware cursor
Posted: Thu Jun 05, 2003 1:08 pm
if anyone wants to play with the hardware cursor you can use this function.
...and yes it will only work with the comments still there
Code: Select all
//by slacker
void CursorAction(bool on)
{
Port_O(0x3d4, 0x0A);
if(on)
Port_O(0x3d5, 0x00);
else
Port_O(0x3d5, 0x20);
}