Some really (REALLY) old changes that were hanging on my computer for a while

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5091 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2010-02-20 09:36:22 +00:00
parent 154bc956ad
commit 2aa03f5b3b
2 changed files with 4807 additions and 4826 deletions

File diff suppressed because it is too large Load Diff

View File

@ -548,6 +548,7 @@ void addr(const UDSPInstruction& opc)
// SUBR $acD.M, $axS.L // SUBR $acD.M, $axS.L
// 0101 0ssd xxxx xxxx // 0101 0ssd xxxx xxxx
// Subtracts register $axS.L from accumulator $acD.M register. // Subtracts register $axS.L from accumulator $acD.M register.
// NOTE: It is seen in DSP_UCODE_ZELDA that AXs.H can also be subtracted
void subr(const UDSPInstruction& opc) void subr(const UDSPInstruction& opc)
{ {
u8 areg = (opc.hex >> 8) & 0x1; u8 areg = (opc.hex >> 8) & 0x1;