blob: 89950b0ecd3d2a20472aad2fbea88924806e05ec [file] [log] [blame]
// Created by ihdl
module LS_LHEN_X2 (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