Skip to content

Commit

Permalink
[FPGA] Some latch fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elisabethumblet committed Jan 31, 2024
1 parent 10e2343 commit 94eddcd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hardware/src/lane/simd_mul.sv
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ module simd_mul import ara_pkg::*; import rvv_pkg::*; #(
end: gen_mul

always_comb begin : p_mul
// Default assignment
result_o = '0;
r = '0;
unique case (op)
// Single-Width integer multiply instructions
Expand Down Expand Up @@ -242,6 +244,8 @@ module simd_mul import ara_pkg::*; import rvv_pkg::*; #(
end : gen_mul

always_comb begin : p_mul
// Default assignment
result_o = '0;
r = '0;
unique case (op)
// Single-Width integer multiply instructions
Expand Down Expand Up @@ -282,6 +286,8 @@ module simd_mul import ara_pkg::*; import rvv_pkg::*; #(
end : gen_mul

always_comb begin : p_mul
// Default assignment
result_o = '0;
r = '0;
unique case (op)
// Single-Width integer multiply instructions
Expand Down

0 comments on commit 94eddcd

Please sign in to comment.