From 018b7a3fcf0377aaa0d940d36852433401bbe316 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Fri, 6 Jun 2025 16:37:26 -0400 Subject: [PATCH] minor change: revised directory structure, added MIT license --- LICENSE | 7 +++++++ {fabric/src => src/fabric}/.gitignore | 0 {fabric/src => src/fabric}/hub.sv | 0 {fabric/src => src/fabric}/interface.sv | 0 {fabric/src => src/fabric}/params.svh | 0 {fabric/src => src/fabric}/routing.svh | 0 {fabric/src => src/fabric}/tb.sv | 0 7 files changed, 7 insertions(+) create mode 100644 LICENSE rename {fabric/src => src/fabric}/.gitignore (100%) rename {fabric/src => src/fabric}/hub.sv (100%) rename {fabric/src => src/fabric}/interface.sv (100%) rename {fabric/src => src/fabric}/params.svh (100%) rename {fabric/src => src/fabric}/routing.svh (100%) rename {fabric/src => src/fabric}/tb.sv (100%) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..db618b3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright 2025 Peisong Xiao + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/fabric/src/.gitignore b/src/fabric/.gitignore similarity index 100% rename from fabric/src/.gitignore rename to src/fabric/.gitignore diff --git a/fabric/src/hub.sv b/src/fabric/hub.sv similarity index 100% rename from fabric/src/hub.sv rename to src/fabric/hub.sv diff --git a/fabric/src/interface.sv b/src/fabric/interface.sv similarity index 100% rename from fabric/src/interface.sv rename to src/fabric/interface.sv diff --git a/fabric/src/params.svh b/src/fabric/params.svh similarity index 100% rename from fabric/src/params.svh rename to src/fabric/params.svh diff --git a/fabric/src/routing.svh b/src/fabric/routing.svh similarity index 100% rename from fabric/src/routing.svh rename to src/fabric/routing.svh diff --git a/fabric/src/tb.sv b/src/fabric/tb.sv similarity index 100% rename from fabric/src/tb.sv rename to src/fabric/tb.sv