arm: Remove TRUE/FALSE defines
- Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true.
This commit is contained in:
parent
67db6aa4ce
commit
088fab743f
4 changed files with 19 additions and 28 deletions
|
@ -47,7 +47,7 @@ static unsigned int NoCoPro5W(ARMul_State* state, unsigned int a, ARMword b, ARM
|
|||
}
|
||||
|
||||
// Install co-processor instruction handlers in this routine.
|
||||
unsigned int ARMul_CoProInit(ARMul_State* state)
|
||||
void ARMul_CoProInit(ARMul_State* state)
|
||||
{
|
||||
// Initialise tham all first.
|
||||
for (unsigned int i = 0; i < 16; i++)
|
||||
|
@ -71,11 +71,10 @@ unsigned int ARMul_CoProInit(ARMul_State* state)
|
|||
// No handlers below here.
|
||||
|
||||
// Call all the initialisation routines.
|
||||
for (unsigned int i = 0; i < 16; i++)
|
||||
for (unsigned int i = 0; i < 16; i++) {
|
||||
if (state->CPInit[i])
|
||||
(state->CPInit[i]) (state);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
// Install co-processor finalisation routines in this routine.
|
||||
|
|
|
@ -63,24 +63,22 @@ void ARMul_EmulateInit()
|
|||
\***************************************************************************/
|
||||
ARMul_State* ARMul_NewState(ARMul_State* state)
|
||||
{
|
||||
unsigned i, j;
|
||||
|
||||
memset (state, 0, sizeof (ARMul_State));
|
||||
|
||||
state->Emulate = RUN;
|
||||
for (i = 0; i < 16; i++) {
|
||||
for (unsigned int i = 0; i < 16; i++) {
|
||||
state->Reg[i] = 0;
|
||||
for (j = 0; j < 7; j++)
|
||||
for (unsigned int j = 0; j < 7; j++)
|
||||
state->RegBank[j][i] = 0;
|
||||
}
|
||||
for (i = 0; i < 7; i++)
|
||||
for (unsigned int i = 0; i < 7; i++)
|
||||
state->Spsr[i] = 0;
|
||||
|
||||
state->Mode = 0;
|
||||
|
||||
state->Debug = FALSE;
|
||||
state->VectorCatch = 0;
|
||||
state->Aborted = FALSE;
|
||||
state->Reseted = FALSE;
|
||||
state->Aborted = false;
|
||||
state->Reseted = false;
|
||||
state->Inted = 3;
|
||||
state->LastInted = 3;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue