Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is the delay from the output of the cell to the output port of the chip specified by INTERCONNECT ? #10

Open
takanie1967 opened this issue Jan 5, 2024 · 0 comments

Comments

@takanie1967
Copy link

I use OSS_CVC_7.00b-x86_64-rhel6x of 07/07/14 (Linux-elf).

When I simulate a delay simulation by CVC in which SDF is annotated,
the change timing of the output port of the chip is incorrect. There are two cases.
(1) The IOPATH delay of the cell that drives the output port of the chip becomes zero.
(2) The INTERCONNECT delay from the output of the cell to the output port of the chip becomes zero.

I use INTERCONNECT to specify the delay of (2), but I guess this is wrong.
If anyone knows the correct way to specify it, please let me know.

For example, in the case of below module,
the delay of (1) is from BUFX2_01.A to BUFX2_01.Y , and,
the delay of (2) is from BUFX2_01.Y to out1 .

module test0105 ( clk , nrst , in1 , out1 );
input clk, nrst, in1 ;
output out1;
wire tmp1;
DFFSR FF01 ( .CLK (clk), .R(nrst), .S(1'b1), .D(in1), .Q(tmp1) );
BUFX2 BUFX2_01 ( .A (tmp1), .Y (out1) );
endmodule
(* I use osu018_stdcells.{lib,v} for the library. *)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant