Guest
Hi all,
When I do
always @(/*AS*/)begin
x = a+y;
z = x+p;
end
this in automode expands to -
always @(/*AS*/a or y or p)begin
x = a+y;
z = x+p;
end
Clearly leaves "x" out of the sensitvity list. So when x is updated as
a result of a or y
changing - z is not.
Does anyone know if Automode was fixed and if so in what release ???
Thanks for your help,
Raj Mitra
When I do
always @(/*AS*/)begin
x = a+y;
z = x+p;
end
this in automode expands to -
always @(/*AS*/a or y or p)begin
x = a+y;
z = x+p;
end
Clearly leaves "x" out of the sensitvity list. So when x is updated as
a result of a or y
changing - z is not.
Does anyone know if Automode was fixed and if so in what release ???
Thanks for your help,
Raj Mitra