mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
21ad359673
fix the way the bus controller program worked, which generated evil inferred latches
14 lines
502 B
Bash
Executable file
14 lines
502 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# licence: GPLv3 or later
|
|
#
|
|
|
|
|
|
#yosys -p "synth_ecp5 -top saturn_core -json saturn_core.json" saturn_core.v
|
|
yosys make_saturn.ESP5.ys
|
|
YOSYS_STATUS=$?
|
|
echo "--------------------------------------------------------------------"
|
|
echo "YOSYS_STATUS ${YOSYS_STATUS}"
|
|
echo "--------------------------------------------------------------------"
|
|
|
|
nextpnr-ecp5 --gui --85k --speed 6 --freq 5 --lpf ulx3s_v20.lpf --textcfg empty_lfe5u-85f.config --json z_saturn_test.json --save z_saturn_test.ecp5
|