mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-09 11:11:27 +00:00
10 lines
491 B
Bash
10 lines
491 B
Bash
set -euo pipefail
|
|
YS=../../yosys
|
|
|
|
mkdir -p temp
|
|
|
|
$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
|