chuan1.vhd

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

VHD
10
字号
library ieee;
use ieee.std_logic_1164.all;
entity chuan1 is
   port(m:in std_logic_vector(23 downto 0);
        x:out std_logic_vector(7 downto 0));
   end chuan1;
architecture act of chuan1 is
  begin 
     x<=m(23 downto 16);
end act;

⌨️ 快捷键说明

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