Remove cpu_valid from SPI access control condition

Signed-off-by: Joachim Strömbergson <joachim@assured.se>
This commit is contained in:
Joachim Strömbergson 2024-07-08 14:48:35 +02:00 committed by Daniel Jobson
parent 924e3af3f1
commit cb0117c449
No known key found for this signature in database
GPG Key ID: 3707A9DBF4BB8F1A

View File

@ -398,7 +398,7 @@ module tk1(
begin : spi_access_control
spi_access_ok = 1'h0;
if (cpu_valid & (cpu_addr[31 : 30] == ROM_PREFIX)) begin
if (cpu_addr[31 : 30] == ROM_PREFIX) begin
spi_access_ok = 1'h1;
end
end