Skip to content

Commit b2007fe

Browse files
authored
Merge pull request #403 from AYYAZmayo/main
Fix EDA-3186 wrong insertion of FCLK_BUF
2 parents b3ec8fd + 71e7305 commit b2007fe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/synth_rapidsilicon.cc

+7
Original file line numberDiff line numberDiff line change
@@ -5589,6 +5589,13 @@ static void show_sig(const RTLIL::SigSpec &sig)
55895589
}
55905590
continue;
55915591
}
5592+
if (portName == RTLIL::escape_id("FAST_CLK")) {
5593+
5594+
if (sig == actual) {
5595+
return true;
5596+
}
5597+
continue;
5598+
}
55925599
}
55935600
}
55945601

0 commit comments

Comments
 (0)