Hi!

Acctually I want to post in "The Editors", but there is no "New Topic" - button!?

I use the SED 7.36.1 with GS 8.02.90 on a Windows 7 Prof., 64 Bit.

I can shrink my original code to this:

Code:
#include <acknex.h>
#include <default.c>

var a = 10;
var b = 20;
var c = 0;

function Sum(In1, In2)
{
	return (In1 + In2);
}

function main()
{
	c = Sum(a, b);
	c = Sum(b, a);

	while(1)
	{		
		wait(1);
	}
}



I have following problems:

- I can't watch In1 and In2. I got the value "Not available" when I step through the code by presing F10.
- I can't step (F10) into the first function call (c = Sum(a, b);) with a breakpoint on it.
- If I set a breakpoint at the "return (In1 + In2);" line, sometimes it wasn't reached. But I can't see a regularity.

Chris