mirror of https://github.com/VLSIDA/OpenRAM.git
Increase column width in netgen LVS scripts
This commit is contained in:
parent
98fe4c74a4
commit
dc9ae6cd1a
|
|
@ -267,6 +267,11 @@ def write_lvs_script(cell_name, gds_name, sp_name, final_verification=False, out
|
|||
if os.path.exists(full_setup_file):
|
||||
# Copy setup.tcl file into temp dir
|
||||
shutil.copy(full_setup_file, output_path)
|
||||
|
||||
setup_file_object = open(output_path + "/setup.tcl", 'a')
|
||||
setup_file_object.write("# Increase the column sizes for ease of reading long names\n")
|
||||
setup_file_object.write("::netgen::format 80\n")
|
||||
|
||||
else:
|
||||
setup_file = 'nosetup'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue