Skip to content

Commit

Permalink
Update VectorDot.bsv
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeskinn40 authored Feb 28, 2024
1 parent ec4f4c6 commit 222fe32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions part_2_vector_multiply/VectorDot.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ module mkVectorDot (VD);
done_a <= False;
done_b <= False;
pos_out <= 0;
output_res <=0;
i <= zeroExtend(i_in); //i should be 3 bits so "zeroExtended" was called
output_res <=0; // "output_res" shoule be forced to equal zero
i <= zeroExtend(i_in); //"i" should be 3 bits so "zeroExtended" was called
endmethod

method ActionValue#(Bit#(32)) response() if (done_all);
Expand Down

0 comments on commit 222fe32

Please sign in to comment.