diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2023-04-14 09:34:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 09:34:30 +0200 |
commit | b377a39b736bd9a5ca109bcb8f53fb0d266a1b4c (patch) | |
tree | c43924ae5f30fe7c566fbdddcf44a374bf9a584c /techlibs/machxo2/synth_machxo2.cc | |
parent | a2655a4b70691aae8be02477f0a236a5a3d45542 (diff) | |
parent | ee3162c58d744381ae59261c237e977e631b5979 (diff) | |
download | yosys-b377a39b736bd9a5ca109bcb8f53fb0d266a1b4c.tar.gz yosys-b377a39b736bd9a5ca109bcb8f53fb0d266a1b4c.tar.bz2 yosys-b377a39b736bd9a5ca109bcb8f53fb0d266a1b4c.zip |
Merge pull request #3727 from YosysHQ/micko/pll_bram
MachXO2: Add PLL and EBR related primitives
Diffstat (limited to 'techlibs/machxo2/synth_machxo2.cc')
-rw-r--r-- | techlibs/machxo2/synth_machxo2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/machxo2/synth_machxo2.cc b/techlibs/machxo2/synth_machxo2.cc index fb4d7b9d0..2b684a7d8 100644 --- a/techlibs/machxo2/synth_machxo2.cc +++ b/techlibs/machxo2/synth_machxo2.cc @@ -178,7 +178,7 @@ struct SynthMachXO2Pass : public ScriptPass { if (check_label("begin")) { - run("read_verilog -lib -icells +/machxo2/cells_sim.v"); + run("read_verilog -lib -icells +/machxo2/cells_sim.v +/machxo2/cells_bb.v"); run(stringf("hierarchy -check %s", help_mode ? "-top <top>" : top_opt.c_str())); } |