⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 消抖电路.txt

📁 实现了16*16点阵上的三色显示的弹球游戏
💻 TXT
字号:
library ieee;
use ieee.std_logic_1164.all;
entity dou is
 port( din: std_logic;
   clk: std_logic;
   dout:std_lgoic);
end dou;
architecture rt1 of dou is
signal x,y:std_logic;
begin
 process(clk)
 begin
  if clk'event and clk='1' then
   x<=din;
   y<=x;
  end if;
  dout<=x and( not y);
 end process;
end rt1;

⌨️ 快捷键说明

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