LLE JIT: Implemented the addr, lsl and lsl16 instructions in the JIT (x64 only).

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6542 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
skidau
2010-12-09 11:52:31 +00:00
parent 8fd825c18c
commit f353f80302
7 changed files with 1175 additions and 12 deletions

View File

@ -116,6 +116,11 @@ public:
void mrr(const UDSPInstruction opc);
void nx(const UDSPInstruction opc);
// Arithmetic
void addr(const UDSPInstruction opc);
void lsl16(const UDSPInstruction opc);
void lsl(const UDSPInstruction opc);
// Multipliers
void get_multiply_prod();
void multiply();