Altera_Forum
Honored Contributor
15 years agoTiming constraints for virtual pins
I have a subdesign with virtual pins a global clock and global reset.
entity x is
port(
Clk : in std_logic;
Reset : in std_logic := '0';
Input : in std_logic_vector(31 downto 0);
RedOut : out std_logic_vector(Width-1 downto 0);
GreenOut : out std_logic_vector(Width-1 downto 0);
BlueOut : out std_logic_vector(Width-1 downto 0)
);
end x; I want to seperatly compile this design to optimize the code for fitting and routing. How do i constrain the IO of this design? It supposed to be embbed in logic that runs on the same clock... a very simple synchrounous design.