25 lines
507 B
C
25 lines
507 B
C
// [AsmJit]
|
|
// Machine Code Generation for C++.
|
|
//
|
|
// [License]
|
|
// Zlib - See LICENSE.md file in the package.
|
|
|
|
#ifndef _ASMJIT_X86_H
|
|
#define _ASMJIT_X86_H
|
|
|
|
//! \defgroup asmjit_x86 X86
|
|
//!
|
|
//! \brief X86/X64 Backend.
|
|
|
|
#include "./core.h"
|
|
|
|
#include "./x86/x86assembler.h"
|
|
#include "./x86/x86builder.h"
|
|
#include "./x86/x86compiler.h"
|
|
#include "./x86/x86emitter.h"
|
|
#include "./x86/x86features.h"
|
|
#include "./x86/x86globals.h"
|
|
#include "./x86/x86instdb.h"
|
|
#include "./x86/x86operand.h"
|
|
|
|
#endif // _ASMJIT_X86_H
|