17 lines
643 B
Bash
Executable File
17 lines
643 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
rm -f picorv32.v attosoc.v
|
|
wget https://raw.githubusercontent.com/cliffordwolf/picorv32/master/picorv32.v
|
|
wget https://raw.githubusercontent.com/SymbiFlow/prjtrellis/master/examples/picorv32_versa5g/attosoc.v
|
|
ln -sf firmware_fast.hex firmware.hex
|
|
yosys attosoc.ys
|
|
set +e
|
|
../nextpnr-xc7 --json attosoc.json --xdl attosoc.xdl --pcf attosoc.pcf --freq 125
|
|
set -e
|
|
xdl -xdl2ncd attosoc.xdl
|
|
#bitgen -w attosoc.ncd -g UnconstrainedPins:Allow
|
|
trce attosoc.ncd -v 10
|
|
|
|
netgen -sim -ofmt vhdl attosoc.ncd -w attosoc_pnr.vhd
|
|
ghdl -c -fexplicit --no-vital-checks --ieee=synopsys -Pxilinx-ise attosoc_tb.vhd attosoc_pnr.vhd -r testbench
|