You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
-- Created by IP Generator (Version 2021.1-SP7 build 86875) -- Instantiation Template -- -- Insert the following codes into your VHDL file. -- * Change the_instance_name to your own instance name. -- * Change the net names in the port map.
COMPONENT SPLL PORT ( clkin1 : IN STD_LOGIC; pll_lock : OUT STD_LOGIC; clkout0 : OUT STD_LOGIC; clkout1 : OUT STD_LOGIC; clkout2 : OUT STD_LOGIC ); END COMPONENT;
the_instance_name : SPLL PORT MAP ( clkin1 => clkin1, pll_lock => pll_lock, clkout0 => clkout0, clkout1 => clkout1, clkout2 => clkout2 );
|