mirror of https://github.com/openXC7/prjxray.git
10 lines
267 B
Bash
Executable File
10 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
${XRAY_VIVADO} -mode batch -source ../runme.tcl
|
|
${XRAY_BITREAD} -F $XRAY_ROI_FRAMES -o design.bits -z -y design.bit
|
|
test -z "$(fgrep CRITICAL vivado.log)"
|
|
${XRAY_SEGPRINT} -z -D design.bits > design.txt
|
|
${XRAY_BIT2FASM} design.bit > design.fasm
|
|
|