we are running post layout simulation for a simple...
# analog-design
m
we are running post layout simulation for a simple inverter included in the following files: but we get zero output as shown below Any help @User @User Thanks in advance
l
Your subcircuit pins are
Copy code
.subckt TOP INPUT OUTPUT GND VDD
while your testbench instance is
Copy code
Xs INPUT OUTPUT VDD 0 TOP
This happens because when you extracted the circuit from the layout, the GND pin was labeled first. Spice is a really bad language for pin order...
m
OH i am sorry okay thanks