3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-11 13:40:53 +00:00

Fix Liberty issue

This commit is contained in:
Akash Levy 2024-10-03 04:14:20 -07:00
parent dd487ca8a1
commit 654e92e04e
4 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,5 @@
module not_cell (A, Y);
input A;
output Y;
assign Y = !A[0]; // !A[0]
endmodule