Browse Source

Fix bug with FX0A

Alex 6 years ago
parent
commit
6bd3a22e5b
1 changed files with 9 additions and 7 deletions
  1. 9
    7
      main.c

+ 9
- 7
main.c View File

53
 	int frame = 0;
53
 	int frame = 0;
54
 	int press = 0;
54
 	int press = 0;
55
 	int wait = 0;
55
 	int wait = 0;
56
+	int store = 0;
56
 
57
 
57
 	while (1) {
58
 	while (1) {
58
 		if (DEBUG) printf("0x%x ", state.program_counter);
59
 		if (DEBUG) printf("0x%x ", state.program_counter);
66
 			press = 0;
67
 			press = 0;
67
 		}
68
 		}
68
 
69
 
69
-		clock_t start = clock() / (CLOCKS_PER_SEC/1000);
70
-
71
 		// opcodes are 16 bits
70
 		// opcodes are 16 bits
72
-		word opcode = (state.memory[state.program_counter++] << 8) | (state.memory[state.program_counter++]);
73
 
71
 
74
 		SDL_PollEvent(&e);
72
 		SDL_PollEvent(&e);
75
 		if (e.type == SDL_QUIT) break;
73
 		if (e.type == SDL_QUIT) break;
91
 			for (int i = 0; i < 0x10; ++i) {
89
 			for (int i = 0; i < 0x10; ++i) {
92
 				if (state.input[i] != 0)
90
 				if (state.input[i] != 0)
93
 				{
91
 				{
94
-					state.registers[0xF] = i;
92
+					state.registers[store] = i;
95
 					break;
93
 					break;
96
 				}
94
 				}
97
 			}
95
 			}
98
 			wait = 0;
96
 			wait = 0;
99
 		}
97
 		}
100
 
98
 
99
+		word opcode = (state.memory[state.program_counter++] << 8) | (state.memory[state.program_counter++]);
100
+
101
 		switch (opcode & 0xF000) 
101
 		switch (opcode & 0xF000) 
102
 		{
102
 		{
103
 			case 0x0000: // screen clear or function return 
103
 			case 0x0000: // screen clear or function return 
284
 					byte data = state.memory[state.address_I + line];
284
 					byte data = state.memory[state.address_I + line];
285
 					for (int xpos = 0; xpos < 8; ++xpos)
285
 					for (int xpos = 0; xpos < 8; ++xpos)
286
 					{
286
 					{
287
+						int ypos = y + line;
288
+						if (ypos > 63) ypos -= 64;
287
 						if (!(data & (1 << xpos))) continue;
289
 						if (!(data & (1 << xpos))) continue;
288
-						if (state.screen[x + (7 - xpos)][y + line]) state.registers[0xF] = 1;
289
-						state.screen[x + (7 - xpos)][y + line] ^= 1;
290
+						if (state.screen[x + (7 - xpos)][ypos]) state.registers[0xF] = 1;
291
+						state.screen[x + (7 - xpos)][ypos] ^= 1;
290
 					}
292
 					}
291
 				}
293
 				}
292
 
294
 
329
 
331
 
330
 					case 0x0A:
332
 					case 0x0A:
331
 						wait = 1;
333
 						wait = 1;
334
+						store = reg;
332
 						break;
335
 						break;
333
 
336
 
334
 					case 0x15:
337
 					case 0x15:
393
 
396
 
394
 		SDL_RenderPresent(renderer);
397
 		SDL_RenderPresent(renderer);
395
 
398
 
396
-		clock_t stop = clock() / (CLOCKS_PER_SEC/1000);
397
 		SDL_Delay(1);
399
 		SDL_Delay(1);
398
 		++frame;
400
 		++frame;
399
 		// SDL_DestroyWindow(window);
401
 		// SDL_DestroyWindow(window);