3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-30 16:03:17 +00:00

Added bram support

This commit is contained in:
Miodrag Milanovic 2019-08-04 11:46:36 +02:00
parent 6e210f26fa
commit cf96f41c6d
6 changed files with 260 additions and 1 deletions

View file

@ -150,6 +150,13 @@ struct SynthEfinixPass : public ScriptPass
run("synth -run coarse");
}
if (check_label("map_bram", "(skip if -nobram)"))
{
run("memory_bram -rules +/efinix/bram.txt");
run("techmap -map +/efinix/brams_map.v");
run("efinix_determine_init");
}
if (check_label("fine"))
{
run("opt -fast -mux_undef -undriven -fine");