3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

Support import of $future_ff

This commit is contained in:
Miodrag Milanovic 2023-08-24 11:55:30 +02:00 committed by Jannis Harder
parent 9c255c98b1
commit 27ac912709
5 changed files with 38 additions and 0 deletions

View file

@ -2728,3 +2728,16 @@ assign Y = A;
endmodule
// --------------------------------------------------------
module \$future_ff (A, Y);
parameter WIDTH = 0;
input [WIDTH-1:0] A;
output [WIDTH-1:0] Y;
assign Y = A;
endmodule
// --------------------------------------------------------