song.vhi

来自「这是一个FPGA的实验源码」· VHI 代码 · 共 28 行

VHI
28
字号

-- VHDL Instantiation Created from source file song.vhd -- 10:01:07 05/27/2006
--
-- 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 song
	PORT(
		clk : IN std_logic;
		index : IN std_logic_vector(2 downto 0);          
		speaker : OUT std_logic;
		seg : OUT std_logic_vector(6 downto 0);
		seg_scan : OUT std_logic_vector(2 downto 0)
		);
	END COMPONENT;

	Inst_song: song PORT MAP(
		clk => ,
		speaker => ,
		index => ,
		seg => ,
		seg_scan => 
	);


⌨️ 快捷键说明

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