Chinaunix首页 | 论坛 | 博客
  • 博客访问: 404424
  • 博文数量: 105
  • 博客积分: 4100
  • 博客等级: 上校
  • 技术积分: 1040
  • 用 户 组: 普通用户
  • 注册时间: 2008-07-27 19:57
文章存档

2012年(1)

2011年(9)

2010年(4)

2009年(25)

2008年(66)

我的朋友

分类:

2008-07-28 10:17:03

 

第一个实验-8路开关控制8个灯

library ieee;
use ieee.std_logic_1164.all;
entity switch_led is
port(key : in std_logic_vector(7 downto 0);
 light : out std_logic_vector(7 downto 0));
end entity switch_led;

architecture behav of switch_led is
 begin
  process(key)
   begin
    for i in 7 downto 0 loop
     light(i) <= key(i);--the led is lighting when the votage is high;
    end loop;
  end process;
 end architecture behav;

阅读(699) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~