mirror of https://github.com/YosysHQ/picorv32.git
14 lines
462 B
Bash
14 lines
462 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
yosys -ql notrap_validop.yslog \
|
|
-p 'read_verilog -formal -norestrict -assume-asserts ../../picorv32.v' \
|
|
-p 'read_verilog -formal notrap_validop.v' \
|
|
-p 'prep -top testbench -nordff' \
|
|
-p 'write_smt2 -wires notrap_validop.smt2'
|
|
|
|
yosys-smtbmc -s yices -t 30 --dump-vcd output.vcd --dump-smtc output.smtc notrap_validop.smt2
|
|
yosys-smtbmc -s yices -i -t 30 --dump-vcd output.vcd --dump-smtc output.smtc notrap_validop.smt2
|
|
|