2023-12-22 11:57:49 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
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);
|