blob: d47bb49cc42ef8b1dd8032a8e8efe82763048be4 [file] [log] [blame]
primitive scs8ms_pg_U_DL_P (Q, D, G);
//
// FUNCTION : DLATCH, GATED STANDARD DRIVE / ACTIVE HIGH ( Q OUTPUT UDP )
//
output Q;
reg Q;
input D, G;
table
// D G : Qt : Qt+1
? 0 : ? : - ; // hold
0 1 : ? : 0 ; // pass 0
1 1 : ? : 1 ; // pass 1
0 x : 0 : 0 ; // reduce pessimism
1 x : 1 : 1 ; // reduce pessimism
endtable
endprimitive