Skip to content

Commit 466685c

Browse files
committed
Version 0.3.3
1 parent 414db46 commit 466685c

File tree

195 files changed

+3195
-1713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+3195
-1713
lines changed

.gitignore

-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
docs/build
2-
docs/.eggs
3-
41
.python-version
52
local
63
pyenv
7-
8-
examples/fpga/*/*/*
9-
!examples/fpga/*/*/build.py
10-
!examples/fpga/*/*/Makefile
11-
examples/target/*/*/*
12-
!examples/target/*/*/io.partial
13-
!examples/target/*/*/Makefile

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
[submodule "yosys"]
88
path = yosys
99
url = https://github.com/YosysHQ/yosys.git
10+
[submodule "examples/target/sha256/sha256"]
11+
path = examples/target/sha256/sha256
12+
url = https://github.com/leon575777642/sha256.git

docs/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
.eggs

docs/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ BUILDDIR = build
1212
help:
1313
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
1414

15-
.PHONY: help Makefile
15+
# regenerate source
16+
update-source:
17+
rm -rf source/prga.py
18+
sphinx-apidoc -o source/prga.py -e -M ../prga.py/prga
19+
20+
.PHONY: help update-source Makefile
1621

1722
# Catch-all target: route all unknown targets to Sphinx using the new
1823
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).

docs/make.bat

-35
This file was deleted.

0 commit comments

Comments
 (0)