mirror of https://github.com/openXC7/prjxray.git
18 lines
315 B
Bash
18 lines
315 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
. ../../utils/genheader.sh
|
|
|
|
#echo '`define SEED 32'"'h$(echo $1 | md5sum | cut -c1-8)" > setseed.vh
|
|
|
|
python3 ../top.py >top.v
|
|
vivado -mode batch -source ../generate.tcl
|
|
|
|
for x in design*.bit; do
|
|
../../../build/tools/bitread -F $XRAY_ROI_FRAMES -o ${x}s -z -y $x
|
|
done
|
|
|
|
python3 ../generate.py
|
|
|