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

📄 tr_dff2.vhd

📁 提供了一个硬判决的viterbi译码器(2
💻 VHD
字号:
--tr_dff2.vhd  
--v0.1

library ieee;
use ieee.std_logic_1164.all;

entity tr_dff2 is 
	port(
		clk: in std_logic;
		in_outp: in std_logic_vector(1 downto 0);
		out_outp: out std_logic_vector(1 downto 0)
		);
end tr_dff2;

architecture a of tr_dff2 is
begin
process(clk,in_outp)
begin
	if rising_edge(clk) then
		out_outp<=in_outp;
	end if;
end process;
end a;
			

⌨️ 快捷键说明

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