I´m realy a fool! I changed the wrong variable declaration to aliases as you suggested - now it´s working!!
thanks a lot, you´ve saved my life!!
Another short question...
When i have declared a variable as word - how do I assign a value like 1000 to it or better a value from anoter variable or constant?
In PBP I would do:
<pre>resetValue CON 1000
counter = resetValue</pre>
or:
<pre>resetValue VAR WORD
resetValue = 1000
counter = resetValue</pre>
In ASM: ??
<pre>MOVFF _resetValue, _counter</pre>
You see I´m a real beginner in ASM :-(
regards,
Jan
Bookmarks