blob: e1ed985cc0a69e4036d7029c2d2f1226e27058df [file] [log] [blame]
// Created by ihdl
module LS_LHEN_X1 (A, ISOLN, Z);
input A;
input ISOLN;
output Z;
and(Z, A, ISOLN);
specify
(A => Z) = (0.1, 0.1);
(ISOLN => Z) = (0.1, 0.1);
endspecify
endmodule