Removed unnessary Verilog files, linked memory tech files, having problem with memory instatiation

This commit is contained in:
Lingjun Zhu
2019-10-28 14:49:55 -04:00
parent 557c987bb0
commit 50d567d70c
58 changed files with 18147 additions and 21848 deletions

View File

@@ -0,0 +1,13 @@
set SOURCE_FILES [glob *.lib]
foreach FILE ${SOURCE_FILES} {
read_lib $FILE
redirect -variable CURR_LIB {get_lib}
set CURR_LIB [string range $CURR_LIB 2 end-3]
set CURR_LIB [lindex $CURR_LIB 0]
set FILENAME [string range $FILE 0 end-4]
write_lib $CURR_LIB -output ${FILENAME}.db
remove_lib $CURR_LIB
}
exit