Discussion of issues related specifically to writing code for native mode devices. This includes ZBasic code as well as assembly language code and C code, both inline and standalone.
pjc30943
Posts: 220 Joined: 01 December 2005, 18:45 PM
Post
by pjc30943 » 04 July 2008, 16:41 PM
"Internal error: unhandled exception
>Exit code: 1"
occurs when I had a typo of
Code: Select all
calltask PIDLTask(false, true), PIDLstack
instead of
Code: Select all
calltask PIDTask(false, true), PIDLstack
in a separate module included with a project.
[Generally this is announced as an undefined identifier, not an internal compiler error...]
Paul
dkinzer
Site Admin
Posts: 3120 Joined: 03 September 2005, 13:53 PM
Location: Portland, OR
Post
by dkinzer » 04 July 2008, 16:59 PM
pjc30943 wrote: "Internal error: unhandled exception occurs when I [invoke CallTask with a non-existent task routine and a parameter list].
Thanks. The source of the problem has been identified and corrected.
- Don Kinzer