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

📄 piso4.vhd

📁 在quartus开发环境下
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity piso4 is
port(clk:in std_logic;----时钟
     clr:in std_logic;----清零
     din:in std_logic_vector(3 downto 0);-----数据输入端
     dout:out std_logic);---------------------数据输出端
end;
architecture one of piso4 is
	signal cnt:std_logic_vector(1 downto 0);---4进制计数器,用于控制数据的输出
	signal q:std_logic_vector(3 downto 0);
begin
process(clk)----4进制计数器
begin
	if clk'event and clk='1' then
		cnt<=cnt+1;
	end if;
end process;
---------------------------------------
process(clk,clr)
begin
if clr='1' then q<="0000";
elsif clk'event and clk='1' then
	if cnt>"00" then----------------如果计数器大于"00"则移位
	q(3 downto 1)<=q(2 downto 0);
	elsif cnt="00" then-------------如果计数器等于"00"则加载数据
	q<=din;
	end if;
end if;
end process;
dout<=q(3);
end;

⌨️ 快捷键说明

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