所需E币: 4
时间: 2020-1-4 12:09
大小: 33.5KB
FPGA驱动LED静态显示8.2LED控制VHDL程序与仿真本节分别介绍采用FPGA对LED进行静态和动态显示的数字时钟控制程序。1.例1:FPGA驱动LED静态显示--文件名:decoder.vhd。--功能:译码输出模块,LED为共阳接法。--最后修改日期:2004.3.24。libraryIEEE;useIEEE.STD_LOGIC_1164.ALL;useIEEE.STD_LOGIC_ARITH.ALL;useIEEE.STD_LOGIC_UNSIGNED.ALL;entitydecoderisPort(seg:instd_logic_vector(3downto0);--四位二进制码输入q3:outstd_logic_vector(6downto0));--输出LED七段码enddecoder;architectureBehavioralofdecoderisbeginprocess(seg)begincasesegiswhen"0000"=>q3when"0001"=>q3when"0010"=>q3when"0011"=>q3when"0100"=>q3when"0101"=>q3when"0110"=>q3when"0111"=>q3when"1000"=>q3whe……