#include "dos.h"

main()

{

//to execute program at 0000:007c which is the boot sector program

//--- the bootstrap loader, the  program which knows how to load the OS

      void far (*ptr)();

      ptr=(void (far*)())MK_FP(0x70,0x0);

      (*ptr)();

      return 0;

}