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

📄 selec.vhd

📁 一个用VHDL编写的在CPLD上实现模拟交通灯的程序源代码
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity selec is
port( clk_scan  :  in  std_logic;
      sel       :  out std_logic_vector(2 downto 0) 
     );
end  selec;

architecture  behave  of  selec  is
signal  cnt  :std_logic_vector(2 downto 0);
begin
    sel<=cnt;
    process(clk_scan)
    begin
       if  rising_edge(clk_scan)  then
          if(cnt="001")  then cnt<="110";
          elsif(cnt="111") then cnt<="000";
          else  cnt<=cnt+1;
          end if;
       end if;
    end  process;
  
end  behave;

⌨️ 快捷键说明

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