From 28093d9dd288484daa9df17585c1c9f174498359 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 24 Nov 2013 05:03:43 +0100 Subject: Added "top" attribute to mark top module in hierarchy --- backends/edif/edif.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'backends/edif') 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; -- cgit v1.2.3