3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

specify: system timing checks to accept min:typ:max triple

This commit is contained in:
Eddie Hung 2020-02-13 08:59:08 -08:00
parent 7cfdf4ffa7
commit b523ecf2f4
4 changed files with 52 additions and 16 deletions

View file

@ -44,3 +44,10 @@ specify
(posedge clk *> (q +: d)) = (3,1);
endspecify
endmodule
module test4(input clk, d, output q);
specify
$setup(d, posedge clk, 1:2:3);
$setuphold(d, posedge clk, 1:2:3, 4:5:6);
endspecify
endmodule