This is my code for SRAM simulation in pspice SRAM simulation
VDD 3 0 DC 5V
VWL 4 0 PWL (9us 0V 10us 5V 90us 5V 91us 0V)
VBL1 5 0 PWL (0 0V 1us 5V 100us 5V 101us 0V)
VBL2 6 0 PWL (0 0)
M1 1 2 3 3 PMOS
M2 1 2 0 0 NMOS
M3 2 1 3 3 PMOS
M4 2 1 0 0 NMOS
M5 5 4 1 1 NMOS
M6 6 4 2 2 NMOS
.MODEL NMOS NMOS (L=5um,W=30um,VTO=0.7)
.MODEL PMOS PMOS (L=5um,W=30um,VTO=-0.7)
.TRAN 0.2us 120us
.PLOT TRAN V(1)
.PROBE
However when I simulate I don't see the voltage to be stored in gate of the mosfet.Can anyone tell me what's wrong or what modification should I do in my code?