📄 piso8.vhd
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity piso8 is
port(
clk,notready:in std_logic;
dataout:in std_logic_vector(7 downto 0);
data:out std_logic);
end;
architecture one of piso8 is
signal cnt:std_logic_vector(2 downto 0);--8进制计数器,用于控制数据的输出
signal q:std_logic_vector(7 downto 0);--8位寄存器
begin
process(clk)
begin
if clk'event and clk='1' then
cnt<=cnt+1;
end if;
end process;
process(clk,notready)
begin
if notready='1' then
q<="00000000";
elsif clk'event and clk='1' then
if cnt>"000" then--如果计数器大于“000”则移位
q(7 downto 1)<=q(6 downto 0);
elsif cnt="000" then--如果计数器等于“000”则加载数据
q<=dataout;
end if;
end if;
end process;
data<=q(7);
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -