-
Notifications
You must be signed in to change notification settings - Fork 0
/
hex_number_ssd.v
221 lines (175 loc) · 5.7 KB
/
hex_number_ssd.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 04/24/2022 02:34:12 PM
// Design Name:
// Module Name: hex_number_ssd
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module hex_number_ssd(
input clock,
input reset,
output reg [7:0] Anode_Activate, // 8 anode signals for the SSD
output reg [6:0] LED_out, // cathode patterns
input enter_button,
input set_button,
input change_button,
input [3:0] hex1,
input [3:0] hex2,
input [3:0] hex3,
input [3:0] hex4,
input [1:0] counter,
input [1:0] state
);
reg [5:0] enumerated_state;
reg [5:0] LED_BCD;
reg [19:0] refresh_counter;
wire [2:0] LED_activating_counter;
reg [4:0] h1, h2, h3, h4;
always @(*)
begin
if(state == 2'b00 || state == 2'b10)
begin
h1 <= 5'b10100;
h2 <= 5'b10100;
h3 <= 5'b10100;
h4 <= 5'b10100;
end
else if(state == 2'b00 && counter == 2'b01)
begin
h1 <= {1'b0, hex1};
h2 <= 5'b10100;
h3 <= 5'b10100;
h4 <= 5'b10100;
end
else if(state == 2'b00 && counter == 2'b01)
begin
h1 <= {1'b0, hex1};
h2 <= {1'b0, hex2};
h3 <= 5'b10100;
h4 <= 5'b10100;
end
else if(state == 2'b00 && counter == 2'b10)
begin
h1 <= {1'b0, hex1};
h2 <= {1'b0, hex2};
h3 <= {1'b0, hex3};
h4 <= 5'b10100;
end
else if(state == 2'b00 && counter == 2'b11)
begin
h1 <= {1'b0, hex1};
h2 <= {1'b0, hex2};
h3 <= {1'b0, hex3};
h4 <= {1'b0, hex4};
end
end
always @(posedge clock or posedge reset)
begin
if(reset == 1)
refresh_counter <= 0;
else
refresh_counter <= refresh_counter + 1;
end
assign LED_activating_counter = refresh_counter[19:17];
always @(*)
begin
case(state)
2'b00: enumerated_state <= 5'b10001; // initial
2'b01: enumerated_state <= 5'b10011; // unlocked
2'b10: enumerated_state <= 5'b10010; // locked
endcase
end
always @(*)
begin
case(LED_activating_counter)
3'b000: begin
Anode_Activate = 8'b11101111;
// activate LED1 and Deactivate LED2, LED3, LED4
LED_BCD = enumerated_state;
// the first digit of the 16-bit number
end
3'b001: begin
Anode_Activate = 8'b11110111;
// activate LED2 and Deactivate LED1, LED3, LED4
LED_BCD = h1;
// the second digit of the 16-bit number
end
3'b010: begin
Anode_Activate = 8'b11111011;
// activate LED3 and Deactivate LED2, LED1, LED4
LED_BCD = h2;
// the third digit of the 16-bit number
end
3'b011: begin
Anode_Activate = 8'b11111101;
// activate LED4 and Deactivate LED2, LED3, LED1
LED_BCD = h3;
// the fourth digit of the 16-bit number
end
3'b100: begin
Anode_Activate = 8'b11111110;
// activate LED4 and Deactivate LED2, LED3, LED1
LED_BCD = h4;
// the fourth digit of the 16-bit number
end
3'b101: begin
Anode_Activate = 8'b01111111;
// activate LED4 and Deactivate LED2, LED3, LED1
LED_BCD = 5'b10100;
// the fourth digit of the 16-bit number
end
3'b110: begin
Anode_Activate = 8'b10111111;
// activate LED4 and Deactivate LED2, LED3, LED1
LED_BCD = 5'b10100;
// the fourth digit of the 16-bit number
end
3'b111: begin
Anode_Activate = 8'b11011111;
// activate LED4 and Deactivate LED2, LED3, LED1
LED_BCD = 5'b10100;
// the fourth digit of the 16-bit number
end
endcase
end
// Cathode patterns of the 7-segment LED display
always @(*)
begin
case(LED_BCD)
5'b00000: LED_out = 7'b0000001; // "0"
5'b00001: LED_out = 7'b1001111; // "1"
5'b00010: LED_out = 7'b0010010; // "2"
5'b00011: LED_out = 7'b0000110; // "3"
5'b00100: LED_out = 7'b1001100; // "4"
5'b00101: LED_out = 7'b0100100; // "5"
5'b00110: LED_out = 7'b0100000; // "6"
5'b00111: LED_out = 7'b0001111; // "7"
5'b01000: LED_out = 7'b0000000; // "8"
5'b01001: LED_out = 7'b0000100; // "9"
5'b01010: LED_out = 7'b0001000; // "10-A"
5'b01011: LED_out = 7'b1100000; // "11-B"
5'b01100: LED_out = 7'b0110001; // "12-C"
5'b01101: LED_out = 7'b1000010; // "13-D"
5'b01110: LED_out = 7'b0110000; // "14-E"
5'b01111: LED_out = 7'b0111000; // "15-F"
5'b10001: LED_out = 7'b1111001; // "I"
5'b10010: LED_out = 7'b1000001; // "U"
5'b10011: LED_out = 7'b1110001; // "L"
5'b10100: LED_out = 7'b1111111; // "turned off"
default: LED_out = 7'b0000001; // "0"
endcase
end
endmodule