v2_52.vhd
来自「台湾全华科技VHDL教材实例」· VHDL 代码 · 共 16 行
VHD
16 行
library ieee;
use ieee.std_logic_1164.all;
use work.Const.all;
entity V2_52 is
port(Points : in std_logic_vector(7 downto 0);
IsPass : out boolean);
end V2_52;
architecture a of V2_52 is
begin
IsPass <= true when Points > Threshold else
false;
end a;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?