diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-24 05:03:43 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-24 05:03:43 +0100 |
commit | 28093d9dd288484daa9df17585c1c9f174498359 (patch) | |
tree | 3940c6d3bd95f7c983c76cd6e54bd04216867f3d /backends/edif/edif.cc | |
parent | a4edecb0cae0524b6f42d1a2c64af5a940c67a2f (diff) | |
download | yosys-28093d9dd288484daa9df17585c1c9f174498359.tar.gz yosys-28093d9dd288484daa9df17585c1c9f174498359.tar.bz2 yosys-28093d9dd288484daa9df17585c1c9f174498359.zip |
Added "top" attribute to mark top module in hierarchy
Diffstat (limited to 'backends/edif/edif.cc')
-rw-r--r-- | backends/edif/edif.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc index c5977bb1d..8843b3946 100644 --- a/backends/edif/edif.cc +++ b/backends/edif/edif.cc @@ -118,6 +118,11 @@ struct EdifBackend : public Backend { } extra_args(f, filename, args, argidx); + if (top_module_name.empty()) + for (auto & mod_it:design->modules) + if (mod_it.second->get_bool_attribute("\\top")) + top_module_name = mod_it.first; + for (auto module_it : design->modules) { RTLIL::Module *module = module_it.second; |