mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 20:18:20 +00:00
Problems/questions: - memory.ys: ERROR: Failed to import cell gate.mem.0.0.0 (type EG_LOGIC_DRAM16X4) to SAT database. Why EG_LOGIC_DRAM16X4, not AL_LOGIC_BRAM? - Internal cell type $_TBUF_ is present.
21 lines
447 B
Bash
Executable file
21 lines
447 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
{
|
|
echo "all::"
|
|
for x in *.ys; do
|
|
echo "all:: run-$x"
|
|
echo "run-$x:"
|
|
echo " @echo 'Running $x..'"
|
|
echo " @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'"
|
|
done
|
|
for s in *.sh; do
|
|
if [ "$s" != "run-test.sh" ]; then
|
|
echo "all:: run-$s"
|
|
echo "run-$s:"
|
|
echo " @echo 'Running $s..'"
|
|
echo " @bash $s"
|
|
fi
|
|
done
|
|
} > run-test.mk
|
|
exec ${MAKE:-make} -f run-test.mk
|