求一个八位七段共阳极数码管的显示程序.
求一个八位七段共阳极数码管的显示程序.
下面的程序能显示76543210,但是9,8这两个数不能显示出来,
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity dynamic_segled is
port
\x09(
\x09\x09clk :in std_logic;\x09
\x09\x09data:out std_logic_vector(7 downto 0);
\x09\x09sel:out std_logic_vector(7 downto 0)
\x09);
end ;
architecture fun of dynamic_segled is
signal cnt:integer range 0 to 62449;
signal flip_led:integer range 0 to 7;
begin
\x09
process(clk)
begin
\x09if clk'event and clk='1' then ----- 动态扫描
\x09\x09 if cnt=62499 then
\x09\x09 \x09cnt
process(flip_led)
begin
\x09case flip_led is ---译码显示
\x09 when 0 =>sel我知道这个程序是轮流显示76543210,我可以将他们随意组合变成其他的数值例如216,100等等,但是8和9这两个数的判断我不知道怎么判断,我将第八个数码管显示7的程序改成如下这样的,希望能显示出8和9,但是不能正常显示,显示为错误的,求大神指导! when 8 =>selsel