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

📄 tipod.vhd

📁 This Circuit generates the syndrome for the CRC. This is quite useful for transmision purposes and e
💻 VHD
字号:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;

entity TipoD is
    Port ( Rset : in std_logic;
           Din : in std_logic;
           clk : in std_logic;
           Dout : out std_logic);
end TipoD;

architecture Behavioral of TipoD is

begin
	  
  PROCESS (clk, Rset)
	
	BEGIN
		IF (Rset = '1') THEN	
			Dout<= '0';
		ELSIF (clk'EVENT AND clk= '1') THEN
			Dout<= Din;
		END IF;
	END PROCESS;

end Behavioral;

⌨️ 快捷键说明

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