Skip to content

Commit

Permalink
id_queue: 🎨 Improve style guide compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskurth authored and zarubaf committed Mar 20, 2019
1 parent 6d8bf21 commit 14d4211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/id_queue.sv
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ module id_queue #(
// The queue is full if and only if there are no free items in the linked data structure.
assign full = !(|linked_data_free);

assign inp_gnt_o = !full;
assign inp_gnt_o = ~full;
always_comb begin
match_id = 'x;
match_id_valid = 1'b0;
Expand Down

0 comments on commit 14d4211

Please sign in to comment.