Skip to content

Commit

Permalink
verilog only syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter-Herrmann committed Nov 4, 2023
1 parent c550b88 commit caebb92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wishbone/wb_to_obi.v
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ module wb_to_obi (
input [31:0] rdata_i
);

logic read_outstanding, write_completed, read_accepted_a, write_accepted_a;
reg read_outstanding, write_completed;
wire read_accepted_a, write_accepted_a;
assign read_accepted_a = (req_o && gnt_i) && !wbs_we_i;
assign write_accepted_a = (req_o && gnt_i) && wbs_we_i;

Expand Down

0 comments on commit caebb92

Please sign in to comment.