-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComputer_wo_Pipelining.sv
More file actions
266 lines (230 loc) · 4.93 KB
/
Copy pathComputer_wo_Pipelining.sv
File metadata and controls
266 lines (230 loc) · 4.93 KB
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
module Computer(
input logic Clock,
input logic[17:0] SW,
input logic[3:0] KEY,
output logic[17:0] RLED,
output logic[8:0] GLED,
output logic[7:0] HEX[7:0]
);
logic[31:0] InstructionAddress,Instruction,InstructionWriteAddress,InstructionWriteData,
RegData1,RegData2,RegDataIn,
ALUResult,ALUIn2,
MemData,
ImmediateData;
logic[4:0] ReadReg1,ReadReg2,WriteReg;
//Single Bit Signals
//Outcome Signals
logic ALUZero;
//Control Signals
logic Branch,
MemRead,
MemtoReg,
MemWrite,
ALUSrc,
RegWrite;
logic[3:0] ALUOp;
//UI Signals
logic clk,
Reset,
ImmediateShow,
ManualClock,
HighManualClock,
LowManualClock,
InstructionWrite,
RegisterShow;
logic [3:0] ClockReduction;
logic [31:0] InputAddress,InputData,HEXNumber,OutputRegister;
logic [1:0] Address,Data;
assign RLED[14:0] = {WriteReg,ReadReg1,ReadReg2};
assign RLED[17:15] = ALUOp[2:0];
assign GLED[6:0]={RegWrite,ALUSrc,MemWrite,MemtoReg,MemRead,Branch,ALUZero};
always_ff@(posedge Clock)
begin
ClockReduction<=ClockReduction+1;
end
always_ff@(posedge Clock)
begin
if(HighManualClock)
begin
ManualClock<=1;
end else begin
if(LowManualClock)
begin
ManualClock<=0;
end
end
end
always_ff@(posedge Clock)
begin
if(SW[17])//Programming Mode
begin
if(KEY[3]==0)//Upper 16-bit
begin
if(SW[16])//Data Mode
begin
Data[1]<=1;
end else begin//Address Mode
Address[1]<=1;
end
end else begin
if(KEY[2]==0)
begin//Lower 16-bit
if(SW[16])//Data Mode
begin
Data[0]<=1;
end else begin//Address Mode
Address[0]<=1;
end
end
end
if(KEY[1]==0)
begin
Data<=0;
Address<=0;
end
end
end
always_ff@(posedge Clock)
begin
if(SW[17])//Programming Mode
begin
if(KEY[3]==0)//Upper 16-bit
begin
if(SW[16])//Data Mode
begin
InputData[31:16]<=SW[15:0];
end else begin//Address Mode
InputAddress[31:16]<=SW[15:0];
end
end else begin
if(KEY[2]==0)
begin//Lower 16-bit
if(SW[16])//Data Mode
begin
InputData[15:0]<=SW[15:0];
end else begin//Address Mode
InputAddress[15:0]<=SW[15:0];
end
end
end
end
end
always_comb
begin
if(SW[17]) //Programming Mode
begin
HEXNumber = SW[16] ? InputData : InputAddress;
InstructionWriteAddress=InputAddress;
InstructionWriteData=InputData;
InstructionWrite=~KEY[1];
Reset=~KEY[0];
HighManualClock=0;
LowManualClock=0;
ImmediateShow=0;
RegisterShow=0;
clk = 0;
end else begin //Running Mode
if(SW[16])
begin
clk=Clock;//ClockReduction[3];
HighManualClock=0;
LowManualClock=0;
Reset=~KEY[0];
end else begin
HighManualClock=~KEY[0];
LowManualClock=~KEY[1];
clk=ManualClock;
Reset=0;
end
ImmediateShow = ~KEY[2];
RegisterShow = ~KEY[3];
HEXNumber = RegisterShow & ImmediateShow ? ALUResult:
RegisterShow ? OutputRegister :
ImmediateShow ? ImmediateData :
InstructionAddress;
InstructionWriteAddress={32{1'b0}};
InstructionWriteData={32{1'b0}};
InstructionWrite=0;
end
end
HEXDisplay Disp7(
.I(HEXNumber[31:28]),
.O(HEX[7]));
HEXDisplay Disp6(
.I(HEXNumber[27:24]),
.O(HEX[6]));
HEXDisplay Disp5(
.I(HEXNumber[23:20]),
.O(HEX[5]));
HEXDisplay Disp4(
.I(HEXNumber[19:16]),
.O(HEX[4]));
HEXDisplay Disp3(
.I(HEXNumber[15:12]),
.O(HEX[3]));
HEXDisplay Disp2(
.I(HEXNumber[11:8]),
.O(HEX[2]));
HEXDisplay Disp1(
.I(HEXNumber[7:4]),
.O(HEX[1]));
HEXDisplay Disp0(
.I(HEXNumber[3:0]),
.O(HEX[0]));
ProgramCounter PC(
.Clock(clk),
.Reset(Reset),
.Branch(Branch & ALUZero),
.Move(ImmediateData * 2),
.Count(InstructionAddress));
InstructionMemoryStatic IM(
.Clock(clk),
.ReadAddress(InstructionAddress),
.ReadInstruction(Instruction)//,
//.WriteAddress(InstructionWriteAddress),
//.WriteInstruction(InstructionWriteData),
//.InstructionWrite(InstructionWrite)
);
RegisterFile RF(
.Clock(clk),
.RegWrite(RegWrite),
.ReadReg1(ReadReg1),
.ReadReg2(ReadReg2),
.ReadReg3(SW[4:0]),
.WriteReg(WriteReg),
.ReadData1(RegData1),
.ReadData2(RegData2),
.ReadData3(OutputRegister),
.WriteData(RegDataIn));
ALU CPU(
.Input1(RegData1),
.Input2(ALUIn2),
.Output(ALUResult),
.OpCode(ALUOp),
.Zero(ALUZero));
DataMemory DM(
.Clock(clk),
.Address(ALUResult),
.DataIn(RegData2),
.DataOut(MemData),
.MemWrite(MemWrite));
InstructionDecoder ID(
.Instruction(Instruction),
.ReadReg1(ReadReg1),
.ReadReg2(ReadReg2),
.WriteReg(WriteReg),
.Immediate(ImmediateData),
.OpCode());
ControlLogic CL(
.Instruction(Instruction),
.Branch(Branch),
.MemtoReg(MemtoReg),
.ALUOp(ALUOp),
.MemWrite(MemWrite),
.ALUSrc(ALUSrc),
.RegWrite(RegWrite));
//ALU Signals
assign ALUIn2 = (ALUSrc) ? ImmediateData : RegData2;
//Register File Signals
assign RegDataIn = (MemtoReg) ? MemData : ALUResult;
endmodule