Rename nix targets
This commit is contained in:
parent
9c2d15e171
commit
65a0dccb33
24
flake.nix
24
flake.nix
|
@ -26,13 +26,13 @@
|
||||||
: 3 > $out
|
: 3 > $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
alu-sim = pkgs.runCommandCC "alu-sim" {} ''
|
alu-test = pkgs.runCommandCC "alu-sim" {} ''
|
||||||
${verilate-src "--cc --build --exe ./simulation/tester.cpp ./simulation/test_alu.cpp -top alu"}
|
${verilate-src "--cc --build --exe ./simulation/tester.cpp ./simulation/test_alu.cpp -top alu"}
|
||||||
mv obj_dir "$out"
|
mv obj_dir "$out"
|
||||||
mkdir "$out/bin" && cp "$out/Valu" "$out/bin/alu-sim"
|
mkdir "$out/bin" && cp "$out/Valu" "$out/bin/alu-test"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
alu-sim-trace = pkgs.runCommandCC "alu-sim-trace" {} ''
|
alu-test-trace = pkgs.runCommandCC "alu-sim-trace" {} ''
|
||||||
${verilate-src "--cc --build --exe --trace -CFLAGS -DTRACE=1 ./simulation/tester.cpp ./simulation/test_alu.cpp -top alu"}
|
${verilate-src "--cc --build --exe --trace -CFLAGS -DTRACE=1 ./simulation/tester.cpp ./simulation/test_alu.cpp -top alu"}
|
||||||
mv obj_dir "$out"
|
mv obj_dir "$out"
|
||||||
mkdir "$out/bin" && cp "$out/Valu" "$out/bin/alu-sim"
|
mkdir "$out/bin" && cp "$out/Valu" "$out/bin/alu-sim"
|
||||||
|
@ -41,13 +41,13 @@
|
||||||
chmod u+x $out/bin/alu-sim-trace
|
chmod u+x $out/bin/alu-sim-trace
|
||||||
'';
|
'';
|
||||||
|
|
||||||
alu-synth = pkgs.runCommandCC "alu-synth" {} ''
|
synth = pkgs.runCommandCC "synth" {} ''
|
||||||
mkdir -p "$out"
|
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 -dsp" {} +
|
||||||
'';
|
'';
|
||||||
|
|
||||||
alu-synth-view = pkgs.writeScriptBin "alu-synth-view" ''
|
pnr-interactive = pkgs.writeScriptBin "pnr-interactive" ''
|
||||||
${pkgs.nextpnrWithGui}/bin/nextpnr-ice40 --up5k --package sg48 --pcf ${./fpga-files/rot.pcf} --json ${alu-synth}/synth.json --gui
|
${pkgs.nextpnrWithGui}/bin/nextpnr-ice40 --up5k --package sg48 --pcf ${./fpga-files/rot.pcf} --json ${synth}/synth.json --gui
|
||||||
'';
|
'';
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -58,15 +58,13 @@
|
||||||
|
|
||||||
packages.lint = lint;
|
packages.lint = lint;
|
||||||
|
|
||||||
packages.alu-sim = alu-sim;
|
packages.alu-test = alu-test;
|
||||||
packages.alu-sim-trace = alu-sim-trace;
|
packages.alu-test-trace = alu-test-trace;
|
||||||
|
|
||||||
packages.alu-synth = alu-synth;
|
packages.synth = synth;
|
||||||
packages.alu-synth-view = alu-synth-view;
|
packages.pnr-interactive = pnr-interactive;
|
||||||
|
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell { packages = deps; };
|
||||||
packages = deps;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user