W
Weng Tianxiang
Guest
Hi,
In my many projects, some signals have both positive reference and
negative reference, does it cause an additional LUT delay?
For example, in the following statement Rx and not Rx are both used
and they cannot be put together by a LUT.
A1 : process(CLK)
begin
if(CLK'event and CLK = '1') then
A <= Sx;
end if;
end process;
A2 : process(CLK)
begin
if(CLK'event and CLK = '1') then
B <= not Sx;
end if;
end process;
Sx may be a combinational signal or a flip-flop output.
I am wondering whether Xilinx interconnect resources is capable of
inversing a passing signal based on the need.
Thank you.
Weng
In my many projects, some signals have both positive reference and
negative reference, does it cause an additional LUT delay?
For example, in the following statement Rx and not Rx are both used
and they cannot be put together by a LUT.
A1 : process(CLK)
begin
if(CLK'event and CLK = '1') then
A <= Sx;
end if;
end process;
A2 : process(CLK)
begin
if(CLK'event and CLK = '1') then
B <= not Sx;
end if;
end process;
Sx may be a combinational signal or a flip-flop output.
I am wondering whether Xilinx interconnect resources is capable of
inversing a passing signal based on the need.
Thank you.
Weng