基于CYCLONG II的自己编的电子时钟.早期作品了,可能这方面的资料也比较多,但是个人思路不同,希望我的程序能给朋友们提供些须帮助.

源代码在线查看: clock.vhd

软件大小: 254 K
上传用户: tiantianyuehui
关键词: CYCLONG 电子时钟 方面 比较
下载地址: 免注册下载 普通下载 VIP

相关代码

				LIBRARY IEEE;
				USE IEEE.STD_LOGIC_1164.ALL;
				USE IEEE.STD_LOGIC_ARITH.ALL;
				USE IEEE.STD_LOGIC_UNSIGNED.ALL;
				
				entity clock IS
				       port(clear:in std_logic;
				            clk:out STD_LOGIC); 
				end clock;
				
				architecture behave of clock is
				  signal temp:std_logic;
				  begin
				  clk				  process(clear)
				  begin
				  if(clear='1')then
				    temp				  elsif(temp				    temp				  else
				    temp				  END IF;
				end process;
				end behave;			

相关资源