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

📄 vhdl code8.vhd

📁 d flip flop t flip flop counter mux using active hdl can be run using 3.2 version and creating new d
💻 VHD
字号:
library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;
entity counter is  port(C, CLR : in  std_logic;         Q : out std_logic_vector(3 downto 0)); end counter;architecture archi of counter is   signal tmp: std_logic_vector(3 downto 0);  begin       process (C, CLR)        begin           if (CLR='1') then             tmp = "0000";           elsif (C'event and C='1') then             tmp = tmp + 1;          end if;       end process;      Q = tmp; end archi;

⌨️ 快捷键说明

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