blob: e4928b0902f3af4f904eb66d5082eef5e4df3f09 [file] [log] [blame]
// Created by ihdl
module BUF_X8 (A, Z);
input A;
output Z;
buf(Z, A);
specify
(A => Z) = (0.1, 0.1);
endspecify
endmodule