blob: c7ff7368b8c2f35ebf948ba22f1c1173bc355220 [file] [log] [blame]
primitive U_DF_P_NO_pg (Q, D, CP , NOTIFIER, VPWR, VGND); output Q;
input D, CP, NOTIFIER, VPWR, VGND;
reg Q;
// FUNCTION : POSITIVE EDGE TRIGGERED D FLIP-FLOP ( Q OUTPUT UDP ).
table
// D CP NOTIFIER VPWR VGND : Qt : Qt+1
1 (01) ? 1 0 : ? : 1; // clocked data
0 (01) ? 1 0 : ? : 0;
1 (x1) ? 1 0 : 1 : 1; // reducing pessimism
0 (x1) ? 1 0 : 0 : 0;
1 (0x) ? 1 0 : 1 : 1;
0 (0x) ? 1 0 : 0 : 0;
? (1x) ? 1 0 : ? : -; // no change on falling edge
? (?0) ? 1 0 : ? : -;
* ? ? 1 0 : ? : -; // ignore edges on data
? ? * 1 0 : ? : x;
? ? ? * ? : ? : x; // any change on vpwr
? ? ? ? * : ? : x; // any change on vgnd
endtable
endprimitive