Update RSP Command.c
Fix abbreviations, capitalization, changed some multi line comments to single line comments,
This commit is contained in:
parent
efd8a3721d
commit
e26876ba33
|
@ -897,7 +897,7 @@ char * RSPSpecialName ( DWORD OpCode, DWORD PC )
|
||||||
OPCODE command;
|
OPCODE command;
|
||||||
command.Hex = OpCode;
|
command.Hex = OpCode;
|
||||||
|
|
||||||
PC = PC; // unused
|
PC = PC; // Unused
|
||||||
|
|
||||||
if (strcmp(mnemonics_special[command.funct], unused_op) == 0)
|
if (strcmp(mnemonics_special[command.funct], unused_op) == 0)
|
||||||
{
|
{
|
||||||
|
@ -978,7 +978,7 @@ char * RSPRegimmName ( DWORD OpCode, DWORD PC )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else if (command.rt == RSP_REGIMM_BGEZAL && command.rs == 0)
|
else if (command.rt == RSP_REGIMM_BGEZAL && command.rs == 0)
|
||||||
{ /* MIPS pseudo-instruction: BAL (Branch and Link) */
|
{ // MIPS pseudo-instruction: BAL (branch and link)
|
||||||
sprintf(
|
sprintf(
|
||||||
CommandName,
|
CommandName,
|
||||||
"BAL\t0x%04X",
|
"BAL\t0x%04X",
|
||||||
|
@ -1003,7 +1003,7 @@ char * RSPCop0Name ( DWORD OpCode, DWORD PC )
|
||||||
OPCODE command;
|
OPCODE command;
|
||||||
command.Hex = OpCode;
|
command.Hex = OpCode;
|
||||||
|
|
||||||
PC = PC; // unused
|
PC = PC; // Unused
|
||||||
|
|
||||||
if (strcmp(mnemonics_cop0[command.rs], unused_op) == 0)
|
if (strcmp(mnemonics_cop0[command.rs], unused_op) == 0)
|
||||||
{
|
{
|
||||||
|
@ -1034,7 +1034,7 @@ char * RSPCop2Name ( DWORD OpCode, DWORD PC )
|
||||||
OPCODE command;
|
OPCODE command;
|
||||||
command.Hex = OpCode;
|
command.Hex = OpCode;
|
||||||
|
|
||||||
PC = PC; // unused
|
PC = PC; // Unused
|
||||||
|
|
||||||
if ( ( command.rs & 0x10 ) == 0 )
|
if ( ( command.rs & 0x10 ) == 0 )
|
||||||
{
|
{
|
||||||
|
@ -1047,7 +1047,7 @@ char * RSPCop2Name ( DWORD OpCode, DWORD PC )
|
||||||
command.Ascii[0]
|
command.Ascii[0]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else if (command.rs & 002) /* CFC2 or CTC2 */
|
else if (command.rs & 002) // CFC2 or CTC2
|
||||||
{
|
{
|
||||||
sprintf(CommandName, "%s\t%s, %d",
|
sprintf(CommandName, "%s\t%s, %d",
|
||||||
mnemonics_cop2[command.rs],
|
mnemonics_cop2[command.rs],
|
||||||
|
@ -1077,7 +1077,7 @@ char * RSPCop2Name ( DWORD OpCode, DWORD PC )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else if (command.funct >= RSP_VECTOR_VRCP && command.funct < RSP_VECTOR_VNOOP)
|
else if (command.funct >= RSP_VECTOR_VRCP && command.funct < RSP_VECTOR_VNOOP)
|
||||||
{ /* RSP division -- VRCP[L,H], VRSQ[L,H], and VMOV */
|
{ // RSP division -- VRCP[L,H], VRSQ[L,H], and VMOV
|
||||||
sprintf(CommandName, "%s\t$v%d[%d], $v%d%s",
|
sprintf(CommandName, "%s\t$v%d[%d], $v%d%s",
|
||||||
mnemonics_vector[command.funct],
|
mnemonics_vector[command.funct],
|
||||||
command.sa,
|
command.sa,
|
||||||
|
@ -1109,7 +1109,7 @@ char * RSPLc2Name ( DWORD OpCode, DWORD PC )
|
||||||
OPCODE command;
|
OPCODE command;
|
||||||
command.Hex = OpCode;
|
command.Hex = OpCode;
|
||||||
|
|
||||||
PC = PC; // unused
|
PC = PC; // Unused
|
||||||
|
|
||||||
if (strcmp(mnemonics_lwc2[command.rd], unused_op) == 0)
|
if (strcmp(mnemonics_lwc2[command.rd], unused_op) == 0)
|
||||||
{
|
{
|
||||||
|
@ -1143,7 +1143,7 @@ char * RSPSc2Name ( DWORD OpCode, DWORD PC )
|
||||||
OPCODE command;
|
OPCODE command;
|
||||||
command.Hex = OpCode;
|
command.Hex = OpCode;
|
||||||
|
|
||||||
PC = PC; // unused
|
PC = PC; // Unused
|
||||||
|
|
||||||
if (strcmp(mnemonics_swc2[command.rd], unused_op) == 0)
|
if (strcmp(mnemonics_swc2[command.rd], unused_op) == 0)
|
||||||
{
|
{
|
||||||
|
@ -1210,6 +1210,7 @@ char * RSPOpcodeName ( DWORD OpCode, DWORD PC )
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// TODO: add example code?
|
||||||
/* else { fall through to show the full BEQ } */
|
/* else { fall through to show the full BEQ } */
|
||||||
case RSP_BNE:
|
case RSP_BNE:
|
||||||
sprintf(CommandName, "%s\t%s, %s, 0x%04X",
|
sprintf(CommandName, "%s\t%s, %s, 0x%04X",
|
||||||
|
|
Loading…
Reference in New Issue