You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removing the f_past_valid or $past(i_w) from the line with if (f_past_valid & $past(i_w)) will prevent the crash.
The crash is also prevented, when swapping
always@(posedge i_clk)
if (f_past_valid &$past(i_w))
assert(o_w);
Ok, I have investigated a bit further and am now convinced, that the problem is something in my setup, since I get each and every single always-Block duplicated, which obviously causes problems. If you have an idea, pointers would be welcome.
When reading the following file, yosys crashes.
Removing the
f_past_valid
or$past(i_w)
from the line withif (f_past_valid & $past(i_w))
will prevent the crash.The crash is also prevented, when swapping
with
or
command:
yosys -m systemverilog -p "read_systemverilog -formal -debug -no_dump_ptr -dump_rtlil mre.sv"
output:
run.log
Versions:
The text was updated successfully, but these errors were encountered: