mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Removed 'synth' into tests/memfile/run-test.sh
Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com>
This commit is contained in:
parent
9b49f1bc46
commit
8217f579b7
|
@ -6,24 +6,24 @@ cp content1.dat temp/content2.dat
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
echo "Running from the parent directory with content1.dat"
|
echo "Running from the parent directory with content1.dat"
|
||||||
../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"content1.dat\" memory; synth -top memory"
|
../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"content1.dat\" memory"
|
||||||
echo "Running from the parent directory with temp/content2.dat"
|
echo "Running from the parent directory with temp/content2.dat"
|
||||||
../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory; synth -top memory"
|
../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory"
|
||||||
echo "Running from the parent directory with memfile/temp/content2.dat"
|
echo "Running from the parent directory with memfile/temp/content2.dat"
|
||||||
../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"memfile/temp/content2.dat\" memory; synth -top memory"
|
../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"memfile/temp/content2.dat\" memory"
|
||||||
|
|
||||||
cd memfile
|
cd memfile
|
||||||
|
|
||||||
echo "Running from the same directory with content1.dat"
|
echo "Running from the same directory with content1.dat"
|
||||||
../../yosys -qp "read_verilog -defer memory.v; chparam -set MEMFILE \"content1.dat\" memory; synth -top memory"
|
../../yosys -qp "read_verilog -defer memory.v; chparam -set MEMFILE \"content1.dat\" memory"
|
||||||
echo "Running from the same directory with temp/content2.dat"
|
echo "Running from the same directory with temp/content2.dat"
|
||||||
../../yosys -qp "read_verilog -defer memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory; synth -top memory"
|
../../yosys -qp "read_verilog -defer memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory"
|
||||||
|
|
||||||
cd temp
|
cd temp
|
||||||
|
|
||||||
echo "Running from a child directory with content1.dat"
|
echo "Running from a child directory with content1.dat"
|
||||||
../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"content1.dat\" memory; synth -top memory"
|
../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"content1.dat\" memory"
|
||||||
echo "Running from a child directory with temp/content2.dat"
|
echo "Running from a child directory with temp/content2.dat"
|
||||||
../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory; synth -top memory"
|
../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory"
|
||||||
echo "Running from a child directory with content2.dat"
|
echo "Running from a child directory with content2.dat"
|
||||||
../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory; synth -top memory"
|
../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"temp/content2.dat\" memory"
|
||||||
|
|
Loading…
Reference in a new issue