speaker.vhd
来自「该程序是用VHDL语言实现的扬声器程序」· VHDL 代码 · 共 14 行
VHD
14 行
library ieee;
use ieee.std_logic_1164.all;
entity speaker is
port( botton : in std_logic;
speaker : out std_logic );
end speaker;
architecture func1 of speaker is
begin
speaker <= not botton;
end func1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?