Skip to content

Commit a98e799

Browse files
author
pascalgouedo
authored
Merge pull request #99 from gregdavill/fix_lost_semicolon
Fix erroneous trailing semicolon
2 parents 566282b + 8d1334b commit a98e799

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fpnew_divsqrt_multi.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ module fpnew_divsqrt_multi #(
207207
// Valid synch with other lanes
208208
// When one divsqrt unit completes an operation, keep its done high, waiting for the other lanes
209209
// As soon as all the lanes are over, we can clear this FF and start with a new operation
210-
`FFLARNC(unit_done_q, unit_done, unit_done, simd_synch_done, 1'b0, clk_i, rst_ni);
210+
`FFLARNC(unit_done_q, unit_done, unit_done, simd_synch_done, 1'b0, clk_i, rst_ni)
211211
// Tell the other units that this unit has finished now or in the past
212212
assign divsqrt_done_o = (unit_done_q | unit_done) & result_vec_op_q;
213213

0 commit comments

Comments
 (0)