mirror of https://github.com/openXC7/prjxray.git
Move simple/ to fuzzers/example/
Signed-off-by: Clifford Wolf <clifford@clifford.at> Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
parent
18bdd5a1f3
commit
3dc1586252
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -ex
|
||||
|
||||
source ../settings.sh
|
||||
source ../../settings.sh
|
||||
|
||||
cat > design.xdc << EOT
|
||||
set_property -dict {PACKAGE_PIN $XRAY_PIN_00 IOSTANDARD LVCMOS33} [get_ports clk]
|
||||
|
|
@ -69,9 +69,9 @@ EOT
|
|||
rm -rf design design.log
|
||||
vivado -nojournal -log design.log -mode batch -source design.tcl
|
||||
|
||||
#../tools/bitread -o design_roi.bits -zy < design_roi_partial.bit
|
||||
../tools/bitread -F $XRAY_ROI_FRAMES -o design.bits -zy < design.bit
|
||||
#../../tools/bitread -o design_roi.bits -zy < design_roi_partial.bit
|
||||
../../tools/bitread -F $XRAY_ROI_FRAMES -o design.bits -zy < design.bit
|
||||
|
||||
python3 segdata.py
|
||||
../tools/segmatch < segdata.txt > database.txt
|
||||
../../tools/segmatch < segdata.txt > database.txt
|
||||
|
||||
|
|
@ -11,7 +11,7 @@ luts = dict()
|
|||
carry = dict()
|
||||
|
||||
print("Loading grid.")
|
||||
with open("../gridinfo/grid-%s-db.json" % os.getenv("XRAY_PART"), "r") as f:
|
||||
with open("../../gridinfo/grid-%s-db.json" % os.getenv("XRAY_PART"), "r") as f:
|
||||
grid = json.load(f)
|
||||
|
||||
print("Loading bits.")
|
||||
|
|
@ -61,7 +61,7 @@ with open("carrydata.txt", "r") as f:
|
|||
#################################################
|
||||
# Group per Segment
|
||||
|
||||
print("Pivot segment data.")
|
||||
print("Compile segment data.")
|
||||
|
||||
segments = dict()
|
||||
|
||||
Loading…
Reference in New Issue