First Commit
This commit is contained in:
38
common/emitter/x86emitter.h
Normal file
38
common/emitter/x86emitter.h
Normal file
@@ -0,0 +1,38 @@
|
||||
// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
|
||||
// SPDX-License-Identifier: GPL-3.0+
|
||||
|
||||
/*
|
||||
* ix86 public header v0.9.1
|
||||
*
|
||||
* Original Authors (v0.6.2 and prior):
|
||||
* linuzappz <linuzappz@pcsx.net>
|
||||
* alexey silinov
|
||||
* goldfinger
|
||||
* zerofrog(@gmail.com)
|
||||
*
|
||||
* Authors of v0.9.1:
|
||||
* Jake.Stine(@gmail.com)
|
||||
* cottonvibes(@gmail.com)
|
||||
* sudonim(1@gmail.com)
|
||||
*/
|
||||
|
||||
// PCSX2's New C++ Emitter
|
||||
// --------------------------------------------------------------------------------------
|
||||
// To use it just include the x86Emitter namespace into your file/class/function off choice.
|
||||
//
|
||||
// This header file is intended for use by public code. It includes the appropriate
|
||||
// inlines and class definitions for efficient codegen. (code internal to the emitter
|
||||
// should usually use ix86_internal.h instead, and manually include the
|
||||
// ix86_inlines.inl file when it is known that inlining of ModSib functions are
|
||||
// wanted).
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "common/emitter/x86types.h"
|
||||
#include "common/emitter/instructions.h"
|
||||
|
||||
// Including legacy items for now, but these should be removed eventually,
|
||||
// once most code is no longer dependent on them.
|
||||
#include "common/emitter/legacy_types.h"
|
||||
#include "common/emitter/legacy_instructions.h"
|
||||
Reference in New Issue
Block a user