blob: 50ef3f673345fff4a065bb1497dd52a58b1c063c [file] [log] [blame]
primitive scs8hd_pg_U_VPWR_VGND ( UDP_OUT, UDP_IN, VPWR, VGND);
output UDP_OUT;
input UDP_IN, VPWR, VGND;
// UDP_OUT:=x when VPWR!=1 or VGND!=0
// UDP_OUT:=UDP_IN when VPWR==1 and VGND==0
table
// in VPWR VGND : out
0 1 0 : 0 ;
1 1 0 : 1 ;
x 1 0 : x ;
? 0 0 : x ;
? 1 1 : x ;
? x 0 : x ;
? 1 x : x ;
endtable
endprimitive