From dc8cbe76d180b36e88b2e2594d99b912838a810d Mon Sep 17 00:00:00 2001 From: Peter-Herrmann Date: Tue, 5 Sep 2023 10:44:52 -0700 Subject: [PATCH] New verilator linting for NEWERSTD --- wishbone/wb_to_obi.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wishbone/wb_to_obi.v b/wishbone/wb_to_obi.v index cb14692..3c7c16f 100644 --- a/wishbone/wb_to_obi.v +++ b/wishbone/wb_to_obi.v @@ -50,12 +50,12 @@ module wb_to_obi ( // Read transaction tracker always @(posedge clk_i) begin if (wb_rst_i) - read_outstanding <= '0; + read_outstanding <= 'b0; else begin if (read_outstanding && (rvalid_i && !read_accepted_a)) - read_outstanding <= '0; + read_outstanding <= 'b0; if (!read_outstanding && read_accepted_a) - read_outstanding <= '0; + read_outstanding <= 'b0; end end