⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cnt60.vhd

📁 电子打铃器 在max plus 2 下编译通过
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity cnt60 is
port(
	clk: in std_logic;
	ena: in std_logic;	
--	set: in std_logic;
--	setdata:in std_logic_vector(3 downto 0);
	co: out std_logic;
	data1,data2: out std_logic_vector(3 downto 0));
end cnt60;

architecture rtl of cnt60 is
    signal tempen:std_logic;
	signal temp1,temp2: std_logic_vector(3 downto 0);

begin
	tempen<=ena;
    process(clk)
    begin
        if clk'event and clk='1' then
           if tempen='1' then
                if temp1="1001" then
                   temp1<="0000";
				   if temp2="0101" then
					  temp2<="0000";
                  	else 
						temp2<=temp2+1;
					end if ;	
				
                else 
		 			 temp1<=temp1+1;
                end if;
            end if;
		end if;
    	
	end process;    
    data1<=temp1;
	data2<=temp2;
 --   tempco<='1' when (temp1="0001" and ena='1') else '0';
	co<='1' when (temp1="1001" and temp2="0101" and ena='1') else '0';
end rtl;



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -