summaryrefslogtreecommitdiff
path: root/rtl/gfx/gfx_fp_mul.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/gfx/gfx_fp_mul.sv')
-rw-r--r--rtl/gfx/gfx_fp_mul.sv41
1 files changed, 0 insertions, 41 deletions
diff --git a/rtl/gfx/gfx_fp_mul.sv b/rtl/gfx/gfx_fp_mul.sv
deleted file mode 100644
index 7ff3c02..0000000
--- a/rtl/gfx/gfx_fp_mul.sv
+++ /dev/null
@@ -1,41 +0,0 @@
-`include "gfx/gfx_defs.sv"
-
-module gfx_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),
- .*
- );
-`else
- fp a_pop, b_pop;
-
- assign q = $c("taller::fp_mul(", a_pop, ", ", b_pop, ")");
-
- gfx_pipes #(.WIDTH($bits(a)), .DEPTH(`FP_MUL_STAGES)) a_pipes
- (
- .in(a),
- .out(a_pop),
- .*
- );
-
- gfx_pipes #(.WIDTH($bits(b)), .DEPTH(`FP_MUL_STAGES)) b_pipes
- (
- .in(b),
- .out(b_pop),
- .*
- );
-`endif
-
-endmodule