axi_tdl 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/lib/axi_tdl.rb +8 -0
- data/lib/axi_tdl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6cac6e22403b945fe5137b685bcbc6e5d2ddf41e042898173155d5460fa9b597
|
4
|
+
data.tar.gz: e2555a38619971c23f88152e8403f614cf4bfeee60aa439b523e150de1deecf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7717a76f4d3de9ca88111b10ebe87f14a32963c50436e008db6c1369cd0668e3cc7d08319bc78bfd82f69a9ba7ca0c04cddeefda156c4cdeb4fec0e8db15f11e
|
7
|
+
data.tar.gz: 29635d1da9becf98dd5c6e0d58e02763353e82aac96dab7b10c3760657769adc29613983066a730d5ba322478068f07ea0e97eccdb56433bb80f8ff1ed330db6
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/lib/axi_tdl.rb
CHANGED
@@ -5,3 +5,11 @@ module AxiTdl
|
|
5
5
|
AXI_PATH = File.expand_path(File.join(__dir__,"axi"))
|
6
6
|
TDL_PATH = File.expand_path(File.join(__dir__,"tdl"))
|
7
7
|
end
|
8
|
+
|
9
|
+
|
10
|
+
add_to_tdl_paths File.expand_path(File.join(__dir__, "axi/AXI_stream"))
|
11
|
+
add_to_tdl_paths File.expand_path(File.join(__dir__, "axi/AXI_stream/stream_cache"))
|
12
|
+
add_to_tdl_paths File.expand_path(File.join(__dir__, "axi/AXI4"))
|
13
|
+
add_to_tdl_paths File.expand_path(File.join(__dir__, "axi/AXI4/packet_partition"))
|
14
|
+
add_to_tdl_paths File.expand_path(File.join(__dir__, "axi/common"))
|
15
|
+
add_to_tdl_paths File.expand_path(File.join(__dir__, "axi/data_interface"))
|
data/lib/axi_tdl/version.rb
CHANGED