#include<dos.h>
void main()
{
// union REGS i,o;
// int86(25,&i,&o);
void far (*p)();
p=(void (far*)())(4*0x18);
(*p)();
}