Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraembedded committed Jul 13, 2015
1 parent a6a2843 commit 5b7c54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spdif/rtl/spdif_core.v
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ begin
// Preamble bits?
if (bit_count_q < 6'd8)
begin
bit_r = preamble_q[bit_count_q];
bit_r = preamble_q[bit_count_q[2:0]];
end
// Normal timeslots
else if (bit_count_q < 6'd62)
Expand Down

0 comments on commit 5b7c54b

Please sign in to comment.