module SOLATCH (L2,A,B,I);

  output  L2;
  input   A;
  input   B;
  input   I;

`ifdef LV

  LV_LSSD l1 (.L2(L2), .B(B), .C(A), .D(I) );

`else

  PH1P  l1  (l1out,A,I);
  PH1P  l2  (L2,B,l1out);

`endif

endmodule
