<@U016EM8L91B> my `cifoutput` and `cifinput` secti...
# magic
a
@Tim Edwards my
cifoutput
and
cifinput
section is defined like this, but once i export a .gds file and try to read it, magic gives error of
Error while reading cell "xxx" (byte position 198): Unknown layer/datatype in boundary, layer=2 type=1
I looked at how the sky130A magic tech file, doesn't look like it's to much different in terms of how
CIF layers
are declared. Am I missing something?
should I be using
gds 0 1
instead of
calma 0 1
? I tried this but magic still can't read my gds into magiclayers
m
@Anderson Hsieh Can’t be sure without the full file, but I suspect that the
cifinput
section is missing
calma
statements. The
cifinput
and
cifoutput
sections do not share
calma
definitions. In
sky130B
the
calma
statements are near the end of the
cifinput
section.
Copy code
calma NWELL 64 20
 calma DIFF 65 20
 calma TAP  65 44
 calma DNWELL 64 18
 calma SUBCUT 81 53
 calma PWRES 64 13
 # LVTN
 calma LVTN 125 44
 # HVTR
 calma HVTR 18 20
 # HVTP
 calma HVTP 78 44
 # SONOS (TUNM)
 calma SONOS 80 20
...
a
yes if I use the calma statements they work
but i don't see the calma statements in
cifinput
section of sky130A magic tech file tho? That's why I'm a little confused
oh nvm
sorry
i found them
@Mitch Bailey thanks for your help!
👍 1