huan2.vhd
来自「DDS-320-func: 在采用 320x240 屏的设计实验箱上运行」· VHDL 代码 · 共 19 行
VHD
19 行
library IEEE;
use IEEE.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity huan2 is
port (
A: in STD_LOGIC_vector(15 downto 0);
aout: out STD_LOGIC_vector(7 downto 0)
);
end huan2;
architecture mmm of huan2 is
begin
aout<=A(15 downto 8);
end mmm;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?