Software reboot

Is there a quick easy way to reboot the chip that doesn't involve doing something silly like intentionally crashing it (found that out already)? Like, a "reboot()" function?

-Matt-

Hi,

see the following code snippet from user HULK

void(* resetFunc) (void) = 0; //declare reset function @ address 0
...
resetFunc(); //call reset
...

Mike

But also note this thread for further discussion: http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1250663814/.