No freeze here
This commit is contained in:
parent
6be844392b
commit
db69cb7613
3 changed files with 16 additions and 31 deletions
|
@ -21,13 +21,5 @@ model {
|
||||||
// compile and package all suppported ABI.
|
// compile and package all suppported ABI.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
|
||||||
release {
|
|
||||||
ndk {
|
|
||||||
debuggable true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -55,6 +55,7 @@
|
||||||
|
|
||||||
#include "debugger.h"
|
#include "debugger.h"
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#define DEBUG_TIMER
|
#define DEBUG_TIMER
|
||||||
#define DEBUG_SCHED
|
#define DEBUG_SCHED
|
||||||
|
@ -66,6 +67,7 @@ static long jumpaddr;
|
||||||
unsigned long instructions = 0;
|
unsigned long instructions = 0;
|
||||||
unsigned long old_instr = 0;
|
unsigned long old_instr = 0;
|
||||||
|
|
||||||
|
int throttle;
|
||||||
int rece_instr = 0;
|
int rece_instr = 0;
|
||||||
int device_check = 0;
|
int device_check = 0;
|
||||||
|
|
||||||
|
@ -2453,35 +2455,25 @@ emulate()
|
||||||
|
|
||||||
set_t1 = saturn.timer1;
|
set_t1 = saturn.timer1;
|
||||||
|
|
||||||
/*
|
|
||||||
|
|
||||||
do {
|
|
||||||
step_instruction();
|
|
||||||
|
|
||||||
if (--schedule_event <= 0) {
|
|
||||||
schedule();
|
|
||||||
}
|
|
||||||
} while (exit_state);
|
|
||||||
*/
|
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
|
||||||
step_instruction();
|
step_instruction();
|
||||||
|
|
||||||
|
|
||||||
/* gettimeofday(&tv, &tz);
|
|
||||||
while ((tv.tv_sec == tv2.tv_sec) && ((tv.tv_usec - tv2.tv_usec) < 2)) {
|
|
||||||
gettimeofday(&tv, &tz);
|
|
||||||
}
|
|
||||||
tv2.tv_usec = tv.tv_usec;
|
|
||||||
tv2.tv_sec = tv.tv_sec;
|
|
||||||
|
|
||||||
usleep(3);
|
|
||||||
*/
|
|
||||||
if (schedule_event-- == 0)
|
|
||||||
{
|
{
|
||||||
schedule();
|
int i;
|
||||||
|
for (i=0; i < sizeof(saturn.keybuf.rows)/sizeof(saturn.keybuf.rows[0]); i++) {
|
||||||
|
if (saturn.keybuf.rows[i] || throttle) {
|
||||||
|
gettimeofday(&tv, &tz);
|
||||||
|
while ((tv.tv_sec == tv2.tv_sec) && ((tv.tv_usec - tv2.tv_usec) < 2)) gettimeofday(&tv, &tz);
|
||||||
|
tv2.tv_usec = tv.tv_usec; tv2.tv_sec = tv.tv_sec;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (schedule_event < 0) { /* puts("bug"); schedule_event = 0; */ }
|
||||||
|
if (schedule_event-- <= 0) { schedule(); }
|
||||||
|
|
||||||
} while (!enter_debugger && exit_state); // exit_state
|
} while (!enter_debugger && exit_state); // exit_state
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -248,6 +248,7 @@ extern char ram_filename [256];
|
||||||
extern char conf_filename [256];
|
extern char conf_filename [256];
|
||||||
extern char port1_filename [256];
|
extern char port1_filename [256];
|
||||||
extern char port2_filename [256];
|
extern char port2_filename [256];
|
||||||
|
extern int throttle;
|
||||||
|
|
||||||
extern int got_alarm;
|
extern int got_alarm;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue