yosys/docs/source/code_examples/techmap/sym_mul_cells.v

7 lines
134 B
Verilog
Raw Permalink Normal View History

2014-02-16 14:32:56 +01:00
module MYMUL(A, B, Y);
parameter WIDTH = 1;
input [WIDTH-1:0] A, B;
output [WIDTH-1:0] Y;
assign Y = A * B;
endmodule