shift.vhd

来自「2FSK调制功能」· VHDL 代码 · 共 33 行

VHD
33
字号
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity shift is
 port(
   clk:in std_logic;
   do:out std_logic_vector(1 downto 0)
   );
end shift;
architecture a of shift is
signal clkout1:std_logic_vector(9 downto 0);
signal a:std_logic_vector(1 downto 0);
begin
process(clk)

begin
if (clk'event and clk='1') then
   if clkout1="1111111111" then
       clkout1<="0000000000";
       a<= a+1;       
   else
       clkout1<=clkout1+1;
   end if;
end if;
end process;
do<=  a;
end a;




⌨️ 快捷键说明

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