sraminterfacewithpport.vhi

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

VHI
52
字号

-- VHDL Instantiation Created from source file sraminterfacewithpport.vhd -- 18:24:21 03/15/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 sraminterfacewithpport
	PORT(
		CLK : IN std_logic;
		Resetn : IN std_logic;
		doRead : IN std_logic;
		doWrite : IN std_logic;
		readAddr : IN std_logic_vector(18 downto 0);
		writeAddr : IN std_logic_vector(18 downto 0);
		writeData : IN std_logic_vector(15 downto 0);
		ppdata : IN std_logic_vector(7 downto 0);    
		SRAMLeftData : INOUT std_logic_vector(15 downto 0);      
		readData : OUT std_logic_vector(15 downto 0);
		canRead : OUT std_logic;
		canWrite : OUT std_logic;
		CELeftn : OUT std_logic;
		OELeftn : OUT std_logic;
		WELeftn : OUT std_logic;
		SRAMLeftAddr : OUT std_logic_vector(18 downto 0);
		ppstatus : OUT std_logic_vector(6 downto 3)
		);
	END COMPONENT;

	Inst_sraminterfacewithpport: sraminterfacewithpport PORT MAP(
		CLK => ,
		Resetn => ,
		doRead => ,
		doWrite => ,
		readAddr => ,
		writeAddr => ,
		readData => ,
		writeData => ,
		canRead => ,
		canWrite => ,
		CELeftn => ,
		OELeftn => ,
		WELeftn => ,
		SRAMLeftAddr => ,
		SRAMLeftData => ,
		ppdata => ,
		ppstatus => 
	);


⌨️ 快捷键说明

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