mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
avoid erroring out when coarse-grain logic loops can be resolved by mapping to fine grain operators
This commit is contained in:
parent
b4dd638311
commit
3ff2c9affc
|
@ -567,6 +567,7 @@ class SbyTask(SbyConfig):
|
||||||
os.makedirs(f"{self.workdir}/model")
|
os.makedirs(f"{self.workdir}/model")
|
||||||
|
|
||||||
def print_common_prep(check):
|
def print_common_prep(check):
|
||||||
|
print("scc -select; simplemap; select -clear", file=f)
|
||||||
if self.opt_multiclock:
|
if self.opt_multiclock:
|
||||||
print("clk2fflogic", file=f)
|
print("clk2fflogic", file=f)
|
||||||
else:
|
else:
|
||||||
|
|
23
tests/regression/fake_loop.sby
Normal file
23
tests/regression/fake_loop.sby
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
[options]
|
||||||
|
mode cover
|
||||||
|
|
||||||
|
[engines]
|
||||||
|
smtbmc boolector
|
||||||
|
|
||||||
|
[script]
|
||||||
|
read -formal fake_loop.sv
|
||||||
|
hierarchy -top fake_loop
|
||||||
|
proc
|
||||||
|
|
||||||
|
[file fake_loop.sv]
|
||||||
|
module fake_loop(input clk, input a, input b, output [9:0] x);
|
||||||
|
wire [9:0] ripple;
|
||||||
|
reg [9:0] prev_ripple = 9'b0;
|
||||||
|
|
||||||
|
always @(posedge clk) prev_ripple <= ripple;
|
||||||
|
|
||||||
|
assign ripple = {ripple[8:0], a} ^ prev_ripple; // only cyclic at the coarse-grain level
|
||||||
|
assign x = ripple[9] + b;
|
||||||
|
|
||||||
|
always @(posedge clk) cover(ripple[9]);
|
||||||
|
endmodule
|
Loading…
Reference in a new issue