Commit 943c08c5 authored by Will Kamp's avatar Will Kamp

Make "none" the default top_module if not specified in Manifest.

parent 01411df9
......@@ -77,8 +77,8 @@ class Action(list):
self.config = self._get_config_dict()
action = self.config.get("action")
if action == None:
self.tool = None
self.top_entity = self.config["top_module"]
self.tool = None
self.top_entity = self.config.get("top_module", None)
elif action == "simulation":
self.tool = load_sim_tool(self.config.get("sim_tool"))
if (self.config.get("sim_top") == None and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment