OpenCores
URL https://opencores.org/ocsvn/connect-6/connect-6/trunk

Subversion Repositories connect-6

[/] [connect-6/] [trunk/] [XILINX/] [BUILD_SCC_SRCH/] [SP6/] [SEG7_LUT.v] - Blame information for rev 17

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 17 sumanta.ch
module SEG7_LUT (       oSEG,iDIG       );
2
input   [3:0]    iDIG;
3
output  [6:0]    oSEG;
4
reg             [6:0]    oSEG;
5
 
6
always @(iDIG)
7
begin
8
                case(iDIG)
9
                4'h1: oSEG = 7'b1111001;        // ---t----
10
                4'h2: oSEG = 7'b0100100;        // |      |
11
                4'h3: oSEG = 7'b0110000;        // lt    rt
12
                4'h4: oSEG = 7'b0011001;        // |      |
13
                4'h5: oSEG = 7'b0010010;        // ---m----
14
                4'h6: oSEG = 7'b0000010;        // |      |
15
                4'h7: oSEG = 7'b1111000;        // lb    rb
16
                4'h8: oSEG = 7'b0000000;        // |      |
17
                4'h9: oSEG = 7'b0011000;        // ---b----
18
                4'ha: oSEG = 7'b0001000;
19
                4'hb: oSEG = 7'b0000011;
20
                4'hc: oSEG = 7'b1000110;
21
                4'hd: oSEG = 7'b0100001;
22
                4'he: oSEG = 7'b0000110;
23
                4'hf: oSEG = 7'b0001110;
24
                4'h0: oSEG = 7'b1000000;
25
                endcase
26
end
27
 
28
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.