Analog Layout is portable from Sky130A pdk to Sky1...
# general
f
Analog Layout is portable from Sky130A pdk to Sky130B? How?
m
Maybe start magic with the sky130B technology and then use
-force
to load the sky130A cell and then do a
write all
? http://opencircuitdesign.com/magic/commandref/load.html This might also work in linux (changes “sky130A” to “sky130B” in all the mag files below the mag directory while creating backups with the “.sky130A” extention).
Copy code
sed -i.sky130A 's/sly130A/sky130B/g' `find mag -name '*.mag'
I have not personally tested either of these, so maybe tarball a backup beforehand.
f
Okay thanks, i try