七段解码器

时间:2014-10-16 19:41:56

标签: hex decimal verilog decoder seven-segment-display

所以我试图设计七段解码器。当在110按下按钮时,LED显示器应显示1位十六进制数:0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F。但是,当按下101按钮时,LED显示屏应显示1位十进制数:0,1,2,3,4,5,6,7,8,9。

这是我的警告:

Xst:737 - Found 1-bit latch for signal <out<4>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:737 - Found 1-bit latch for signal <out<5>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:737 - Found 1-bit latch for signal <out<3>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:737 - Found 1-bit latch for signal <out<2>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:737 - Found 1-bit latch for signal <out<1>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:737 - Found 1-bit latch for signal <out<0>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:737 - Found 1-bit latch for signal <out<6>>. Latches may be generated from incomplete case or if statements. We do not recommend the use of latches in FPGA/CPLD designs, as they may lead to timing problems.
Xst:2169 - HDL ADVISOR - Some clock signals were not automatically buffered by XST with BUFG/BUFR resources. Please use the buffer_type constraint in order to insert these buffers to the clock signals to help prevent skew problems.

这是我使用Xilinx设计工具的代码:

module hex_sch(out, in, button);
output reg [6:0] out;
input [3:0] in;
input [2:0] button;
// Low active signal should activate the LEDs
    always @(button or in) 
    begin
        if (button == 3'b110) begin
            case (in)
            //Output format gfedcba
            4'h0: out <= 7'b1000000;
            4'h1: out <= 7'b1111001;
            4'h2: out <= 7'b0100100;
            4'h3: out <= 7'b0110000;
            4'h4: out <= 7'b0011001;
            4'h5: out <= 7'b0010010;
            4'h6: out <= 7'b0000010;
            4'h7: out <= 7'b1111000;
            4'h8: out <= 7'b0000000;
            4'h9: out <= 7'b0011000;
            4'hA: out <= 7'b0001000;
            4'hB: out <= 7'b0000011;
            4'hC: out <= 7'b1000110;
            4'hD: out <= 7'b0100001;
            4'hE: out <= 7'b0000110;
            4'hF: out <= 7'b0001110;
            default: out <= 7'bx;
            endcase
            end
        else if (button == 3'b101) begin
            case (in)
            //Output format abcdefg
            4'd0: out <= 7'b1000000;
            4'd1: out <= 7'b1111001;
            4'd2: out <= 7'b0100100;
            4'd3: out <= 7'b0110000;
            4'd4: out <= 7'b0011001;
            4'd5: out <= 7'b0010010;
            4'd6: out <= 7'b0000010;
            4'd7: out <= 7'b1111000;
            4'd8: out <= 7'b0000000;
            4'd9: out <= 7'b0011000;
            default out <= 7'bx;
            endcase
            end
    end
endmodule

1 个答案:

答案 0 :(得分:1)

要删除这些警告,您必须在每个可能的outin中设置button的值。 否则你会得到一个锁扣。

在您的代码中,您没有涵盖button输入的所有可能性 - 您只覆盖110和101。

涵盖代码中所有可能性的简单方法可能是:

  

... //你的模块定义是

     

//低有效信号应激活LED

always @(button or in) 
begin
    if (button == 3'b110) begin
        case (in)
        //Output format gfedcba
     

... //你的案例陈述是

        endcase
    end
    else if (button == 3'b101) begin
        case (in)
     

... //你的案例陈述是

        endcase
    end
    else begin
        out <= 7'b1;
    end
end endmodule

这样,当按钮不同于110或101时,它将显示空白。