-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_logical_ops.cpp
More file actions
282 lines (247 loc) · 6.64 KB
/
Copy pathtest_logical_ops.cpp
File metadata and controls
282 lines (247 loc) · 6.64 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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include "CPU65C02.h"
#include <iostream>
#include <iomanip>
#include <cassert>
using namespace std;
void print_test_header(const char* test_name) {
cout << "\n=== Testing " << test_name << " ===\n";
}
void print_test_result(bool passed) {
cout << (passed ? "PASSED" : "FAILED") << endl;
}
// Helper function to load a program into CPU
void load_program(CPU65C02& cpu, const uint8_t* program, size_t size) {
uint8_t* program_copy = new uint8_t[size];
memcpy(program_copy, program, size);
cpu.load_program(program_copy, size);
delete[] program_copy;
}
// Test AND operations
void test_and_operations() {
print_test_header("AND Operations");
CPU65C02 cpu;
// Test AND_IMM
{
uint8_t program[] = {
0xA9, 0x0F, // LDA #$0F
0x29, 0xF0, // AND #$F0
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x00);
}
// Test AND_ZP
{
uint8_t program[] = {
0xA9, 0xFF, // LDA #$FF
0x85, 0x00, // STA $00
0xA9, 0x0F, // LDA #$0F
0x25, 0x00, // AND $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x0F);
}
}
// Test ORA operations
void test_ora_operations() {
print_test_header("ORA Operations");
CPU65C02 cpu;
// Test ORA_IMM
{
uint8_t program[] = {
0xA9, 0x0F, // LDA #$0F
0x09, 0xF0, // ORA #$F0
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0xFF);
}
// Test ORA_ZP
{
uint8_t program[] = {
0xA9, 0x0F, // LDA #$0F
0x85, 0x00, // STA $00
0xA9, 0xF0, // LDA #$F0
0x05, 0x00, // ORA $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0xFF);
}
}
// Test EOR operations
void test_eor_operations() {
print_test_header("EOR Operations");
CPU65C02 cpu;
// Test EOR_IMM
{
uint8_t program[] = {
0xA9, 0x0F, // LDA #$0F
0x49, 0xF0, // EOR #$F0
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0xFF);
}
// Test EOR_ZP
{
uint8_t program[] = {
0xA9, 0x0F, // LDA #$0F
0x85, 0x00, // STA $00
0xA9, 0xF0, // LDA #$F0
0x45, 0x00, // EOR $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0xFF);
}
}
// Test ASL operations
void test_asl_operations() {
print_test_header("ASL Operations");
CPU65C02 cpu;
// Test ASL_ACC
{
uint8_t program[] = {
0xA9, 0x42, // LDA #$42
0x0A, // ASL A
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x84);
}
// Test ASL_ZP
{
uint8_t program[] = {
0xA9, 0x42, // LDA #$42
0x85, 0x00, // STA $00
0x06, 0x00, // ASL $00
0xA5, 0x00, // LDA $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x84);
}
}
// Test LSR operations
void test_lsr_operations() {
print_test_header("LSR Operations");
CPU65C02 cpu;
// Test LSR_ACC
{
uint8_t program[] = {
0xA9, 0x84, // LDA #$84
0x4A, // LSR A
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x42);
}
// Test LSR_ZP
{
uint8_t program[] = {
0xA9, 0x84, // LDA #$84
0x85, 0x00, // STA $00
0x46, 0x00, // LSR $00
0xA5, 0x00, // LDA $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x42);
}
}
// Test ROL operations
void test_rol_operations() {
print_test_header("ROL Operations");
CPU65C02 cpu;
// Test ROL_ACC
{
uint8_t program[] = {
0xA9, 0x42, // LDA #$42
0x2A, // ROL A
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x84);
}
// Test ROL_ZP
{
uint8_t program[] = {
0xA9, 0x42, // LDA #$42
0x85, 0x00, // STA $00
0x26, 0x00, // ROL $00
0xA5, 0x00, // LDA $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x84);
}
}
// Test ROR operations
void test_ror_operations() {
print_test_header("ROR Operations");
CPU65C02 cpu;
// Test ROR_ACC
{
uint8_t program[] = {
0xA9, 0x84, // LDA #$84
0x6A, // ROR A
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x42);
}
// Test ROR_ZP
{
uint8_t program[] = {
0xA9, 0x84, // LDA #$84
0x85, 0x00, // STA $00
0x66, 0x00, // ROR $00
0xA5, 0x00, // LDA $00
0x00 // BRK
};
load_program(cpu, program, sizeof(program));
cpu.reset();
cpu.execute();
print_test_result(cpu.get_A() == 0x42);
}
}
int main() {
cout << "Starting Logical Operations Tests\n";
test_and_operations();
test_ora_operations();
test_eor_operations();
test_asl_operations();
test_lsr_operations();
test_rol_operations();
test_ror_operations();
cout << "\nAll tests completed.\n";
return 0;
}