M
Matt North
Guest
The while loop below is used in a subprogram
while i<=something loop
dosomething
i:=i+1;
exit when i=something+1;
end loop;
is it possible to use the values of i in another process which calls this
subroutine while i is changing.
i.e. use the value of i to strobe the address of ram.
When i simulate i just get the final value of i. NOT USEFULL.
while i<=something loop
dosomething
i:=i+1;
exit when i=something+1;
end loop;
is it possible to use the values of i in another process which calls this
subroutine while i is changing.
i.e. use the value of i to strobe the address of ram.
When i simulate i just get the final value of i. NOT USEFULL.