3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 09:55:20 +00:00
yosys/docs/resources/PRESENTATION_ExAdv/mymul_test.v
2023-08-07 12:58:40 +12:00

5 lines
83 B
Verilog

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