blob: 2fe9e4e5b3319bd1ea39ce678ef7f236e83986c7 [file] [log] [blame]
// Created by ihdl
module LS_LHEN_X4 (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