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

module fp_mul
(
	input  logic clk,

	input  fp    a,
	             b,
	input  logic stall,

	output fp    q
);

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

endmodule