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.

27 lines
597 B

2 years ago
  1. -- Created by IP Generator (Version 2021.1-SP7 build 86875)
  2. -- Instantiation Template
  3. --
  4. -- Insert the following codes into your VHDL file.
  5. -- * Change the_instance_name to your own instance name.
  6. -- * Change the net names in the port map.
  7. COMPONENT SPLL
  8. PORT (
  9. clkin1 : IN STD_LOGIC;
  10. pll_lock : OUT STD_LOGIC;
  11. clkout0 : OUT STD_LOGIC;
  12. clkout1 : OUT STD_LOGIC;
  13. clkout2 : OUT STD_LOGIC
  14. );
  15. END COMPONENT;
  16. the_instance_name : SPLL
  17. PORT MAP (
  18. clkin1 => clkin1,
  19. pll_lock => pll_lock,
  20. clkout0 => clkout0,
  21. clkout1 => clkout1,
  22. clkout2 => clkout2
  23. );