xc7: add 100t counter test
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
parent
6550c5ddeb
commit
7ca8fe7611
|
@ -76,7 +76,8 @@ source "$INSTALL_DIR/conda/etc/profile.d/conda.sh"
|
||||||
conda activate xc7
|
conda activate xc7
|
||||||
git clone https://github.com/SymbiFlow/symbiflow-examples && cd symbiflow-examples
|
git clone https://github.com/SymbiFlow/symbiflow-examples && cd symbiflow-examples
|
||||||
# counter example
|
# counter example
|
||||||
pushd examples/xc7/counter_test && TARGET="arty" make && popd
|
pushd examples/xc7/counter_test && TARGET="arty_50" make && popd
|
||||||
|
pushd examples/xc7/counter_test && TARGET="arty_100" make && popd
|
||||||
pushd examples/xc7/counter_test && make clean && TARGET="basys3" make && popd
|
pushd examples/xc7/counter_test && make clean && TARGET="basys3" make && popd
|
||||||
# picosoc example
|
# picosoc example
|
||||||
pushd examples/xc7/picosoc_demo && make && popd
|
pushd examples/xc7/picosoc_demo && make && popd
|
||||||
|
|
|
@ -7,9 +7,13 @@ BITSTREAM_DEVICE := artix7
|
||||||
SDC:=${current_dir}/counter.sdc
|
SDC:=${current_dir}/counter.sdc
|
||||||
BUILDDIR:=build
|
BUILDDIR:=build
|
||||||
|
|
||||||
ifeq ($(TARGET),arty)
|
ifeq ($(TARGET),arty_50)
|
||||||
PARTNAME := xc7a35tcsg324-1
|
PARTNAME := xc7a35tcsg324-1
|
||||||
PCF:=${current_dir}/arty.pcf
|
PCF:=${current_dir}/arty.pcf
|
||||||
|
else ifeq ($(TARGET),arty_100)
|
||||||
|
PARTNAME:= xc7a100tcsg324-1
|
||||||
|
PCF:=${current_dir}/arty.pcf
|
||||||
|
DEVICE:= xc7a100t_test
|
||||||
else
|
else
|
||||||
PARTNAME:= xc7a35tcpg236-1
|
PARTNAME:= xc7a35tcpg236-1
|
||||||
PCF:=${current_dir}/basys3.pcf
|
PCF:=${current_dir}/basys3.pcf
|
||||||
|
|
Loading…
Reference in New Issue