From 78918732a0579a12cd8f37e6ce68653f951eda63 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 508a80e..cc89eb9 100644 --- a/hw/application_fpga/core/tk1/rtl/tk1.v +++ b/hw/application_fpga/core/tk1/rtl/tk1.v @@ -396,12 +396,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