make tsta into helper function

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2889 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-04-05 21:11:47 +00:00
parent e3b1356f3d
commit 360c7e69e6
5 changed files with 21 additions and 14 deletions

View File

@ -53,7 +53,7 @@ void clrp(const UDSPInstruction& opc);
void mulc(const UDSPInstruction& opc);
void cmpar(const UDSPInstruction& opc);
void cmp(const UDSPInstruction& opc);
void tsta(const UDSPInstruction& opc);
void tst(const UDSPInstruction& opc);
void addaxl(const UDSPInstruction& opc);
void addarn(const UDSPInstruction& opc);
void mulcac(const UDSPInstruction& opc);
@ -128,6 +128,9 @@ void mov(const UDSPInstruction& opc);
// END OF UNIMPLEMENTED
// Helpers
inline void tsta(int reg);
};
#endif // _DSPINTERPRETER_H