3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-20 10:10:23 +00:00

Add two new Liberty test cases

This commit is contained in:
Akash Levy 2024-10-05 01:33:56 -10:00
parent 654e92e04e
commit 4de5e718ed
6 changed files with 73 additions and 3 deletions

View file

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