2018-06-26 19:08:28 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
NAME=${1%.v}
|
|
|
|
yosys -p "synth_ice40 -top top; write_json ${NAME}.json" $1
|
2018-06-26 22:04:10 +08:00
|
|
|
../../nextpnr-ice40 --json ${NAME}.json --pcf test.pcf --asc ${NAME}.asc --verbose
|
2018-06-26 22:23:10 +08:00
|
|
|
icebox_vlog -p test.pcf -L ${NAME}.asc > ${NAME}_out.v
|
2018-06-26 22:04:10 +08:00
|
|
|
iverilog -o ${NAME}_sim.out ${NAME}_tb.v ${NAME}_out.v
|
|
|
|
vvp ${NAME}_sim.out
|
2018-06-26 19:08:28 +08:00
|
|
|
|