I have declared clk_proc on top of my script:
LOCAL &clk_proc
Later in my script I am using the variable
&clk_proc=v.value(clk_proc)
I am getting an error:
"Symbol not found in this context"
Any idea ?
I have declared clk_proc on top of my script:
LOCAL &clk_proc
Later in my script I am using the variable
&clk_proc=v.value(clk_proc)
I am getting an error:
"Symbol not found in this context"
Any idea ?
you are getting error here because clk_proc is not defined only **&**clk_proc is defined as lauterbach will treat clk_proc as a new variable which is not defined any where so throwing error.
&clk_proc=v.value(clk_proc)
We need to use the "&" always while using the variable in lauterbach. Try with below: &clk_proc=v.value(**&**clk_proc) this will work.