dif.vhd.bak

来自「适用于初学者的一个m序列扰、解码器」· BAK 代码 · 共 18 行

BAK
18
字号
Library ieee;
use ieee.std_logic_1164.all;
entity Dif is
port( D,clk:in std_logic;
      Q:out std_logic
     );
end Dif;
architecture behave of Dif is
   signal tp: std_logic;
   begin
   process(clk)
   begin
   if clk'event and clk='1' then
      tp<=D;
   end if;
   Q<=tp;
   end process;
end behave; 

⌨️ 快捷键说明

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