3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-05 23:05:47 +00:00

Revert "Merge branch 'eddie/split_shiftx' into xc7mux"

This reverts commit 3042d58330, reversing
changes made to feff976454.
This commit is contained in:
Eddie Hung 2019-04-26 15:32:02 -07:00
parent 8469d9fe9f
commit dcc8a13e48
9 changed files with 14 additions and 158 deletions

View file

@ -453,7 +453,7 @@ Aig::Aig(Cell *cell)
int B = mk.inport("\\B");
int C = mk.inport("\\C");
int D = mk.inport("\\D");
int Y = mk.nand_gate(mk.or_gate(A, B), mk.or_gate(C, D));
int Y = mk.nand_gate(mk.nor_gate(A, B), mk.nor_gate(C, D));
mk.outport(Y, "\\Y");
goto optimize;
}