1
0
mirror of synced 2026-04-25 20:02:10 +00:00
Files
YosysHQ.yosys/manual/PRESENTATION_ExAdv/mymul_test.v
2014-02-16 17:56:19 +01:00

5 lines
83 B
Verilog

module test(A, B, Y);
input [1:0] A, B;
output [1:0] Y = A * B;
endmodule