mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-04 07:20:39 +00:00
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
// [AsmJit]
|
|
// Complete x86/x64 JIT and Remote Assembler for C++.
|
|
//
|
|
// [License]
|
|
// Zlib - See LICENSE.md file in the package.
|
|
|
|
// [Guard]
|
|
#ifndef _ASMJIT_ASMJIT_H
|
|
#define _ASMJIT_ASMJIT_H
|
|
|
|
// ============================================================================
|
|
// [asmjit_mainpage]
|
|
// ============================================================================
|
|
|
|
//! \mainpage
|
|
//!
|
|
//! AsmJit - Complete x86/x64 JIT and Remote Assembler for C++.
|
|
//!
|
|
//! Introduction provided by the project page at https://github.com/asmjit/asmjit.
|
|
|
|
//! \defgroup asmjit_base AsmJit Base API (architecture independent)
|
|
//!
|
|
//! \brief Backend Neutral API.
|
|
|
|
//! \defgroup asmjit_x86 AsmJit X86/X64 API
|
|
//!
|
|
//! \brief X86/X64 Backend API.
|
|
|
|
//! \defgroup asmjit_arm AsmJit ARM32/ARM64 API
|
|
//!
|
|
//! \brief ARM32/ARM64 Backend API.
|
|
|
|
// [Dependencies]
|
|
#include "./base.h"
|
|
|
|
// [X86/X64]
|
|
#if defined(ASMJIT_BUILD_X86)
|
|
#include "./x86.h"
|
|
#endif // ASMJIT_BUILD_X86
|
|
|
|
// [ARM32/ARM64]
|
|
#if defined(ASMJIT_BUILD_ARM)
|
|
#include "./arm.h"
|
|
#endif // ASMJIT_BUILD_ARM
|
|
|
|
// [Guard]
|
|
#endif // _ASMJIT_ASMJIT_H
|