From d7f66bfe3dbf27b5637a4a306dfb885718070090 Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Thu, 20 Apr 2023 19:10:45 +0000 Subject: [PATCH] v0.3 --- spi_master.v | 2 +- spi_master_ss_template.v | 5 +++++ spi_slave.v | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/spi_master.v b/spi_master.v index d1cf9e4..0ea7e0b 100644 --- a/spi_master.v +++ b/spi_master.v @@ -1,4 +1,4 @@ -/* (c) Peter McGoron 2022 v0.2 +/* (c) Peter McGoron 2022 v0.3 * This Source Code Form is subject to the terms of the Mozilla Public * License, v.2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. diff --git a/spi_master_ss_template.v b/spi_master_ss_template.v index 6e4b970..8b3d0e7 100644 --- a/spi_master_ss_template.v +++ b/spi_master_ss_template.v @@ -1,3 +1,8 @@ +/* (c) Peter McGoron 2022 v0.3 + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v.2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ /* spi master with integrated ability to wait a certain amount of cycles * after activating SS. */ diff --git a/spi_slave.v b/spi_slave.v index de30a02..435c59a 100644 --- a/spi_slave.v +++ b/spi_slave.v @@ -1,4 +1,4 @@ -/* (c) Peter McGoron 2022 v0.2 +/* (c) Peter McGoron 2022 v0.3 * This Source Code Form is subject to the terms of the Mozilla Public * License, v.2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/.