remove CPU_SPIN_LOOP references

Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
Gwenhael Le Moine 2024-09-22 13:30:20 +02:00
parent adf3512f3e
commit 9b0150b6a1
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 0 additions and 9 deletions

View file

@ -2515,11 +2515,6 @@ void CpuReset( void )
/* Set inner_loop and inner_loop_max to default values */
cpu_status.inner_loop = INNER_LOOP_MED;
cpu_status.inner_loop_max = 0;
/* Reset reset_req if necessary */
#ifdef CPU_SPIN_LOOP
cpu_status.reset_req = 0;
#endif
}
/* .+

View file

@ -270,10 +270,6 @@ struct CpuStatus {
#define INNER_LOOP_MAX 26
#define INNER_LOOP_MED 13
#define INNER_LOOP_MIN 2
#ifdef CPU_SPIN_LOOP
int reset_req; /* Reset req. after shutdn */
#endif
};
enum ExitOption /* 2.1: EmulatorExit() option */