3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Comment out invalid syntax

This commit is contained in:
Eddie Hung 2019-06-30 11:48:01 -07:00
parent dc677c791d
commit 04459cb30a

View file

@ -33,9 +33,9 @@ module issue01144(input clk, d, output q);
specify
// Fails:
(posedge clk => (q +: d)) = (3,1);
(/*posedge*/ clk => (q +: d)) = (3,1);
//(/*posedge*/ clk => (q +: d)) = (3,1); // Invalid syntax
(posedge clk *> (q +: d)) = (3,1);
(/*posedge*/ clk *> (q +: d)) = (3,1);
//(/*posedge*/ clk *> (q +: d)) = (3,1); // Invalid syntax
// Works:
(/*posedge*/ clk => q) = (3,1);