aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/fpga_mkm_spi_slave.v
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@assured.se>2019-04-09 16:10:55 +0200
committerJoachim StroĢˆmbergson <joachim@assured.se>2019-04-09 16:10:55 +0200
commit3ad18f9945aa0f6a617fcd399a0a402db9a28027 (patch)
treee66b89f7c9cdaba9d1130a5332fb44e629c5f26b /src/rtl/fpga_mkm_spi_slave.v
parent485b5c0316062d5ce7334ed224cc9df242123a32 (diff)
Adding inital tb for the SPI slave. Debugging the SPI slave and the FPGA_MKM.
Diffstat (limited to 'src/rtl/fpga_mkm_spi_slave.v')
-rw-r--r--src/rtl/fpga_mkm_spi_slave.v5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rtl/fpga_mkm_spi_slave.v b/src/rtl/fpga_mkm_spi_slave.v
index 1449af2..9a59f9e 100644
--- a/src/rtl/fpga_mkm_spi_slave.v
+++ b/src/rtl/fpga_mkm_spi_slave.v
@@ -59,8 +59,9 @@ module fpga_mkm_spi_slave(
output wire rx_byte_available,
output wire [7 : 0] rx_byte,
- input wire tx_byte_load,
- input wire [7 : 0] tx_byte
+ input wire tx_byte_available,
+ input wire [7 : 0] tx_byte,
+ output wire tx_byte_ack
);