原创 七段数码管译码器.(Verilog)

2008-7-5 16:49 5222 14 16 分类: FPGA/CPLD

1. 七段数码管的lookup table
module SEG7_LUT (
  input      [3:0] iDIG,
  output reg [6:0] oSEG
);


always@(iDIG)
begin
  case(iDIG)
    4'h1: oSEG = 7'b1111001;  // ---t----
    4'h2: oSEG = 7'b0100100;  // |      |
    4'h3: oSEG = 7'b0110000;  // lt     rt
    4'h4: oSEG = 7'b0011001;  // |      |
    4'h5: oSEG = 7'b0010010;  // ---m----
    4'h6: oSEG = 7'b0000010;  // |      |
    4'h7: oSEG = 7'b1111000;  // lb     rb
    4'h8: oSEG = 7'b0000000;  // |      |
    4'h9: oSEG = 7'b0011000;  // ---b----
    4'ha: oSEG = 7'b0001000;
    4'hb: oSEG = 7'b0000011;  
    4'hc: oSEG = 7'b1000110;  
    4'hd: oSEG = 7'b0100001;  
    4'he: oSEG = 7'b0000110;  
    4'hf: oSEG = 7'b0001110;  
    default: oSEG = 7'b1000000;  
  endcase                    
end                           
                              
endmodule


1) 注释说明的是七段数码管的结构,其中:
   t=top
   b=bottom
   m="middle"

   l="left"
   r="right"
  
若表示为下面的格式,则有可能更好理解。
   ---0----
   |      |
   5      1
   |      |
   ---6----
   |      |
   4      2
   |      |
   ---3----


2) 关于Verilog HDL entity,可在定义module时,先指定端口;然后,再声明端口的类型。如:
   module example (oC, iA, iB);
     output  oC;
     input   iA, iB;
   当然,也可以直接在定义module时,指定端口及声明其类型。如:
   module example (
     output  oC,
     input   iA,
     input   iB
   );


2. 实例化(调用)
   SEG7_LUT name (
     .iDIG(porta[6:0]);
     .oSEG(portb[3:0])
   );

  


 

PARTNER CONTENT

文章评论2条评论)

登录后参与讨论

用户485340 2008-9-5 16:40

收藏

ilove314_323192455 2008-7-7 15:44

刚开的BLOG要顶一个
相关推荐阅读
用户1373959 2009-11-17 22:44
本博客地址迁移.(公告)
迁移至:http://yuphone.cnblogs.com/...
用户1373959 2009-10-16 13:10
七段数码管动态显示IP的研究及设计.(Nios II)(SOPC Builder)
这两个礼拜整理的,欢迎大家抓虫。...
用户1373959 2009-10-16 13:00
sizeof()和strlen()的区别.(C)
#include <stdio.h>int main(void){  char msg[] = "Hello Nios!";    printf("sizeof(msg) = %ld", ...
用户1373959 2009-10-16 12:56
HAL的不同方式访问字符器件的空间开销简单比较.(Nios II)
Unix类型 #include "system.h"#include "fcntl.h"#include "unistd.h"int main(void){  int fd; // file desc...
用户1373959 2009-10-16 12:49
几个的Ubuntu 9.04好源.(Ubuntu)
新加坡国立大学理学院 - 全国通用deb http://ftp.science.nus.edu.sg/ubuntu/ jaunty main restricted universe multivers...
用户1373959 2009-05-05 10:43
NI Multisim 基础电路范例.(Multisim)
NI官网提供的NI Multisim Fundamental Circuits, 内容涵盖RLC电路, 二极管, 晶体管, 放大器, 运放, 滤波器和混合电路. 这些内容不仅可作为初学者的学习范例, ...
我要评论
2
14
关闭 站长推荐上一条 /3 下一条