HDLRuby 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.html +3648 -1827
- data/README.md +7 -3
- data/lib/HDLRuby/hdrcc.rb +1 -1
- data/lib/HDLRuby/version.rb +1 -1
- data/tuto/tutorial_sw.html +2407 -698
- metadata +2 -2
data/README.md
CHANGED
|
@@ -7,9 +7,13 @@ __Note__:
|
|
|
7
7
|
|
|
8
8
|
If you are new to HDLRuby, it is recommended that you consult first the following tutorial (even if you are a hardware person):
|
|
9
9
|
|
|
10
|
-
* [HDLRuby tutorial for software people](tuto/tutorial_sw.md) [md]
|
|
10
|
+
* [HDLRuby tutorial for software people](https://github.com/civol/HDLRuby/blob/master/tuto/tutorial_sw.md) [md]
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
And if you want an html version the following command with create a `tuto` folder containing all the required files, then just open `tuto/tutorial_sw.html`:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
hdrcc --get-tuto
|
|
16
|
+
```
|
|
13
17
|
|
|
14
18
|
__What's new__
|
|
15
19
|
|
|
@@ -70,7 +74,7 @@ gem install HDLRuby
|
|
|
70
74
|
Developers willing to contribute to HDLRuby can install the sources from GitHub as follows:
|
|
71
75
|
|
|
72
76
|
```
|
|
73
|
-
git clone HDLRuby
|
|
77
|
+
git clone https://github.com/civol/HDLRuby.git
|
|
74
78
|
```
|
|
75
79
|
|
|
76
80
|
__Warning__:
|
data/lib/HDLRuby/hdrcc.rb
CHANGED
|
@@ -500,7 +500,7 @@ $optparse = OptionParser.new do |opts|
|
|
|
500
500
|
exit
|
|
501
501
|
end
|
|
502
502
|
opts.on("--get-tuto", "Copy the tutorial directory (tuto) to current one, then exit") do
|
|
503
|
-
FileUtils.copy_entry(File.dirname(__FILE__) + "
|
|
503
|
+
FileUtils.copy_entry(File.dirname(__FILE__) + "/../../tuto","./tuto")
|
|
504
504
|
exit
|
|
505
505
|
end
|
|
506
506
|
opts.on("--version", "Show the version of HDLRuby, then exit") do |v|
|
data/lib/HDLRuby/version.rb
CHANGED