From be14e88d5f3ce8da5d6f0ad4c55126d4b6fa2a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Str=C3=B6mbergson?= Date: Mon, 8 Jul 2024 14:26:59 +0200 Subject: [PATCH] fpga: Always allow access to SPI-master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joachim Strömbergson --- hw/application_fpga/core/tk1/rtl/tk1.v | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/hw/application_fpga/core/tk1/rtl/tk1.v b/hw/application_fpga/core/tk1/rtl/tk1.v index 2784afd..77d05d7 100644 --- a/hw/application_fpga/core/tk1/rtl/tk1.v +++ b/hw/application_fpga/core/tk1/rtl/tk1.v @@ -385,12 +385,13 @@ module tk1( //---------------------------------------------------------------- always @* begin : spi_access_control - if ((cpu_valid & cpu_instr) & (cpu_addr[31 : 30] == ROM_PREFIX)) begin - spi_access_ok = 1'h1; - end - else begin - spi_access_ok = 1'h0; - end + spi_access_ok = 1'h1; +// if ((cpu_valid & cpu_instr) & (cpu_addr[31 : 30] == ROM_PREFIX)) begin +// spi_access_ok = 1'h1; +// end +// else begin +// spi_access_ok = 1'h0; +// end end