/************************************************************
 Alternative for switching screen modes, submitted by Josh
************************************************************/

// I dont know much about programming but check this out:

void SetMCGA()
{
    _AX = 0x0013;
    geninterrupt (0x10);
}

// There you have it! One call to that procedure/function,
// and BANG you are in 320x200x256 mode.

// To get back to text mode....

void SetText()
{
    _AX = 0x0003;
    geninterrupt (0x10);
}

// BANG! We are back in text mode!

// Its C++ BTW..

// Josh