Skip to content

Commit 26c504e

Browse files
committed
synth: Pass --ignore-assertions to yosys-slang
Signed-off-by: Martin Povišer <[email protected]>
1 parent 9f4795a commit 26c504e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flow/scripts/synth_preamble.tcl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ if {[env_var_exists_and_non_empty USE_YOSYS_SLANG] && !([file extension $::env(V
2727
# slang requires all files at once
2828
plugin -i slang
2929
yosys read_slang -D SYNTHESIS --keep-hierarchy --compat=vcs \
30-
{*}$vIdirsArgs {*}$::env(VERILOG_FILES)
30+
--ignore-assertions \
31+
{*}$vIdirsArgs {*}$::env(VERILOG_FILES)
3132
} else {
3233
foreach file $::env(VERILOG_FILES) {
3334
if {[file extension $file] == ".rtlil"} {

0 commit comments

Comments
 (0)