#include <reg51.h>

void delay(unsigned int i) // 시간지연

{

while(i--);

}