tr5.vhd

来自「用FPGA做的DDS函数信号发生器」· VHDL 代码 · 共 10 行

VHD
10
字号
library ieee;
use ieee.std_logic_1164.all;
entity tr5 is
   port(p:in std_logic_vector(13 downto 0);
        q:out std_logic_vector(3 downto 0));
   end tr5;
architecture act of tr5 is
  begin 
     q<=p(3 downto 0);
end act;

⌨️ 快捷键说明

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