Yes, you can call video modes with int86 (). Here is a routine to do that:Thanks ......
by this command can we control the monitors setup ........?
if there any examples .... kindly give me >>>>>>>>
#include <dos.h>
union REGS r;
...
void CallVideoMode (short mode)
{
r.h.ah = 0x00;
r.h.al = mode;
int86 (0x10, &r, &r);
}