Browse Source

Fix some weird bugs caused by the main loop running once every opcode

Alex 6 years ago
parent
commit
53c5b6ab9c
1 changed files with 15 additions and 11 deletions
  1. 15
    11
      main.c

+ 15
- 11
main.c View File

71
 
71
 
72
 	int delay = 0;
72
 	int delay = 0;
73
 	int sound = 0;
73
 	int sound = 0;
74
-	int frame = 0;
75
 	int press = 0;
74
 	int press = 0;
76
 	int wait = 0;
75
 	int wait = 0;
77
 	int store = 0;
76
 	int store = 0;
79
 	while (1) {
78
 	while (1) {
80
 		if (DEBUG) printf("0x%x ", state.program_counter);
79
 		if (DEBUG) printf("0x%x ", state.program_counter);
81
 	
80
 	
82
-		if (frame == 10)
83
-		{
84
-			frame = 0;
85
-			if (delay > 0) --delay;
86
-			if (sound > 0) --sound;
87
-			memset(state.input, 0, 0x10);
88
-			press = 0;
89
-		}
81
+		if (delay > 0) --delay;
82
+		if (sound > 0) --sound;
83
+		memset(state.input, 0, 0x10);
84
+		press = 0;
90
 
85
 
91
 		// opcodes are 16 bits
86
 		// opcodes are 16 bits
92
 
87
 
117
 			wait = 0;
112
 			wait = 0;
118
 		}
113
 		}
119
 
114
 
115
+		int ops = 0;
116
+
117
+		loop:;
118
+
120
 		word opcode = (state.memory[state.program_counter++] << 8) | (state.memory[state.program_counter++]);
119
 		word opcode = (state.memory[state.program_counter++] << 8) | (state.memory[state.program_counter++]);
121
 
120
 
122
 		switch (opcode & 0xF000) 
121
 		switch (opcode & 0xF000) 
403
 		}
402
 		}
404
 		if (DEBUG) printf("\n");
403
 		if (DEBUG) printf("\n");
405
 
404
 
405
+		if (ops < 10)
406
+		{
407
+			ops++;
408
+			goto loop;
409
+		}
410
+
406
 		for (int x = 0; x < 64; ++x) {
411
 		for (int x = 0; x < 64; ++x) {
407
 			for (int y = 0; y < 32; ++y)
412
 			for (int y = 0; y < 32; ++y)
408
 			{
413
 			{
422
 
427
 
423
 		SDL_RenderPresent(renderer);
428
 		SDL_RenderPresent(renderer);
424
 
429
 
425
-		SDL_Delay(1);
426
-		++frame;
430
+		SDL_Delay(16);
427
 		// SDL_DestroyWindow(window);
431
 		// SDL_DestroyWindow(window);
428
 		// SDL_Quit();
432
 		// SDL_Quit();
429
 	}
433
 	}