Update Interpreter CPU.c
Fix typos and errors, and change a multi line comment into a single line comment
This commit is contained in:
parent
6ab7ddb08b
commit
7100399f3c
|
@ -388,14 +388,14 @@ DWORD RunInterpreterCPU(DWORD Cycles) {
|
|||
if (InRSPCommandsWindow) {
|
||||
Enter_RSP_Commands_Window();
|
||||
if (Stepping_Commands) {
|
||||
DisplayError ( "Encounted a R4300i Breakpoint" );
|
||||
DisplayError ( "Encountered an R4300i breakpoint" );
|
||||
} else {
|
||||
DisplayError ( "Encounted a R4300i Breakpoint\n\nNow Stepping" );
|
||||
DisplayError ( "Encountered an R4300i breakpoint\n\nNow stepping" );
|
||||
SetRSPCommandViewto( *PrgCount );
|
||||
SetRSPCommandToStepping();
|
||||
}
|
||||
} else {
|
||||
DisplayError ( "Encounted a RSP Breakpoint\n\nEntering Command Window" );
|
||||
DisplayError ( "Encountered an RSP breakpoint\n\nEntering command window" );
|
||||
Enter_RSP_Commands_Window();
|
||||
}
|
||||
}
|
||||
|
@ -413,12 +413,11 @@ DWORD RunInterpreterCPU(DWORD Cycles) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
RDP_LogLoc(*PrgCount);
|
||||
|
||||
RSP_LW_IMEM(*PrgCount, &RSPOpC.Hex);
|
||||
RSP_Opcode[ RSPOpC.op ]();
|
||||
RSP_GPR[0].W = 0x00000000; /* MIPS $zero hard-wired to 0 */
|
||||
RSP_GPR[0].W = 0x00000000; // MIPS $zero hard-wired to 0
|
||||
|
||||
switch (RSP_NextInstruction) {
|
||||
case NORMAL:
|
||||
|
|
Loading…
Reference in New Issue