mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
6 lines
127 B
Verilog
6 lines
127 B
Verilog
module test(A, B, C, Y1, Y2);
|
|
input [7:0] A, B, C;
|
|
output [7:0] Y1 = A * B;
|
|
output [15:0] Y2 = A * C;
|
|
endmodule
|