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

📄 bl.vhd

📁 步进电机8细分CPLD相序及外部DA输出 实际细分数可达64细分 使用Atmel maxplus2 V10.1软件
💻 VHD
字号:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
entity bl is
    port (
        BLCLK: in STD_LOGIC;
        reset :in std_logic;
        output: out STD_LOGIC
      --  output1: out STD_LOGIC
    );
end bl;
architecture behave of bl is
begin   
  -- <<enter your statements here>>    
    P1:process(BLCLK)             
    begin            
       if BLCLK'event and BLCLK='0'  then           
           if (reset='1')  then
                output<='0';
           else 
                output<='1';
           end if;        
        end if;  
     --  output1<=output ;	 
    end process;           
end behave;


⌨️ 快捷键说明

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