Remove DSP

main
xenia 2024-01-21 22:59:54 +01:00
parent f475483803
commit 3d09ba0dbd
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
synth = pkgs.runCommandCC "synth" {} ''
mkdir -p "$out"
find ${./src} -name '*.v' -exec ${yosys}/bin/yosys -f ' -sv' -Q -p "synth_ice40 -top topmost -json $out/synth.json -dsp" {} +
find ${./src} -name '*.v' -exec ${yosys}/bin/yosys -f ' -sv' -Q -p "synth_ice40 -top topmost -json $out/synth.json" {} +
'';
pnr-interactive = pkgs.writeScriptBin "pnr-interactive" ''