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