2025-09-02 19:56:28 +02:00
|
|
|
set -euo pipefail
|
|
|
|
|
YS=../../yosys
|
|
|
|
|
|
2025-09-02 20:36:31 +02:00
|
|
|
mkdir -p temp
|
2025-09-02 19:56:28 +02:00
|
|
|
|
2025-09-02 20:36:31 +02:00
|
|
|
$YS -p "read_verilog -sv everything.v; write_rtlil temp/roundtrip-design-push.il; design -push; design -pop; write_rtlil temp/roundtrip-design-pop.il"
|
|
|
|
|
diff temp/roundtrip-design-push.il temp/roundtrip-design-pop.il
|
|
|
|
|
|
|
|
|
|
$YS -p "read_verilog -sv everything.v; write_rtlil temp/roundtrip-design-save.il; design -save foo; design -load foo; write_rtlil temp/roundtrip-design-load.il"
|
|
|
|
|
diff temp/roundtrip-design-save.il temp/roundtrip-design-load.il
|