lpm_counter0.cmp
上传用户:jinxingdao
上传日期:2021-04-27
资源大小:415k
文件大小:1k
源码类别:

扫描程序

开发平台:

VHDL

  1. --Copyright (C) 1991-2007 Altera Corporation
  2. --Your use of Altera Corporation's design tools, logic functions 
  3. --and other software and tools, and its AMPP partner logic 
  4. --functions, and any output files from any of the foregoing 
  5. --(including device programming or simulation files), and any 
  6. --associated documentation or information are expressly subject 
  7. --to the terms and conditions of the Altera Program License 
  8. --Subscription Agreement, Altera MegaCore Function License 
  9. --Agreement, or other applicable license agreement, including, 
  10. --without limitation, that your use is for the sole purpose of 
  11. --programming logic devices manufactured by Altera and sold by 
  12. --Altera or its authorized distributors.  Please refer to the 
  13. --applicable agreement for further details.
  14. component lpm_counter0
  15. PORT
  16. (
  17. aclr : IN STD_LOGIC ;
  18. clock : IN STD_LOGIC ;
  19. cnt_en : IN STD_LOGIC ;
  20. cout : OUT STD_LOGIC ;
  21. q : OUT STD_LOGIC_VECTOR (11 DOWNTO 0)
  22. );
  23. end component;