mirror of
https://github.com/YosysHQ/picorv32.git
synced 2025-01-03 03:43:38 -05:00
6 lines
198 B
Bash
6 lines
198 B
Bash
#!/bin/bash
|
|
set -ex
|
|
echo -n > firmware.hex
|
|
yosys -l synth.log -p 'synth_ice40 -top top -blif synth.blif' ../../picorv32.v top.v
|
|
arachne-pnr -d 8k -o synth.txt synth.blif
|
|
icepack synth.txt synth.bin
|