python七段数码管显示字母代码_七段数码管学号显示 vhdl

该博客内容涉及VHDL编程,用于设计一个数字显示控制器。它包含了一个过程,该过程根据输入的时钟信号`clk`来控制输出`k`和`smgout`,这些输出用于驱动7段显示器显示0到9的数字。`smg`函数将整数转换为7段码,以便在显示器上正确显示对应的数字。
摘要由CSDN通过智能技术生成

library ieee;

use ieee.std_logic_1164.all;

use ieee.std_logic_unsigned.all;

use ieee.std_logic_arith.all;

entity xuehao is

port(clk:in std_logic;

k:out std_logic_vector(7 downto 0);

smgout:out std_logic_vector(7 downto 0));

end xuehao;

architecture str of xuehao is

signal kct:integer range 0 to 7;

signal en:std_logic;

function smg(xh:integer range 0 to 9)

return std_logic_vector is

variable

smg7:std_logic_vector(7 downto 0);

begin

case xh is

WHEN 0 => smg7:="00111111";

WHEN 1 => smg7:="00000110";

WHEN 2 => smg7:="01011011";

WHEN 3 => smg7:="01001111";

WHEN 4 => smg7:="01100110";

WHEN 5 => smg7:="01101101";

WHEN 6 => smg7:="01111101";

WHEN 7 => smg7:="00000111";

WHEN 8 => smg7:="01111111";

WHEN 9 => smg7:="01101111";

end case;

return smg7;

end smg;

begin

process(clk)

variable clkct:std_logic_vector(13 downto 0);

begin

if clk'event and clk='1' then

if clkct<10000 then

clkct:=clkct+'1';

en<='0';

else

clkct:=(others=>'0');

en<='1';

end if;

end if;

end process;

process(en)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值