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

WIP aditional DFF primitives

This commit is contained in:
Pepijn de Vos 2019-09-05 19:12:47 +02:00
parent 47374a495d
commit 5168b6ffa4
2 changed files with 48 additions and 1 deletions

View file

@ -62,6 +62,8 @@ module DFFR (output reg Q, input D, CLK, RESET);
end
endmodule // DFFR (positive clock edge; synchronous reset)
// TODO add more DFF sim cells
module VCC(output V);
assign V = 1;
endmodule