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

verilog: fix $specify3 check

This commit is contained in:
Eddie Hung 2020-02-12 12:16:01 -08:00
parent cb7bc6a12f
commit 7cfdf4ffa7
2 changed files with 18 additions and 7 deletions

View file

@ -37,3 +37,10 @@ specify
(posedge clk *> (q +: d)) = (3,1);
endspecify
endmodule
module test3(input clk, input [1:0] d, output [1:0] q);
specify
(posedge clk => (q +: d)) = (3,1);
(posedge clk *> (q +: d)) = (3,1);
endspecify
endmodule