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

📄 lfsr_b.vhd

📁 The objective of this projectis to design, model and simulate an autocorrelation generator circuit
💻 VHD
字号:
 library ieee; use ieee.std_logic_1164.all; entity lfsr isport(	clk,load,shift : in std_logic;	din: in std_logic_vector(0 to 3);        dout: out std_logic_vector(0 to 3));       END LFSR ;ARCHITECTURE bsr of LFSR is  signal tmp4 :std_logic_vector(3 downto 0);   begin  posedge: PROCESS (clk, load,shift)  begin      if (load'event and load='1') and (clk'event and clk='1') then            tmp4(0) <= din(1);      tmp4(1) <= din(2);      tmp4(2) <=din(3);      tmp4(3)<=  DIN(0) ;      dout <=tmp4;      end if;END process;    end bsr;

⌨️ 快捷键说明

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