mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-08 01:10:40 +00:00
24 lines
467 B
C
24 lines
467 B
C
|
// [AsmJit]
|
||
|
// Complete x86/x64 JIT and Remote Assembler for C++.
|
||
|
//
|
||
|
// [License]
|
||
|
// Zlib - See LICENSE.md file in the package.
|
||
|
|
||
|
// [Guard]
|
||
|
#ifndef _ASMJIT_X86_H
|
||
|
#define _ASMJIT_X86_H
|
||
|
|
||
|
// [Dependencies]
|
||
|
#include "./base.h"
|
||
|
|
||
|
#include "./x86/x86assembler.h"
|
||
|
#include "./x86/x86builder.h"
|
||
|
#include "./x86/x86compiler.h"
|
||
|
#include "./x86/x86emitter.h"
|
||
|
#include "./x86/x86inst.h"
|
||
|
#include "./x86/x86misc.h"
|
||
|
#include "./x86/x86operand.h"
|
||
|
|
||
|
// [Guard]
|
||
|
#endif // _ASMJIT_X86_H
|