move increasing t1_count here otherwise it would never be
This commit is contained in:
parent
145a6430d8
commit
a39e209394
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ static void EmulatorLoop( void )
|
||||||
/* DrawLcd(); */
|
/* DrawLcd(); */
|
||||||
|
|
||||||
/* Emulator Interrupt Request */
|
/* Emulator Interrupt Request */
|
||||||
if ( ( t1_count & INT_T1_MASK ) == 0 && emulator_int_req ) {
|
if ( ( t1_count++ & INT_T1_MASK ) == 0 && emulator_int_req ) {
|
||||||
ChfCondition CPU_I_EMULATOR_INT, CHF_INFO ChfEnd;
|
ChfCondition CPU_I_EMULATOR_INT, CHF_INFO ChfEnd;
|
||||||
ChfSignal();
|
ChfSignal();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue