Hi
I'm working with SYS/BIOS 6.32 on a F2808. I'm puzzled by the lifetime of C++ objects instantiated in main().
What happens to main() after BIOS_start is called? The documentation seems a little vague - I've seen comments in code samples that suggest main never exits, which is what I would expect. Certainly if I put a breakpoint at the end of main, it never gets hit.
But what is puzzling me is that objects I instantiate in main, before calling BIOS_start, seem to get destroyed somewhere - if I set a breakpoint in their destructors, it gets hit, as if they were going out of scope.
A pointer to any documentation would be hugely helpful - I have looked, but II can't find anything.
Many Thanks
Tony