blob: 62a2212e74cf87875042d3fb29752a9e72bd8083 [file] [log] [blame]
// Created by ihdl
module TBUF_X8 (A, EN, Z);
input A;
input EN;
output Z;
bufif0(Z, Z_in, Z_enable);
buf(Z_enable, EN);
buf(Z_in, A);
specify
(A => Z) = (0.1, 0.1);
(EN => Z) = (0.1, 0.1);
endspecify
endmodule