pulseerr.vhd

来自「几个简单数字逻辑电路的VHDL代码」· VHDL 代码 · 共 23 行

VHD
23
字号
library ieee;
use ieee.std_logic_1164.all;

entity pulseErr is port
  (a: in std_logic;
   b: out std_logic
  );
end pulseErr;

architecture behavior of pulseErr is

signal c: std_logic;

begin

  pulse: process (a,c) begin
    b <= c XOR a;

    c <= a;
  end process;

end behavior;

⌨️ 快捷键说明

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