module DFFSR (Q,QBAR,CLK,D,RN,S,notifier);

  output  Q;
  output  QBAR;
  input   CLK;
  input   D;
  input   RN;
  input   S;
  input   notifier;

  DFF_ASYNSRSD  r1 (Q,CLK,D,RN,S,notifier);
  not   n5 (QBAR,Q);

endmodule
