Make Bochs_disasm not depend on Common.

This commit is contained in:
Jordan Woyak 2013-09-12 12:26:20 -05:00
parent 44066326ff
commit 0fc1ca0169
1 changed files with 2 additions and 6 deletions

View File

@ -39,11 +39,6 @@
#include "PowerPCDisasm.h"
#ifndef _MSC_VER
// Pull in rotate functions for non-msvc
#include "Common.h"
#endif
namespace PPCDisasm
{
@ -580,7 +575,8 @@ typedef unsigned int ppc_word;
if (me < mb)
mask = ~mask;
//rotate the mask so it can be applied to source reg
return _rotl(mask, 32 - r);
//return _rotl(mask, 32 - r);
return (mask << (32 - r)) | (mask >> r);
}