diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-10-17 12:16:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-17 12:16:23 +0200 |
commit | 6b06876cf1a558675d072f17de183e5e0945894a (patch) | |
tree | bca4362886c1985c83199ed3dc1847401716c3b1 /techlibs/ecp5/synth_ecp5.cc | |
parent | 08be796cb8b1890923e459cda92211fda763f0c1 (diff) | |
parent | df4bfa0ad69c1c4ba75222616d02dae3d1abe5de (diff) | |
download | yosys-6b06876cf1a558675d072f17de183e5e0945894a.tar.gz yosys-6b06876cf1a558675d072f17de183e5e0945894a.tar.bz2 yosys-6b06876cf1a558675d072f17de183e5e0945894a.zip |
Merge pull request #658 from daveshah1/ecp5_bram
ECP5 BRAM inference
Diffstat (limited to 'techlibs/ecp5/synth_ecp5.cc')
-rw-r--r-- | techlibs/ecp5/synth_ecp5.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc index a13dd8d41..ab56a9444 100644 --- a/techlibs/ecp5/synth_ecp5.cc +++ b/techlibs/ecp5/synth_ecp5.cc @@ -222,11 +222,8 @@ struct SynthEcp5Pass : public ScriptPass if (!nobram && check_label("bram", "(skip if -nobram)")) { - //TODO -#if 0 - run("memory_bram -rules +/ecp5/brams.txt"); + run("memory_bram -rules +/ecp5/bram.txt"); run("techmap -map +/ecp5/brams_map.v"); -#endif } if (!nodram && check_label("dram", "(skip if -nodram)")) |