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:
parent
9c255c98b1
commit
27ac912709
5 changed files with 38 additions and 0 deletions
|
@ -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
|
||||
|
||||
// --------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue