aboutsummaryrefslogtreecommitdiffstats
path: root/spi_master_ss_template.v
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2023-04-20 16:23:23 +0000
committerGravatar Peter McGoron 2023-04-20 16:23:23 +0000
commit2119ec275bf51fbc393f352618e1aa3d23f4104f (patch)
treeb39d2f504ab06a94d96f6c95c936e788b26f227c /spi_master_ss_template.v
parentmetastability comment (diff)
add ready_to_arm to indiciate when the module can accept another command
Diffstat (limited to 'spi_master_ss_template.v')
-rw-r--r--spi_master_ss_template.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/spi_master_ss_template.v b/spi_master_ss_template.v
index e2e0cc4..f231f70 100644
--- a/spi_master_ss_template.v
+++ b/spi_master_ss_template.v
@@ -27,6 +27,7 @@ module `SPI_MASTER_SS_NAME
`endif
output sck_wire,
output finished,
+ output ready_to_arm,
output ss_L,
input arm
);
@@ -54,6 +55,7 @@ assign ss_L = !ss;
`endif
.sck_wire(sck_wire),
.finished(finished),
+ .ready_to_arm(ready_to_arm),
.arm(arm_master)
);