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

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

parent 01411df9
......@@ -78,7 +78,7 @@ class Action(list):
action = self.config.get("action")
if action == None:
self.tool = None
self.top_entity = self.config["top_module"]
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