module SRsetresetOR2_V (
   s,
   s_ack,
   r1,
   r2,
   r_ack,
   out
);

   input s;
   output s_ack;
   input r1;
   input r2;
   output r_ack;
   output out;
   wire w1;

   NA2 I0 (s, w1, out);
   NA3 I1 (out, r1, r2, w1);
   OR2 I2 (s, w1, s_ack);
   OA22 I3 (out, r1, out, r2, r_ack);
endmodule

