CPU: Added another runtime sanity check and made them optional in config.h
This commit is contained in:
parent
3e86db9600
commit
8e2eed0130
2
config.h
2
config.h
@ -1 +1 @@
|
|||||||
//#define USE_AALIB
|
#define RUNTIME_CHECKS // uncomment to trade runtime checks for negligible performance improvements
|
||||||
|
15
cpu.c
15
cpu.c
@ -3,6 +3,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
/* Known errors:
|
/* Known errors:
|
||||||
* 1) Exec does the calculations on the first clock cycle, there is a bug where in some cases exec isn't run on the last cycle and because of this the CPU still works.
|
* 1) Exec does the calculations on the first clock cycle, there is a bug where in some cases exec isn't run on the last cycle and because of this the CPU still works.
|
||||||
@ -336,8 +337,18 @@ int delay_values[]={
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RETURN CODES:
|
||||||
|
* 0 : success
|
||||||
|
* 1 : Normal execute error
|
||||||
|
* 2 : Internal error
|
||||||
|
*/
|
||||||
int exec(struct simdata_t *simdata){
|
int exec(struct simdata_t *simdata){
|
||||||
free_instr_list(&simdata->cpu_gui_hints->executing_list);
|
free_instr_list(&simdata->cpu_gui_hints->executing_list);
|
||||||
|
#ifdef RUNTIME_CHECKS
|
||||||
|
if(simdata->registers->SP&0xFF000000)
|
||||||
|
return 2;
|
||||||
|
#endif
|
||||||
if(simdata->exec_data->valid==1){
|
if(simdata->exec_data->valid==1){
|
||||||
simdata->fetch_data->exec_done=0;
|
simdata->fetch_data->exec_done=0;
|
||||||
simdata->decode_data->exec_done=0;
|
simdata->decode_data->exec_done=0;
|
||||||
@ -346,7 +357,11 @@ int exec(struct simdata_t *simdata){
|
|||||||
if(simdata->exec_data->valid==0)
|
if(simdata->exec_data->valid==0)
|
||||||
return 0;
|
return 0;
|
||||||
int condition=0;
|
int condition=0;
|
||||||
|
#ifdef RUNTIME_CHECKS
|
||||||
#define SANITY_CHECK(x) { if(x>0x0F){return 1;} }
|
#define SANITY_CHECK(x) { if(x>0x0F){return 1;} }
|
||||||
|
#else
|
||||||
|
#define SANITY_CHECK(x) {}
|
||||||
|
#endif
|
||||||
switch(simdata->exec_data->EXEC_ACTION){
|
switch(simdata->exec_data->EXEC_ACTION){
|
||||||
case CALL:
|
case CALL:
|
||||||
case JUMP:
|
case JUMP:
|
||||||
|
Loading…
Reference in New Issue
Block a user