Improve igloo2 example
[yosys.git] / manual / PRESENTATION_ExSyn / opt_03.v
1 module test(input [3:0] A, B,
2 output [3:0] Y, Z);
3 assign Y = A + B, Z = B + A;
4 endmodule