mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 11:55:52 +00:00
Fix existing tests/liberty tests, and add them to Makefile.
This commit is contained in:
parent
4610889d27
commit
bdcbbf2db6
10 changed files with 68 additions and 66 deletions
|
@ -2,5 +2,5 @@ module XNOR2X1 (B, A, Y);
|
|||
input B;
|
||||
input A;
|
||||
output Y;
|
||||
assign Y = !(B&!A|!B&A); // !(B&!A|!B&A)
|
||||
assign Y = !(B&!A|!B&A); // "!(B&!A|!B&A)"
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue