Skip to content

Commit

Permalink
New verilator linting for NEWERSTD
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter-Herrmann committed Sep 5, 2023
1 parent 65030fd commit dc8cbe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wishbone/wb_to_obi.v
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit dc8cbe7

Please sign in to comment.