Skip to content

Commit

Permalink
Revert "peripheral control register file fix"
Browse files Browse the repository at this point in the history
This reverts commit 0690fff.
  • Loading branch information
Peter-Herrmann committed Nov 6, 2023
1 parent a6d4d79 commit e407fa4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ module PeriphControlRegFile #(
else begin
GNT <= 1'b1;
RVALID <= 1'b1;
if (REQ) begin
if (REQ && BE == 4'b1111) begin
if (ADDR >= STARTING_ADDR) begin
// RVALID <= 1'b1;
if (WRITE) begin
Expand Down Expand Up @@ -1348,6 +1348,7 @@ module PeriphControlRegFile #(
end
endcase
end
default: DOUT <= 0;
endcase
end
end
Expand Down

0 comments on commit e407fa4

Please sign in to comment.