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