📄 antishilver.vhd
字号:
--antishilver
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
use IEEE.std_logic_arith.all;
entity antishilver is
port(clk,sel,ajust,mode,ret:in std_logic;
q1,q2,q3,q4:out std_logic);
end antishilver;
architecture behav of antishilver is
begin
process(clk,sel,ajust,mode,ret)
begin
if(clk'event and clk='0') then
q1<=sel;q2<=ajust;q3<=mode;q4<=ret;
end if;
end process;
end behav;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -