Join Slack
Powered by
Is there a way to read a lef+def from the command ...
# magic
m
Matthew Guthaus
05/27/2021, 8:18 PM
Is there a way to read a lef+def from the command line without typing "lef read foo.lef" and "def read bar.def"?
t
Tim Edwards
05/28/2021, 12:18 AM
Write a custom Tcl procedure and stick it in the .magicrc startup file or your home ~/.magicrc.
proc readlefdef {cell} {
lef read ${cell}.lef
def read ${cell}.def
}
Open in Slack
Previous
Next