#include "dos.h"

main()

{

//AIM : to boot the system

      void far (*p)();

      p=(void (far*)())0xffff0000l;

      (*p)();

      return 0;

}