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:
parent
600c6cb013
commit
c3e779a65f
5 changed files with 19 additions and 5 deletions
|
@ -25,6 +25,12 @@
|
|||
*
|
||||
*/
|
||||
|
||||
module \$_BUF_ (A, Y);
|
||||
input A;
|
||||
output Y;
|
||||
assign Y = A;
|
||||
endmodule
|
||||
|
||||
module \$_NOT_ (A, Y);
|
||||
input A;
|
||||
output Y;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue