hello arty part 3
Signed-off-by: Joshua Fife <jpfife17@gmail.com>
This commit is contained in:
parent
5311e553ab
commit
e528fbd7a2
|
@ -117,6 +117,12 @@ if [ "$fpga_family" = "xc7" ]; then
|
|||
"hello-j")
|
||||
snippets="${activate_env} projf-makefiles/hello/hello-arty/J/README.rst:hello-arty-J"
|
||||
;;
|
||||
"hello-k")
|
||||
snippets="${activate_env} projf-makefiles/hello/hello-arty/K/README.rst:hello-arty-K"
|
||||
;;
|
||||
"hello-l")
|
||||
snippets="${activate_env} projf-makefiles/hello/hello-arty/L/README.rst:hello-arty-L"
|
||||
;;
|
||||
*)
|
||||
echo "ERROR: Unknown example name: $example" >&2
|
||||
exit 1
|
||||
|
|
|
@ -17,7 +17,9 @@ examples = [
|
|||
"hello-g",
|
||||
"hello-h",
|
||||
"hello-i",
|
||||
"hello-j"
|
||||
"hello-j",
|
||||
"hello-k",
|
||||
"hello-l"
|
||||
]
|
||||
|
||||
jobs = []
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
current_dir := ${CURDIR}
|
||||
proj_f_dir := ${current_dir}/../../../../third_party/projf-explore/hello/hello-arty/K
|
||||
|
||||
TOP := top
|
||||
SOURCES := ${proj_f_dir}/*.sv
|
||||
XDC := ${proj_f_dir}/arty.xdc
|
||||
|
||||
include ${current_dir}/../../../../common/Makefile
|
|
@ -0,0 +1,16 @@
|
|||
Part 3 Design K
|
||||
===============
|
||||
|
||||
This is the first part of the traffic light example from project F.
|
||||
To build this design run the following command in the main symbiflow directory:
|
||||
|
||||
.. code:: bash
|
||||
:name: hello-arty-K
|
||||
|
||||
TARGET="arty_35" make -C projf-makefiles/hello/hello-arty/K"
|
||||
|
||||
You can then download the bitstream by running:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
TARGET="arty_35" make download -C projf-makefiles/hello/hello-arty/K"
|
|
@ -0,0 +1,8 @@
|
|||
current_dir := ${CURDIR}
|
||||
proj_f_dir := ${current_dir}/../../../../third_party/projf-explore/hello/hello-arty/L
|
||||
|
||||
TOP := top
|
||||
SOURCES := ${proj_f_dir}/*.sv
|
||||
XDC := ${proj_f_dir}/arty.xdc
|
||||
|
||||
include ${current_dir}/../../../../common/Makefile
|
|
@ -0,0 +1,16 @@
|
|||
Part 3 Design L
|
||||
===============
|
||||
|
||||
This is the second part of the traffic light example from project F.
|
||||
To build this design run the following command in the main symbiflow directory:
|
||||
|
||||
.. code:: bash
|
||||
:name: hello-arty-L
|
||||
|
||||
TARGET="arty_35" make -C projf-makefiles/hello/hello-arty/L"
|
||||
|
||||
You can then download the bitstream by running:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
TARGET="arty_35" make download -C projf-makefiles/hello/hello-arty/L"
|
Loading…
Reference in New Issue