mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-31 23:34:57 +00:00
Progress in SMV back-end
This commit is contained in:
parent
8e84418225
commit
8a86162ae9
4 changed files with 147 additions and 24 deletions
19
tests/smv/run-test.sh
Executable file
19
tests/smv/run-test.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -ex
|
||||
|
||||
rm -rf temp
|
||||
mkdir -p temp
|
||||
|
||||
../../yosys -p 'test_cell -muxdiv -w temp/test all'
|
||||
rm -f temp/test_{alu,fa,lcu,lut,macc}_*
|
||||
|
||||
cat > temp/makefile << "EOT"
|
||||
all: $(addsuffix .ok,$(basename $(wildcard temp/test_*.il)))
|
||||
%.ok: %.il
|
||||
bash run-single.sh $(basename $<)
|
||||
touch $@
|
||||
EOT
|
||||
|
||||
${MAKE:-make} -f temp/makefile
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue