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:
parent
cb7bc6a12f
commit
7cfdf4ffa7
2 changed files with 18 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue