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