[RSP] junk trailing whitespace cleanups
This commit is contained in:
parent
debcb502a0
commit
fcfad37360
|
@ -471,4 +471,3 @@ DWORD RunInterpreterCPU(DWORD Cycles) {
|
||||||
}
|
}
|
||||||
return Cycles;
|
return Cycles;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1500,10 +1500,10 @@ void RSP_Vector_VRCPH (void) {
|
||||||
|
|
||||||
void RSP_Vector_VMOV (void) {
|
void RSP_Vector_VMOV (void) {
|
||||||
int count;
|
int count;
|
||||||
|
|
||||||
for ( count = 0; count < 8; count++ ) {
|
for ( count = 0; count < 8; count++ ) {
|
||||||
RSP_ACCUM[count].HW[1] = RSP_Vect[RSPOpC.rt].UHW[EleSpec[RSPOpC.rs].B[count]];
|
RSP_ACCUM[count].HW[1] = RSP_Vect[RSPOpC.rt].UHW[EleSpec[RSPOpC.rs].B[count]];
|
||||||
}
|
}
|
||||||
|
|
||||||
RSP_Vect[RSPOpC.sa].UHW[7 - (RSPOpC.rd & 0x7)] =
|
RSP_Vect[RSPOpC.sa].UHW[7 - (RSPOpC.rd & 0x7)] =
|
||||||
RSP_Vect[RSPOpC.rt].UHW[EleSpec[RSPOpC.rs].B[(RSPOpC.rd & 0x7)]];
|
RSP_Vect[RSPOpC.rt].UHW[EleSpec[RSPOpC.rs].B[(RSPOpC.rd & 0x7)]];
|
||||||
}
|
}
|
||||||
|
@ -1738,7 +1738,7 @@ void rsp_UnknownOpcode (void) {
|
||||||
} else {
|
} else {
|
||||||
sprintf(Message,"Unhandled Opcode\n%s\n\nStoping Emulation!\n\nDo you wish to enter the debugger ?",
|
sprintf(Message,"Unhandled Opcode\n%s\n\nStoping Emulation!\n\nDo you wish to enter the debugger ?",
|
||||||
RSPOpcodeName(RSPOpC.Hex,*PrgCount));
|
RSPOpcodeName(RSPOpC.Hex,*PrgCount));
|
||||||
response = MessageBox(NULL,Message,"Error", MB_YESNO | MB_ICONERROR );
|
response = MessageBox(NULL,Message,"Error", MB_YESNO | MB_ICONERROR);
|
||||||
if (response == IDYES) {
|
if (response == IDYES) {
|
||||||
Enter_RSP_Commands_Window ();
|
Enter_RSP_Commands_Window ();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue