📄 concat2to36data.vhd
字号:
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;
entity concat2to36Data is
port ( Sortie : out std_logic_vector(17 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 );
end if;
end process;
end arc_concat2to36Data;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -