yosys/manual/PRESENTATION_ExAdv/addshift_test.v

6 lines
102 B
Coq
Raw Normal View History

2014-02-18 12:37:39 -06:00
module test (A, B, X, Y);
input [7:0] A, B;
output [7:0] X = A + B;
output [7:0] Y = A + A;
endmodule