Added a new script "fix_subckt_params.py" which works with the
spectre_to_spice.py script, and moves parameters from a .param block
in a subcircuit up to the .subckt line, so that the parameter can be
passed to the subcircuit.
diff --git a/common/soc_floorplanner.py b/common/soc_floorplanner.py
index 18a8995..1cdc52c 100755
--- a/common/soc_floorplanner.py
+++ b/common/soc_floorplanner.py
@@ -308,6 +308,18 @@
else:
projectpath = pwdname
+ # Also check for project below the current working directory
+
+ if not os.path.exists(projectpath + '/mag'):
+ print('No project path, checking subdirectories')
+ dlist = os.listdir(projectpath)
+ for dir in dlist:
+ print('Checking ' + projectpath + '/' + dir)
+ if os.path.exists(projectpath + '/' + dir + '/mag'):
+ projectpath = projectpath + '/' + dir
+ print('Found!')
+ break
+
projectroot = os.path.split(projectpath)[0]
projectdirname = os.path.split(projectpath)[1]