men.vhd
来自「用FPGA实现数字复接?肍PGA实现数字复接」· VHDL 代码 · 共 16 行
VHD
16 行
library ieee ;
use ieee.std_logic_1164.all ;
entity men is
port(in1:in std_logic;
out1:out std_logic
);
end men ;
architecture behv of men is
begin
out1<=in1;
end behv;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?