

SEL signal of the ocd IO but I don't see how that would be possible.ANT.16_i_ANT.3Metal2 line that connects to that pin is really not that long, like 90 um or so. And (2) there is AFAICT an antenna diode on that input.
ametal_eff: 202.5162
ratio: 401.817857143
agate: 0.504
max_ratio: 400
pmetal_factor: 0.54
adiodes: (0)
diode_factors: (800)
pmetal: 375.03
nplus + COMP to be diodes.pplus + COMP
pplus + COMP is perfectly valid and should be included in the diodes so I'm pretty sure that KLayout deck is wrong. (edited)
diode = nplus.and(comp)
I would do:
n_diode = nplus.and(comp).not(nwell)
p_diode = pplus.and(comp).and(nwell)
diodes = n_diode || n_diode
(deep nwell not considered.)
Does that look reasonable to you?
comp.and(nplus.or(pplus) would be enough.