#include "dos.h"
main()
{
//AIM : to perform the BIOS power on self test
REGS i,o;
i.h.ah=0x21;
int86(0x15,&i,&o);
return 0;
}