Another internal error

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.
Post Reply
pjc30943
Posts: 220
Joined: 01 December 2005, 18:45 PM

Another internal error

Post by pjc30943 »

"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

Re: Another internal error

Post by dkinzer »

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
Post Reply