git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6795 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2011-01-09 15:20:35 +00:00
parent d47d2a05d2
commit e6c87cbe3d
1 changed files with 3 additions and 2 deletions

View File

@ -35,7 +35,6 @@
using namespace Gen;
void CommonAsmRoutines::GenFifoWrite(int size)
{
// Assume value in ABI_PARAM1
@ -58,9 +57,10 @@ void CommonAsmRoutines::GenFifoWrite(int size)
POP(ESI);
RET();
}
void CommonAsmRoutines::GenFifoFloatWrite()
{
int temp32;
static int temp32;
// Assume value in XMM0
PUSH(ESI);
@ -77,6 +77,7 @@ void CommonAsmRoutines::GenFifoFloatWrite()
POP(ESI);
RET();
}
void CommonAsmRoutines::GenFifoXmm64Write()
{
// Assume value in XMM0. Assume pre-byteswapped (unlike the others here!)