2024-02-01 13:08:55 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
../../yosys -p "
|
|
|
|
read_verilog -formal -DFAST clk2fflogic_effects.sv
|
|
|
|
hierarchy -top top; proc;;
|
2024-02-10 15:09:54 -06:00
|
|
|
tee -o clk2fflogic_effects.sim.log sim -fst clk2fflogic_effects.sim.fst -q -n 16
|
2024-02-01 13:08:55 -06:00
|
|
|
"
|
|
|
|
|
|
|
|
../../yosys -p "
|
|
|
|
read_verilog -formal -DFAST clk2fflogic_effects.sv
|
|
|
|
hierarchy -top top; proc;;
|
|
|
|
clk2fflogic;;
|
|
|
|
|
2024-02-10 15:09:54 -06:00
|
|
|
tee -o clk2fflogic_effects.clk2fflogic.log sim -fst clk2fflogic_effects.clk2fflogic.fst -q -n 16
|
2024-02-01 13:08:55 -06:00
|
|
|
"
|
|
|
|
|
|
|
|
iverilog -g2012 -o clk2fflogic_effects.iv.out clk2fflogic_effects.sv
|
|
|
|
|
|
|
|
./clk2fflogic_effects.iv.out > clk2fflogic_effects.iv.log
|
|
|
|
|
|
|
|
sort clk2fflogic_effects.iv.log > clk2fflogic_effects.iv.sorted.log
|
2024-02-10 15:07:55 -06:00
|
|
|
tail -n +3 clk2fflogic_effects.sim.log | sort > clk2fflogic_effects.sim.sorted.log
|
|
|
|
tail -n +3 clk2fflogic_effects.clk2fflogic.log | sort > clk2fflogic_effects.clk2fflogic.sorted.log
|
2024-02-01 13:08:55 -06:00
|
|
|
|
|
|
|
cmp clk2fflogic_effects.iv.sorted.log clk2fflogic_effects.sim.sorted.log
|
|
|
|
cmp clk2fflogic_effects.iv.sorted.log clk2fflogic_effects.clk2fflogic.sorted.log
|