mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-14 16:41:07 +00:00
34 lines
806 B
C
34 lines
806 B
C
// [AsmJit]
|
|
// Complete x86/x64 JIT and Remote Assembler for C++.
|
|
//
|
|
// [License]
|
|
// Zlib - See LICENSE.md file in the package.
|
|
|
|
// [Guard]
|
|
#ifndef _ASMJIT_BASE_H
|
|
#define _ASMJIT_BASE_H
|
|
|
|
// [Dependencies]
|
|
#include "./base/arch.h"
|
|
#include "./base/assembler.h"
|
|
#include "./base/codebuilder.h"
|
|
#include "./base/codecompiler.h"
|
|
#include "./base/codeemitter.h"
|
|
#include "./base/codeholder.h"
|
|
#include "./base/constpool.h"
|
|
#include "./base/cpuinfo.h"
|
|
#include "./base/func.h"
|
|
#include "./base/globals.h"
|
|
#include "./base/inst.h"
|
|
#include "./base/logging.h"
|
|
#include "./base/operand.h"
|
|
#include "./base/osutils.h"
|
|
#include "./base/runtime.h"
|
|
#include "./base/simdtypes.h"
|
|
#include "./base/string.h"
|
|
#include "./base/utils.h"
|
|
#include "./base/vmem.h"
|
|
#include "./base/zone.h"
|
|
|
|
// [Guard]
|
|
#endif // _ASMJIT_BASE_H
|