2018-12-01 09:06:55 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#set -ex
|
|
|
|
#rm -f picorv32.v
|
|
|
|
#wget https://raw.githubusercontent.com/cliffordwolf/picorv32/master/picorv32.v
|
|
|
|
yosys attosoc.ys
|
2018-12-03 07:40:20 +08:00
|
|
|
../nextpnr-xc7 --json attosoc.json --xdl attosoc.xdl --pcf attosoc.pcf --freq 150 |& tee attosoc.log
|
2018-12-01 09:06:55 +08:00
|
|
|
xdl -xdl2ncd attosoc.xdl
|
|
|
|
bitgen -w attosoc.ncd -g UnconstrainedPins:Allow
|
|
|
|
trce attosoc.ncd -v 10
|
|
|
|
|
2018-12-03 07:40:20 +08:00
|
|
|
netgen -sim -ofmt vhdl attosoc.ncd -w attosoc_pnr.vhd
|
2018-12-01 09:06:55 +08:00
|
|
|
ghdl -c -fexplicit --no-vital-checks --ieee=synopsys -Pxilinx-ise attosoc_tb.vhd attosoc_pnr.vhd -r testbench
|