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

Added $_BUF_ cell type

This commit is contained in:
Clifford Wolf 2014-10-03 10:12:28 +02:00
parent 600c6cb013
commit c3e779a65f
5 changed files with 19 additions and 5 deletions

View file

@ -25,6 +25,12 @@
*
*/
module \$_BUF_ (A, Y);
input A;
output Y;
assign Y = A;
endmodule
module \$_NOT_ (A, Y);
input A;
output Y;