Skip to content

Commit

Permalink
Merge pull request #99 from gregdavill/fix_lost_semicolon
Browse files Browse the repository at this point in the history
Fix erroneous trailing semicolon
  • Loading branch information
pascalgouedo authored Aug 30, 2023
2 parents 566282b + 8d1334b commit a98e799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fpnew_divsqrt_multi.sv
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ module fpnew_divsqrt_multi #(
// Valid synch with other lanes
// When one divsqrt unit completes an operation, keep its done high, waiting for the other lanes
// As soon as all the lanes are over, we can clear this FF and start with a new operation
`FFLARNC(unit_done_q, unit_done, unit_done, simd_synch_done, 1'b0, clk_i, rst_ni);
`FFLARNC(unit_done_q, unit_done, unit_done, simd_synch_done, 1'b0, clk_i, rst_ni)
// Tell the other units that this unit has finished now or in the past
assign divsqrt_done_o = (unit_done_q | unit_done) & result_vec_op_q;

Expand Down

0 comments on commit a98e799

Please sign in to comment.