mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 04:24:37 +03:00
* Each architecture now provides r32() and r64() functions for
register casting
* Each architecture now provides v128() function for register
casting, returning just Vec to make writing cross platform
code easier
* Added some basic condition code abstractions so it can be used
interchangeably across architectures
* Added back unlicense to asmjit database (now it's dual licensed)
12 lines
353 B
JavaScript
12 lines
353 B
JavaScript
// This file is part of AsmJit project <https://asmjit.com>
|
|
//
|
|
// See asmjit.h or LICENSE.md for license and copyright information
|
|
// SPDX-License-Identifier: (Zlib or Unlicense)
|
|
|
|
"use strict";
|
|
|
|
exports.base = require("./base.js");
|
|
exports.aarch32 = require("./aarch32.js");
|
|
exports.aarch64 = require("./aarch64.js");
|
|
exports.x86 = require("./x86.js");
|