Test *.aag too, by using *.aig as reference
[yosys.git] / tests / lut / map_not.v
1 module top(...);
2 input a;
3 output y;
4 assign y = ~a;
5 endmodule