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

📄 source2.vhd

📁 大屏幕led点阵显示的驱动时序。 使用vhdl语言描述。其中rom文件可以使用lpm_megcore自动生成。
💻 VHD
字号:
--Source2 行扫描译码信号输出
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;

entity source2 is
port(clk:in std_logic;
     iner:in std_logic_vector(3 downto 0);
     outer:out std_logic_vector(3 downto 0));
end source2;

architecture  behave of source2 is
begin 
  process(clk)
  begin  
       if(clk'event and clk='1')then 
       outer<=iner; 
       end if;
  end  process;
end behave;

⌨️ 快捷键说明

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