commit | 55f4d0e3a2ff276a220fd75d535b2c23b12eab72 | [log] [tgz] |
---|---|---|
author | Tim Edwards <tim@opencircuitdesign.com> | Sun Jul 05 15:41:02 2020 -0400 |
committer | Tim Edwards <tim@opencircuitdesign.com> | Sun Jul 05 15:41:02 2020 -0400 |
tree | b0cc60e4b6d81ca3cdc203190bf1e9e8c195e8e0 |
Initial commit of public repository open_pdks.
diff --git a/common/changetech.sh b/common/changetech.sh new file mode 100755 index 0000000..383aac6 --- /dev/null +++ b/common/changetech.sh
@@ -0,0 +1,9 @@ +#!/bin/sh +# +# Example file converts the techname in all magic database files. + +for i in `ls *.mag` ; do + /ef/efabless/bin/preproc.py -DEFXH035A=EFXH035B $i > tmp.out + mv tmp.out $i ; +done +