concat2to36data.vhd

来自「XILINX memory interface generator. XILI」· VHDL 代码 · 共 32 行

VHD
32
字号
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
--library synplify; 
--use synplify.attributes.all;
--
-- pragma translate_off
library UNISIM;
use UNISIM.VCOMPONENTS.ALL;
-- pragma translate_on


entity concat2to36Data is
port ( Sortie  : out std_logic_vector(71 downto 0);
       inclock : in std_logic;
       counter : in std_logic_vector(1 downto 0));
end concat2to36Data;

architecture arc_concat2to36Data of concat2to36Data is 
begin
process(inclock)
begin
	if inclock'event and inclock ='1' then
	Sortie <= ( counter & counter & counter & counter & counter & counter & counter & counter & counter &
		    counter & counter & counter & counter & counter & counter & counter & counter & counter &
		    counter & counter & counter & counter & counter & counter & counter & counter & counter &
		    counter & counter & counter & counter & counter & counter & counter & counter & counter );
	end if;
end process;	

end arc_concat2to36Data;

⌨️ 快捷键说明

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