what is the difference between load and getcell?
# sky130-pv-workshop
y
what is the difference between load and getcell?
t
The difference is between a cell and an instance of that cell. If you do
load inverter
, then you will be editing the cell called
inverter
. If you do
getcell inverter
, then you will place an instance of the cell
inverter
inside the cell you're currently editing.
🙌 3