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

📄 romdc.vhd

📁 用于视频运动图像编码的HUFFMAN编码
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use work.romdc.all;
use work.MYfunction.all;
entity ROM_DC is
	port(	ADDR:in std_logic_vector(7 downto 0);
		RD,CS:in std_logic;
		DATA:out std_logic_vector(20 downto 0));
end ROM_DC;

architecture BEHAVIOR of ROM_DC is
		begin
	output:process(ADDR,RD)	begin
		if RD='1' and CS='1' then			DATA<=ROM(vector_int(ADDR));
		else
			DATA<=(others=>'Z');
		end if;
	end process output;
end BEHAVIOR;
			

⌨️ 快捷键说明

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