1
0
mirror of synced 2026-04-24 19:40:49 +00:00

Added $ff and $_FF_ cell types

This commit is contained in:
Clifford Wolf
2016-10-12 01:18:39 +02:00
parent 4a981a3bd8
commit 8ebba8a35f
12 changed files with 118 additions and 19 deletions

View File

@@ -1383,6 +1383,19 @@ endmodule
`endif
// --------------------------------------------------------
module \$ff (D, Q);
parameter WIDTH = 0;
input [WIDTH-1:0] D;
output [WIDTH-1:0] Q;
assign D = Q;
endmodule
// --------------------------------------------------------
module \$dff (CLK, D, Q);
parameter WIDTH = 0;