module DFFS (Q,QBAR,CLK,D,S,notifier);

  output  Q;
  output  QBAR;
  input   CLK;
  input   D;
  input   S;
  input   notifier;

  DFF_ASYNS  r1 (Q,CLK,D,S,notifier);
  not   n5 (QBAR,Q);

endmodule
