From: Patrick E. <pa...@pa...> - 2001-07-17 07:25:46
|
I've been investigating the elusive problem of doing recursion on these chips. I decided I'd look to see how other compilers did it. It turns out that NO compilers implement recursion on the PIC chips. It really isn't that practical in any case. It could probably be done via some trickery, but the results would be rather useless. Recursion isn't really a demanded feature for such a small system in any case. My current thoughts are to issue a warning if a recursive call is used, and otherwise basically not support recursion for the PIC. Does this seem like a decent way to go? Patrick Earl |