blob: 421fe3aa695c7c835c044095a26c7b95191728a0 [file] [log] [blame]
// Created by ihdl
module LS_HLEN_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