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

📄 signal4.vhdl

📁 一个简单的多种信号的发生器 包括正玄
💻 VHDL
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity signal4 is
port(clk,reset:in std_logic;
             q:out std_logic_vector(7 downto 0));
end signal4;
architecture a of signal4 is
begin
process(clk,reset)
variable tmp:std_logic_vector(7 downto 0);
begin
if reset='0' then
   tmp:="00000000";
elsif rising_edge(clk) then
   if tmp="11111111" then
      tmp:="00000000";
   else 
      tmp:=tmp+16;
   end if;      
end if;
q<=tmp;
end process;
end a;
      

⌨️ 快捷键说明

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