module SDFFS (Q,QBAR,CLK,D,S,SE,SI,notifier);

  output  Q;
  output  QBAR;
  input   CLK;
  input   D;
  input   S;
  input   SE;
  input   SI;
  input   notifier;

  MUX21_UDP     m0 (net1, SE, D, SI);
  DFF_ASYNS     i0 (Q, CLK, net1, S, notifier);
  not           i1 (QBAR, Q);

endmodule
