entity driver() {
ename e1, e2;
setmaxclock(500);
e1 = new Delay(1,10);
e2 = new Delay(2,10);
send Init{e2} to e1;
send Init{e1} to e2;
}