Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strongly rewritten/reordered #3

Draft
wants to merge 23 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5295f81
Added the hdl directory with VHDL files
rodrigomelo9 Nov 26, 2021
d31ec03
vivado: rewritten (vlog.tcl is WIP)
rodrigomelo9 Nov 26, 2021
b0a7c0b
hdl: added Verilog files (WIP)
rodrigomelo9 Nov 26, 2021
340f4f6
vivado: finished vlog.tcl
rodrigomelo9 Nov 26, 2021
24c0f56
resources: submodule updated
rodrigomelo9 Nov 26, 2021
45500a4
hdl: removed (content already in the 'resources' submodule)
rodrigomelo9 Nov 26, 2021
9c3bd98
ghdl: added a VHDL example
rodrigomelo9 Nov 26, 2021
12d3c33
resources: submodule updated
rodrigomelo9 Nov 28, 2021
82a7744
ghdl: added the check of a CHARACTER generic and a README.md file wit…
rodrigomelo9 Nov 28, 2021
ca96bbc
vivado: added the check of a CHARACTER generic and a README.md file w…
rodrigomelo9 Nov 28, 2021
39b6fbe
resources: submodule updated
rodrigomelo9 Nov 28, 2021
c4e9629
yosys: added a Verilog example
rodrigomelo9 Nov 28, 2021
a599946
vivado: fixed Verilog example after changes into resources
rodrigomelo9 Nov 28, 2021
d3cacb7
ghdl: updated README.md
rodrigomelo9 Nov 28, 2021
ef5e009
Added clean.sh
rodrigomelo9 Nov 28, 2021
bca0b5a
openflow: removed ghdl.sh and yosys.sh
rodrigomelo9 Nov 29, 2021
1aa13e0
yosys: added vhdl.sh
rodrigomelo9 Nov 29, 2021
c3da521
openflow: flow.sh was split into yosys/icestorm and yosys/trellis
rodrigomelo9 Nov 29, 2021
42e0da8
ghdl: updated the employed Docker container
rodrigomelo9 Nov 30, 2021
6c08653
yosys: updated the employed Docker container
rodrigomelo9 Nov 30, 2021
98aa5cc
ghdl: added a more concise alternative
rodrigomelo9 Dec 12, 2021
263b9c8
ghdl-yosys: added
rodrigomelo9 Dec 12, 2021
abb22a7
resources: submodule updated
rodrigomelo9 May 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added clean.sh
  • Loading branch information
rodrigomelo9 committed Nov 29, 2021
commit ef5e009ae6f5c3573b2c9b2b62a9c6afcd000fac
9 changes: 9 additions & 0 deletions clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

set -e

for DIR in */ ; do
if test -f "$DIR/Makefile"; then
make -C $DIR clean
fi
done