基于Quartus II 的流水灯

本文档详细介绍了如何使用Quartus II 9.0sp2 Web Edition进行流水灯的设计与实现,涵盖了从环境搭建到设计流程的全过程。
摘要由CSDN通过智能技术生成

运行环境:Quartus II 9.0sp2 Web Edition

--****************Library*****************
LIBRARY IEEE;
use IEEE.STD_LOGIC_1164.all;
use IEEE.STD_LOGIC_ARITH.all;
use IEEE.STD_LOGIC_UNSIGNED.all;
--****************Entity******************
ENTITY liushuideng IS
	PORT( clk, rst : IN STD_LOGIC;
               led : OUT STD_LOGIC_VECTOR(7 downto 0));
END ENTITY;
--*************Architecture****************
ARCHITECTURE one OF liushuideng IS
signal clk2 : std_logic;
begin
	process(clk)
	variable cnt : integer range 0 to 1000000000;
		begin
		if (clk'event and clk = '1') then
			if (rst = '1') then
				if (cnt < 12500000) then
					cnt := cnt + 1;
				else
					cnt := 0;
					clk2 <= not clk2;
				end if;
			else
				cnt := 0;
			end if;
		end if;
	end process;
	
	process(clk2)
	variable state : integer range 0 to 8;
	begin
		if(rst = '1') then
			if(clk2'event and clk2 = '1') then
				state :=
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值