pico-ice-video/ice/mandelbrot/source/impl_1/multiplier.sv

11 lines
168 B
Systemverilog
Raw Permalink Normal View History

2024-10-06 04:18:41 +00:00
module multiplier
(
input wire clk,
2024-10-09 19:18:36 +00:00
input wire signed [15:0] a,
input wire signed [15:0] b,
output wire signed [31:0] product
2024-10-06 04:18:41 +00:00
);
2024-10-09 19:18:36 +00:00
assign product = a * b;
2024-10-06 04:18:41 +00:00
endmodule