05-09-2011, 08:23 PM
Hello!
Could anyone tell me how I can simulate "GOTO (arithmetical expression)":
ex:
I need to assign values to an array depends on the value "N", I had thought something like this:
Is this efficient?
Is there a danger that the program itself erase the data stored at positions 62000?
THANKS
Could anyone tell me how I can simulate "GOTO (arithmetical expression)":
ex:
Code:
N can have a value between 1 and 20
GOTO (1000+(N*10))
I need to assign values to an array depends on the value "N", I had thought something like this:
Code:
ASM
ORG 62000
DEFB 12,5,8,11,12,11,4,11,(...)
END ASM
DIM P(7) AS UBYTE
...
N=20
...
FOR B=0 TO 7
P(B)=PEEK (62000+N+B)
NEXT B
Is this efficient?
Is there a danger that the program itself erase the data stored at positions 62000?
THANKS