diff options
Diffstat (limited to '3rdparty/asmjit/db/index.js')
| -rw-r--r-- | 3rdparty/asmjit/db/index.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3rdparty/asmjit/db/index.js b/3rdparty/asmjit/db/index.js new file mode 100644 index 00000000000..bf55e6f94b0 --- /dev/null +++ b/3rdparty/asmjit/db/index.js @@ -0,0 +1,11 @@ +// This file is part of AsmJit project <https://asmjit.com> +// +// See <asmjit/core.h> or LICENSE.md for license and copyright information +// SPDX-License-Identifier: Zlib + +"use strict"; + +exports.base = require("./base.js"); +exports.aarch32 = require("./aarch32.js"); +exports.aarch64 = require("./aarch64.js"); +exports.x86 = require("./x86.js"); |
