📄 vio_xst_example.vhd
字号:
library IEEE;
use IEEE.std_logic_1164.all;
entity vio_xst_example is
end vio_xst_example;
architecture structure of vio_xst_example is
-------------------------------------------------------------------
--
-- VIO core component declaration
--
-------------------------------------------------------------------
component vio
port
(
control : in std_logic_vector(35 downto 0);
async_in : in std_logic_vector(1 downto 0);
async_out : out std_logic_vector(63 downto 0)
);
end component;
-------------------------------------------------------------------
--
-- VIO core signal declarations
--
-------------------------------------------------------------------
signal control : std_logic_vector(35 downto 0);
signal async_in : std_logic_vector(1 downto 0);
signal async_out : std_logic_vector(63 downto 0);
begin
-------------------------------------------------------------------
--
-- VIO core instance
--
-------------------------------------------------------------------
i_vio : vio
port map
(
control => control,
async_in => async_in,
async_out => async_out
);
end structure;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -