mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 13:34:28 +00:00
Modified invalid plic reads to return 0 rather than deadbeaf.
This commit is contained in:
parent
d0afa397ba
commit
192392b524
@ -139,7 +139,7 @@ module plic (
|
||||
Dout <= #1 {26'b0,intClaim};
|
||||
intInProgress <= #1 intInProgress | (4'b1 << (intClaim-1)); // claimed requests are currently in progress of being serviced until they are completed
|
||||
end
|
||||
default: Dout <= #1 32'hdeadbeef; // invalid access
|
||||
default: Dout <= #1 32'h0; // invalid access
|
||||
endcase
|
||||
else
|
||||
Dout <= #1 32'h0;
|
||||
|
Loading…
Reference in New Issue
Block a user