module SDFFSR (Q,QBAR,CLK,D,RN,S,SE,SI,notifier);

  output  Q;
  output  QBAR;
  input   CLK;
  input   D;
  input   RN;
  input   S;
  input   SE;
  input   SI;
  input   notifier;


  DFF_ASYNSRSD  i0 (Q, CLK, net1, RN, S, notifier);
  not           i1 (QBAR, Q);
  MUX21_UDP     m1 (net1, SE, D, SI);


endmodule
