xx.vhd

来自「简单的数字频率计」· VHDL 代码 · 共 21 行

VHD
21
字号
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;

entity xx is
  port(c:in std_logic;
		r:in std_logic;
		q:out std_logic);
end xx;

architecture x of xx is
variable y:std_logic;
begin
  process(c,y)
	begin
	y<='1';
 	q<=y;
	y<='0';
  end process;
end x;

⌨️ 快捷键说明

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