OpenCores
URL https://opencores.org/ocsvn/ag_6502/ag_6502/trunk

Subversion Repositories ag_6502

[/] [ag_6502/] [trunk/] [agat7/] [ag_6502.v] - Blame information for rev 7

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 olegodints
`timescale 1ns / 1ps
2
//////////////////////////////////////////////////////////////////////////////////
3
// Company:   BMSTU
4
// Engineer:  Oleg Odintsov
5
// 
6
// Create Date:    10:50:36 02/15/2012 
7
// Design Name: 
8 4 olegodints
// Module Name:    my6502 
9 2 olegodints
// Project Name:    Agat Hardware Project
10
// Target Devices: 
11
// Tool versions: 
12
// Description: 
13
//
14
// Dependencies: 
15
//
16
// Revision: 
17
// Revision 0.01 - File Created
18 4 olegodints
// Revision 0.02 - Fixed NMI bug
19 6 olegodints
// Revision 0.03 - Updated clocking constants to support higher frequencies
20 2 olegodints
// Additional Comments: 
21
//
22
//////////////////////////////////////////////////////////////////////////////////
23
 
24
 
25
// Specify following define to allow external 
26
//              clocking for phi1 and phi2
27
//      In such case you may use ag6502_ext_clock module
28
//              with baseclk frequency ~ 10 x phi_0
29
`define AG6502_EXTERNAL_CLOCK
30
 
31
 
32
`ifndef AG6502_EXTERNAL_CLOCK
33
module ag6502_clock(input phi_0, output phi_1, output phi_2);
34
        wire phi_01;
35
        not#3(phi_1,phi_0);
36
        or(phi_01,~phi_0, phi_1);
37
        not#1(phi_2, phi_01);
38
endmodule
39
 
40
 
41
`else
42
 
43
module ag6502_phase_shift(input baseclk, input phi_0, output reg phi_1);
44 7 olegodints
        parameter DELAY = 1; // delay in waves of baseclk
45 2 olegodints
        initial phi_1 = 0;
46
        integer cnt = 0;
47
 
48
        always @(posedge baseclk) begin
49
                if (phi_0 != phi_1) begin
50 4 olegodints
                        if (!cnt) begin phi_1 <= phi_0; cnt <= DELAY; end
51 2 olegodints
                        else cnt <= cnt - 1;
52
                end
53
        end
54
endmodule
55
 
56
// baseclk is used to simulate delays on a real hardware
57
module ag6502_ext_clock(input baseclk, input phi_0, output phi_1, output phi_2);
58 6 olegodints
        parameter DELAY1 = 2, DELAY2 = 0; // delays in semi-waves of baseclk
59 2 olegodints
 
60
        wire phi_1_neg, phi_01;
61
 
62
        ag6502_phase_shift#DELAY1 d1(baseclk, phi_0, phi_1_neg);
63
        assign phi_1 = ~phi_1_neg;
64
 
65
        and(phi_01, phi_0, phi_1_neg);
66
        ag6502_phase_shift#DELAY2 d2(baseclk, phi_01, phi_2);
67
endmodule
68
 
69
`endif
70
 
71
 
72
`define ALU_ORA 3'd0
73
`define ALU_AND 3'd1
74
`define ALU_EOR 3'd2
75
`define ALU_ADC 3'd3
76
`define ALU_ASL 3'd4
77
`define ALU_LSR 3'd5
78
`define ALU_ROL 3'd6
79
`define ALU_ROR 3'd7
80
 
81
 
82
module ag6502_decimal(ADD, D_IN, NEG, CORR);
83
        input wire[4:0] ADD;
84
        input wire D_IN, NEG;
85
        output wire[4:0] CORR;
86
        wire C9 = {ADD[4]^NEG, ADD[3:0]} > 5'd9;
87
 
88
        assign CORR = D_IN?{C9^NEG, C9?ADD[3:0] + (NEG?4'd10:4'd6): ADD[3:0]}: ADD;
89
endmodule
90
 
91
 
92
module ag6502_alu(A, B, OP, NEG, C_IN, D_IN, R, C_OUT, V_OUT);
93
        input wire[7:0] A, B;
94
        input wire[2:0] OP;
95
        input wire C_IN, D_IN, NEG;
96
        output wire[7:0] R;
97
        output wire C_OUT, V_OUT;
98
 
99
        wire[4:0] ADD_L;
100
        ag6502_decimal DL({1'b0, A[3:0]} + {1'b0, B[3:0]} + C_IN, D_IN, NEG, ADD_L);
101
        wire CF_H = ADD_L[4];
102
 
103
        wire[4:0] ADD_H;
104
        ag6502_decimal DH({1'b0, A[7:4]} + {1'b0, B[7:4]} + CF_H, D_IN, NEG, ADD_H);
105
 
106
        assign
107
                {C_OUT,R} = (OP==`ALU_ORA)? A | B:
