blob: 6c39ace28d6e3147710cea568eaae9e84089008a [file] [log] [blame]
// Created by ihdl
primitive \seq_DFFR_X1 (IQ, RN, nextstate, CK, NOTIFIER);
output IQ;
input RN;
input nextstate;
input CK;
input NOTIFIER;
reg IQ;
table
// RN nextstate CK NOTIFIER : @IQ : IQ
? 0 r ? : ? : 0;
1 1 r ? : ? : 1;
? 0 * ? : 0 : 0; // reduce pessimism
1 1 * ? : 1 : 1; // reduce pessimism
1 * ? ? : ? : -; // Ignore all edges on nextstate
1 ? n ? : ? : -; // Ignore non-triggering clock edge
0 ? ? ? : ? : 0; // RN activated
* ? ? ? : 0 : 0; // Cover all transitions on RN
? ? ? * : ? : x; // Any NOTIFIER change
endtable
endprimitive