summaryrefslogtreecommitdiff
path: root/rtl/gfx/fp_add.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/gfx/fp_add.sv')
-rw-r--r--rtl/gfx/fp_add.sv11
1 files changed, 2 insertions, 9 deletions
diff --git a/rtl/gfx/fp_add.sv b/rtl/gfx/fp_add.sv
index 6cf4874..fad4768 100644
--- a/rtl/gfx/fp_add.sv
+++ b/rtl/gfx/fp_add.sv
@@ -3,25 +3,18 @@
module fp_add
(
input logic clk,
- rst_n,
- input logic start,
input fp a,
b,
+ input logic stall,
- output logic done,
output fp q
);
- pipelined_flow #(.STAGES(`FP_ADD_STAGES)) stages
- (
- .*
- );
-
`ifndef VERILATOR
ip_fp_add ip_add
(
- .en(1),
+ .en(!stall),
.areset(0),
.*
);