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

📄 duo.vhd

📁 应用MaxplusII平台的数字时钟的VHDL源程序
💻 VHD
字号:
library ieee;

use ieee.std_logic_1164.all;



entity duo is

port(din,clk:in std_logic;

        dout:out std_logic);

end duo;



architecture beha of duo 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 beha; 

⌨️ 快捷键说明

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