From 14d4211318143d20f993e74d0b1db5055eff9d70 Mon Sep 17 00:00:00 2001 From: Andreas Kurth Date: Wed, 20 Mar 2019 08:12:59 +0100 Subject: [PATCH] id_queue: :art: Improve style guide compliance --- src/id_queue.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/id_queue.sv b/src/id_queue.sv index fea26b3c..c432af4b 100644 --- a/src/id_queue.sv +++ b/src/id_queue.sv @@ -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;