108
                                (OP==`ALU_AND)? A & B:
109
                                (OP==`ALU_EOR)? A ^ B:
110
                                (OP==`ALU_ADC)? {ADD_H, ADD_L[3:0]}:
111
                                (OP==`ALU_ASL)? {A[7], A[6:0], 1'b0}:
112
                                (OP==`ALU_LSR)? {A[0], 1'b0, A[7:1]}:
113
                                (OP==`ALU_ROL)? {A[7], A[6:0], C_IN}:
114
                                (OP==`ALU_ROR)? {A[0], C_IN, A[7:1]}:
115
                                8'bX;
116
        assign V_OUT = (A[7] == B[7]) && (A[7] != R[7]);
117
endmodule
118
 
119
/*
120
        System AB/DB discipline:
121
        1. For CPU
122
                Phi1 up => CPU set ab/db_out buses
123
                Phi2 down => CPU reads data from db_in
124
        2. For Memory / other devices
125
                Phi2 up => perform read/write operation
126
*/
127
 
128
 
129
module ag6502(input phi_0,
130
`ifdef AG6502_EXTERNAL_CLOCK
131
                input phi_1, input phi_2,
132
`else
133
                output phi_1, output phi_2,
134
`endif
135
                output reg[15:0] ab,
136
                output wire read,
137
                input[7:0] db_in, output reg[7:0] db_out,
138
                input rdy,
139
                input rst, input irq, input nmi,
140
                input so,
141
                output sync);
142
 
143
`ifndef AG6502_EXTERNAL_CLOCK
144
        ag6502_clock cgen(phi_0, phi_1, phi_2);
145
`endif
146
 
147
        reg rdyg = 1;
148
 
149
        reg[2:0] T = 7;
150 4 olegodints
        reg[7:0] IR ='h00;
151 2 olegodints
 
152
        reg[15:0] PC = 0;
153
        wire[7:0] PCH = PC[15:8], PCL = PC[7:0];
154
        reg[7:0] EAL, EAH;
155
        wire[15:0] EA = {EAH, EAL};
156
 
157
        reg FLAG_C, FLAG_Z, FLAG_I, FLAG_D, FLAG_B, FLAG_V, FLAG_N;
158
 
159
        reg[7:0] AC, X, Y, S = 0;
160
        wire[7:0] P = {FLAG_N, FLAG_V, 1'b1, FLAG_B, FLAG_D, FLAG_I, FLAG_Z, FLAG_C};
161
        wire[7:0] SB;
162
 
163
 
164
        wire[7:0] ALU_A, ALU_B;
165
        wire[7:0] RES;
166
        wire[2:0] ALU_OP;
167
        reg[8:0] eALU; // with carry
168
        wire[7:0] ALU = eALU;
169
        wire ALU_CF = eALU[8];
170
 
171
        wire CF_IN, DF_IN;
172
        wire CF_OUT, VF_OUT;
173
 
174
        reg so_prev = 0;
175
        reg nmi_prev = 0;
176
        wire irq_active = ~irq & ~FLAG_I;
177
        wire nmi_active = ~nmi & nmi_prev;
178
        wire int_active = irq_active | nmi_active;
179
        wire rst_active = ~rst;
180
        wire so_active = so & ~so_prev;
181
 
182 4 olegodints
        wire[7:0] IR_in = int_active?8'b0:db_in;
183
 
184 2 olegodints
        wire[1:0] vec_bits=
185
                        nmi_active?2'b01:
186
                        rst_active?2'b10:
187
                        2'b11;
188
 
189
        wire[15:0] vec_addr = {{13{1'b1}}, vec_bits, 1'b0};
190
 
191 4 olegodints
        wire[10:0] L = {T, IR};
192 2 olegodints
 
193
        `include "states.v"
194
 
195
        assign read = ~A_RW_W;
196
        assign sync = !T;
197
 
198
        assign SB = A_SB_DB? db_in:
199
                                        A_SB_AC? AC:
200
                                        A_SB_X? X:
201
                                        A_SB_Y? Y:
202
                                        A_SB_S? S:
203
                                        A_SB_P? P:
204
                                        A_SB_ALU? ALU:
205
                                        A_SB_0? 8'b0:
206
                                        A_SB_PCH? PCH:
207
                                        A_SB_PCL? PCL:
208
                                        8'bX;
209
 
210
        assign CF_IN = A_ALU_CF_0? 1'b0:
211
                                        A_ALU_CF_1? 1'b1:
212
                                        A_ALU_CF_ALUC? ALU_CF:
213
                                        FLAG_C;
214
 
215
        assign DF_IN = A_ALU_DF_D? FLAG_D: 1'b0;
216
 
217
        assign ALU_A =
218
                                        A_ALU_A_AC? AC:
219
                                        A_ALU_A_X? X:
220
                                        A_ALU_A_Y? Y:
221
                                        A_ALU_A_DB? db_in:
222
                                        A_ALU_A_EAL? EAL:
223
                                        A_ALU_A_ALU? ALU:
224
                                        A_ALU_A_S? S:
225
                                        A_ALU_A_SIGN? (EAL[7]?8'b11111111:8'b00000001):
226
                                        8'bX;
227
 
228
        assign ALU_B = A_ALU_B_SB? SB:
229
                                        A_ALU_B_NOTSB? ~SB:
230
                                        8'bX;
231
 
232
        assign ALU_OP = A_ALU_OP_ADC? `ALU_ADC:
233
                                        A_ALU_OP_ORA? `ALU_ORA:
234
                                        A_ALU_OP_EOR? `ALU_EOR:
235
                                        A_ALU_OP_AND? `ALU_AND:
236
                                        A_ALU_OP_ASL? `ALU_ASL:
237
                                        A_ALU_OP_LSR? `ALU_LSR:
238
                                        A_ALU_OP_ROL? `ALU_ROL:
239
                                        A_ALU_OP_ROR? `ALU_ROR:
240
                                        8'bX;
241
 
242
        ag6502_alu alu(ALU_A, ALU_B, ALU_OP, A_ALU_B_NOTSB, CF_IN, DF_IN, RES, CF_OUT, VF_OUT);
243
 
244
        always @(posedge phi_1) begin
245
                if (E_AB__PC) ab <= PC;
246
                else if (E_AB__EA) ab <= EA;
247
                else if (E_AB__S) ab <= {8'b1, S};
248
 
249
                if (E_DB__SB) db_out <= SB;
250
                else if (E_DB__PCH) db_out <= PCH;
251
                else if (E_DB__PCL) db_out <= PCL;
252
                else if (E_DB__P) db_out <= P;
253
                else if (E_DB__ALU) db_out <= ALU;
254
 
255
                if (read) rdyg <= rdy;
256
        end
257
 
258
 
259
        wire cond;
260
 
261
        assign cond =
262
                        E_T__0IFNF__IR_5_?(FLAG_N != IR[5]):
263
                        E_T__0IFVF__IR_5_?(FLAG_V != IR[5]):
264
                        E_T__0IFCF__IR_5_?(FLAG_C != IR[5]):
265
                        E_T__0IFZF__IR_5_?(FLAG_Z != IR[5]):
266
                        E_T__0IFZF__IR_5_?(FLAG_Z != IR[5]):
267
                        E_T__0IF_C7F? CF_OUT == EAL[7]:
268
                        E_T__0;
269
 
270
        always @(negedge phi_2) if (rdyg) begin
271 4 olegodints
                if (E_PC__PC_1) begin
272
                        if (T || (!int_active && !rst_active)) PC <= PC + 1;
273
                end else if (E_PC__EA) PC <= EA;
274 2 olegodints
                else begin
275
                        if (E_PCH__RES) PC[15:8] <= RES;
276
                        if (E_PCL__ALU) PC[7:0] <= ALU;
277
                        else if (E_PCL__RES) PC[7:0] <= RES;
278
                        else if (E_PCL__EAL) PC[7:0] <= EAL;
279
                        else if (E_PCL__DB) PC[7:0] <= db_in;
280
                end
281
 
282
                if (!T) begin
283 4 olegodints
                        IR <= IR_in;
284
                        if (!IR_in) begin // BRK instruction
285 2 olegodints
                                {EAH, EAL} <= vec_addr;
286
                        end
287
                        nmi_prev <= nmi;
288
                end
289
 
290
                if (E_N_Z__SB) begin FLAG_Z <= !SB; FLAG_N <= SB[7]; end
291
                else if (E_N_Z__RES) begin FLAG_Z <= !RES; FLAG_N <= RES[7]; end
292
                else if (E_N_Z__SB_RES) begin FLAG_Z <= !RES; FLAG_N <= SB[7]; end
293
 
294
                if (E_C__RES) FLAG_C <= CF_OUT;
295
                if (E_V__RES) FLAG_V <= VF_OUT;
296
                else if (E_V__SB_6_) FLAG_V <= SB[6];
297
 
298
                if (E_EAL__DB) EAL <= db_in;
299
                else if (E_EAL__ALU) EAL <= ALU;
300
 
301
 
302
                if (E_EA__DB) {EAH, EAL} <= { 8'b0, db_in };
303
                else if (E_EAH__DB) EAH <= db_in;
304
                else if (E_EAH__ALU) EAH <= ALU;
305
 
306
                if (E_AC__SB) AC <= SB;
307
                else if (E_AC__RES) AC <= RES;
308
 
309
                if (E_S__ALU) S <= ALU;
310
 
311
                if (E_X__SB) X <= SB;
312
                else if (E_X__RES) X <= RES;
313
 
314
                if (E_Y__SB) Y <= SB;
315
                else if (E_Y__RES) Y <= RES;
316
 
317
                if (E_S__SB) S <= SB;
318
                if (E_P__SB) {FLAG_N, FLAG_V, FLAG_B, FLAG_D, FLAG_I, FLAG_Z, FLAG_C} <= {SB[7], SB[6], SB[4], SB[3], SB[2], SB[1], SB[0]};
319
                else if (E_P__DB) {FLAG_N, FLAG_V, FLAG_B, FLAG_D, FLAG_I, FLAG_Z, FLAG_C} <= {db_in[7], db_in[6], db_in[4], db_in[3], db_in[2], db_in[1], db_in[0]};
320
 
321
                if (E_CF__IR_5_) FLAG_C <= IR[5];
322
                if (E_IF__IR_5_) FLAG_I <= IR[5];
323
                if (E_DF__IR_5_) FLAG_D <= IR[5];
324
                if (E_VF__0) FLAG_V <= 0;
325
                else if (so_active) FLAG_V <= 1;
326
                so_prev <= so;
327
 
328
                eALU <= {CF_OUT, RES};
329
 
330
                if (cond) begin
331
                        T <= 0;
332 4 olegodints
                        if (!IR) begin
333
                                FLAG_B <= !int_active;
334 2 olegodints
                                FLAG_I <= 1;
335
                        end
336
                end else T <= T + ((E_T__T_1IF_ALUCZ && !ALU_CF)?2: 1);
337
 
338
                if (rst_active) begin
339
                        T <= 1;
340
                        IR <= 0;
341
                        {EAH, EAL} <= vec_addr;
342
                end
343
        end
344
 
345
 
346
endmodule
347
 

powered by: WebSVN 2.1.0

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