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