M
Michael
Guest
I have cell like:
`celldefine
module BUF (I, Z);
input I;
output Z;
buf (Z, I);
specify
(I => Z)=(0, 0);
endspecify
endmodule
`endcelldefine
Can I by some way to specify delay (I => Z)=(1, 2); from the outside?
Like from testbench?
`celldefine
module BUF (I, Z);
input I;
output Z;
buf (Z, I);
specify
(I => Z)=(0, 0);
endspecify
endmodule
`endcelldefine
Can I by some way to specify delay (I => Z)=(1, 2); from the outside?
Like from testbench?