mirror of https://github.com/PCSX2/pcsx2.git
core: prepare the conversion to the new emitter naming
This commit is contained in:
parent
21445fe0d0
commit
5dfe7ffc47
|
@ -22,6 +22,8 @@
|
|||
#include "VU.h"
|
||||
#include "R3000A.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
__tls_emit u8 *j8Ptr[32];
|
||||
__tls_emit u32 *j32Ptr[32];
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include "iR5900.h"
|
||||
#include "R5900OpcodeTables.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
namespace R5900 {
|
||||
namespace Dynarec {
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include "x86emitter/x86emitter.h"
|
||||
#include "R3000A.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
// yay sloppy crap needed until we can remove dependency on this hippopotamic
|
||||
// landmass of shared code. (air)
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#include "R5900OpcodeTables.h"
|
||||
#include "iR5900.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
namespace R5900 {
|
||||
namespace Dynarec {
|
||||
namespace OpcodeImpl
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "R5900OpcodeTables.h"
|
||||
#include "iR5900.h"
|
||||
|
||||
namespace Interp = R5900::Interpreter::OpcodeImpl;
|
||||
using namespace x86Emitter;
|
||||
|
||||
namespace R5900 {
|
||||
namespace Dynarec {
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include "R5900OpcodeTables.h"
|
||||
#include "iR5900.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
namespace R5900 {
|
||||
namespace Dynarec {
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#include "R5900OpcodeTables.h"
|
||||
#include "iR5900.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
namespace Interp = R5900::Interpreter::OpcodeImpl;
|
||||
|
||||
namespace R5900 {
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include "R5900OpcodeTables.h"
|
||||
#include "iR5900.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
namespace R5900 {
|
||||
namespace Dynarec {
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
|
||||
#include "vtlb.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
////////////////////
|
||||
// Code Templates //
|
||||
////////////////////
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
#include "sVU_Debug.h"
|
||||
#include "sVU_zerorec.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma warning(disable:4244)
|
||||
#pragma warning(disable:4761)
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
#include "sVU_Micro.h"
|
||||
#include "sVU_Debug.h"
|
||||
#include "sVU_zerorec.h"
|
||||
|
||||
using namespace x86Emitter;
|
||||
|
||||
//------------------------------------------------------------------
|
||||
#define MINMAXFIX 1
|
||||
//------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue