aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/xilinx/macc.v6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/xilinx/macc.v b/tests/xilinx/macc.v
index c6ad2a578..5dc99ab8e 100644
--- a/tests/xilinx/macc.v
+++ b/tests/xilinx/macc.v
@@ -61,10 +61,12 @@ always @(posedge clk) begin
// Store accumulation result into a register
adder_out <= adder_out + mult_reg;
end
- if (rst) begin
+ if (rst) begin
+ a_reg <= 0;
+ b_reg <= 0;
mult_reg <= 0;
adder_out <= 0;
- end
+ end
end
// Output accumulation result