mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-15 06:58:37 +02:00
add two paths to addx in JIT that Crazy Taxi kept hitting, add 'add' and 'add.' tests to the ASM test, although I haven't tested it yet
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5261 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -1,5 +1,24 @@
|
||||
#include "asm_tables.h"
|
||||
#include "Defines.h"
|
||||
|
||||
void add(u32 *a, u32 *b, u32 *c, u32 *d)
|
||||
{
|
||||
asm(
|
||||
"add %0,%1,%2"
|
||||
: "=r"(*a)
|
||||
: "r"(*b), "r"(*c)
|
||||
);
|
||||
}
|
||||
void addRC(u32 *a, u32 *b, u32 *c, u32 *d)
|
||||
{
|
||||
asm(
|
||||
"add. %0,%1,%2"
|
||||
: "=r"(*a)
|
||||
: "r"(*b), "r"(*c)
|
||||
: "cc"
|
||||
);
|
||||
}
|
||||
|
||||
void subfc(u32 *a, u32 *b, u32 *c, u32 *d)
|
||||
{
|
||||
asm(
|
||||
|
Reference in New Issue
Block a user