blob: d5e8e95334b5dca67877920592ce1828fd5940cf [file] [log] [blame]
// Created by ihdl
module ISO_FENCE0_X4 (A, EN, Z);
input A;
input EN;
output Z;
not(Z, i_4);
or(i_4, A, EN);
specify
(A => Z) = (0.1, 0.1);
(EN => Z) = (0.1, 0.1);
endspecify
endmodule