2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-04-14 01:26:57 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-04-14 01:26:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/emitter/internal.h"
|
2009-04-14 01:26:57 +00:00
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Legacy Helper Macros and Functions (depreciated)
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
2010-08-09 04:10:38 +00:00
|
|
|
#define emitterT __fi
|
2009-04-24 11:25:10 +00:00
|
|
|
|
|
|
|
using x86Emitter::xWrite8;
|
|
|
|
using x86Emitter::xWrite16;
|
|
|
|
using x86Emitter::xWrite32;
|
|
|
|
using x86Emitter::xWrite64;
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/emitter/legacy_types.h"
|
|
|
|
#include "common/emitter/legacy_instructions.h"
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
#define MEMADDR(addr, oplen) (addr)
|
2009-04-14 01:26:57 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
extern void ModRM(uint mod, uint reg, uint rm);
|
|
|
|
extern void SibSB(uint ss, uint index, uint base);
|
|
|
|
extern void SET8R(int cc, int to);
|
2021-09-06 18:28:26 +00:00
|
|
|
extern u8* J8Rel(int cc, int to);
|
|
|
|
extern u32* J32Rel(int cc, u32 to);
|