summaryrefslogtreecommitdiff
path: root/rtl/gfx/fp_mul.sv
blob: c2f4e2a70ae115b8db9341406054c495c5068a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
`include "gfx/gfx_defs.sv"

module fp_mul
(
	input  logic clk,
	             rst_n,

	input  logic start,
	input  fp    a,
	             b,

	output logic done,
	output fp    q
);

	pipelined_flow #(.STAGES(`FP_MUL_STAGES)) stages
	(
		.*
	);

`ifndef VERILATOR
	ip_fp_mul ip_mul
	(
		.areset(0),
		.*
	);
`endif

endmodule