lzw_beh.vhi

来自「vhdl code for GIF Image Viewer」· VHI 代码 · 共 36 行

VHI
36
字号

-- VHDL Instantiation Created from source file lzw_beh.vhd -- 17:28:12 03/21/2004
--
-- Notes: 
-- 1) This instantiation template has been automatically generated using types
-- std_logic and std_logic_vector for the ports of the instantiated module
-- 2) To use this template to instantiate this entity, cut-and-paste and then edit

	COMPONENT lzw_beh
	PORT(
		clk : IN std_logic;
		start : IN std_logic;
		readData : IN std_logic_vector(15 downto 0);
		codesize : IN std_logic_vector(7 downto 0);          
		addr : OUT std_logic_vector(19 downto 0);
		writeData : OUT std_logic_vector(15 downto 0);
		oen : OUT std_logic;
		wen : OUT std_logic;
		done : OUT std_logic
		);
	END COMPONENT;

	Inst_lzw_beh: lzw_beh PORT MAP(
		clk => ,
		start => ,
		readData => ,
		codesize => ,
		addr => ,
		writeData => ,
		oen => ,
		wen => ,
		done => 
	);


⌨️ 快捷键说明

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